blob: 8e7d2374558bac3dd34d56d289fe43c5d3ee25d1 [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
325 if ((skb->len) - ((size + 1) & 0xfffe) == 0)
326 return 2;
327 if (size > ETH_FRAME_LEN) {
Joe Perches60b86752010-02-17 10:30:23 +0000328 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
329 size);
David Hollis933a27d2006-07-29 10:12:50 -0400330 return 0;
331 }
332 ax_skb = skb_clone(skb, GFP_ATOMIC);
333 if (ax_skb) {
334 ax_skb->len = size;
335 ax_skb->data = packet;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700336 skb_set_tail_pointer(ax_skb, size);
David Hollis933a27d2006-07-29 10:12:50 -0400337 usbnet_skb_return(dev, ax_skb);
338 } else {
339 return 0;
340 }
341
342 skb_pull(skb, (size + 1) & 0xfffe);
343
344 if (skb->len == 0)
345 break;
346
347 head = (u8 *) skb->data;
348 memcpy(&header, head, sizeof(header));
349 le32_to_cpus(&header);
350 packet = head + sizeof(header);
351 skb_pull(skb, 4);
352 }
353
354 if (skb->len < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000355 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d\n",
356 skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400357 return 0;
358 }
359 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500360}
361
David Hollis933a27d2006-07-29 10:12:50 -0400362static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
363 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500364{
David Hollis933a27d2006-07-29 10:12:50 -0400365 int padlen;
366 int headroom = skb_headroom(skb);
367 int tailroom = skb_tailroom(skb);
368 u32 packet_len;
369 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500370
David Hollis933a27d2006-07-29 10:12:50 -0400371 padlen = ((skb->len + 4) % 512) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500372
Joe Perches8e95a202009-12-03 07:58:21 +0000373 if ((!skb_cloned(skb)) &&
374 ((headroom + tailroom) >= (4 + padlen))) {
David Hollis933a27d2006-07-29 10:12:50 -0400375 if ((headroom < 4) || (tailroom < padlen)) {
376 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700377 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400378 }
379 } else {
380 struct sk_buff *skb2;
381 skb2 = skb_copy_expand(skb, 4, padlen, flags);
382 dev_kfree_skb_any(skb);
383 skb = skb2;
384 if (!skb)
385 return NULL;
386 }
387
388 skb_push(skb, 4);
389 packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4);
David Hollis57e4f042007-02-05 12:03:03 -0500390 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300391 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400392
393 if ((skb->len % 512) == 0) {
David Hollis57e4f042007-02-05 12:03:03 -0500394 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700395 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400396 skb_put(skb, sizeof(padbytes));
397 }
398 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500399}
400
401static void asix_status(struct usbnet *dev, struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700402{
403 struct ax88172_int_data *event;
404 int link;
405
406 if (urb->actual_length < 8)
407 return;
408
409 event = urb->transfer_buffer;
410 link = event->link & 0x01;
411 if (netif_carrier_ok(dev->net) != link) {
412 if (link) {
413 netif_carrier_on(dev->net);
414 usbnet_defer_kevent (dev, EVENT_LINK_RESET );
415 } else
416 netif_carrier_off(dev->net);
Joe Perches60b86752010-02-17 10:30:23 +0000417 netdev_dbg(dev->net, "Link Status is: %d\n", link);
David Brownell2e55cc72005-08-31 09:53:10 -0700418 }
419}
420
David Hollis933a27d2006-07-29 10:12:50 -0400421static inline int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700422{
David Hollis933a27d2006-07-29 10:12:50 -0400423 int ret;
424 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
425 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000426 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400427 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700428}
429
David Hollis933a27d2006-07-29 10:12:50 -0400430static inline int asix_set_hw_mii(struct usbnet *dev)
431{
432 int ret;
433 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
434 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000435 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400436 return ret;
437}
438
439static inline int asix_get_phy_addr(struct usbnet *dev)
440{
Al Viro51bf2972007-12-22 17:42:36 +0000441 u8 buf[2];
442 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400443
Joe Perches60b86752010-02-17 10:30:23 +0000444 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400445
Al Viro51bf2972007-12-22 17:42:36 +0000446 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000447 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000448 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400449 }
Joe Perches60b86752010-02-17 10:30:23 +0000450 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
451 *((__le16 *)buf));
Al Viro51bf2972007-12-22 17:42:36 +0000452 ret = buf[1];
453
454out:
David Hollis933a27d2006-07-29 10:12:50 -0400455 return ret;
456}
457
458static int asix_sw_reset(struct usbnet *dev, u8 flags)
459{
460 int ret;
461
462 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
463 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000464 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400465
466 return ret;
467}
468
469static u16 asix_read_rx_ctl(struct usbnet *dev)
470{
Al Viro51bf2972007-12-22 17:42:36 +0000471 __le16 v;
472 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400473
Al Viro51bf2972007-12-22 17:42:36 +0000474 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000475 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000476 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400477 }
Al Viro51bf2972007-12-22 17:42:36 +0000478 ret = le16_to_cpu(v);
479out:
David Hollis933a27d2006-07-29 10:12:50 -0400480 return ret;
481}
482
483static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
484{
485 int ret;
486
Joe Perches60b86752010-02-17 10:30:23 +0000487 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400488 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
489 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000490 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
491 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400492
493 return ret;
494}
495
496static u16 asix_read_medium_status(struct usbnet *dev)
497{
Al Viro51bf2972007-12-22 17:42:36 +0000498 __le16 v;
499 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400500
Al Viro51bf2972007-12-22 17:42:36 +0000501 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000502 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
503 ret);
Al Viro51bf2972007-12-22 17:42:36 +0000504 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400505 }
Al Viro51bf2972007-12-22 17:42:36 +0000506 ret = le16_to_cpu(v);
507out:
David Hollis933a27d2006-07-29 10:12:50 -0400508 return ret;
509}
510
511static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
512{
513 int ret;
514
Joe Perches60b86752010-02-17 10:30:23 +0000515 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400516 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
517 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000518 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
519 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400520
521 return ret;
522}
523
524static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
525{
526 int ret;
527
Joe Perches60b86752010-02-17 10:30:23 +0000528 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400529 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
530 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000531 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
532 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400533
534 if (sleep)
535 msleep(sleep);
536
537 return ret;
538}
539
540/*
541 * AX88772 & AX88178 have a 16-bit RX_CTL value
542 */
David Hollis48b1be62006-03-28 20:15:42 -0500543static void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700544{
545 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500546 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400547 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700548
549 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400550 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000551 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000552 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400553 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000554 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700555 /* just broadcast and directed */
556 } else {
557 /* We use the 20 byte dev->data
558 * for our 8 byte filter buffer
559 * to avoid allocating memory that
560 * is tricky to free later */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000561 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700562 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700563
564 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
565
566 /* Build the multicast hash filter. */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000567 netdev_for_each_mc_addr(ha, net) {
568 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700569 data->multi_filter[crc_bits >> 3] |=
570 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700571 }
572
David Hollis48b1be62006-03-28 20:15:42 -0500573 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700574 AX_MCAST_FILTER_SIZE, data->multi_filter);
575
David Hollis933a27d2006-07-29 10:12:50 -0400576 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700577 }
578
David Hollis48b1be62006-03-28 20:15:42 -0500579 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700580}
581
David Hollis48b1be62006-03-28 20:15:42 -0500582static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700583{
584 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000585 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700586
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200587 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500588 asix_set_sw_mii(dev);
589 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000590 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500591 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200592 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700593
Joe Perches60b86752010-02-17 10:30:23 +0000594 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
595 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700596
Al Viro51bf2972007-12-22 17:42:36 +0000597 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700598}
599
600static void
David Hollis48b1be62006-03-28 20:15:42 -0500601asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700602{
603 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000604 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700605
Joe Perches60b86752010-02-17 10:30:23 +0000606 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
607 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200608 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500609 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000610 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500611 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200612 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700613}
614
David Hollis933a27d2006-07-29 10:12:50 -0400615/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
616static u32 asix_get_phyid(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700617{
David Hollis933a27d2006-07-29 10:12:50 -0400618 int phy_reg;
619 u32 phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700620
David Hollis933a27d2006-07-29 10:12:50 -0400621 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
622 if (phy_reg < 0)
623 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700624
David Hollis933a27d2006-07-29 10:12:50 -0400625 phy_id = (phy_reg & 0xffff) << 16;
David Brownell2e55cc72005-08-31 09:53:10 -0700626
David Hollis933a27d2006-07-29 10:12:50 -0400627 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
628 if (phy_reg < 0)
629 return 0;
630
631 phy_id |= (phy_reg & 0xffff);
632
633 return phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700634}
635
636static void
David Hollis48b1be62006-03-28 20:15:42 -0500637asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700638{
639 struct usbnet *dev = netdev_priv(net);
640 u8 opt;
641
David Hollis48b1be62006-03-28 20:15:42 -0500642 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700643 wolinfo->supported = 0;
644 wolinfo->wolopts = 0;
645 return;
646 }
647 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
648 wolinfo->wolopts = 0;
649 if (opt & AX_MONITOR_MODE) {
650 if (opt & AX_MONITOR_LINK)
651 wolinfo->wolopts |= WAKE_PHY;
652 if (opt & AX_MONITOR_MAGIC)
653 wolinfo->wolopts |= WAKE_MAGIC;
654 }
655}
656
657static int
David Hollis48b1be62006-03-28 20:15:42 -0500658asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700659{
660 struct usbnet *dev = netdev_priv(net);
661 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700662
663 if (wolinfo->wolopts & WAKE_PHY)
664 opt |= AX_MONITOR_LINK;
665 if (wolinfo->wolopts & WAKE_MAGIC)
666 opt |= AX_MONITOR_MAGIC;
667 if (opt != 0)
668 opt |= AX_MONITOR_MODE;
669
David Hollis48b1be62006-03-28 20:15:42 -0500670 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000671 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700672 return -EINVAL;
673
674 return 0;
675}
676
David Hollis48b1be62006-03-28 20:15:42 -0500677static int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700678{
David Hollis933a27d2006-07-29 10:12:50 -0400679 struct usbnet *dev = netdev_priv(net);
680 struct asix_data *data = (struct asix_data *)&dev->data;
681
682 return data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700683}
684
David Hollis48b1be62006-03-28 20:15:42 -0500685static int asix_get_eeprom(struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700686 struct ethtool_eeprom *eeprom, u8 *data)
687{
688 struct usbnet *dev = netdev_priv(net);
Al Viro51bf2972007-12-22 17:42:36 +0000689 __le16 *ebuf = (__le16 *)data;
David Brownell2e55cc72005-08-31 09:53:10 -0700690 int i;
691
692 /* Crude hack to ensure that we don't overwrite memory
693 * if an odd length is supplied
694 */
695 if (eeprom->len % 2)
696 return -EINVAL;
697
698 eeprom->magic = AX_EEPROM_MAGIC;
699
700 /* ax8817x returns 2 bytes from eeprom on read */
701 for (i=0; i < eeprom->len / 2; i++) {
David Hollis48b1be62006-03-28 20:15:42 -0500702 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
David Brownell2e55cc72005-08-31 09:53:10 -0700703 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
704 return -EINVAL;
705 }
706 return 0;
707}
708
David Hollis48b1be62006-03-28 20:15:42 -0500709static void asix_get_drvinfo (struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700710 struct ethtool_drvinfo *info)
711{
David Hollis933a27d2006-07-29 10:12:50 -0400712 struct usbnet *dev = netdev_priv(net);
713 struct asix_data *data = (struct asix_data *)&dev->data;
714
David Brownell2e55cc72005-08-31 09:53:10 -0700715 /* Inherit standard device info */
716 usbnet_get_drvinfo(net, info);
David Hollis933a27d2006-07-29 10:12:50 -0400717 strncpy (info->driver, driver_name, sizeof info->driver);
718 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
719 info->eedump_len = data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700720}
721
David Hollis933a27d2006-07-29 10:12:50 -0400722static u32 asix_get_link(struct net_device *net)
723{
724 struct usbnet *dev = netdev_priv(net);
725
726 return mii_link_ok(&dev->mii);
727}
728
729static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
730{
731 struct usbnet *dev = netdev_priv(net);
732
733 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700734}
735
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000736static int asix_set_mac_address(struct net_device *net, void *p)
737{
738 struct usbnet *dev = netdev_priv(net);
739 struct asix_data *data = (struct asix_data *)&dev->data;
740 struct sockaddr *addr = p;
741
742 if (netif_running(net))
743 return -EBUSY;
744 if (!is_valid_ether_addr(addr->sa_data))
745 return -EADDRNOTAVAIL;
746
747 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
748
749 /* We use the 20 byte dev->data
750 * for our 6 byte mac buffer
751 * to avoid allocating memory that
752 * is tricky to free later */
753 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
754 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
755 data->mac_addr);
756
757 return 0;
758}
759
David Brownell2e55cc72005-08-31 09:53:10 -0700760/* We need to override some ethtool_ops so we require our
761 own structure so we don't interfere with other usbnet
762 devices that may be connected at the same time. */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700763static const struct ethtool_ops ax88172_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500764 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400765 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700766 .get_msglevel = usbnet_get_msglevel,
767 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500768 .get_wol = asix_get_wol,
769 .set_wol = asix_set_wol,
770 .get_eeprom_len = asix_get_eeprom_len,
771 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200772 .get_settings = usbnet_get_settings,
773 .set_settings = usbnet_set_settings,
774 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700775};
776
David Hollis933a27d2006-07-29 10:12:50 -0400777static void ax88172_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700778{
779 struct usbnet *dev = netdev_priv(net);
David Hollis933a27d2006-07-29 10:12:50 -0400780 struct asix_data *data = (struct asix_data *)&dev->data;
781 u8 rx_ctl = 0x8c;
David Brownell2e55cc72005-08-31 09:53:10 -0700782
David Hollis933a27d2006-07-29 10:12:50 -0400783 if (net->flags & IFF_PROMISC) {
784 rx_ctl |= 0x01;
Joe Perches8e95a202009-12-03 07:58:21 +0000785 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000786 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400787 rx_ctl |= 0x02;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000788 } else if (netdev_mc_empty(net)) {
David Hollis933a27d2006-07-29 10:12:50 -0400789 /* just broadcast and directed */
790 } else {
791 /* We use the 20 byte dev->data
792 * for our 8 byte filter buffer
793 * to avoid allocating memory that
794 * is tricky to free later */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000795 struct netdev_hw_addr *ha;
David Hollis933a27d2006-07-29 10:12:50 -0400796 u32 crc_bits;
David Hollis933a27d2006-07-29 10:12:50 -0400797
798 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
799
800 /* Build the multicast hash filter. */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000801 netdev_for_each_mc_addr(ha, net) {
802 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Hollis933a27d2006-07-29 10:12:50 -0400803 data->multi_filter[crc_bits >> 3] |=
804 1 << (crc_bits & 7);
David Hollis933a27d2006-07-29 10:12:50 -0400805 }
806
807 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
808 AX_MCAST_FILTER_SIZE, data->multi_filter);
809
810 rx_ctl |= 0x10;
811 }
812
813 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
814}
815
816static int ax88172_link_reset(struct usbnet *dev)
817{
818 u8 mode;
819 struct ethtool_cmd ecmd;
820
821 mii_check_media(&dev->mii, 1, 1);
822 mii_ethtool_gset(&dev->mii, &ecmd);
823 mode = AX88172_MEDIUM_DEFAULT;
824
825 if (ecmd.duplex != DUPLEX_FULL)
826 mode |= ~AX88172_MEDIUM_FD;
827
Joe Perches60b86752010-02-17 10:30:23 +0000828 netdev_dbg(dev->net, "ax88172_link_reset() speed: %d duplex: %d setting mode to 0x%04x\n",
829 ecmd.speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400830
831 asix_write_medium_mode(dev, mode);
832
833 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700834}
835
Stephen Hemminger17033382009-03-20 19:35:55 +0000836static const struct net_device_ops ax88172_netdev_ops = {
837 .ndo_open = usbnet_open,
838 .ndo_stop = usbnet_stop,
839 .ndo_start_xmit = usbnet_start_xmit,
840 .ndo_tx_timeout = usbnet_tx_timeout,
841 .ndo_change_mtu = usbnet_change_mtu,
842 .ndo_set_mac_address = eth_mac_addr,
843 .ndo_validate_addr = eth_validate_addr,
844 .ndo_do_ioctl = asix_ioctl,
845 .ndo_set_multicast_list = ax88172_set_multicast,
846};
847
David Hollis48b1be62006-03-28 20:15:42 -0500848static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
David Brownell2e55cc72005-08-31 09:53:10 -0700849{
850 int ret = 0;
Al Viro51bf2972007-12-22 17:42:36 +0000851 u8 buf[ETH_ALEN];
David Brownell2e55cc72005-08-31 09:53:10 -0700852 int i;
853 unsigned long gpio_bits = dev->driver_info->data;
David Hollis933a27d2006-07-29 10:12:50 -0400854 struct asix_data *data = (struct asix_data *)&dev->data;
855
856 data->eeprom_len = AX88172_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700857
858 usbnet_get_endpoints(dev,intf);
859
David Brownell2e55cc72005-08-31 09:53:10 -0700860 /* Toggle the GPIOs in a manufacturer/model specific way */
861 for (i = 2; i >= 0; i--) {
David Hollis48b1be62006-03-28 20:15:42 -0500862 if ((ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
David Brownell2e55cc72005-08-31 09:53:10 -0700863 (gpio_bits >> (i * 8)) & 0xff, 0, 0,
Al Viro51bf2972007-12-22 17:42:36 +0000864 NULL)) < 0)
865 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700866 msleep(5);
867 }
868
David Hollis933a27d2006-07-29 10:12:50 -0400869 if ((ret = asix_write_rx_ctl(dev, 0x80)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000870 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700871
872 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -0400873 if ((ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID,
Al Viro51bf2972007-12-22 17:42:36 +0000874 0, 0, ETH_ALEN, buf)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700875 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000876 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700877 }
878 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
879
David Brownell2e55cc72005-08-31 09:53:10 -0700880 /* Initialize MII structure */
881 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -0500882 dev->mii.mdio_read = asix_mdio_read;
883 dev->mii.mdio_write = asix_mdio_write;
David Brownell2e55cc72005-08-31 09:53:10 -0700884 dev->mii.phy_id_mask = 0x3f;
885 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -0400886 dev->mii.phy_id = asix_get_phy_addr(dev);
David Brownell2e55cc72005-08-31 09:53:10 -0700887
Stephen Hemminger17033382009-03-20 19:35:55 +0000888 dev->net->netdev_ops = &ax88172_netdev_ops;
David Hollis48b1be62006-03-28 20:15:42 -0500889 dev->net->ethtool_ops = &ax88172_ethtool_ops;
David Brownell2e55cc72005-08-31 09:53:10 -0700890
David Hollis933a27d2006-07-29 10:12:50 -0400891 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
892 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700893 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
894 mii_nway_restart(&dev->mii);
895
896 return 0;
Al Viro51bf2972007-12-22 17:42:36 +0000897
898out:
David Brownell2e55cc72005-08-31 09:53:10 -0700899 return ret;
900}
901
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700902static const struct ethtool_ops ax88772_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500903 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400904 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700905 .get_msglevel = usbnet_get_msglevel,
906 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500907 .get_wol = asix_get_wol,
908 .set_wol = asix_set_wol,
909 .get_eeprom_len = asix_get_eeprom_len,
910 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200911 .get_settings = usbnet_get_settings,
912 .set_settings = usbnet_set_settings,
913 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700914};
915
David Hollis933a27d2006-07-29 10:12:50 -0400916static int ax88772_link_reset(struct usbnet *dev)
917{
918 u16 mode;
919 struct ethtool_cmd ecmd;
920
921 mii_check_media(&dev->mii, 1, 1);
922 mii_ethtool_gset(&dev->mii, &ecmd);
923 mode = AX88772_MEDIUM_DEFAULT;
924
925 if (ecmd.speed != SPEED_100)
926 mode &= ~AX_MEDIUM_PS;
927
928 if (ecmd.duplex != DUPLEX_FULL)
929 mode &= ~AX_MEDIUM_FD;
930
Joe Perches60b86752010-02-17 10:30:23 +0000931 netdev_dbg(dev->net, "ax88772_link_reset() speed: %d duplex: %d setting mode to 0x%04x\n",
932 ecmd.speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400933
934 asix_write_medium_mode(dev, mode);
935
936 return 0;
937}
938
Stephen Hemminger17033382009-03-20 19:35:55 +0000939static const struct net_device_ops ax88772_netdev_ops = {
940 .ndo_open = usbnet_open,
941 .ndo_stop = usbnet_stop,
942 .ndo_start_xmit = usbnet_start_xmit,
943 .ndo_tx_timeout = usbnet_tx_timeout,
944 .ndo_change_mtu = usbnet_change_mtu,
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000945 .ndo_set_mac_address = asix_set_mac_address,
Stephen Hemminger17033382009-03-20 19:35:55 +0000946 .ndo_validate_addr = eth_validate_addr,
947 .ndo_do_ioctl = asix_ioctl,
948 .ndo_set_multicast_list = asix_set_multicast,
949};
950
David Brownell2e55cc72005-08-31 09:53:10 -0700951static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
952{
Andres Salomond0ffff82007-01-11 18:39:16 -0500953 int ret, embd_phy;
David Hollis933a27d2006-07-29 10:12:50 -0400954 u16 rx_ctl;
955 struct asix_data *data = (struct asix_data *)&dev->data;
Al Viro51bf2972007-12-22 17:42:36 +0000956 u8 buf[ETH_ALEN];
David Hollis933a27d2006-07-29 10:12:50 -0400957 u32 phyid;
958
959 data->eeprom_len = AX88772_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700960
961 usbnet_get_endpoints(dev,intf);
962
David Hollis933a27d2006-07-29 10:12:50 -0400963 if ((ret = asix_write_gpio(dev,
964 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000965 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700966
Andres Salomond0ffff82007-01-11 18:39:16 -0500967 /* 0x10 is the phy id of the embedded 10/100 ethernet phy */
968 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
David Hollis48b1be62006-03-28 20:15:42 -0500969 if ((ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT,
Al Viro51bf2972007-12-22 17:42:36 +0000970 embd_phy, 0, 0, NULL)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700971 dbg("Select PHY #1 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000972 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700973 }
974
Andres Salomond0ffff82007-01-11 18:39:16 -0500975 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000976 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700977
978 msleep(150);
David Hollis48b1be62006-03-28 20:15:42 -0500979 if ((ret = asix_sw_reset(dev, AX_SWRESET_CLEAR)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000980 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700981
982 msleep(150);
Andres Salomond0ffff82007-01-11 18:39:16 -0500983 if (embd_phy) {
984 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000985 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -0500986 }
987 else {
988 if ((ret = asix_sw_reset(dev, AX_SWRESET_PRTE)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000989 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -0500990 }
David Brownell2e55cc72005-08-31 09:53:10 -0700991
992 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -0400993 rx_ctl = asix_read_rx_ctl(dev);
994 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
995 if ((ret = asix_write_rx_ctl(dev, 0x0000)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000996 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700997
David Hollis933a27d2006-07-29 10:12:50 -0400998 rx_ctl = asix_read_rx_ctl(dev);
999 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
1000
David Brownell2e55cc72005-08-31 09:53:10 -07001001 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -04001002 if ((ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
David Brownell2e55cc72005-08-31 09:53:10 -07001003 0, 0, ETH_ALEN, buf)) < 0) {
1004 dbg("Failed to read MAC address: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001005 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001006 }
1007 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1008
David Brownell2e55cc72005-08-31 09:53:10 -07001009 /* Initialize MII structure */
1010 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -05001011 dev->mii.mdio_read = asix_mdio_read;
1012 dev->mii.mdio_write = asix_mdio_write;
David Hollis933a27d2006-07-29 10:12:50 -04001013 dev->mii.phy_id_mask = 0x1f;
1014 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -04001015 dev->mii.phy_id = asix_get_phy_addr(dev);
1016
1017 phyid = asix_get_phyid(dev);
1018 dbg("PHYID=0x%08x", phyid);
David Brownell2e55cc72005-08-31 09:53:10 -07001019
David Hollis48b1be62006-03-28 20:15:42 -05001020 if ((ret = asix_sw_reset(dev, AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001021 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001022
David Brownell2e55cc72005-08-31 09:53:10 -07001023 msleep(150);
1024
David Hollis48b1be62006-03-28 20:15:42 -05001025 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001026 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001027
David Hollis48b1be62006-03-28 20:15:42 -05001028 msleep(150);
1029
Stephen Hemminger17033382009-03-20 19:35:55 +00001030 dev->net->netdev_ops = &ax88772_netdev_ops;
David Brownell2e55cc72005-08-31 09:53:10 -07001031 dev->net->ethtool_ops = &ax88772_ethtool_ops;
1032
David Hollis933a27d2006-07-29 10:12:50 -04001033 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
1034 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -07001035 ADVERTISE_ALL | ADVERTISE_CSMA);
1036 mii_nway_restart(&dev->mii);
1037
David Hollis933a27d2006-07-29 10:12:50 -04001038 if ((ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001039 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001040
David Hollis48b1be62006-03-28 20:15:42 -05001041 if ((ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
David Brownell2e55cc72005-08-31 09:53:10 -07001042 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
Al Viro51bf2972007-12-22 17:42:36 +00001043 AX88772_IPG2_DEFAULT, 0, NULL)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -07001044 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001045 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001046 }
David Brownell2e55cc72005-08-31 09:53:10 -07001047
1048 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
David Hollis933a27d2006-07-29 10:12:50 -04001049 if ((ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001050 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001051
David Hollis933a27d2006-07-29 10:12:50 -04001052 rx_ctl = asix_read_rx_ctl(dev);
1053 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1054
1055 rx_ctl = asix_read_medium_status(dev);
1056 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1057
David Brownell2e55cc72005-08-31 09:53:10 -07001058 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1059 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1060 /* hard_mtu is still the default - the device does not support
1061 jumbo eth frames */
1062 dev->rx_urb_size = 2048;
1063 }
David Brownell2e55cc72005-08-31 09:53:10 -07001064 return 0;
1065
Al Viro51bf2972007-12-22 17:42:36 +00001066out:
David Brownell2e55cc72005-08-31 09:53:10 -07001067 return ret;
1068}
1069
David Hollis933a27d2006-07-29 10:12:50 -04001070static struct ethtool_ops ax88178_ethtool_ops = {
1071 .get_drvinfo = asix_get_drvinfo,
1072 .get_link = asix_get_link,
David Hollis933a27d2006-07-29 10:12:50 -04001073 .get_msglevel = usbnet_get_msglevel,
1074 .set_msglevel = usbnet_set_msglevel,
1075 .get_wol = asix_get_wol,
1076 .set_wol = asix_set_wol,
1077 .get_eeprom_len = asix_get_eeprom_len,
1078 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001079 .get_settings = usbnet_get_settings,
1080 .set_settings = usbnet_set_settings,
1081 .nway_reset = usbnet_nway_reset,
David Hollis933a27d2006-07-29 10:12:50 -04001082};
1083
1084static int marvell_phy_init(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -07001085{
David Hollis933a27d2006-07-29 10:12:50 -04001086 struct asix_data *data = (struct asix_data *)&dev->data;
1087 u16 reg;
David Brownell2e55cc72005-08-31 09:53:10 -07001088
Joe Perches60b86752010-02-17 10:30:23 +00001089 netdev_dbg(dev->net, "marvell_phy_init()\n");
David Brownell2e55cc72005-08-31 09:53:10 -07001090
David Hollis933a27d2006-07-29 10:12:50 -04001091 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
Joe Perches60b86752010-02-17 10:30:23 +00001092 netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001093
David Hollis933a27d2006-07-29 10:12:50 -04001094 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1095 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
David Brownell2e55cc72005-08-31 09:53:10 -07001096
David Hollis933a27d2006-07-29 10:12:50 -04001097 if (data->ledmode) {
1098 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1099 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001100 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001101
David Hollis933a27d2006-07-29 10:12:50 -04001102 reg &= 0xf8ff;
1103 reg |= (1 + 0x0100);
1104 asix_mdio_write(dev->net, dev->mii.phy_id,
1105 MII_MARVELL_LED_CTRL, reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001106
David Hollis933a27d2006-07-29 10:12:50 -04001107 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1108 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001109 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001110 reg &= 0xfc0f;
David Brownell2e55cc72005-08-31 09:53:10 -07001111 }
1112
David Brownell2e55cc72005-08-31 09:53:10 -07001113 return 0;
1114}
1115
David Hollis933a27d2006-07-29 10:12:50 -04001116static int marvell_led_status(struct usbnet *dev, u16 speed)
1117{
1118 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1119
Joe Perches60b86752010-02-17 10:30:23 +00001120 netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001121
1122 /* Clear out the center LED bits - 0x03F0 */
1123 reg &= 0xfc0f;
1124
1125 switch (speed) {
1126 case SPEED_1000:
1127 reg |= 0x03e0;
1128 break;
1129 case SPEED_100:
1130 reg |= 0x03b0;
1131 break;
1132 default:
1133 reg |= 0x02f0;
1134 }
1135
Joe Perches60b86752010-02-17 10:30:23 +00001136 netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001137 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1138
1139 return 0;
1140}
1141
1142static int ax88178_link_reset(struct usbnet *dev)
1143{
1144 u16 mode;
1145 struct ethtool_cmd ecmd;
1146 struct asix_data *data = (struct asix_data *)&dev->data;
1147
Joe Perches60b86752010-02-17 10:30:23 +00001148 netdev_dbg(dev->net, "ax88178_link_reset()\n");
David Hollis933a27d2006-07-29 10:12:50 -04001149
1150 mii_check_media(&dev->mii, 1, 1);
1151 mii_ethtool_gset(&dev->mii, &ecmd);
1152 mode = AX88178_MEDIUM_DEFAULT;
1153
1154 if (ecmd.speed == SPEED_1000)
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001155 mode |= AX_MEDIUM_GM;
David Hollis933a27d2006-07-29 10:12:50 -04001156 else if (ecmd.speed == SPEED_100)
1157 mode |= AX_MEDIUM_PS;
1158 else
1159 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1160
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001161 mode |= AX_MEDIUM_ENCK;
1162
David Hollis933a27d2006-07-29 10:12:50 -04001163 if (ecmd.duplex == DUPLEX_FULL)
1164 mode |= AX_MEDIUM_FD;
1165 else
1166 mode &= ~AX_MEDIUM_FD;
1167
Joe Perches60b86752010-02-17 10:30:23 +00001168 netdev_dbg(dev->net, "ax88178_link_reset() speed: %d duplex: %d setting mode to 0x%04x\n",
1169 ecmd.speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -04001170
1171 asix_write_medium_mode(dev, mode);
1172
1173 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
1174 marvell_led_status(dev, ecmd.speed);
1175
1176 return 0;
1177}
1178
1179static void ax88178_set_mfb(struct usbnet *dev)
1180{
1181 u16 mfb = AX_RX_CTL_MFB_16384;
1182 u16 rxctl;
1183 u16 medium;
1184 int old_rx_urb_size = dev->rx_urb_size;
1185
1186 if (dev->hard_mtu < 2048) {
1187 dev->rx_urb_size = 2048;
1188 mfb = AX_RX_CTL_MFB_2048;
1189 } else if (dev->hard_mtu < 4096) {
1190 dev->rx_urb_size = 4096;
1191 mfb = AX_RX_CTL_MFB_4096;
1192 } else if (dev->hard_mtu < 8192) {
1193 dev->rx_urb_size = 8192;
1194 mfb = AX_RX_CTL_MFB_8192;
1195 } else if (dev->hard_mtu < 16384) {
1196 dev->rx_urb_size = 16384;
1197 mfb = AX_RX_CTL_MFB_16384;
1198 }
1199
1200 rxctl = asix_read_rx_ctl(dev);
1201 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1202
1203 medium = asix_read_medium_status(dev);
1204 if (dev->net->mtu > 1500)
1205 medium |= AX_MEDIUM_JFE;
1206 else
1207 medium &= ~AX_MEDIUM_JFE;
1208 asix_write_medium_mode(dev, medium);
1209
1210 if (dev->rx_urb_size > old_rx_urb_size)
1211 usbnet_unlink_rx_urbs(dev);
1212}
1213
1214static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1215{
1216 struct usbnet *dev = netdev_priv(net);
1217 int ll_mtu = new_mtu + net->hard_header_len + 4;
1218
Joe Perches60b86752010-02-17 10:30:23 +00001219 netdev_dbg(dev->net, "ax88178_change_mtu() new_mtu=%d\n", new_mtu);
David Hollis933a27d2006-07-29 10:12:50 -04001220
1221 if (new_mtu <= 0 || ll_mtu > 16384)
1222 return -EINVAL;
1223
1224 if ((ll_mtu % dev->maxpacket) == 0)
1225 return -EDOM;
1226
1227 net->mtu = new_mtu;
1228 dev->hard_mtu = net->mtu + net->hard_header_len;
1229 ax88178_set_mfb(dev);
1230
1231 return 0;
1232}
1233
Stephen Hemminger17033382009-03-20 19:35:55 +00001234static const struct net_device_ops ax88178_netdev_ops = {
1235 .ndo_open = usbnet_open,
1236 .ndo_stop = usbnet_stop,
1237 .ndo_start_xmit = usbnet_start_xmit,
1238 .ndo_tx_timeout = usbnet_tx_timeout,
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +00001239 .ndo_set_mac_address = asix_set_mac_address,
Stephen Hemminger17033382009-03-20 19:35:55 +00001240 .ndo_validate_addr = eth_validate_addr,
1241 .ndo_set_multicast_list = asix_set_multicast,
1242 .ndo_do_ioctl = asix_ioctl,
1243 .ndo_change_mtu = ax88178_change_mtu,
1244};
1245
David Hollis933a27d2006-07-29 10:12:50 -04001246static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1247{
1248 struct asix_data *data = (struct asix_data *)&dev->data;
1249 int ret;
Al Viro51bf2972007-12-22 17:42:36 +00001250 u8 buf[ETH_ALEN];
1251 __le16 eeprom;
1252 u8 status;
David Hollis933a27d2006-07-29 10:12:50 -04001253 int gpio0 = 0;
1254 u32 phyid;
1255
1256 usbnet_get_endpoints(dev,intf);
1257
Al Viro51bf2972007-12-22 17:42:36 +00001258 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1259 dbg("GPIO Status: 0x%04x", status);
David Hollis933a27d2006-07-29 10:12:50 -04001260
1261 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1262 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1263 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1264
1265 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1266
Al Viro51bf2972007-12-22 17:42:36 +00001267 if (eeprom == cpu_to_le16(0xffff)) {
David Hollis933a27d2006-07-29 10:12:50 -04001268 data->phymode = PHY_MODE_MARVELL;
1269 data->ledmode = 0;
1270 gpio0 = 1;
1271 } else {
Al Viro51bf2972007-12-22 17:42:36 +00001272 data->phymode = le16_to_cpu(eeprom) & 7;
1273 data->ledmode = le16_to_cpu(eeprom) >> 8;
1274 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
David Hollis933a27d2006-07-29 10:12:50 -04001275 }
1276 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
1277
1278 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
Al Viro51bf2972007-12-22 17:42:36 +00001279 if ((le16_to_cpu(eeprom) >> 8) != 1) {
David Hollis933a27d2006-07-29 10:12:50 -04001280 asix_write_gpio(dev, 0x003c, 30);
1281 asix_write_gpio(dev, 0x001c, 300);
1282 asix_write_gpio(dev, 0x003c, 30);
1283 } else {
1284 dbg("gpio phymode == 1 path");
1285 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1286 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1287 }
1288
1289 asix_sw_reset(dev, 0);
1290 msleep(150);
1291
1292 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1293 msleep(150);
1294
1295 asix_write_rx_ctl(dev, 0);
1296
1297 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -04001298 if ((ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
1299 0, 0, ETH_ALEN, buf)) < 0) {
1300 dbg("Failed to read MAC address: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001301 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001302 }
1303 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1304
1305 /* Initialize MII structure */
1306 dev->mii.dev = dev->net;
1307 dev->mii.mdio_read = asix_mdio_read;
1308 dev->mii.mdio_write = asix_mdio_write;
1309 dev->mii.phy_id_mask = 0x1f;
1310 dev->mii.reg_num_mask = 0xff;
1311 dev->mii.supports_gmii = 1;
David Hollis933a27d2006-07-29 10:12:50 -04001312 dev->mii.phy_id = asix_get_phy_addr(dev);
Stephen Hemminger17033382009-03-20 19:35:55 +00001313
1314 dev->net->netdev_ops = &ax88178_netdev_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001315 dev->net->ethtool_ops = &ax88178_ethtool_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001316
1317 phyid = asix_get_phyid(dev);
1318 dbg("PHYID=0x%08x", phyid);
1319
1320 if (data->phymode == PHY_MODE_MARVELL) {
1321 marvell_phy_init(dev);
1322 msleep(60);
1323 }
1324
1325 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1326 BMCR_RESET | BMCR_ANENABLE);
1327 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1328 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1329 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1330 ADVERTISE_1000FULL);
1331
1332 mii_nway_restart(&dev->mii);
1333
1334 if ((ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001335 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001336
1337 if ((ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001338 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001339
1340 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1341 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1342 /* hard_mtu is still the default - the device does not support
1343 jumbo eth frames */
1344 dev->rx_urb_size = 2048;
1345 }
David Hollis933a27d2006-07-29 10:12:50 -04001346 return 0;
1347
Al Viro51bf2972007-12-22 17:42:36 +00001348out:
David Hollis933a27d2006-07-29 10:12:50 -04001349 return ret;
1350}
1351
David Brownell2e55cc72005-08-31 09:53:10 -07001352static const struct driver_info ax8817x_info = {
1353 .description = "ASIX AX8817x USB 2.0 Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001354 .bind = ax88172_bind,
1355 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001356 .link_reset = ax88172_link_reset,
1357 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001358 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001359 .data = 0x00130103,
1360};
1361
1362static const struct driver_info dlink_dub_e100_info = {
1363 .description = "DLink DUB-E100 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001364 .bind = ax88172_bind,
1365 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001366 .link_reset = ax88172_link_reset,
1367 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001368 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001369 .data = 0x009f9d9f,
1370};
1371
1372static const struct driver_info netgear_fa120_info = {
1373 .description = "Netgear FA-120 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001374 .bind = ax88172_bind,
1375 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001376 .link_reset = ax88172_link_reset,
1377 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001378 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001379 .data = 0x00130103,
1380};
1381
1382static const struct driver_info hawking_uf200_info = {
1383 .description = "Hawking UF200 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001384 .bind = ax88172_bind,
1385 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001386 .link_reset = ax88172_link_reset,
1387 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001388 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001389 .data = 0x001f1d1f,
1390};
1391
1392static const struct driver_info ax88772_info = {
1393 .description = "ASIX AX88772 USB 2.0 Ethernet",
1394 .bind = ax88772_bind,
David Hollis48b1be62006-03-28 20:15:42 -05001395 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001396 .link_reset = ax88772_link_reset,
1397 .reset = ax88772_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001398 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001399 .rx_fixup = asix_rx_fixup,
1400 .tx_fixup = asix_tx_fixup,
1401};
1402
1403static const struct driver_info ax88178_info = {
1404 .description = "ASIX AX88178 USB 2.0 Ethernet",
1405 .bind = ax88178_bind,
1406 .status = asix_status,
1407 .link_reset = ax88178_link_reset,
1408 .reset = ax88178_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001409 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001410 .rx_fixup = asix_rx_fixup,
1411 .tx_fixup = asix_tx_fixup,
David Brownell2e55cc72005-08-31 09:53:10 -07001412};
1413
1414static const struct usb_device_id products [] = {
1415{
1416 // Linksys USB200M
1417 USB_DEVICE (0x077b, 0x2226),
1418 .driver_info = (unsigned long) &ax8817x_info,
1419}, {
1420 // Netgear FA120
1421 USB_DEVICE (0x0846, 0x1040),
1422 .driver_info = (unsigned long) &netgear_fa120_info,
1423}, {
1424 // DLink DUB-E100
1425 USB_DEVICE (0x2001, 0x1a00),
1426 .driver_info = (unsigned long) &dlink_dub_e100_info,
1427}, {
1428 // Intellinet, ST Lab USB Ethernet
1429 USB_DEVICE (0x0b95, 0x1720),
1430 .driver_info = (unsigned long) &ax8817x_info,
1431}, {
1432 // Hawking UF200, TrendNet TU2-ET100
1433 USB_DEVICE (0x07b8, 0x420a),
1434 .driver_info = (unsigned long) &hawking_uf200_info,
1435}, {
David Hollis39c4b382007-02-20 08:02:24 -05001436 // Billionton Systems, USB2AR
1437 USB_DEVICE (0x08dd, 0x90ff),
1438 .driver_info = (unsigned long) &ax8817x_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001439}, {
1440 // ATEN UC210T
1441 USB_DEVICE (0x0557, 0x2009),
1442 .driver_info = (unsigned long) &ax8817x_info,
1443}, {
1444 // Buffalo LUA-U2-KTX
1445 USB_DEVICE (0x0411, 0x003d),
1446 .driver_info = (unsigned long) &ax8817x_info,
1447}, {
Mattia Dongiliac7b77f2008-05-06 20:42:35 -07001448 // Buffalo LUA-U2-GT 10/100/1000
1449 USB_DEVICE (0x0411, 0x006e),
1450 .driver_info = (unsigned long) &ax88178_info,
1451}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001452 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1453 USB_DEVICE (0x6189, 0x182d),
1454 .driver_info = (unsigned long) &ax8817x_info,
1455}, {
1456 // corega FEther USB2-TX
1457 USB_DEVICE (0x07aa, 0x0017),
1458 .driver_info = (unsigned long) &ax8817x_info,
1459}, {
1460 // Surecom EP-1427X-2
1461 USB_DEVICE (0x1189, 0x0893),
1462 .driver_info = (unsigned long) &ax8817x_info,
1463}, {
1464 // goodway corp usb gwusb2e
1465 USB_DEVICE (0x1631, 0x6200),
1466 .driver_info = (unsigned long) &ax8817x_info,
1467}, {
David Hollis39c4b382007-02-20 08:02:24 -05001468 // JVC MP-PRX1 Port Replicator
1469 USB_DEVICE (0x04f1, 0x3008),
1470 .driver_info = (unsigned long) &ax8817x_info,
1471}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001472 // ASIX AX88772 10/100
David Hollis39c4b382007-02-20 08:02:24 -05001473 USB_DEVICE (0x0b95, 0x7720),
1474 .driver_info = (unsigned long) &ax88772_info,
David Hollis5e0f76c2005-12-19 13:58:38 -05001475}, {
Eduard Warkentin73274132006-05-18 01:13:17 -07001476 // ASIX AX88178 10/100/1000
1477 USB_DEVICE (0x0b95, 0x1780),
David Hollis933a27d2006-07-29 10:12:50 -04001478 .driver_info = (unsigned long) &ax88178_info,
Eduard Warkentin73274132006-05-18 01:13:17 -07001479}, {
David Hollis5e0f76c2005-12-19 13:58:38 -05001480 // Linksys USB200M Rev 2
1481 USB_DEVICE (0x13b1, 0x0018),
1482 .driver_info = (unsigned long) &ax88772_info,
David Hollis5732ce82006-01-05 14:39:49 -05001483}, {
1484 // 0Q0 cable ethernet
1485 USB_DEVICE (0x1557, 0x7720),
1486 .driver_info = (unsigned long) &ax88772_info,
David Hollis933a27d2006-07-29 10:12:50 -04001487}, {
1488 // DLink DUB-E100 H/W Ver B1
1489 USB_DEVICE (0x07d1, 0x3c05),
1490 .driver_info = (unsigned long) &ax88772_info,
1491}, {
David Hollisb923e7f2006-09-21 08:09:29 -04001492 // DLink DUB-E100 H/W Ver B1 Alternate
1493 USB_DEVICE (0x2001, 0x3c05),
1494 .driver_info = (unsigned long) &ax88772_info,
1495}, {
David Hollis933a27d2006-07-29 10:12:50 -04001496 // Linksys USB1000
1497 USB_DEVICE (0x1737, 0x0039),
1498 .driver_info = (unsigned long) &ax88178_info,
YOSHIFUJI Hideaki / 吉藤英明b29cf312007-01-26 22:57:38 +09001499}, {
1500 // IO-DATA ETG-US2
1501 USB_DEVICE (0x04bb, 0x0930),
1502 .driver_info = (unsigned long) &ax88178_info,
David Hollis2ed22bc2007-05-23 07:33:17 -04001503}, {
1504 // Belkin F5D5055
1505 USB_DEVICE(0x050d, 0x5055),
1506 .driver_info = (unsigned long) &ax88178_info,
Aurelien Nephtali3d60efb52008-05-14 17:04:13 -07001507}, {
1508 // Apple USB Ethernet Adapter
1509 USB_DEVICE(0x05ac, 0x1402),
1510 .driver_info = (unsigned long) &ax88772_info,
Jason Cooperccf95402008-11-11 13:02:53 -05001511}, {
1512 // Cables-to-Go USB Ethernet Adapter
1513 USB_DEVICE(0x0b95, 0x772a),
1514 .driver_info = (unsigned long) &ax88772_info,
Greg Kroah-Hartmanfef7cc02009-02-24 23:52:24 -08001515}, {
1516 // ABOCOM for pci
1517 USB_DEVICE(0x14ea, 0xab11),
1518 .driver_info = (unsigned long) &ax88178_info,
1519}, {
1520 // ASIX 88772a
1521 USB_DEVICE(0x0db0, 0xa877),
1522 .driver_info = (unsigned long) &ax88772_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001523},
1524 { }, // END
1525};
1526MODULE_DEVICE_TABLE(usb, products);
1527
1528static struct usb_driver asix_driver = {
David Brownell2e55cc72005-08-31 09:53:10 -07001529 .name = "asix",
1530 .id_table = products,
1531 .probe = usbnet_probe,
1532 .suspend = usbnet_suspend,
1533 .resume = usbnet_resume,
1534 .disconnect = usbnet_disconnect,
Oliver Neukuma11a6542007-08-03 13:52:19 +02001535 .supports_autosuspend = 1,
David Brownell2e55cc72005-08-31 09:53:10 -07001536};
1537
1538static int __init asix_init(void)
1539{
1540 return usb_register(&asix_driver);
1541}
1542module_init(asix_init);
1543
1544static void __exit asix_exit(void)
1545{
1546 usb_deregister(&asix_driver);
1547}
1548module_exit(asix_exit);
1549
1550MODULE_AUTHOR("David Hollis");
1551MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1552MODULE_LICENSE("GPL");
1553