blob: 42b5151aa78ae8523b27493394ba87e9900338a5 [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
allanf87ce5b2011-12-22 20:38:51 +000039#define DRIVER_VERSION "22-Dec-2011"
Grant Grundler83e1b912011-10-04 09:55:18 +000040#define DRIVER_NAME "asix"
David Hollis933a27d2006-07-29 10:12:50 -040041
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 | \
Grant Grundler83e1b912011-10-04 09:55:18 +0000118 AX_MEDIUM_RE)
David Hollis933a27d2006-07-29 10:12:50 -0400119
120#define AX88772_MEDIUM_DEFAULT \
121 (AX_MEDIUM_FD | AX_MEDIUM_RFC | \
122 AX_MEDIUM_TFC | AX_MEDIUM_PS | \
Grant Grundler83e1b912011-10-04 09:55:18 +0000123 AX_MEDIUM_AC | AX_MEDIUM_RE)
David Hollis933a27d2006-07-29 10:12:50 -0400124
125/* AX88772 & AX88178 RX_CTL values */
Grant Grundler83e1b912011-10-04 09:55:18 +0000126#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
David Hollis933a27d2006-07-29 10:12:50 -0400137
Grant Grundler83e1b912011-10-04 09:55:18 +0000138#define AX_DEFAULT_RX_CTL (AX_RX_CTL_SO | AX_RX_CTL_AB)
David Hollis933a27d2006-07-29 10:12:50 -0400139
140/* GPIO 0 .. 2 toggles */
141#define AX_GPIO_GPO0EN 0x01 /* GPIO0 Output enable */
142#define AX_GPIO_GPO_0 0x02 /* GPIO0 Output value */
143#define AX_GPIO_GPO1EN 0x04 /* GPIO1 Output enable */
144#define AX_GPIO_GPO_1 0x08 /* GPIO1 Output value */
145#define AX_GPIO_GPO2EN 0x10 /* GPIO2 Output enable */
146#define AX_GPIO_GPO_2 0x20 /* GPIO2 Output value */
147#define AX_GPIO_RESERVED 0x40 /* Reserved */
148#define AX_GPIO_RSE 0x80 /* Reload serial EEPROM */
149
150#define AX_EEPROM_MAGIC 0xdeadbeef
151#define AX88172_EEPROM_LEN 0x40
152#define AX88772_EEPROM_LEN 0xff
153
154#define PHY_MODE_MARVELL 0x0000
155#define MII_MARVELL_LED_CTRL 0x0018
156#define MII_MARVELL_STATUS 0x001b
157#define MII_MARVELL_CTRL 0x0014
158
159#define MARVELL_LED_MANUAL 0x0019
160
161#define MARVELL_STATUS_HWCFG 0x0004
162
163#define MARVELL_CTRL_TXDELAY 0x0002
164#define MARVELL_CTRL_RXDELAY 0x0080
David Brownell2e55cc72005-08-31 09:53:10 -0700165
Grant Grundler34861402011-11-15 07:12:39 +0000166#define PHY_MODE_RTL8211CL 0x000C
Grant Grundler610d8852011-10-04 09:55:17 +0000167
David Brownell2e55cc72005-08-31 09:53:10 -0700168/* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
David Hollis48b1be62006-03-28 20:15:42 -0500169struct asix_data {
David Brownell2e55cc72005-08-31 09:53:10 -0700170 u8 multi_filter[AX_MCAST_FILTER_SIZE];
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000171 u8 mac_addr[ETH_ALEN];
David Hollis933a27d2006-07-29 10:12:50 -0400172 u8 phymode;
173 u8 ledmode;
174 u8 eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700175};
176
177struct ax88172_int_data {
Al Viro51bf2972007-12-22 17:42:36 +0000178 __le16 res1;
David Brownell2e55cc72005-08-31 09:53:10 -0700179 u8 link;
Al Viro51bf2972007-12-22 17:42:36 +0000180 __le16 res2;
David Brownell2e55cc72005-08-31 09:53:10 -0700181 u8 status;
Al Viro51bf2972007-12-22 17:42:36 +0000182 __le16 res3;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000183} __packed;
David Brownell2e55cc72005-08-31 09:53:10 -0700184
David Hollis48b1be62006-03-28 20:15:42 -0500185static int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700186 u16 size, void *data)
187{
Al Viro51bf2972007-12-22 17:42:36 +0000188 void *buf;
189 int err = -ENOMEM;
190
Joe Perches60b86752010-02-17 10:30:23 +0000191 netdev_dbg(dev->net, "asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
192 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000193
194 buf = kmalloc(size, GFP_KERNEL);
195 if (!buf)
196 goto out;
197
198 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700199 dev->udev,
200 usb_rcvctrlpipe(dev->udev, 0),
201 cmd,
202 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
203 value,
204 index,
Al Viro51bf2972007-12-22 17:42:36 +0000205 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700206 size,
207 USB_CTRL_GET_TIMEOUT);
Russ Dill94d43362008-01-09 21:32:07 -0700208 if (err == size)
Al Viro51bf2972007-12-22 17:42:36 +0000209 memcpy(data, buf, size);
Russ Dill94d43362008-01-09 21:32:07 -0700210 else if (err >= 0)
211 err = -EINVAL;
Al Viro51bf2972007-12-22 17:42:36 +0000212 kfree(buf);
213
214out:
215 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700216}
217
David Hollis48b1be62006-03-28 20:15:42 -0500218static int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700219 u16 size, void *data)
220{
Al Viro51bf2972007-12-22 17:42:36 +0000221 void *buf = NULL;
222 int err = -ENOMEM;
223
Joe Perches60b86752010-02-17 10:30:23 +0000224 netdev_dbg(dev->net, "asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
225 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000226
227 if (data) {
Julia Lawall99bf2362010-05-15 11:20:45 +0000228 buf = kmemdup(data, size, GFP_KERNEL);
Al Viro51bf2972007-12-22 17:42:36 +0000229 if (!buf)
230 goto out;
Al Viro51bf2972007-12-22 17:42:36 +0000231 }
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);
Grant Grundler83e1b912011-10-04 09:55:18 +0000272
273 urb = usb_alloc_urb(0, GFP_ATOMIC);
274 if (!urb) {
Joe Perches60b86752010-02-17 10:30:23 +0000275 netdev_err(dev->net, "Error allocating URB in write_cmd_async!\n");
David Hollis933a27d2006-07-29 10:12:50 -0400276 return;
David Hollis48b1be62006-03-28 20:15:42 -0500277 }
David Hollis933a27d2006-07-29 10:12:50 -0400278
Grant Grundler83e1b912011-10-04 09:55:18 +0000279 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
280 if (!req) {
Joe Perches60b86752010-02-17 10:30:23 +0000281 netdev_err(dev->net, "Failed to allocate memory for control request\n");
David Hollis933a27d2006-07-29 10:12:50 -0400282 usb_free_urb(urb);
283 return;
284 }
285
286 req->bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
287 req->bRequest = cmd;
Oliver Neukum9aa742e2006-11-23 12:45:31 +0100288 req->wValue = cpu_to_le16(value);
289 req->wIndex = cpu_to_le16(index);
290 req->wLength = cpu_to_le16(size);
David Hollis933a27d2006-07-29 10:12:50 -0400291
292 usb_fill_control_urb(urb, dev->udev,
293 usb_sndctrlpipe(dev->udev, 0),
294 (void *)req, data, size,
295 asix_async_cmd_callback, req);
296
Grant Grundler83e1b912011-10-04 09:55:18 +0000297 status = usb_submit_urb(urb, GFP_ATOMIC);
298 if (status < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000299 netdev_err(dev->net, "Error submitting the control message: status=%d\n",
300 status);
David Hollis933a27d2006-07-29 10:12:50 -0400301 kfree(req);
302 usb_free_urb(urb);
303 }
David Hollis48b1be62006-03-28 20:15:42 -0500304}
305
David Hollis933a27d2006-07-29 10:12:50 -0400306static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
David Hollis48b1be62006-03-28 20:15:42 -0500307{
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000308 int offset = 0;
David Hollis48b1be62006-03-28 20:15:42 -0500309
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000310 while (offset + sizeof(u32) < skb->len) {
311 struct sk_buff *ax_skb;
312 u16 size;
313 u32 header = get_unaligned_le32(skb->data + offset);
David Hollis48b1be62006-03-28 20:15:42 -0500314
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000315 offset += sizeof(u32);
Marek Vasutbc466e62011-07-26 16:44:46 +0000316
David Hollis933a27d2006-07-29 10:12:50 -0400317 /* get the packet length */
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000318 size = (u16) (header & 0x7ff);
319 if (size != ((~header >> 16) & 0x07ff)) {
320 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length\n");
321 return 0;
Neil Jones3f78d1f2010-05-17 17:18:28 -0700322 }
323
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000324 if ((size > dev->net->mtu + ETH_HLEN) ||
325 (size + offset > skb->len)) {
Joe Perches60b86752010-02-17 10:30:23 +0000326 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
327 size);
David Hollis933a27d2006-07-29 10:12:50 -0400328 return 0;
329 }
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000330 ax_skb = netdev_alloc_skb_ip_align(dev->net, size);
331 if (!ax_skb)
David Hollis933a27d2006-07-29 10:12:50 -0400332 return 0;
David Hollis933a27d2006-07-29 10:12:50 -0400333
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000334 skb_put(ax_skb, size);
335 memcpy(ax_skb->data, skb->data + offset, size);
336 usbnet_skb_return(dev, ax_skb);
David Hollis933a27d2006-07-29 10:12:50 -0400337
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000338 offset += (size + 1) & 0xfffe;
David Hollis933a27d2006-07-29 10:12:50 -0400339 }
340
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000341 if (skb->len != offset) {
Joe Perches60b86752010-02-17 10:30:23 +0000342 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d\n",
343 skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400344 return 0;
345 }
346 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500347}
348
David Hollis933a27d2006-07-29 10:12:50 -0400349static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
350 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500351{
David Hollis933a27d2006-07-29 10:12:50 -0400352 int padlen;
353 int headroom = skb_headroom(skb);
354 int tailroom = skb_tailroom(skb);
355 u32 packet_len;
356 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500357
Ingo van Lil2a580942012-04-23 22:05:38 +0000358 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500359
Joe Perches8e95a202009-12-03 07:58:21 +0000360 if ((!skb_cloned(skb)) &&
361 ((headroom + tailroom) >= (4 + padlen))) {
David Hollis933a27d2006-07-29 10:12:50 -0400362 if ((headroom < 4) || (tailroom < padlen)) {
363 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700364 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400365 }
366 } else {
367 struct sk_buff *skb2;
368 skb2 = skb_copy_expand(skb, 4, padlen, flags);
369 dev_kfree_skb_any(skb);
370 skb = skb2;
371 if (!skb)
372 return NULL;
373 }
374
375 skb_push(skb, 4);
376 packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4);
David Hollis57e4f042007-02-05 12:03:03 -0500377 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300378 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400379
Ingo van Lil2a580942012-04-23 22:05:38 +0000380 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500381 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700382 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400383 skb_put(skb, sizeof(padbytes));
384 }
385 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500386}
387
388static void asix_status(struct usbnet *dev, struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700389{
390 struct ax88172_int_data *event;
391 int link;
392
393 if (urb->actual_length < 8)
394 return;
395
396 event = urb->transfer_buffer;
397 link = event->link & 0x01;
398 if (netif_carrier_ok(dev->net) != link) {
399 if (link) {
400 netif_carrier_on(dev->net);
401 usbnet_defer_kevent (dev, EVENT_LINK_RESET );
402 } else
403 netif_carrier_off(dev->net);
Joe Perches60b86752010-02-17 10:30:23 +0000404 netdev_dbg(dev->net, "Link Status is: %d\n", link);
David Brownell2e55cc72005-08-31 09:53:10 -0700405 }
406}
407
David Hollis933a27d2006-07-29 10:12:50 -0400408static inline int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700409{
David Hollis933a27d2006-07-29 10:12:50 -0400410 int ret;
411 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
412 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000413 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400414 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700415}
416
David Hollis933a27d2006-07-29 10:12:50 -0400417static inline int asix_set_hw_mii(struct usbnet *dev)
418{
419 int ret;
420 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
421 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000422 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400423 return ret;
424}
425
426static inline int asix_get_phy_addr(struct usbnet *dev)
427{
Al Viro51bf2972007-12-22 17:42:36 +0000428 u8 buf[2];
429 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400430
Joe Perches60b86752010-02-17 10:30:23 +0000431 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400432
Al Viro51bf2972007-12-22 17:42:36 +0000433 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000434 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000435 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400436 }
Joe Perches60b86752010-02-17 10:30:23 +0000437 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
438 *((__le16 *)buf));
Al Viro51bf2972007-12-22 17:42:36 +0000439 ret = buf[1];
440
441out:
David Hollis933a27d2006-07-29 10:12:50 -0400442 return ret;
443}
444
445static int asix_sw_reset(struct usbnet *dev, u8 flags)
446{
447 int ret;
448
449 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
450 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000451 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400452
453 return ret;
454}
455
456static u16 asix_read_rx_ctl(struct usbnet *dev)
457{
Al Viro51bf2972007-12-22 17:42:36 +0000458 __le16 v;
459 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400460
Al Viro51bf2972007-12-22 17:42:36 +0000461 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000462 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000463 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400464 }
Al Viro51bf2972007-12-22 17:42:36 +0000465 ret = le16_to_cpu(v);
466out:
David Hollis933a27d2006-07-29 10:12:50 -0400467 return ret;
468}
469
470static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
471{
472 int ret;
473
Joe Perches60b86752010-02-17 10:30:23 +0000474 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400475 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
476 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000477 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
478 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400479
480 return ret;
481}
482
483static u16 asix_read_medium_status(struct usbnet *dev)
484{
Al Viro51bf2972007-12-22 17:42:36 +0000485 __le16 v;
486 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400487
Al Viro51bf2972007-12-22 17:42:36 +0000488 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000489 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
490 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000491 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400492 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000493
494 return le16_to_cpu(v);
495
David Hollis933a27d2006-07-29 10:12:50 -0400496}
497
498static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
499{
500 int ret;
501
Joe Perches60b86752010-02-17 10:30:23 +0000502 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400503 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
504 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000505 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
506 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400507
508 return ret;
509}
510
511static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
512{
513 int ret;
514
Joe Perches60b86752010-02-17 10:30:23 +0000515 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400516 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
517 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000518 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
519 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400520
521 if (sleep)
522 msleep(sleep);
523
524 return ret;
525}
526
527/*
528 * AX88772 & AX88178 have a 16-bit RX_CTL value
529 */
David Hollis48b1be62006-03-28 20:15:42 -0500530static void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700531{
532 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500533 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400534 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700535
536 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400537 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000538 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000539 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400540 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000541 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700542 /* just broadcast and directed */
543 } else {
544 /* We use the 20 byte dev->data
545 * for our 8 byte filter buffer
546 * to avoid allocating memory that
547 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000548 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700549 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700550
551 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
552
553 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000554 netdev_for_each_mc_addr(ha, net) {
555 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700556 data->multi_filter[crc_bits >> 3] |=
557 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700558 }
559
David Hollis48b1be62006-03-28 20:15:42 -0500560 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700561 AX_MCAST_FILTER_SIZE, data->multi_filter);
562
David Hollis933a27d2006-07-29 10:12:50 -0400563 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700564 }
565
David Hollis48b1be62006-03-28 20:15:42 -0500566 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700567}
568
David Hollis48b1be62006-03-28 20:15:42 -0500569static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700570{
571 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000572 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700573
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200574 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500575 asix_set_sw_mii(dev);
576 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000577 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500578 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200579 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700580
Joe Perches60b86752010-02-17 10:30:23 +0000581 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
582 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700583
Al Viro51bf2972007-12-22 17:42:36 +0000584 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700585}
586
587static void
David Hollis48b1be62006-03-28 20:15:42 -0500588asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700589{
590 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000591 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700592
Joe Perches60b86752010-02-17 10:30:23 +0000593 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
594 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200595 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500596 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000597 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500598 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200599 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700600}
601
David Hollis933a27d2006-07-29 10:12:50 -0400602/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
603static u32 asix_get_phyid(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700604{
David Hollis933a27d2006-07-29 10:12:50 -0400605 int phy_reg;
606 u32 phy_id;
Grant Grundlera77929a2011-11-15 07:12:40 +0000607 int i;
David Brownell2e55cc72005-08-31 09:53:10 -0700608
Grant Grundlera77929a2011-11-15 07:12:40 +0000609 /* Poll for the rare case the FW or phy isn't ready yet. */
610 for (i = 0; i < 100; i++) {
611 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
612 if (phy_reg != 0 && phy_reg != 0xFFFF)
613 break;
614 mdelay(1);
615 }
616
617 if (phy_reg <= 0 || phy_reg == 0xFFFF)
David Hollis933a27d2006-07-29 10:12:50 -0400618 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700619
David Hollis933a27d2006-07-29 10:12:50 -0400620 phy_id = (phy_reg & 0xffff) << 16;
David Brownell2e55cc72005-08-31 09:53:10 -0700621
David Hollis933a27d2006-07-29 10:12:50 -0400622 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
623 if (phy_reg < 0)
624 return 0;
625
626 phy_id |= (phy_reg & 0xffff);
627
628 return phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700629}
630
631static void
David Hollis48b1be62006-03-28 20:15:42 -0500632asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700633{
634 struct usbnet *dev = netdev_priv(net);
635 u8 opt;
636
David Hollis48b1be62006-03-28 20:15:42 -0500637 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700638 wolinfo->supported = 0;
639 wolinfo->wolopts = 0;
640 return;
641 }
642 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
643 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000644 if (opt & AX_MONITOR_LINK)
645 wolinfo->wolopts |= WAKE_PHY;
646 if (opt & AX_MONITOR_MAGIC)
647 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700648}
649
650static int
David Hollis48b1be62006-03-28 20:15:42 -0500651asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700652{
653 struct usbnet *dev = netdev_priv(net);
654 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700655
656 if (wolinfo->wolopts & WAKE_PHY)
657 opt |= AX_MONITOR_LINK;
658 if (wolinfo->wolopts & WAKE_MAGIC)
659 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700660
David Hollis48b1be62006-03-28 20:15:42 -0500661 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000662 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700663 return -EINVAL;
664
665 return 0;
666}
667
David Hollis48b1be62006-03-28 20:15:42 -0500668static int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700669{
David Hollis933a27d2006-07-29 10:12:50 -0400670 struct usbnet *dev = netdev_priv(net);
671 struct asix_data *data = (struct asix_data *)&dev->data;
672
673 return data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700674}
675
David Hollis48b1be62006-03-28 20:15:42 -0500676static int asix_get_eeprom(struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700677 struct ethtool_eeprom *eeprom, u8 *data)
678{
679 struct usbnet *dev = netdev_priv(net);
Al Viro51bf2972007-12-22 17:42:36 +0000680 __le16 *ebuf = (__le16 *)data;
David Brownell2e55cc72005-08-31 09:53:10 -0700681 int i;
682
683 /* Crude hack to ensure that we don't overwrite memory
684 * if an odd length is supplied
685 */
686 if (eeprom->len % 2)
687 return -EINVAL;
688
689 eeprom->magic = AX_EEPROM_MAGIC;
690
691 /* ax8817x returns 2 bytes from eeprom on read */
692 for (i=0; i < eeprom->len / 2; i++) {
David Hollis48b1be62006-03-28 20:15:42 -0500693 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
David Brownell2e55cc72005-08-31 09:53:10 -0700694 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
695 return -EINVAL;
696 }
697 return 0;
698}
699
David Hollis48b1be62006-03-28 20:15:42 -0500700static void asix_get_drvinfo (struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700701 struct ethtool_drvinfo *info)
702{
David Hollis933a27d2006-07-29 10:12:50 -0400703 struct usbnet *dev = netdev_priv(net);
704 struct asix_data *data = (struct asix_data *)&dev->data;
705
David Brownell2e55cc72005-08-31 09:53:10 -0700706 /* Inherit standard device info */
707 usbnet_get_drvinfo(net, info);
Grant Grundler83e1b912011-10-04 09:55:18 +0000708 strncpy (info->driver, DRIVER_NAME, sizeof info->driver);
David Hollis933a27d2006-07-29 10:12:50 -0400709 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
710 info->eedump_len = data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700711}
712
David Hollis933a27d2006-07-29 10:12:50 -0400713static u32 asix_get_link(struct net_device *net)
714{
715 struct usbnet *dev = netdev_priv(net);
716
717 return mii_link_ok(&dev->mii);
718}
719
720static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
721{
722 struct usbnet *dev = netdev_priv(net);
723
724 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700725}
726
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000727static int asix_set_mac_address(struct net_device *net, void *p)
728{
729 struct usbnet *dev = netdev_priv(net);
730 struct asix_data *data = (struct asix_data *)&dev->data;
731 struct sockaddr *addr = p;
732
733 if (netif_running(net))
734 return -EBUSY;
735 if (!is_valid_ether_addr(addr->sa_data))
736 return -EADDRNOTAVAIL;
737
738 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
739
740 /* We use the 20 byte dev->data
741 * for our 6 byte mac buffer
742 * to avoid allocating memory that
743 * is tricky to free later */
744 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
745 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
746 data->mac_addr);
747
748 return 0;
749}
750
David Brownell2e55cc72005-08-31 09:53:10 -0700751/* We need to override some ethtool_ops so we require our
752 own structure so we don't interfere with other usbnet
753 devices that may be connected at the same time. */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700754static const struct ethtool_ops ax88172_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500755 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400756 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700757 .get_msglevel = usbnet_get_msglevel,
758 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500759 .get_wol = asix_get_wol,
760 .set_wol = asix_set_wol,
761 .get_eeprom_len = asix_get_eeprom_len,
762 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200763 .get_settings = usbnet_get_settings,
764 .set_settings = usbnet_set_settings,
765 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700766};
767
David Hollis933a27d2006-07-29 10:12:50 -0400768static void ax88172_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700769{
770 struct usbnet *dev = netdev_priv(net);
David Hollis933a27d2006-07-29 10:12:50 -0400771 struct asix_data *data = (struct asix_data *)&dev->data;
772 u8 rx_ctl = 0x8c;
David Brownell2e55cc72005-08-31 09:53:10 -0700773
David Hollis933a27d2006-07-29 10:12:50 -0400774 if (net->flags & IFF_PROMISC) {
775 rx_ctl |= 0x01;
Joe Perches8e95a202009-12-03 07:58:21 +0000776 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000777 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400778 rx_ctl |= 0x02;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000779 } else if (netdev_mc_empty(net)) {
David Hollis933a27d2006-07-29 10:12:50 -0400780 /* just broadcast and directed */
781 } else {
782 /* We use the 20 byte dev->data
783 * for our 8 byte filter buffer
784 * to avoid allocating memory that
785 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000786 struct netdev_hw_addr *ha;
David Hollis933a27d2006-07-29 10:12:50 -0400787 u32 crc_bits;
David Hollis933a27d2006-07-29 10:12:50 -0400788
789 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
790
791 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000792 netdev_for_each_mc_addr(ha, net) {
793 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Hollis933a27d2006-07-29 10:12:50 -0400794 data->multi_filter[crc_bits >> 3] |=
795 1 << (crc_bits & 7);
David Hollis933a27d2006-07-29 10:12:50 -0400796 }
797
798 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
799 AX_MCAST_FILTER_SIZE, data->multi_filter);
800
801 rx_ctl |= 0x10;
802 }
803
804 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
805}
806
807static int ax88172_link_reset(struct usbnet *dev)
808{
809 u8 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000810 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -0400811
812 mii_check_media(&dev->mii, 1, 1);
813 mii_ethtool_gset(&dev->mii, &ecmd);
814 mode = AX88172_MEDIUM_DEFAULT;
815
816 if (ecmd.duplex != DUPLEX_FULL)
817 mode |= ~AX88172_MEDIUM_FD;
818
David Decotigny8ae6dac2011-04-27 18:32:38 +0000819 netdev_dbg(dev->net, "ax88172_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
820 ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400821
822 asix_write_medium_mode(dev, mode);
823
824 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700825}
826
Stephen Hemminger17033382009-03-20 19:35:55 +0000827static const struct net_device_ops ax88172_netdev_ops = {
828 .ndo_open = usbnet_open,
829 .ndo_stop = usbnet_stop,
830 .ndo_start_xmit = usbnet_start_xmit,
831 .ndo_tx_timeout = usbnet_tx_timeout,
832 .ndo_change_mtu = usbnet_change_mtu,
833 .ndo_set_mac_address = eth_mac_addr,
834 .ndo_validate_addr = eth_validate_addr,
835 .ndo_do_ioctl = asix_ioctl,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000836 .ndo_set_rx_mode = ax88172_set_multicast,
Stephen Hemminger17033382009-03-20 19:35:55 +0000837};
838
David Hollis48b1be62006-03-28 20:15:42 -0500839static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
David Brownell2e55cc72005-08-31 09:53:10 -0700840{
841 int ret = 0;
Al Viro51bf2972007-12-22 17:42:36 +0000842 u8 buf[ETH_ALEN];
David Brownell2e55cc72005-08-31 09:53:10 -0700843 int i;
844 unsigned long gpio_bits = dev->driver_info->data;
David Hollis933a27d2006-07-29 10:12:50 -0400845 struct asix_data *data = (struct asix_data *)&dev->data;
846
847 data->eeprom_len = AX88172_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700848
849 usbnet_get_endpoints(dev,intf);
850
David Brownell2e55cc72005-08-31 09:53:10 -0700851 /* Toggle the GPIOs in a manufacturer/model specific way */
852 for (i = 2; i >= 0; i--) {
Grant Grundler83e1b912011-10-04 09:55:18 +0000853 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
854 (gpio_bits >> (i * 8)) & 0xff, 0, 0, NULL);
855 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000856 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700857 msleep(5);
858 }
859
Grant Grundler83e1b912011-10-04 09:55:18 +0000860 ret = asix_write_rx_ctl(dev, 0x80);
861 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000862 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700863
864 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +0000865 ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
866 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700867 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000868 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700869 }
870 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
871
David Brownell2e55cc72005-08-31 09:53:10 -0700872 /* Initialize MII structure */
873 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -0500874 dev->mii.mdio_read = asix_mdio_read;
875 dev->mii.mdio_write = asix_mdio_write;
David Brownell2e55cc72005-08-31 09:53:10 -0700876 dev->mii.phy_id_mask = 0x3f;
877 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -0400878 dev->mii.phy_id = asix_get_phy_addr(dev);
David Brownell2e55cc72005-08-31 09:53:10 -0700879
Stephen Hemminger17033382009-03-20 19:35:55 +0000880 dev->net->netdev_ops = &ax88172_netdev_ops;
David Hollis48b1be62006-03-28 20:15:42 -0500881 dev->net->ethtool_ops = &ax88172_ethtool_ops;
David Brownell2e55cc72005-08-31 09:53:10 -0700882
David Hollis933a27d2006-07-29 10:12:50 -0400883 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
884 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700885 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
886 mii_nway_restart(&dev->mii);
887
888 return 0;
Al Viro51bf2972007-12-22 17:42:36 +0000889
890out:
David Brownell2e55cc72005-08-31 09:53:10 -0700891 return ret;
892}
893
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700894static const struct ethtool_ops ax88772_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500895 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400896 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700897 .get_msglevel = usbnet_get_msglevel,
898 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500899 .get_wol = asix_get_wol,
900 .set_wol = asix_set_wol,
901 .get_eeprom_len = asix_get_eeprom_len,
902 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200903 .get_settings = usbnet_get_settings,
904 .set_settings = usbnet_set_settings,
905 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700906};
907
David Hollis933a27d2006-07-29 10:12:50 -0400908static int ax88772_link_reset(struct usbnet *dev)
909{
910 u16 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000911 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -0400912
913 mii_check_media(&dev->mii, 1, 1);
914 mii_ethtool_gset(&dev->mii, &ecmd);
915 mode = AX88772_MEDIUM_DEFAULT;
916
David Decotigny8ae6dac2011-04-27 18:32:38 +0000917 if (ethtool_cmd_speed(&ecmd) != SPEED_100)
David Hollis933a27d2006-07-29 10:12:50 -0400918 mode &= ~AX_MEDIUM_PS;
919
920 if (ecmd.duplex != DUPLEX_FULL)
921 mode &= ~AX_MEDIUM_FD;
922
David Decotigny8ae6dac2011-04-27 18:32:38 +0000923 netdev_dbg(dev->net, "ax88772_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
924 ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400925
926 asix_write_medium_mode(dev, mode);
927
928 return 0;
929}
930
Grant Grundler4ad14382011-10-04 09:55:16 +0000931static int ax88772_reset(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700932{
Jussi Kivilinna8ef66bd2012-01-10 06:40:17 +0000933 struct asix_data *data = (struct asix_data *)&dev->data;
Andres Salomond0ffff82007-01-11 18:39:16 -0500934 int ret, embd_phy;
David Hollis933a27d2006-07-29 10:12:50 -0400935 u16 rx_ctl;
David Brownell2e55cc72005-08-31 09:53:10 -0700936
Grant Grundler83e1b912011-10-04 09:55:18 +0000937 ret = asix_write_gpio(dev,
938 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5);
939 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000940 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700941
Andres Salomond0ffff82007-01-11 18:39:16 -0500942 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
Grant Grundler4ad14382011-10-04 09:55:16 +0000943
Grant Grundler83e1b912011-10-04 09:55:18 +0000944 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
945 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700946 dbg("Select PHY #1 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000947 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700948 }
949
Grant Grundler83e1b912011-10-04 09:55:18 +0000950 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
951 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000952 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700953
954 msleep(150);
Grant Grundler83e1b912011-10-04 09:55:18 +0000955
956 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
957 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000958 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700959
960 msleep(150);
Grant Grundler4ad14382011-10-04 09:55:16 +0000961
Andres Salomond0ffff82007-01-11 18:39:16 -0500962 if (embd_phy) {
Grant Grundler83e1b912011-10-04 09:55:18 +0000963 ret = asix_sw_reset(dev, AX_SWRESET_IPRL);
964 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000965 goto out;
Grant Grundler83e1b912011-10-04 09:55:18 +0000966 } else {
967 ret = asix_sw_reset(dev, AX_SWRESET_PRTE);
968 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000969 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -0500970 }
David Brownell2e55cc72005-08-31 09:53:10 -0700971
972 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -0400973 rx_ctl = asix_read_rx_ctl(dev);
974 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
Grant Grundler83e1b912011-10-04 09:55:18 +0000975 ret = asix_write_rx_ctl(dev, 0x0000);
976 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000977 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700978
David Hollis933a27d2006-07-29 10:12:50 -0400979 rx_ctl = asix_read_rx_ctl(dev);
980 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
981
Grant Grundler83e1b912011-10-04 09:55:18 +0000982 ret = asix_sw_reset(dev, AX_SWRESET_PRL);
983 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000984 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700985
David Brownell2e55cc72005-08-31 09:53:10 -0700986 msleep(150);
987
Grant Grundler83e1b912011-10-04 09:55:18 +0000988 ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL);
989 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000990 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700991
David Hollis48b1be62006-03-28 20:15:42 -0500992 msleep(150);
993
David Hollis933a27d2006-07-29 10:12:50 -0400994 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
995 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700996 ADVERTISE_ALL | ADVERTISE_CSMA);
997 mii_nway_restart(&dev->mii);
998
Grant Grundler83e1b912011-10-04 09:55:18 +0000999 ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT);
1000 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001001 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001002
Grant Grundler83e1b912011-10-04 09:55:18 +00001003 ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
David Brownell2e55cc72005-08-31 09:53:10 -07001004 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
Grant Grundler83e1b912011-10-04 09:55:18 +00001005 AX88772_IPG2_DEFAULT, 0, NULL);
1006 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -07001007 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001008 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001009 }
David Brownell2e55cc72005-08-31 09:53:10 -07001010
Jussi Kivilinna8ef66bd2012-01-10 06:40:17 +00001011 /* Rewrite MAC address */
1012 memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
1013 ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
1014 data->mac_addr);
1015 if (ret < 0)
1016 goto out;
1017
David Brownell2e55cc72005-08-31 09:53:10 -07001018 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
Grant Grundler83e1b912011-10-04 09:55:18 +00001019 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1020 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001021 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001022
David Hollis933a27d2006-07-29 10:12:50 -04001023 rx_ctl = asix_read_rx_ctl(dev);
1024 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1025
1026 rx_ctl = asix_read_medium_status(dev);
1027 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1028
Grant Grundler4ad14382011-10-04 09:55:16 +00001029 return 0;
1030
1031out:
1032 return ret;
1033
1034}
1035
1036static const struct net_device_ops ax88772_netdev_ops = {
1037 .ndo_open = usbnet_open,
1038 .ndo_stop = usbnet_stop,
1039 .ndo_start_xmit = usbnet_start_xmit,
1040 .ndo_tx_timeout = usbnet_tx_timeout,
1041 .ndo_change_mtu = usbnet_change_mtu,
1042 .ndo_set_mac_address = asix_set_mac_address,
1043 .ndo_validate_addr = eth_validate_addr,
1044 .ndo_do_ioctl = asix_ioctl,
1045 .ndo_set_rx_mode = asix_set_multicast,
1046};
1047
1048static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
1049{
Grant Grundlerd3665182011-11-15 07:12:41 +00001050 int ret, embd_phy;
Grant Grundler4ad14382011-10-04 09:55:16 +00001051 struct asix_data *data = (struct asix_data *)&dev->data;
1052 u8 buf[ETH_ALEN];
1053 u32 phyid;
1054
1055 data->eeprom_len = AX88772_EEPROM_LEN;
1056
1057 usbnet_get_endpoints(dev,intf);
1058
1059 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +00001060 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1061 if (ret < 0) {
Grant Grundler4ad14382011-10-04 09:55:16 +00001062 dbg("Failed to read MAC address: %d", ret);
Grant Grundler83e1b912011-10-04 09:55:18 +00001063 return ret;
Grant Grundler4ad14382011-10-04 09:55:16 +00001064 }
1065 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1066
1067 /* Initialize MII structure */
1068 dev->mii.dev = dev->net;
1069 dev->mii.mdio_read = asix_mdio_read;
1070 dev->mii.mdio_write = asix_mdio_write;
1071 dev->mii.phy_id_mask = 0x1f;
1072 dev->mii.reg_num_mask = 0x1f;
1073 dev->mii.phy_id = asix_get_phy_addr(dev);
1074
Grant Grundler4ad14382011-10-04 09:55:16 +00001075 dev->net->netdev_ops = &ax88772_netdev_ops;
1076 dev->net->ethtool_ops = &ax88772_ethtool_ops;
1077
Grant Grundlerd3665182011-11-15 07:12:41 +00001078 embd_phy = ((dev->mii.phy_id & 0x1f) == 0x10 ? 1 : 0);
1079
1080 /* Reset the PHY to normal operation mode */
1081 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
1082 if (ret < 0) {
1083 dbg("Select PHY #1 failed: %d", ret);
1084 return ret;
1085 }
1086
1087 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
Grant Grundler83e1b912011-10-04 09:55:18 +00001088 if (ret < 0)
1089 return ret;
Grant Grundler4ad14382011-10-04 09:55:16 +00001090
Grant Grundlerd3665182011-11-15 07:12:41 +00001091 msleep(150);
1092
1093 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
1094 if (ret < 0)
1095 return ret;
1096
1097 msleep(150);
1098
1099 ret = asix_sw_reset(dev, embd_phy ? AX_SWRESET_IPRL : AX_SWRESET_PRTE);
1100
1101 /* Read PHYID register *AFTER* the PHY was reset properly */
1102 phyid = asix_get_phyid(dev);
1103 dbg("PHYID=0x%08x", phyid);
1104
David Brownell2e55cc72005-08-31 09:53:10 -07001105 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1106 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1107 /* hard_mtu is still the default - the device does not support
1108 jumbo eth frames */
1109 dev->rx_urb_size = 2048;
1110 }
Grant Grundler83e1b912011-10-04 09:55:18 +00001111
David Brownell2e55cc72005-08-31 09:53:10 -07001112 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -07001113}
1114
stephen hemmingerbc689c92012-01-05 19:10:23 +00001115static const struct ethtool_ops ax88178_ethtool_ops = {
David Hollis933a27d2006-07-29 10:12:50 -04001116 .get_drvinfo = asix_get_drvinfo,
1117 .get_link = asix_get_link,
David Hollis933a27d2006-07-29 10:12:50 -04001118 .get_msglevel = usbnet_get_msglevel,
1119 .set_msglevel = usbnet_set_msglevel,
1120 .get_wol = asix_get_wol,
1121 .set_wol = asix_set_wol,
1122 .get_eeprom_len = asix_get_eeprom_len,
1123 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001124 .get_settings = usbnet_get_settings,
1125 .set_settings = usbnet_set_settings,
1126 .nway_reset = usbnet_nway_reset,
David Hollis933a27d2006-07-29 10:12:50 -04001127};
1128
1129static int marvell_phy_init(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -07001130{
David Hollis933a27d2006-07-29 10:12:50 -04001131 struct asix_data *data = (struct asix_data *)&dev->data;
1132 u16 reg;
David Brownell2e55cc72005-08-31 09:53:10 -07001133
Joe Perches60b86752010-02-17 10:30:23 +00001134 netdev_dbg(dev->net, "marvell_phy_init()\n");
David Brownell2e55cc72005-08-31 09:53:10 -07001135
David Hollis933a27d2006-07-29 10:12:50 -04001136 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
Joe Perches60b86752010-02-17 10:30:23 +00001137 netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001138
David Hollis933a27d2006-07-29 10:12:50 -04001139 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1140 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
David Brownell2e55cc72005-08-31 09:53:10 -07001141
David Hollis933a27d2006-07-29 10:12:50 -04001142 if (data->ledmode) {
1143 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1144 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001145 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001146
David Hollis933a27d2006-07-29 10:12:50 -04001147 reg &= 0xf8ff;
1148 reg |= (1 + 0x0100);
1149 asix_mdio_write(dev->net, dev->mii.phy_id,
1150 MII_MARVELL_LED_CTRL, reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001151
David Hollis933a27d2006-07-29 10:12:50 -04001152 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1153 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001154 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001155 reg &= 0xfc0f;
David Brownell2e55cc72005-08-31 09:53:10 -07001156 }
1157
David Brownell2e55cc72005-08-31 09:53:10 -07001158 return 0;
1159}
1160
Grant Grundler610d8852011-10-04 09:55:17 +00001161static int rtl8211cl_phy_init(struct usbnet *dev)
1162{
1163 struct asix_data *data = (struct asix_data *)&dev->data;
1164
1165 netdev_dbg(dev->net, "rtl8211cl_phy_init()\n");
1166
1167 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0005);
1168 asix_mdio_write (dev->net, dev->mii.phy_id, 0x0c, 0);
1169 asix_mdio_write (dev->net, dev->mii.phy_id, 0x01,
1170 asix_mdio_read (dev->net, dev->mii.phy_id, 0x01) | 0x0080);
1171 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1172
1173 if (data->ledmode == 12) {
1174 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0002);
1175 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1a, 0x00cb);
1176 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1177 }
1178
1179 return 0;
1180}
1181
David Hollis933a27d2006-07-29 10:12:50 -04001182static int marvell_led_status(struct usbnet *dev, u16 speed)
1183{
1184 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1185
Joe Perches60b86752010-02-17 10:30:23 +00001186 netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001187
1188 /* Clear out the center LED bits - 0x03F0 */
1189 reg &= 0xfc0f;
1190
1191 switch (speed) {
1192 case SPEED_1000:
1193 reg |= 0x03e0;
1194 break;
1195 case SPEED_100:
1196 reg |= 0x03b0;
1197 break;
1198 default:
1199 reg |= 0x02f0;
1200 }
1201
Joe Perches60b86752010-02-17 10:30:23 +00001202 netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001203 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1204
1205 return 0;
1206}
1207
Grant Grundler610d8852011-10-04 09:55:17 +00001208static int ax88178_reset(struct usbnet *dev)
1209{
1210 struct asix_data *data = (struct asix_data *)&dev->data;
1211 int ret;
1212 __le16 eeprom;
1213 u8 status;
1214 int gpio0 = 0;
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001215 u32 phyid;
Grant Grundler610d8852011-10-04 09:55:17 +00001216
1217 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1218 dbg("GPIO Status: 0x%04x", status);
1219
1220 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1221 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1222 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1223
1224 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1225
1226 if (eeprom == cpu_to_le16(0xffff)) {
1227 data->phymode = PHY_MODE_MARVELL;
1228 data->ledmode = 0;
1229 gpio0 = 1;
1230 } else {
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001231 data->phymode = le16_to_cpu(eeprom) & 0x7F;
Grant Grundler610d8852011-10-04 09:55:17 +00001232 data->ledmode = le16_to_cpu(eeprom) >> 8;
1233 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
1234 }
1235 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
1236
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001237 /* Power up external GigaPHY through AX88178 GPIO pin */
Grant Grundler610d8852011-10-04 09:55:17 +00001238 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
1239 if ((le16_to_cpu(eeprom) >> 8) != 1) {
1240 asix_write_gpio(dev, 0x003c, 30);
1241 asix_write_gpio(dev, 0x001c, 300);
1242 asix_write_gpio(dev, 0x003c, 30);
1243 } else {
1244 dbg("gpio phymode == 1 path");
1245 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1246 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1247 }
1248
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001249 /* Read PHYID register *AFTER* powering up PHY */
1250 phyid = asix_get_phyid(dev);
1251 dbg("PHYID=0x%08x", phyid);
1252
1253 /* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */
1254 asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, 0, 0, 0, NULL);
1255
Grant Grundler610d8852011-10-04 09:55:17 +00001256 asix_sw_reset(dev, 0);
1257 msleep(150);
1258
1259 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1260 msleep(150);
1261
1262 asix_write_rx_ctl(dev, 0);
1263
1264 if (data->phymode == PHY_MODE_MARVELL) {
1265 marvell_phy_init(dev);
1266 msleep(60);
1267 } else if (data->phymode == PHY_MODE_RTL8211CL)
1268 rtl8211cl_phy_init(dev);
1269
1270 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1271 BMCR_RESET | BMCR_ANENABLE);
1272 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1273 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1274 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1275 ADVERTISE_1000FULL);
1276
1277 mii_nway_restart(&dev->mii);
1278
Grant Grundler83e1b912011-10-04 09:55:18 +00001279 ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT);
1280 if (ret < 0)
1281 return ret;
Grant Grundler610d8852011-10-04 09:55:17 +00001282
Jussi Kivilinna71bc5d92012-01-10 06:40:23 +00001283 /* Rewrite MAC address */
1284 memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
1285 ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
1286 data->mac_addr);
1287 if (ret < 0)
1288 return ret;
1289
Grant Grundler83e1b912011-10-04 09:55:18 +00001290 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1291 if (ret < 0)
1292 return ret;
Grant Grundler610d8852011-10-04 09:55:17 +00001293
1294 return 0;
Grant Grundler610d8852011-10-04 09:55:17 +00001295}
1296
David Hollis933a27d2006-07-29 10:12:50 -04001297static int ax88178_link_reset(struct usbnet *dev)
1298{
1299 u16 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001300 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -04001301 struct asix_data *data = (struct asix_data *)&dev->data;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001302 u32 speed;
David Hollis933a27d2006-07-29 10:12:50 -04001303
Joe Perches60b86752010-02-17 10:30:23 +00001304 netdev_dbg(dev->net, "ax88178_link_reset()\n");
David Hollis933a27d2006-07-29 10:12:50 -04001305
1306 mii_check_media(&dev->mii, 1, 1);
1307 mii_ethtool_gset(&dev->mii, &ecmd);
1308 mode = AX88178_MEDIUM_DEFAULT;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001309 speed = ethtool_cmd_speed(&ecmd);
David Hollis933a27d2006-07-29 10:12:50 -04001310
David Decotigny8ae6dac2011-04-27 18:32:38 +00001311 if (speed == SPEED_1000)
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001312 mode |= AX_MEDIUM_GM;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001313 else if (speed == SPEED_100)
David Hollis933a27d2006-07-29 10:12:50 -04001314 mode |= AX_MEDIUM_PS;
1315 else
1316 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1317
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001318 mode |= AX_MEDIUM_ENCK;
1319
David Hollis933a27d2006-07-29 10:12:50 -04001320 if (ecmd.duplex == DUPLEX_FULL)
1321 mode |= AX_MEDIUM_FD;
1322 else
1323 mode &= ~AX_MEDIUM_FD;
1324
David Decotigny8ae6dac2011-04-27 18:32:38 +00001325 netdev_dbg(dev->net, "ax88178_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
1326 speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -04001327
1328 asix_write_medium_mode(dev, mode);
1329
1330 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
David Decotigny8ae6dac2011-04-27 18:32:38 +00001331 marvell_led_status(dev, speed);
David Hollis933a27d2006-07-29 10:12:50 -04001332
1333 return 0;
1334}
1335
1336static void ax88178_set_mfb(struct usbnet *dev)
1337{
1338 u16 mfb = AX_RX_CTL_MFB_16384;
1339 u16 rxctl;
1340 u16 medium;
1341 int old_rx_urb_size = dev->rx_urb_size;
1342
1343 if (dev->hard_mtu < 2048) {
1344 dev->rx_urb_size = 2048;
1345 mfb = AX_RX_CTL_MFB_2048;
1346 } else if (dev->hard_mtu < 4096) {
1347 dev->rx_urb_size = 4096;
1348 mfb = AX_RX_CTL_MFB_4096;
1349 } else if (dev->hard_mtu < 8192) {
1350 dev->rx_urb_size = 8192;
1351 mfb = AX_RX_CTL_MFB_8192;
1352 } else if (dev->hard_mtu < 16384) {
1353 dev->rx_urb_size = 16384;
1354 mfb = AX_RX_CTL_MFB_16384;
1355 }
1356
1357 rxctl = asix_read_rx_ctl(dev);
1358 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1359
1360 medium = asix_read_medium_status(dev);
1361 if (dev->net->mtu > 1500)
1362 medium |= AX_MEDIUM_JFE;
1363 else
1364 medium &= ~AX_MEDIUM_JFE;
1365 asix_write_medium_mode(dev, medium);
1366
1367 if (dev->rx_urb_size > old_rx_urb_size)
1368 usbnet_unlink_rx_urbs(dev);
1369}
1370
1371static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1372{
1373 struct usbnet *dev = netdev_priv(net);
1374 int ll_mtu = new_mtu + net->hard_header_len + 4;
1375
Joe Perches60b86752010-02-17 10:30:23 +00001376 netdev_dbg(dev->net, "ax88178_change_mtu() new_mtu=%d\n", new_mtu);
David Hollis933a27d2006-07-29 10:12:50 -04001377
1378 if (new_mtu <= 0 || ll_mtu > 16384)
1379 return -EINVAL;
1380
1381 if ((ll_mtu % dev->maxpacket) == 0)
1382 return -EDOM;
1383
1384 net->mtu = new_mtu;
1385 dev->hard_mtu = net->mtu + net->hard_header_len;
1386 ax88178_set_mfb(dev);
1387
1388 return 0;
1389}
1390
Stephen Hemminger17033382009-03-20 19:35:55 +00001391static const struct net_device_ops ax88178_netdev_ops = {
1392 .ndo_open = usbnet_open,
1393 .ndo_stop = usbnet_stop,
1394 .ndo_start_xmit = usbnet_start_xmit,
1395 .ndo_tx_timeout = usbnet_tx_timeout,
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +00001396 .ndo_set_mac_address = asix_set_mac_address,
Stephen Hemminger17033382009-03-20 19:35:55 +00001397 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001398 .ndo_set_rx_mode = asix_set_multicast,
Stephen Hemminger17033382009-03-20 19:35:55 +00001399 .ndo_do_ioctl = asix_ioctl,
1400 .ndo_change_mtu = ax88178_change_mtu,
1401};
1402
David Hollis933a27d2006-07-29 10:12:50 -04001403static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1404{
David Hollis933a27d2006-07-29 10:12:50 -04001405 int ret;
Al Viro51bf2972007-12-22 17:42:36 +00001406 u8 buf[ETH_ALEN];
Grant Grundler79de9ef2011-10-17 05:51:06 +00001407 struct asix_data *data = (struct asix_data *)&dev->data;
1408
1409 data->eeprom_len = AX88772_EEPROM_LEN;
David Hollis933a27d2006-07-29 10:12:50 -04001410
1411 usbnet_get_endpoints(dev,intf);
1412
David Hollis933a27d2006-07-29 10:12:50 -04001413 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +00001414 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1415 if (ret < 0) {
David Hollis933a27d2006-07-29 10:12:50 -04001416 dbg("Failed to read MAC address: %d", ret);
Grant Grundler83e1b912011-10-04 09:55:18 +00001417 return ret;
David Hollis933a27d2006-07-29 10:12:50 -04001418 }
1419 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1420
1421 /* Initialize MII structure */
1422 dev->mii.dev = dev->net;
1423 dev->mii.mdio_read = asix_mdio_read;
1424 dev->mii.mdio_write = asix_mdio_write;
1425 dev->mii.phy_id_mask = 0x1f;
1426 dev->mii.reg_num_mask = 0xff;
1427 dev->mii.supports_gmii = 1;
David Hollis933a27d2006-07-29 10:12:50 -04001428 dev->mii.phy_id = asix_get_phy_addr(dev);
Stephen Hemminger17033382009-03-20 19:35:55 +00001429
1430 dev->net->netdev_ops = &ax88178_netdev_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001431 dev->net->ethtool_ops = &ax88178_ethtool_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001432
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001433 /* Blink LEDS so users know driver saw dongle */
1434 asix_sw_reset(dev, 0);
1435 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001436
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001437 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1438 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001439
1440 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1441 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1442 /* hard_mtu is still the default - the device does not support
1443 jumbo eth frames */
1444 dev->rx_urb_size = 2048;
1445 }
David Hollis933a27d2006-07-29 10:12:50 -04001446
Grant Grundler83e1b912011-10-04 09:55:18 +00001447 return 0;
David Hollis933a27d2006-07-29 10:12:50 -04001448}
1449
David Brownell2e55cc72005-08-31 09:53:10 -07001450static const struct driver_info ax8817x_info = {
1451 .description = "ASIX AX8817x USB 2.0 Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001452 .bind = ax88172_bind,
1453 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001454 .link_reset = ax88172_link_reset,
1455 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001456 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001457 .data = 0x00130103,
1458};
1459
1460static const struct driver_info dlink_dub_e100_info = {
1461 .description = "DLink DUB-E100 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001462 .bind = ax88172_bind,
1463 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001464 .link_reset = ax88172_link_reset,
1465 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001466 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001467 .data = 0x009f9d9f,
1468};
1469
1470static const struct driver_info netgear_fa120_info = {
1471 .description = "Netgear FA-120 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001472 .bind = ax88172_bind,
1473 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001474 .link_reset = ax88172_link_reset,
1475 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001476 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001477 .data = 0x00130103,
1478};
1479
1480static const struct driver_info hawking_uf200_info = {
1481 .description = "Hawking UF200 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001482 .bind = ax88172_bind,
1483 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001484 .link_reset = ax88172_link_reset,
1485 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001486 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001487 .data = 0x001f1d1f,
1488};
1489
1490static const struct driver_info ax88772_info = {
1491 .description = "ASIX AX88772 USB 2.0 Ethernet",
1492 .bind = ax88772_bind,
David Hollis48b1be62006-03-28 20:15:42 -05001493 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001494 .link_reset = ax88772_link_reset,
Grant Grundler4ad14382011-10-04 09:55:16 +00001495 .reset = ax88772_reset,
Eric Dumazeta9e0aca2012-03-14 20:18:32 +00001496 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR | FLAG_MULTI_PACKET,
David Hollis933a27d2006-07-29 10:12:50 -04001497 .rx_fixup = asix_rx_fixup,
1498 .tx_fixup = asix_tx_fixup,
1499};
1500
1501static const struct driver_info ax88178_info = {
1502 .description = "ASIX AX88178 USB 2.0 Ethernet",
1503 .bind = ax88178_bind,
1504 .status = asix_status,
1505 .link_reset = ax88178_link_reset,
Grant Grundler610d8852011-10-04 09:55:17 +00001506 .reset = ax88178_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001507 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001508 .rx_fixup = asix_rx_fixup,
1509 .tx_fixup = asix_tx_fixup,
David Brownell2e55cc72005-08-31 09:53:10 -07001510};
1511
1512static const struct usb_device_id products [] = {
1513{
1514 // Linksys USB200M
1515 USB_DEVICE (0x077b, 0x2226),
1516 .driver_info = (unsigned long) &ax8817x_info,
1517}, {
1518 // Netgear FA120
1519 USB_DEVICE (0x0846, 0x1040),
1520 .driver_info = (unsigned long) &netgear_fa120_info,
1521}, {
1522 // DLink DUB-E100
1523 USB_DEVICE (0x2001, 0x1a00),
1524 .driver_info = (unsigned long) &dlink_dub_e100_info,
1525}, {
1526 // Intellinet, ST Lab USB Ethernet
1527 USB_DEVICE (0x0b95, 0x1720),
1528 .driver_info = (unsigned long) &ax8817x_info,
1529}, {
1530 // Hawking UF200, TrendNet TU2-ET100
1531 USB_DEVICE (0x07b8, 0x420a),
1532 .driver_info = (unsigned long) &hawking_uf200_info,
1533}, {
David Hollis39c4b382007-02-20 08:02:24 -05001534 // Billionton Systems, USB2AR
1535 USB_DEVICE (0x08dd, 0x90ff),
1536 .driver_info = (unsigned long) &ax8817x_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001537}, {
1538 // ATEN UC210T
1539 USB_DEVICE (0x0557, 0x2009),
1540 .driver_info = (unsigned long) &ax8817x_info,
1541}, {
1542 // Buffalo LUA-U2-KTX
1543 USB_DEVICE (0x0411, 0x003d),
1544 .driver_info = (unsigned long) &ax8817x_info,
1545}, {
Mattia Dongiliac7b77f2008-05-06 20:42:35 -07001546 // Buffalo LUA-U2-GT 10/100/1000
1547 USB_DEVICE (0x0411, 0x006e),
1548 .driver_info = (unsigned long) &ax88178_info,
1549}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001550 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1551 USB_DEVICE (0x6189, 0x182d),
1552 .driver_info = (unsigned long) &ax8817x_info,
1553}, {
Joerg Neikes4e503912012-03-08 22:44:03 +00001554 // Sitecom LN-031 "USB 2.0 10/100/1000 Ethernet adapter"
1555 USB_DEVICE (0x0df6, 0x0056),
1556 .driver_info = (unsigned long) &ax88178_info,
1557}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001558 // corega FEther USB2-TX
1559 USB_DEVICE (0x07aa, 0x0017),
1560 .driver_info = (unsigned long) &ax8817x_info,
1561}, {
1562 // Surecom EP-1427X-2
1563 USB_DEVICE (0x1189, 0x0893),
1564 .driver_info = (unsigned long) &ax8817x_info,
1565}, {
1566 // goodway corp usb gwusb2e
1567 USB_DEVICE (0x1631, 0x6200),
1568 .driver_info = (unsigned long) &ax8817x_info,
1569}, {
David Hollis39c4b382007-02-20 08:02:24 -05001570 // JVC MP-PRX1 Port Replicator
1571 USB_DEVICE (0x04f1, 0x3008),
1572 .driver_info = (unsigned long) &ax8817x_info,
1573}, {
Marek Vasut30885902011-07-20 05:57:04 +00001574 // ASIX AX88772B 10/100
1575 USB_DEVICE (0x0b95, 0x772b),
1576 .driver_info = (unsigned long) &ax88772_info,
1577}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001578 // ASIX AX88772 10/100
David Hollis39c4b382007-02-20 08:02:24 -05001579 USB_DEVICE (0x0b95, 0x7720),
1580 .driver_info = (unsigned long) &ax88772_info,
David Hollis5e0f76c2005-12-19 13:58:38 -05001581}, {
Eduard Warkentin73274132006-05-18 01:13:17 -07001582 // ASIX AX88178 10/100/1000
1583 USB_DEVICE (0x0b95, 0x1780),
David Hollis933a27d2006-07-29 10:12:50 -04001584 .driver_info = (unsigned long) &ax88178_info,
Eduard Warkentin73274132006-05-18 01:13:17 -07001585}, {
Arnaud Ebalardf4680d32010-12-15 12:16:30 +00001586 // Logitec LAN-GTJ/U2A
1587 USB_DEVICE (0x0789, 0x0160),
1588 .driver_info = (unsigned long) &ax88178_info,
1589}, {
David Hollis5e0f76c2005-12-19 13:58:38 -05001590 // Linksys USB200M Rev 2
1591 USB_DEVICE (0x13b1, 0x0018),
1592 .driver_info = (unsigned long) &ax88772_info,
David Hollis5732ce82006-01-05 14:39:49 -05001593}, {
1594 // 0Q0 cable ethernet
1595 USB_DEVICE (0x1557, 0x7720),
1596 .driver_info = (unsigned long) &ax88772_info,
David Hollis933a27d2006-07-29 10:12:50 -04001597}, {
1598 // DLink DUB-E100 H/W Ver B1
1599 USB_DEVICE (0x07d1, 0x3c05),
1600 .driver_info = (unsigned long) &ax88772_info,
1601}, {
David Hollisb923e7f2006-09-21 08:09:29 -04001602 // DLink DUB-E100 H/W Ver B1 Alternate
1603 USB_DEVICE (0x2001, 0x3c05),
1604 .driver_info = (unsigned long) &ax88772_info,
1605}, {
David Hollis933a27d2006-07-29 10:12:50 -04001606 // Linksys USB1000
1607 USB_DEVICE (0x1737, 0x0039),
1608 .driver_info = (unsigned long) &ax88178_info,
YOSHIFUJI Hideaki / 吉藤英明b29cf312007-01-26 22:57:38 +09001609}, {
1610 // IO-DATA ETG-US2
1611 USB_DEVICE (0x04bb, 0x0930),
1612 .driver_info = (unsigned long) &ax88178_info,
David Hollis2ed22bc2007-05-23 07:33:17 -04001613}, {
1614 // Belkin F5D5055
1615 USB_DEVICE(0x050d, 0x5055),
1616 .driver_info = (unsigned long) &ax88178_info,
Aurelien Nephtali3d60efb52008-05-14 17:04:13 -07001617}, {
1618 // Apple USB Ethernet Adapter
1619 USB_DEVICE(0x05ac, 0x1402),
1620 .driver_info = (unsigned long) &ax88772_info,
Jason Cooperccf95402008-11-11 13:02:53 -05001621}, {
1622 // Cables-to-Go USB Ethernet Adapter
1623 USB_DEVICE(0x0b95, 0x772a),
1624 .driver_info = (unsigned long) &ax88772_info,
Greg Kroah-Hartmanfef7cc02009-02-24 23:52:24 -08001625}, {
1626 // ABOCOM for pci
1627 USB_DEVICE(0x14ea, 0xab11),
1628 .driver_info = (unsigned long) &ax88178_info,
1629}, {
1630 // ASIX 88772a
1631 USB_DEVICE(0x0db0, 0xa877),
1632 .driver_info = (unsigned long) &ax88772_info,
Aurelien Jacobse8303a32011-12-16 10:49:22 +00001633}, {
1634 // Asus USB Ethernet Adapter
1635 USB_DEVICE (0x0b95, 0x7e2b),
1636 .driver_info = (unsigned long) &ax88772_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001637},
1638 { }, // END
1639};
1640MODULE_DEVICE_TABLE(usb, products);
1641
1642static struct usb_driver asix_driver = {
Grant Grundler83e1b912011-10-04 09:55:18 +00001643 .name = DRIVER_NAME,
David Brownell2e55cc72005-08-31 09:53:10 -07001644 .id_table = products,
1645 .probe = usbnet_probe,
1646 .suspend = usbnet_suspend,
1647 .resume = usbnet_resume,
1648 .disconnect = usbnet_disconnect,
Oliver Neukuma11a6542007-08-03 13:52:19 +02001649 .supports_autosuspend = 1,
David Brownell2e55cc72005-08-31 09:53:10 -07001650};
1651
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001652module_usb_driver(asix_driver);
David Brownell2e55cc72005-08-31 09:53:10 -07001653
1654MODULE_AUTHOR("David Hollis");
Grant Grundler4ad14382011-10-04 09:55:16 +00001655MODULE_VERSION(DRIVER_VERSION);
David Brownell2e55cc72005-08-31 09:53:10 -07001656MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1657MODULE_LICENSE("GPL");
1658