blob: 3ae80eccd0efd9802e5e997d53cd54946ef6d788 [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>
Eric Dumazet9dae3102012-05-28 22:31:41 +000038#include <linux/if_vlan.h>
David Brownell2e55cc72005-08-31 09:53:10 -070039
allanf87ce5b2011-12-22 20:38:51 +000040#define DRIVER_VERSION "22-Dec-2011"
Grant Grundler83e1b912011-10-04 09:55:18 +000041#define DRIVER_NAME "asix"
David Hollis933a27d2006-07-29 10:12:50 -040042
David Brownell2e55cc72005-08-31 09:53:10 -070043/* ASIX AX8817X based USB 2.0 Ethernet Devices */
44
45#define AX_CMD_SET_SW_MII 0x06
46#define AX_CMD_READ_MII_REG 0x07
47#define AX_CMD_WRITE_MII_REG 0x08
48#define AX_CMD_SET_HW_MII 0x0a
49#define AX_CMD_READ_EEPROM 0x0b
50#define AX_CMD_WRITE_EEPROM 0x0c
51#define AX_CMD_WRITE_ENABLE 0x0d
52#define AX_CMD_WRITE_DISABLE 0x0e
David Hollis933a27d2006-07-29 10:12:50 -040053#define AX_CMD_READ_RX_CTL 0x0f
David Brownell2e55cc72005-08-31 09:53:10 -070054#define AX_CMD_WRITE_RX_CTL 0x10
55#define AX_CMD_READ_IPG012 0x11
56#define AX_CMD_WRITE_IPG0 0x12
57#define AX_CMD_WRITE_IPG1 0x13
David Hollis933a27d2006-07-29 10:12:50 -040058#define AX_CMD_READ_NODE_ID 0x13
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +000059#define AX_CMD_WRITE_NODE_ID 0x14
David Brownell2e55cc72005-08-31 09:53:10 -070060#define AX_CMD_WRITE_IPG2 0x14
61#define AX_CMD_WRITE_MULTI_FILTER 0x16
David Hollis933a27d2006-07-29 10:12:50 -040062#define AX88172_CMD_READ_NODE_ID 0x17
David Brownell2e55cc72005-08-31 09:53:10 -070063#define AX_CMD_READ_PHY_ID 0x19
64#define AX_CMD_READ_MEDIUM_STATUS 0x1a
65#define AX_CMD_WRITE_MEDIUM_MODE 0x1b
66#define AX_CMD_READ_MONITOR_MODE 0x1c
67#define AX_CMD_WRITE_MONITOR_MODE 0x1d
David Hollis933a27d2006-07-29 10:12:50 -040068#define AX_CMD_READ_GPIOS 0x1e
David Brownell2e55cc72005-08-31 09:53:10 -070069#define AX_CMD_WRITE_GPIOS 0x1f
70#define AX_CMD_SW_RESET 0x20
71#define AX_CMD_SW_PHY_STATUS 0x21
72#define AX_CMD_SW_PHY_SELECT 0x22
David Brownell2e55cc72005-08-31 09:53:10 -070073
74#define AX_MONITOR_MODE 0x01
75#define AX_MONITOR_LINK 0x02
76#define AX_MONITOR_MAGIC 0x04
77#define AX_MONITOR_HSFS 0x10
78
79/* AX88172 Medium Status Register values */
David Hollis933a27d2006-07-29 10:12:50 -040080#define AX88172_MEDIUM_FD 0x02
81#define AX88172_MEDIUM_TX 0x04
82#define AX88172_MEDIUM_FC 0x10
83#define AX88172_MEDIUM_DEFAULT \
84 ( AX88172_MEDIUM_FD | AX88172_MEDIUM_TX | AX88172_MEDIUM_FC )
David Brownell2e55cc72005-08-31 09:53:10 -070085
86#define AX_MCAST_FILTER_SIZE 8
87#define AX_MAX_MCAST 64
88
David Brownell2e55cc72005-08-31 09:53:10 -070089#define AX_SWRESET_CLEAR 0x00
90#define AX_SWRESET_RR 0x01
91#define AX_SWRESET_RT 0x02
92#define AX_SWRESET_PRTE 0x04
93#define AX_SWRESET_PRL 0x08
94#define AX_SWRESET_BZ 0x10
95#define AX_SWRESET_IPRL 0x20
96#define AX_SWRESET_IPPD 0x40
97
98#define AX88772_IPG0_DEFAULT 0x15
99#define AX88772_IPG1_DEFAULT 0x0c
100#define AX88772_IPG2_DEFAULT 0x12
101
David Hollis933a27d2006-07-29 10:12:50 -0400102/* AX88772 & AX88178 Medium Mode Register */
103#define AX_MEDIUM_PF 0x0080
104#define AX_MEDIUM_JFE 0x0040
105#define AX_MEDIUM_TFC 0x0020
106#define AX_MEDIUM_RFC 0x0010
107#define AX_MEDIUM_ENCK 0x0008
108#define AX_MEDIUM_AC 0x0004
109#define AX_MEDIUM_FD 0x0002
110#define AX_MEDIUM_GM 0x0001
111#define AX_MEDIUM_SM 0x1000
112#define AX_MEDIUM_SBP 0x0800
113#define AX_MEDIUM_PS 0x0200
114#define AX_MEDIUM_RE 0x0100
David Brownell2e55cc72005-08-31 09:53:10 -0700115
David Hollis933a27d2006-07-29 10:12:50 -0400116#define AX88178_MEDIUM_DEFAULT \
117 (AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
118 AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
Grant Grundler83e1b912011-10-04 09:55:18 +0000119 AX_MEDIUM_RE)
David Hollis933a27d2006-07-29 10:12:50 -0400120
121#define AX88772_MEDIUM_DEFAULT \
122 (AX_MEDIUM_FD | AX_MEDIUM_RFC | \
123 AX_MEDIUM_TFC | AX_MEDIUM_PS | \
Grant Grundler83e1b912011-10-04 09:55:18 +0000124 AX_MEDIUM_AC | AX_MEDIUM_RE)
David Hollis933a27d2006-07-29 10:12:50 -0400125
126/* AX88772 & AX88178 RX_CTL values */
Grant Grundler83e1b912011-10-04 09:55:18 +0000127#define AX_RX_CTL_SO 0x0080
128#define AX_RX_CTL_AP 0x0020
129#define AX_RX_CTL_AM 0x0010
130#define AX_RX_CTL_AB 0x0008
131#define AX_RX_CTL_SEP 0x0004
132#define AX_RX_CTL_AMALL 0x0002
133#define AX_RX_CTL_PRO 0x0001
134#define AX_RX_CTL_MFB_2048 0x0000
135#define AX_RX_CTL_MFB_4096 0x0100
136#define AX_RX_CTL_MFB_8192 0x0200
137#define AX_RX_CTL_MFB_16384 0x0300
David Hollis933a27d2006-07-29 10:12:50 -0400138
Grant Grundler83e1b912011-10-04 09:55:18 +0000139#define AX_DEFAULT_RX_CTL (AX_RX_CTL_SO | AX_RX_CTL_AB)
David Hollis933a27d2006-07-29 10:12:50 -0400140
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
Grant Grundler34861402011-11-15 07:12:39 +0000167#define PHY_MODE_RTL8211CL 0x000C
Grant Grundler610d8852011-10-04 09:55:17 +0000168
David Brownell2e55cc72005-08-31 09:53:10 -0700169/* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
David Hollis48b1be62006-03-28 20:15:42 -0500170struct asix_data {
David Brownell2e55cc72005-08-31 09:53:10 -0700171 u8 multi_filter[AX_MCAST_FILTER_SIZE];
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000172 u8 mac_addr[ETH_ALEN];
David Hollis933a27d2006-07-29 10:12:50 -0400173 u8 phymode;
174 u8 ledmode;
175 u8 eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700176};
177
178struct ax88172_int_data {
Al Viro51bf2972007-12-22 17:42:36 +0000179 __le16 res1;
David Brownell2e55cc72005-08-31 09:53:10 -0700180 u8 link;
Al Viro51bf2972007-12-22 17:42:36 +0000181 __le16 res2;
David Brownell2e55cc72005-08-31 09:53:10 -0700182 u8 status;
Al Viro51bf2972007-12-22 17:42:36 +0000183 __le16 res3;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000184} __packed;
David Brownell2e55cc72005-08-31 09:53:10 -0700185
David Hollis48b1be62006-03-28 20:15:42 -0500186static int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700187 u16 size, void *data)
188{
Al Viro51bf2972007-12-22 17:42:36 +0000189 void *buf;
190 int err = -ENOMEM;
191
Joe Perches60b86752010-02-17 10:30:23 +0000192 netdev_dbg(dev->net, "asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
193 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000194
195 buf = kmalloc(size, GFP_KERNEL);
196 if (!buf)
197 goto out;
198
199 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700200 dev->udev,
201 usb_rcvctrlpipe(dev->udev, 0),
202 cmd,
203 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
204 value,
205 index,
Al Viro51bf2972007-12-22 17:42:36 +0000206 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700207 size,
208 USB_CTRL_GET_TIMEOUT);
Russ Dill94d43362008-01-09 21:32:07 -0700209 if (err == size)
Al Viro51bf2972007-12-22 17:42:36 +0000210 memcpy(data, buf, size);
Russ Dill94d43362008-01-09 21:32:07 -0700211 else if (err >= 0)
212 err = -EINVAL;
Al Viro51bf2972007-12-22 17:42:36 +0000213 kfree(buf);
214
215out:
216 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700217}
218
David Hollis48b1be62006-03-28 20:15:42 -0500219static int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700220 u16 size, void *data)
221{
Al Viro51bf2972007-12-22 17:42:36 +0000222 void *buf = NULL;
223 int err = -ENOMEM;
224
Joe Perches60b86752010-02-17 10:30:23 +0000225 netdev_dbg(dev->net, "asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
226 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000227
228 if (data) {
Julia Lawall99bf2362010-05-15 11:20:45 +0000229 buf = kmemdup(data, size, GFP_KERNEL);
Al Viro51bf2972007-12-22 17:42:36 +0000230 if (!buf)
231 goto out;
Al Viro51bf2972007-12-22 17:42:36 +0000232 }
233
234 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700235 dev->udev,
236 usb_sndctrlpipe(dev->udev, 0),
237 cmd,
238 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
239 value,
240 index,
Al Viro51bf2972007-12-22 17:42:36 +0000241 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700242 size,
243 USB_CTRL_SET_TIMEOUT);
Al Viro51bf2972007-12-22 17:42:36 +0000244 kfree(buf);
245
246out:
247 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700248}
249
David Howells7d12e782006-10-05 14:55:46 +0100250static void asix_async_cmd_callback(struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700251{
252 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800253 int status = urb->status;
David Brownell2e55cc72005-08-31 09:53:10 -0700254
Oliver Neukumc94cb312008-12-18 23:00:59 -0800255 if (status < 0)
David Hollis48b1be62006-03-28 20:15:42 -0500256 printk(KERN_DEBUG "asix_async_cmd_callback() failed with %d",
Oliver Neukumc94cb312008-12-18 23:00:59 -0800257 status);
David Brownell2e55cc72005-08-31 09:53:10 -0700258
259 kfree(req);
260 usb_free_urb(urb);
261}
262
David Hollis933a27d2006-07-29 10:12:50 -0400263static void
264asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
265 u16 size, void *data)
David Hollis48b1be62006-03-28 20:15:42 -0500266{
David Hollis933a27d2006-07-29 10:12:50 -0400267 struct usb_ctrlrequest *req;
268 int status;
269 struct urb *urb;
David Hollis48b1be62006-03-28 20:15:42 -0500270
Joe Perches60b86752010-02-17 10:30:23 +0000271 netdev_dbg(dev->net, "asix_write_cmd_async() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
272 cmd, value, index, size);
Grant Grundler83e1b912011-10-04 09:55:18 +0000273
274 urb = usb_alloc_urb(0, GFP_ATOMIC);
275 if (!urb) {
Joe Perches60b86752010-02-17 10:30:23 +0000276 netdev_err(dev->net, "Error allocating URB in write_cmd_async!\n");
David Hollis933a27d2006-07-29 10:12:50 -0400277 return;
David Hollis48b1be62006-03-28 20:15:42 -0500278 }
David Hollis933a27d2006-07-29 10:12:50 -0400279
Grant Grundler83e1b912011-10-04 09:55:18 +0000280 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
281 if (!req) {
Joe Perches60b86752010-02-17 10:30:23 +0000282 netdev_err(dev->net, "Failed to allocate memory for control request\n");
David Hollis933a27d2006-07-29 10:12:50 -0400283 usb_free_urb(urb);
284 return;
285 }
286
287 req->bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
288 req->bRequest = cmd;
Oliver Neukum9aa742e2006-11-23 12:45:31 +0100289 req->wValue = cpu_to_le16(value);
290 req->wIndex = cpu_to_le16(index);
291 req->wLength = cpu_to_le16(size);
David Hollis933a27d2006-07-29 10:12:50 -0400292
293 usb_fill_control_urb(urb, dev->udev,
294 usb_sndctrlpipe(dev->udev, 0),
295 (void *)req, data, size,
296 asix_async_cmd_callback, req);
297
Grant Grundler83e1b912011-10-04 09:55:18 +0000298 status = usb_submit_urb(urb, GFP_ATOMIC);
299 if (status < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000300 netdev_err(dev->net, "Error submitting the control message: status=%d\n",
301 status);
David Hollis933a27d2006-07-29 10:12:50 -0400302 kfree(req);
303 usb_free_urb(urb);
304 }
David Hollis48b1be62006-03-28 20:15:42 -0500305}
306
David Hollis933a27d2006-07-29 10:12:50 -0400307static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
David Hollis48b1be62006-03-28 20:15:42 -0500308{
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000309 int offset = 0;
David Hollis48b1be62006-03-28 20:15:42 -0500310
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000311 while (offset + sizeof(u32) < skb->len) {
312 struct sk_buff *ax_skb;
313 u16 size;
314 u32 header = get_unaligned_le32(skb->data + offset);
David Hollis48b1be62006-03-28 20:15:42 -0500315
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000316 offset += sizeof(u32);
Marek Vasutbc466e62011-07-26 16:44:46 +0000317
David Hollis933a27d2006-07-29 10:12:50 -0400318 /* get the packet length */
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000319 size = (u16) (header & 0x7ff);
320 if (size != ((~header >> 16) & 0x07ff)) {
321 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length\n");
322 return 0;
Neil Jones3f78d1f2010-05-17 17:18:28 -0700323 }
324
Eric Dumazet9dae3102012-05-28 22:31:41 +0000325 if ((size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) ||
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000326 (size + offset > skb->len)) {
Joe Perches60b86752010-02-17 10:30:23 +0000327 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
328 size);
David Hollis933a27d2006-07-29 10:12:50 -0400329 return 0;
330 }
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000331 ax_skb = netdev_alloc_skb_ip_align(dev->net, size);
332 if (!ax_skb)
David Hollis933a27d2006-07-29 10:12:50 -0400333 return 0;
David Hollis933a27d2006-07-29 10:12:50 -0400334
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000335 skb_put(ax_skb, size);
336 memcpy(ax_skb->data, skb->data + offset, size);
337 usbnet_skb_return(dev, ax_skb);
David Hollis933a27d2006-07-29 10:12:50 -0400338
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000339 offset += (size + 1) & 0xfffe;
David Hollis933a27d2006-07-29 10:12:50 -0400340 }
341
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000342 if (skb->len != offset) {
Joe Perches60b86752010-02-17 10:30:23 +0000343 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d\n",
344 skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400345 return 0;
346 }
347 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500348}
349
David Hollis933a27d2006-07-29 10:12:50 -0400350static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
351 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500352{
David Hollis933a27d2006-07-29 10:12:50 -0400353 int padlen;
354 int headroom = skb_headroom(skb);
355 int tailroom = skb_tailroom(skb);
356 u32 packet_len;
357 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500358
Ingo van Lil2a580942012-04-23 22:05:38 +0000359 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500360
Joe Perches8e95a202009-12-03 07:58:21 +0000361 if ((!skb_cloned(skb)) &&
362 ((headroom + tailroom) >= (4 + padlen))) {
David Hollis933a27d2006-07-29 10:12:50 -0400363 if ((headroom < 4) || (tailroom < padlen)) {
364 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700365 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400366 }
367 } else {
368 struct sk_buff *skb2;
369 skb2 = skb_copy_expand(skb, 4, padlen, flags);
370 dev_kfree_skb_any(skb);
371 skb = skb2;
372 if (!skb)
373 return NULL;
374 }
375
376 skb_push(skb, 4);
377 packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4);
David Hollis57e4f042007-02-05 12:03:03 -0500378 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300379 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400380
Ingo van Lil2a580942012-04-23 22:05:38 +0000381 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500382 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700383 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400384 skb_put(skb, sizeof(padbytes));
385 }
386 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500387}
388
389static void asix_status(struct usbnet *dev, struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700390{
391 struct ax88172_int_data *event;
392 int link;
393
394 if (urb->actual_length < 8)
395 return;
396
397 event = urb->transfer_buffer;
398 link = event->link & 0x01;
399 if (netif_carrier_ok(dev->net) != link) {
400 if (link) {
401 netif_carrier_on(dev->net);
402 usbnet_defer_kevent (dev, EVENT_LINK_RESET );
403 } else
404 netif_carrier_off(dev->net);
Joe Perches60b86752010-02-17 10:30:23 +0000405 netdev_dbg(dev->net, "Link Status is: %d\n", link);
David Brownell2e55cc72005-08-31 09:53:10 -0700406 }
407}
408
David Hollis933a27d2006-07-29 10:12:50 -0400409static inline int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700410{
David Hollis933a27d2006-07-29 10:12:50 -0400411 int ret;
412 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
413 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000414 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400415 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700416}
417
David Hollis933a27d2006-07-29 10:12:50 -0400418static inline int asix_set_hw_mii(struct usbnet *dev)
419{
420 int ret;
421 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
422 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000423 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400424 return ret;
425}
426
427static inline int asix_get_phy_addr(struct usbnet *dev)
428{
Al Viro51bf2972007-12-22 17:42:36 +0000429 u8 buf[2];
430 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400431
Joe Perches60b86752010-02-17 10:30:23 +0000432 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400433
Al Viro51bf2972007-12-22 17:42:36 +0000434 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000435 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000436 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400437 }
Joe Perches60b86752010-02-17 10:30:23 +0000438 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
439 *((__le16 *)buf));
Al Viro51bf2972007-12-22 17:42:36 +0000440 ret = buf[1];
441
442out:
David Hollis933a27d2006-07-29 10:12:50 -0400443 return ret;
444}
445
446static int asix_sw_reset(struct usbnet *dev, u8 flags)
447{
448 int ret;
449
450 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
451 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000452 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400453
454 return ret;
455}
456
457static u16 asix_read_rx_ctl(struct usbnet *dev)
458{
Al Viro51bf2972007-12-22 17:42:36 +0000459 __le16 v;
460 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400461
Al Viro51bf2972007-12-22 17:42:36 +0000462 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000463 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000464 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400465 }
Al Viro51bf2972007-12-22 17:42:36 +0000466 ret = le16_to_cpu(v);
467out:
David Hollis933a27d2006-07-29 10:12:50 -0400468 return ret;
469}
470
471static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
472{
473 int ret;
474
Joe Perches60b86752010-02-17 10:30:23 +0000475 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400476 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
477 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000478 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
479 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400480
481 return ret;
482}
483
484static u16 asix_read_medium_status(struct usbnet *dev)
485{
Al Viro51bf2972007-12-22 17:42:36 +0000486 __le16 v;
487 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400488
Al Viro51bf2972007-12-22 17:42:36 +0000489 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000490 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
491 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000492 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400493 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000494
495 return le16_to_cpu(v);
496
David Hollis933a27d2006-07-29 10:12:50 -0400497}
498
499static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
500{
501 int ret;
502
Joe Perches60b86752010-02-17 10:30:23 +0000503 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400504 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
505 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000506 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
507 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400508
509 return ret;
510}
511
512static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
513{
514 int ret;
515
Joe Perches60b86752010-02-17 10:30:23 +0000516 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400517 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
518 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000519 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
520 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400521
522 if (sleep)
523 msleep(sleep);
524
525 return ret;
526}
527
528/*
529 * AX88772 & AX88178 have a 16-bit RX_CTL value
530 */
David Hollis48b1be62006-03-28 20:15:42 -0500531static void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700532{
533 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500534 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400535 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700536
537 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400538 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000539 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000540 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400541 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000542 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700543 /* just broadcast and directed */
544 } else {
545 /* We use the 20 byte dev->data
546 * for our 8 byte filter buffer
547 * to avoid allocating memory that
548 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000549 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700550 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700551
552 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
553
554 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000555 netdev_for_each_mc_addr(ha, net) {
556 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700557 data->multi_filter[crc_bits >> 3] |=
558 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700559 }
560
David Hollis48b1be62006-03-28 20:15:42 -0500561 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700562 AX_MCAST_FILTER_SIZE, data->multi_filter);
563
David Hollis933a27d2006-07-29 10:12:50 -0400564 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700565 }
566
David Hollis48b1be62006-03-28 20:15:42 -0500567 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700568}
569
David Hollis48b1be62006-03-28 20:15:42 -0500570static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700571{
572 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000573 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700574
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200575 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500576 asix_set_sw_mii(dev);
577 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000578 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500579 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200580 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700581
Joe Perches60b86752010-02-17 10:30:23 +0000582 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
583 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700584
Al Viro51bf2972007-12-22 17:42:36 +0000585 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700586}
587
588static void
David Hollis48b1be62006-03-28 20:15:42 -0500589asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700590{
591 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000592 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700593
Joe Perches60b86752010-02-17 10:30:23 +0000594 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
595 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200596 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500597 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000598 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500599 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200600 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700601}
602
David Hollis933a27d2006-07-29 10:12:50 -0400603/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
604static u32 asix_get_phyid(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700605{
David Hollis933a27d2006-07-29 10:12:50 -0400606 int phy_reg;
607 u32 phy_id;
Grant Grundlera77929a2011-11-15 07:12:40 +0000608 int i;
David Brownell2e55cc72005-08-31 09:53:10 -0700609
Grant Grundlera77929a2011-11-15 07:12:40 +0000610 /* Poll for the rare case the FW or phy isn't ready yet. */
611 for (i = 0; i < 100; i++) {
612 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
613 if (phy_reg != 0 && phy_reg != 0xFFFF)
614 break;
615 mdelay(1);
616 }
617
618 if (phy_reg <= 0 || phy_reg == 0xFFFF)
David Hollis933a27d2006-07-29 10:12:50 -0400619 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700620
David Hollis933a27d2006-07-29 10:12:50 -0400621 phy_id = (phy_reg & 0xffff) << 16;
David Brownell2e55cc72005-08-31 09:53:10 -0700622
David Hollis933a27d2006-07-29 10:12:50 -0400623 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
624 if (phy_reg < 0)
625 return 0;
626
627 phy_id |= (phy_reg & 0xffff);
628
629 return phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700630}
631
632static void
David Hollis48b1be62006-03-28 20:15:42 -0500633asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700634{
635 struct usbnet *dev = netdev_priv(net);
636 u8 opt;
637
David Hollis48b1be62006-03-28 20:15:42 -0500638 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700639 wolinfo->supported = 0;
640 wolinfo->wolopts = 0;
641 return;
642 }
643 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
644 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000645 if (opt & AX_MONITOR_LINK)
646 wolinfo->wolopts |= WAKE_PHY;
647 if (opt & AX_MONITOR_MAGIC)
648 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700649}
650
651static int
David Hollis48b1be62006-03-28 20:15:42 -0500652asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700653{
654 struct usbnet *dev = netdev_priv(net);
655 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700656
657 if (wolinfo->wolopts & WAKE_PHY)
658 opt |= AX_MONITOR_LINK;
659 if (wolinfo->wolopts & WAKE_MAGIC)
660 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700661
David Hollis48b1be62006-03-28 20:15:42 -0500662 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000663 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700664 return -EINVAL;
665
666 return 0;
667}
668
David Hollis48b1be62006-03-28 20:15:42 -0500669static int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700670{
David Hollis933a27d2006-07-29 10:12:50 -0400671 struct usbnet *dev = netdev_priv(net);
672 struct asix_data *data = (struct asix_data *)&dev->data;
673
674 return data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700675}
676
David Hollis48b1be62006-03-28 20:15:42 -0500677static int asix_get_eeprom(struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700678 struct ethtool_eeprom *eeprom, u8 *data)
679{
680 struct usbnet *dev = netdev_priv(net);
Al Viro51bf2972007-12-22 17:42:36 +0000681 __le16 *ebuf = (__le16 *)data;
David Brownell2e55cc72005-08-31 09:53:10 -0700682 int i;
683
684 /* Crude hack to ensure that we don't overwrite memory
685 * if an odd length is supplied
686 */
687 if (eeprom->len % 2)
688 return -EINVAL;
689
690 eeprom->magic = AX_EEPROM_MAGIC;
691
692 /* ax8817x returns 2 bytes from eeprom on read */
693 for (i=0; i < eeprom->len / 2; i++) {
David Hollis48b1be62006-03-28 20:15:42 -0500694 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
David Brownell2e55cc72005-08-31 09:53:10 -0700695 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
696 return -EINVAL;
697 }
698 return 0;
699}
700
David Hollis48b1be62006-03-28 20:15:42 -0500701static void asix_get_drvinfo (struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700702 struct ethtool_drvinfo *info)
703{
David Hollis933a27d2006-07-29 10:12:50 -0400704 struct usbnet *dev = netdev_priv(net);
705 struct asix_data *data = (struct asix_data *)&dev->data;
706
David Brownell2e55cc72005-08-31 09:53:10 -0700707 /* Inherit standard device info */
708 usbnet_get_drvinfo(net, info);
Grant Grundler83e1b912011-10-04 09:55:18 +0000709 strncpy (info->driver, DRIVER_NAME, sizeof info->driver);
David Hollis933a27d2006-07-29 10:12:50 -0400710 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
711 info->eedump_len = data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700712}
713
David Hollis933a27d2006-07-29 10:12:50 -0400714static u32 asix_get_link(struct net_device *net)
715{
716 struct usbnet *dev = netdev_priv(net);
717
718 return mii_link_ok(&dev->mii);
719}
720
721static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
722{
723 struct usbnet *dev = netdev_priv(net);
724
725 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700726}
727
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000728static int asix_set_mac_address(struct net_device *net, void *p)
729{
730 struct usbnet *dev = netdev_priv(net);
731 struct asix_data *data = (struct asix_data *)&dev->data;
732 struct sockaddr *addr = p;
733
734 if (netif_running(net))
735 return -EBUSY;
736 if (!is_valid_ether_addr(addr->sa_data))
737 return -EADDRNOTAVAIL;
738
739 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
740
741 /* We use the 20 byte dev->data
742 * for our 6 byte mac buffer
743 * to avoid allocating memory that
744 * is tricky to free later */
745 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
746 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
747 data->mac_addr);
748
749 return 0;
750}
751
David Brownell2e55cc72005-08-31 09:53:10 -0700752/* We need to override some ethtool_ops so we require our
753 own structure so we don't interfere with other usbnet
754 devices that may be connected at the same time. */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700755static const struct ethtool_ops ax88172_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500756 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400757 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700758 .get_msglevel = usbnet_get_msglevel,
759 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500760 .get_wol = asix_get_wol,
761 .set_wol = asix_set_wol,
762 .get_eeprom_len = asix_get_eeprom_len,
763 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200764 .get_settings = usbnet_get_settings,
765 .set_settings = usbnet_set_settings,
766 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700767};
768
David Hollis933a27d2006-07-29 10:12:50 -0400769static void ax88172_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700770{
771 struct usbnet *dev = netdev_priv(net);
David Hollis933a27d2006-07-29 10:12:50 -0400772 struct asix_data *data = (struct asix_data *)&dev->data;
773 u8 rx_ctl = 0x8c;
David Brownell2e55cc72005-08-31 09:53:10 -0700774
David Hollis933a27d2006-07-29 10:12:50 -0400775 if (net->flags & IFF_PROMISC) {
776 rx_ctl |= 0x01;
Joe Perches8e95a202009-12-03 07:58:21 +0000777 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000778 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400779 rx_ctl |= 0x02;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000780 } else if (netdev_mc_empty(net)) {
David Hollis933a27d2006-07-29 10:12:50 -0400781 /* just broadcast and directed */
782 } else {
783 /* We use the 20 byte dev->data
784 * for our 8 byte filter buffer
785 * to avoid allocating memory that
786 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000787 struct netdev_hw_addr *ha;
David Hollis933a27d2006-07-29 10:12:50 -0400788 u32 crc_bits;
David Hollis933a27d2006-07-29 10:12:50 -0400789
790 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
791
792 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000793 netdev_for_each_mc_addr(ha, net) {
794 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Hollis933a27d2006-07-29 10:12:50 -0400795 data->multi_filter[crc_bits >> 3] |=
796 1 << (crc_bits & 7);
David Hollis933a27d2006-07-29 10:12:50 -0400797 }
798
799 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
800 AX_MCAST_FILTER_SIZE, data->multi_filter);
801
802 rx_ctl |= 0x10;
803 }
804
805 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
806}
807
808static int ax88172_link_reset(struct usbnet *dev)
809{
810 u8 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000811 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -0400812
813 mii_check_media(&dev->mii, 1, 1);
814 mii_ethtool_gset(&dev->mii, &ecmd);
815 mode = AX88172_MEDIUM_DEFAULT;
816
817 if (ecmd.duplex != DUPLEX_FULL)
818 mode |= ~AX88172_MEDIUM_FD;
819
David Decotigny8ae6dac2011-04-27 18:32:38 +0000820 netdev_dbg(dev->net, "ax88172_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
821 ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400822
823 asix_write_medium_mode(dev, mode);
824
825 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700826}
827
Stephen Hemminger17033382009-03-20 19:35:55 +0000828static const struct net_device_ops ax88172_netdev_ops = {
829 .ndo_open = usbnet_open,
830 .ndo_stop = usbnet_stop,
831 .ndo_start_xmit = usbnet_start_xmit,
832 .ndo_tx_timeout = usbnet_tx_timeout,
833 .ndo_change_mtu = usbnet_change_mtu,
834 .ndo_set_mac_address = eth_mac_addr,
835 .ndo_validate_addr = eth_validate_addr,
836 .ndo_do_ioctl = asix_ioctl,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000837 .ndo_set_rx_mode = ax88172_set_multicast,
Stephen Hemminger17033382009-03-20 19:35:55 +0000838};
839
David Hollis48b1be62006-03-28 20:15:42 -0500840static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
David Brownell2e55cc72005-08-31 09:53:10 -0700841{
842 int ret = 0;
Al Viro51bf2972007-12-22 17:42:36 +0000843 u8 buf[ETH_ALEN];
David Brownell2e55cc72005-08-31 09:53:10 -0700844 int i;
845 unsigned long gpio_bits = dev->driver_info->data;
David Hollis933a27d2006-07-29 10:12:50 -0400846 struct asix_data *data = (struct asix_data *)&dev->data;
847
848 data->eeprom_len = AX88172_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700849
850 usbnet_get_endpoints(dev,intf);
851
David Brownell2e55cc72005-08-31 09:53:10 -0700852 /* Toggle the GPIOs in a manufacturer/model specific way */
853 for (i = 2; i >= 0; i--) {
Grant Grundler83e1b912011-10-04 09:55:18 +0000854 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
855 (gpio_bits >> (i * 8)) & 0xff, 0, 0, NULL);
856 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000857 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700858 msleep(5);
859 }
860
Grant Grundler83e1b912011-10-04 09:55:18 +0000861 ret = asix_write_rx_ctl(dev, 0x80);
862 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000863 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700864
865 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +0000866 ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
867 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700868 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000869 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700870 }
871 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
872
David Brownell2e55cc72005-08-31 09:53:10 -0700873 /* Initialize MII structure */
874 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -0500875 dev->mii.mdio_read = asix_mdio_read;
876 dev->mii.mdio_write = asix_mdio_write;
David Brownell2e55cc72005-08-31 09:53:10 -0700877 dev->mii.phy_id_mask = 0x3f;
878 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -0400879 dev->mii.phy_id = asix_get_phy_addr(dev);
David Brownell2e55cc72005-08-31 09:53:10 -0700880
Stephen Hemminger17033382009-03-20 19:35:55 +0000881 dev->net->netdev_ops = &ax88172_netdev_ops;
David Hollis48b1be62006-03-28 20:15:42 -0500882 dev->net->ethtool_ops = &ax88172_ethtool_ops;
David Brownell2e55cc72005-08-31 09:53:10 -0700883
David Hollis933a27d2006-07-29 10:12:50 -0400884 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
885 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700886 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
887 mii_nway_restart(&dev->mii);
888
889 return 0;
Al Viro51bf2972007-12-22 17:42:36 +0000890
891out:
David Brownell2e55cc72005-08-31 09:53:10 -0700892 return ret;
893}
894
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700895static const struct ethtool_ops ax88772_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500896 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400897 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700898 .get_msglevel = usbnet_get_msglevel,
899 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500900 .get_wol = asix_get_wol,
901 .set_wol = asix_set_wol,
902 .get_eeprom_len = asix_get_eeprom_len,
903 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200904 .get_settings = usbnet_get_settings,
905 .set_settings = usbnet_set_settings,
906 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700907};
908
David Hollis933a27d2006-07-29 10:12:50 -0400909static int ax88772_link_reset(struct usbnet *dev)
910{
911 u16 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000912 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -0400913
914 mii_check_media(&dev->mii, 1, 1);
915 mii_ethtool_gset(&dev->mii, &ecmd);
916 mode = AX88772_MEDIUM_DEFAULT;
917
David Decotigny8ae6dac2011-04-27 18:32:38 +0000918 if (ethtool_cmd_speed(&ecmd) != SPEED_100)
David Hollis933a27d2006-07-29 10:12:50 -0400919 mode &= ~AX_MEDIUM_PS;
920
921 if (ecmd.duplex != DUPLEX_FULL)
922 mode &= ~AX_MEDIUM_FD;
923
David Decotigny8ae6dac2011-04-27 18:32:38 +0000924 netdev_dbg(dev->net, "ax88772_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
925 ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400926
927 asix_write_medium_mode(dev, mode);
928
929 return 0;
930}
931
Grant Grundler4ad14382011-10-04 09:55:16 +0000932static int ax88772_reset(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700933{
Jussi Kivilinna8ef66bd2012-01-10 06:40:17 +0000934 struct asix_data *data = (struct asix_data *)&dev->data;
Andres Salomond0ffff82007-01-11 18:39:16 -0500935 int ret, embd_phy;
David Hollis933a27d2006-07-29 10:12:50 -0400936 u16 rx_ctl;
David Brownell2e55cc72005-08-31 09:53:10 -0700937
Grant Grundler83e1b912011-10-04 09:55:18 +0000938 ret = asix_write_gpio(dev,
939 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5);
940 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000941 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700942
Andres Salomond0ffff82007-01-11 18:39:16 -0500943 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
Grant Grundler4ad14382011-10-04 09:55:16 +0000944
Grant Grundler83e1b912011-10-04 09:55:18 +0000945 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
946 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700947 dbg("Select PHY #1 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000948 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700949 }
950
Grant Grundler83e1b912011-10-04 09:55:18 +0000951 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
952 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000953 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700954
955 msleep(150);
Grant Grundler83e1b912011-10-04 09:55:18 +0000956
957 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
958 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000959 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700960
961 msleep(150);
Grant Grundler4ad14382011-10-04 09:55:16 +0000962
Andres Salomond0ffff82007-01-11 18:39:16 -0500963 if (embd_phy) {
Grant Grundler83e1b912011-10-04 09:55:18 +0000964 ret = asix_sw_reset(dev, AX_SWRESET_IPRL);
965 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000966 goto out;
Grant Grundler83e1b912011-10-04 09:55:18 +0000967 } else {
968 ret = asix_sw_reset(dev, AX_SWRESET_PRTE);
969 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000970 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -0500971 }
David Brownell2e55cc72005-08-31 09:53:10 -0700972
973 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -0400974 rx_ctl = asix_read_rx_ctl(dev);
975 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
Grant Grundler83e1b912011-10-04 09:55:18 +0000976 ret = asix_write_rx_ctl(dev, 0x0000);
977 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000978 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700979
David Hollis933a27d2006-07-29 10:12:50 -0400980 rx_ctl = asix_read_rx_ctl(dev);
981 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
982
Grant Grundler83e1b912011-10-04 09:55:18 +0000983 ret = asix_sw_reset(dev, AX_SWRESET_PRL);
984 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000985 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700986
David Brownell2e55cc72005-08-31 09:53:10 -0700987 msleep(150);
988
Grant Grundler83e1b912011-10-04 09:55:18 +0000989 ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL);
990 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000991 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700992
David Hollis48b1be62006-03-28 20:15:42 -0500993 msleep(150);
994
David Hollis933a27d2006-07-29 10:12:50 -0400995 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
996 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700997 ADVERTISE_ALL | ADVERTISE_CSMA);
998 mii_nway_restart(&dev->mii);
999
Grant Grundler83e1b912011-10-04 09:55:18 +00001000 ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT);
1001 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001002 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001003
Grant Grundler83e1b912011-10-04 09:55:18 +00001004 ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
David Brownell2e55cc72005-08-31 09:53:10 -07001005 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
Grant Grundler83e1b912011-10-04 09:55:18 +00001006 AX88772_IPG2_DEFAULT, 0, NULL);
1007 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -07001008 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001009 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001010 }
David Brownell2e55cc72005-08-31 09:53:10 -07001011
Jussi Kivilinna8ef66bd2012-01-10 06:40:17 +00001012 /* Rewrite MAC address */
1013 memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
1014 ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
1015 data->mac_addr);
1016 if (ret < 0)
1017 goto out;
1018
David Brownell2e55cc72005-08-31 09:53:10 -07001019 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
Grant Grundler83e1b912011-10-04 09:55:18 +00001020 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1021 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001022 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001023
David Hollis933a27d2006-07-29 10:12:50 -04001024 rx_ctl = asix_read_rx_ctl(dev);
1025 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1026
1027 rx_ctl = asix_read_medium_status(dev);
1028 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1029
Grant Grundler4ad14382011-10-04 09:55:16 +00001030 return 0;
1031
1032out:
1033 return ret;
1034
1035}
1036
1037static const struct net_device_ops ax88772_netdev_ops = {
1038 .ndo_open = usbnet_open,
1039 .ndo_stop = usbnet_stop,
1040 .ndo_start_xmit = usbnet_start_xmit,
1041 .ndo_tx_timeout = usbnet_tx_timeout,
1042 .ndo_change_mtu = usbnet_change_mtu,
1043 .ndo_set_mac_address = asix_set_mac_address,
1044 .ndo_validate_addr = eth_validate_addr,
1045 .ndo_do_ioctl = asix_ioctl,
1046 .ndo_set_rx_mode = asix_set_multicast,
1047};
1048
1049static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
1050{
Grant Grundlerd3665182011-11-15 07:12:41 +00001051 int ret, embd_phy;
Grant Grundler4ad14382011-10-04 09:55:16 +00001052 struct asix_data *data = (struct asix_data *)&dev->data;
1053 u8 buf[ETH_ALEN];
1054 u32 phyid;
1055
1056 data->eeprom_len = AX88772_EEPROM_LEN;
1057
1058 usbnet_get_endpoints(dev,intf);
1059
1060 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +00001061 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1062 if (ret < 0) {
Grant Grundler4ad14382011-10-04 09:55:16 +00001063 dbg("Failed to read MAC address: %d", ret);
Grant Grundler83e1b912011-10-04 09:55:18 +00001064 return ret;
Grant Grundler4ad14382011-10-04 09:55:16 +00001065 }
1066 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1067
1068 /* Initialize MII structure */
1069 dev->mii.dev = dev->net;
1070 dev->mii.mdio_read = asix_mdio_read;
1071 dev->mii.mdio_write = asix_mdio_write;
1072 dev->mii.phy_id_mask = 0x1f;
1073 dev->mii.reg_num_mask = 0x1f;
1074 dev->mii.phy_id = asix_get_phy_addr(dev);
1075
Grant Grundler4ad14382011-10-04 09:55:16 +00001076 dev->net->netdev_ops = &ax88772_netdev_ops;
1077 dev->net->ethtool_ops = &ax88772_ethtool_ops;
1078
Grant Grundlerd3665182011-11-15 07:12:41 +00001079 embd_phy = ((dev->mii.phy_id & 0x1f) == 0x10 ? 1 : 0);
1080
1081 /* Reset the PHY to normal operation mode */
1082 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
1083 if (ret < 0) {
1084 dbg("Select PHY #1 failed: %d", ret);
1085 return ret;
1086 }
1087
1088 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
Grant Grundler83e1b912011-10-04 09:55:18 +00001089 if (ret < 0)
1090 return ret;
Grant Grundler4ad14382011-10-04 09:55:16 +00001091
Grant Grundlerd3665182011-11-15 07:12:41 +00001092 msleep(150);
1093
1094 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
1095 if (ret < 0)
1096 return ret;
1097
1098 msleep(150);
1099
1100 ret = asix_sw_reset(dev, embd_phy ? AX_SWRESET_IPRL : AX_SWRESET_PRTE);
1101
1102 /* Read PHYID register *AFTER* the PHY was reset properly */
1103 phyid = asix_get_phyid(dev);
1104 dbg("PHYID=0x%08x", phyid);
1105
David Brownell2e55cc72005-08-31 09:53:10 -07001106 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1107 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1108 /* hard_mtu is still the default - the device does not support
1109 jumbo eth frames */
1110 dev->rx_urb_size = 2048;
1111 }
Grant Grundler83e1b912011-10-04 09:55:18 +00001112
David Brownell2e55cc72005-08-31 09:53:10 -07001113 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -07001114}
1115
stephen hemmingerbc689c92012-01-05 19:10:23 +00001116static const struct ethtool_ops ax88178_ethtool_ops = {
David Hollis933a27d2006-07-29 10:12:50 -04001117 .get_drvinfo = asix_get_drvinfo,
1118 .get_link = asix_get_link,
David Hollis933a27d2006-07-29 10:12:50 -04001119 .get_msglevel = usbnet_get_msglevel,
1120 .set_msglevel = usbnet_set_msglevel,
1121 .get_wol = asix_get_wol,
1122 .set_wol = asix_set_wol,
1123 .get_eeprom_len = asix_get_eeprom_len,
1124 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001125 .get_settings = usbnet_get_settings,
1126 .set_settings = usbnet_set_settings,
1127 .nway_reset = usbnet_nway_reset,
David Hollis933a27d2006-07-29 10:12:50 -04001128};
1129
1130static int marvell_phy_init(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -07001131{
David Hollis933a27d2006-07-29 10:12:50 -04001132 struct asix_data *data = (struct asix_data *)&dev->data;
1133 u16 reg;
David Brownell2e55cc72005-08-31 09:53:10 -07001134
Joe Perches60b86752010-02-17 10:30:23 +00001135 netdev_dbg(dev->net, "marvell_phy_init()\n");
David Brownell2e55cc72005-08-31 09:53:10 -07001136
David Hollis933a27d2006-07-29 10:12:50 -04001137 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
Joe Perches60b86752010-02-17 10:30:23 +00001138 netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001139
David Hollis933a27d2006-07-29 10:12:50 -04001140 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1141 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
David Brownell2e55cc72005-08-31 09:53:10 -07001142
David Hollis933a27d2006-07-29 10:12:50 -04001143 if (data->ledmode) {
1144 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1145 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001146 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001147
David Hollis933a27d2006-07-29 10:12:50 -04001148 reg &= 0xf8ff;
1149 reg |= (1 + 0x0100);
1150 asix_mdio_write(dev->net, dev->mii.phy_id,
1151 MII_MARVELL_LED_CTRL, reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001152
David Hollis933a27d2006-07-29 10:12:50 -04001153 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1154 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001155 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001156 reg &= 0xfc0f;
David Brownell2e55cc72005-08-31 09:53:10 -07001157 }
1158
David Brownell2e55cc72005-08-31 09:53:10 -07001159 return 0;
1160}
1161
Grant Grundler610d8852011-10-04 09:55:17 +00001162static int rtl8211cl_phy_init(struct usbnet *dev)
1163{
1164 struct asix_data *data = (struct asix_data *)&dev->data;
1165
1166 netdev_dbg(dev->net, "rtl8211cl_phy_init()\n");
1167
1168 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0005);
1169 asix_mdio_write (dev->net, dev->mii.phy_id, 0x0c, 0);
1170 asix_mdio_write (dev->net, dev->mii.phy_id, 0x01,
1171 asix_mdio_read (dev->net, dev->mii.phy_id, 0x01) | 0x0080);
1172 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1173
1174 if (data->ledmode == 12) {
1175 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0002);
1176 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1a, 0x00cb);
1177 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1178 }
1179
1180 return 0;
1181}
1182
David Hollis933a27d2006-07-29 10:12:50 -04001183static int marvell_led_status(struct usbnet *dev, u16 speed)
1184{
1185 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1186
Joe Perches60b86752010-02-17 10:30:23 +00001187 netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001188
1189 /* Clear out the center LED bits - 0x03F0 */
1190 reg &= 0xfc0f;
1191
1192 switch (speed) {
1193 case SPEED_1000:
1194 reg |= 0x03e0;
1195 break;
1196 case SPEED_100:
1197 reg |= 0x03b0;
1198 break;
1199 default:
1200 reg |= 0x02f0;
1201 }
1202
Joe Perches60b86752010-02-17 10:30:23 +00001203 netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001204 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1205
1206 return 0;
1207}
1208
Grant Grundler610d8852011-10-04 09:55:17 +00001209static int ax88178_reset(struct usbnet *dev)
1210{
1211 struct asix_data *data = (struct asix_data *)&dev->data;
1212 int ret;
1213 __le16 eeprom;
1214 u8 status;
1215 int gpio0 = 0;
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001216 u32 phyid;
Grant Grundler610d8852011-10-04 09:55:17 +00001217
1218 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1219 dbg("GPIO Status: 0x%04x", status);
1220
1221 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1222 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1223 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1224
1225 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1226
1227 if (eeprom == cpu_to_le16(0xffff)) {
1228 data->phymode = PHY_MODE_MARVELL;
1229 data->ledmode = 0;
1230 gpio0 = 1;
1231 } else {
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001232 data->phymode = le16_to_cpu(eeprom) & 0x7F;
Grant Grundler610d8852011-10-04 09:55:17 +00001233 data->ledmode = le16_to_cpu(eeprom) >> 8;
1234 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
1235 }
1236 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
1237
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001238 /* Power up external GigaPHY through AX88178 GPIO pin */
Grant Grundler610d8852011-10-04 09:55:17 +00001239 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
1240 if ((le16_to_cpu(eeprom) >> 8) != 1) {
1241 asix_write_gpio(dev, 0x003c, 30);
1242 asix_write_gpio(dev, 0x001c, 300);
1243 asix_write_gpio(dev, 0x003c, 30);
1244 } else {
1245 dbg("gpio phymode == 1 path");
1246 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1247 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1248 }
1249
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001250 /* Read PHYID register *AFTER* powering up PHY */
1251 phyid = asix_get_phyid(dev);
1252 dbg("PHYID=0x%08x", phyid);
1253
1254 /* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */
1255 asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, 0, 0, 0, NULL);
1256
Grant Grundler610d8852011-10-04 09:55:17 +00001257 asix_sw_reset(dev, 0);
1258 msleep(150);
1259
1260 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1261 msleep(150);
1262
1263 asix_write_rx_ctl(dev, 0);
1264
1265 if (data->phymode == PHY_MODE_MARVELL) {
1266 marvell_phy_init(dev);
1267 msleep(60);
1268 } else if (data->phymode == PHY_MODE_RTL8211CL)
1269 rtl8211cl_phy_init(dev);
1270
1271 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1272 BMCR_RESET | BMCR_ANENABLE);
1273 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1274 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1275 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1276 ADVERTISE_1000FULL);
1277
1278 mii_nway_restart(&dev->mii);
1279
Grant Grundler83e1b912011-10-04 09:55:18 +00001280 ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT);
1281 if (ret < 0)
1282 return ret;
Grant Grundler610d8852011-10-04 09:55:17 +00001283
Jussi Kivilinna71bc5d92012-01-10 06:40:23 +00001284 /* Rewrite MAC address */
1285 memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
1286 ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
1287 data->mac_addr);
1288 if (ret < 0)
1289 return ret;
1290
Grant Grundler83e1b912011-10-04 09:55:18 +00001291 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1292 if (ret < 0)
1293 return ret;
Grant Grundler610d8852011-10-04 09:55:17 +00001294
1295 return 0;
Grant Grundler610d8852011-10-04 09:55:17 +00001296}
1297
David Hollis933a27d2006-07-29 10:12:50 -04001298static int ax88178_link_reset(struct usbnet *dev)
1299{
1300 u16 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001301 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -04001302 struct asix_data *data = (struct asix_data *)&dev->data;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001303 u32 speed;
David Hollis933a27d2006-07-29 10:12:50 -04001304
Joe Perches60b86752010-02-17 10:30:23 +00001305 netdev_dbg(dev->net, "ax88178_link_reset()\n");
David Hollis933a27d2006-07-29 10:12:50 -04001306
1307 mii_check_media(&dev->mii, 1, 1);
1308 mii_ethtool_gset(&dev->mii, &ecmd);
1309 mode = AX88178_MEDIUM_DEFAULT;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001310 speed = ethtool_cmd_speed(&ecmd);
David Hollis933a27d2006-07-29 10:12:50 -04001311
David Decotigny8ae6dac2011-04-27 18:32:38 +00001312 if (speed == SPEED_1000)
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001313 mode |= AX_MEDIUM_GM;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001314 else if (speed == SPEED_100)
David Hollis933a27d2006-07-29 10:12:50 -04001315 mode |= AX_MEDIUM_PS;
1316 else
1317 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1318
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001319 mode |= AX_MEDIUM_ENCK;
1320
David Hollis933a27d2006-07-29 10:12:50 -04001321 if (ecmd.duplex == DUPLEX_FULL)
1322 mode |= AX_MEDIUM_FD;
1323 else
1324 mode &= ~AX_MEDIUM_FD;
1325
David Decotigny8ae6dac2011-04-27 18:32:38 +00001326 netdev_dbg(dev->net, "ax88178_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
1327 speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -04001328
1329 asix_write_medium_mode(dev, mode);
1330
1331 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
David Decotigny8ae6dac2011-04-27 18:32:38 +00001332 marvell_led_status(dev, speed);
David Hollis933a27d2006-07-29 10:12:50 -04001333
1334 return 0;
1335}
1336
1337static void ax88178_set_mfb(struct usbnet *dev)
1338{
1339 u16 mfb = AX_RX_CTL_MFB_16384;
1340 u16 rxctl;
1341 u16 medium;
1342 int old_rx_urb_size = dev->rx_urb_size;
1343
1344 if (dev->hard_mtu < 2048) {
1345 dev->rx_urb_size = 2048;
1346 mfb = AX_RX_CTL_MFB_2048;
1347 } else if (dev->hard_mtu < 4096) {
1348 dev->rx_urb_size = 4096;
1349 mfb = AX_RX_CTL_MFB_4096;
1350 } else if (dev->hard_mtu < 8192) {
1351 dev->rx_urb_size = 8192;
1352 mfb = AX_RX_CTL_MFB_8192;
1353 } else if (dev->hard_mtu < 16384) {
1354 dev->rx_urb_size = 16384;
1355 mfb = AX_RX_CTL_MFB_16384;
1356 }
1357
1358 rxctl = asix_read_rx_ctl(dev);
1359 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1360
1361 medium = asix_read_medium_status(dev);
1362 if (dev->net->mtu > 1500)
1363 medium |= AX_MEDIUM_JFE;
1364 else
1365 medium &= ~AX_MEDIUM_JFE;
1366 asix_write_medium_mode(dev, medium);
1367
1368 if (dev->rx_urb_size > old_rx_urb_size)
1369 usbnet_unlink_rx_urbs(dev);
1370}
1371
1372static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1373{
1374 struct usbnet *dev = netdev_priv(net);
1375 int ll_mtu = new_mtu + net->hard_header_len + 4;
1376
Joe Perches60b86752010-02-17 10:30:23 +00001377 netdev_dbg(dev->net, "ax88178_change_mtu() new_mtu=%d\n", new_mtu);
David Hollis933a27d2006-07-29 10:12:50 -04001378
1379 if (new_mtu <= 0 || ll_mtu > 16384)
1380 return -EINVAL;
1381
1382 if ((ll_mtu % dev->maxpacket) == 0)
1383 return -EDOM;
1384
1385 net->mtu = new_mtu;
1386 dev->hard_mtu = net->mtu + net->hard_header_len;
1387 ax88178_set_mfb(dev);
1388
1389 return 0;
1390}
1391
Stephen Hemminger17033382009-03-20 19:35:55 +00001392static const struct net_device_ops ax88178_netdev_ops = {
1393 .ndo_open = usbnet_open,
1394 .ndo_stop = usbnet_stop,
1395 .ndo_start_xmit = usbnet_start_xmit,
1396 .ndo_tx_timeout = usbnet_tx_timeout,
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +00001397 .ndo_set_mac_address = asix_set_mac_address,
Stephen Hemminger17033382009-03-20 19:35:55 +00001398 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001399 .ndo_set_rx_mode = asix_set_multicast,
Stephen Hemminger17033382009-03-20 19:35:55 +00001400 .ndo_do_ioctl = asix_ioctl,
1401 .ndo_change_mtu = ax88178_change_mtu,
1402};
1403
David Hollis933a27d2006-07-29 10:12:50 -04001404static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1405{
David Hollis933a27d2006-07-29 10:12:50 -04001406 int ret;
Al Viro51bf2972007-12-22 17:42:36 +00001407 u8 buf[ETH_ALEN];
Grant Grundler79de9ef2011-10-17 05:51:06 +00001408 struct asix_data *data = (struct asix_data *)&dev->data;
1409
1410 data->eeprom_len = AX88772_EEPROM_LEN;
David Hollis933a27d2006-07-29 10:12:50 -04001411
1412 usbnet_get_endpoints(dev,intf);
1413
David Hollis933a27d2006-07-29 10:12:50 -04001414 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +00001415 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1416 if (ret < 0) {
David Hollis933a27d2006-07-29 10:12:50 -04001417 dbg("Failed to read MAC address: %d", ret);
Grant Grundler83e1b912011-10-04 09:55:18 +00001418 return ret;
David Hollis933a27d2006-07-29 10:12:50 -04001419 }
1420 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1421
1422 /* Initialize MII structure */
1423 dev->mii.dev = dev->net;
1424 dev->mii.mdio_read = asix_mdio_read;
1425 dev->mii.mdio_write = asix_mdio_write;
1426 dev->mii.phy_id_mask = 0x1f;
1427 dev->mii.reg_num_mask = 0xff;
1428 dev->mii.supports_gmii = 1;
David Hollis933a27d2006-07-29 10:12:50 -04001429 dev->mii.phy_id = asix_get_phy_addr(dev);
Stephen Hemminger17033382009-03-20 19:35:55 +00001430
1431 dev->net->netdev_ops = &ax88178_netdev_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001432 dev->net->ethtool_ops = &ax88178_ethtool_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001433
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001434 /* Blink LEDS so users know driver saw dongle */
1435 asix_sw_reset(dev, 0);
1436 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001437
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001438 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1439 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001440
1441 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1442 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1443 /* hard_mtu is still the default - the device does not support
1444 jumbo eth frames */
1445 dev->rx_urb_size = 2048;
1446 }
David Hollis933a27d2006-07-29 10:12:50 -04001447
Grant Grundler83e1b912011-10-04 09:55:18 +00001448 return 0;
David Hollis933a27d2006-07-29 10:12:50 -04001449}
1450
David Brownell2e55cc72005-08-31 09:53:10 -07001451static const struct driver_info ax8817x_info = {
1452 .description = "ASIX AX8817x USB 2.0 Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001453 .bind = ax88172_bind,
1454 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001455 .link_reset = ax88172_link_reset,
1456 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001457 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001458 .data = 0x00130103,
1459};
1460
1461static const struct driver_info dlink_dub_e100_info = {
1462 .description = "DLink DUB-E100 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001463 .bind = ax88172_bind,
1464 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001465 .link_reset = ax88172_link_reset,
1466 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001467 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001468 .data = 0x009f9d9f,
1469};
1470
1471static const struct driver_info netgear_fa120_info = {
1472 .description = "Netgear FA-120 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001473 .bind = ax88172_bind,
1474 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001475 .link_reset = ax88172_link_reset,
1476 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001477 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001478 .data = 0x00130103,
1479};
1480
1481static const struct driver_info hawking_uf200_info = {
1482 .description = "Hawking UF200 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001483 .bind = ax88172_bind,
1484 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001485 .link_reset = ax88172_link_reset,
1486 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001487 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001488 .data = 0x001f1d1f,
1489};
1490
1491static const struct driver_info ax88772_info = {
1492 .description = "ASIX AX88772 USB 2.0 Ethernet",
1493 .bind = ax88772_bind,
David Hollis48b1be62006-03-28 20:15:42 -05001494 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001495 .link_reset = ax88772_link_reset,
Grant Grundler4ad14382011-10-04 09:55:16 +00001496 .reset = ax88772_reset,
Eric Dumazeta9e0aca2012-03-14 20:18:32 +00001497 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR | FLAG_MULTI_PACKET,
David Hollis933a27d2006-07-29 10:12:50 -04001498 .rx_fixup = asix_rx_fixup,
1499 .tx_fixup = asix_tx_fixup,
1500};
1501
1502static const struct driver_info ax88178_info = {
1503 .description = "ASIX AX88178 USB 2.0 Ethernet",
1504 .bind = ax88178_bind,
1505 .status = asix_status,
1506 .link_reset = ax88178_link_reset,
Grant Grundler610d8852011-10-04 09:55:17 +00001507 .reset = ax88178_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001508 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001509 .rx_fixup = asix_rx_fixup,
1510 .tx_fixup = asix_tx_fixup,
David Brownell2e55cc72005-08-31 09:53:10 -07001511};
1512
1513static const struct usb_device_id products [] = {
1514{
1515 // Linksys USB200M
1516 USB_DEVICE (0x077b, 0x2226),
1517 .driver_info = (unsigned long) &ax8817x_info,
1518}, {
1519 // Netgear FA120
1520 USB_DEVICE (0x0846, 0x1040),
1521 .driver_info = (unsigned long) &netgear_fa120_info,
1522}, {
1523 // DLink DUB-E100
1524 USB_DEVICE (0x2001, 0x1a00),
1525 .driver_info = (unsigned long) &dlink_dub_e100_info,
1526}, {
1527 // Intellinet, ST Lab USB Ethernet
1528 USB_DEVICE (0x0b95, 0x1720),
1529 .driver_info = (unsigned long) &ax8817x_info,
1530}, {
1531 // Hawking UF200, TrendNet TU2-ET100
1532 USB_DEVICE (0x07b8, 0x420a),
1533 .driver_info = (unsigned long) &hawking_uf200_info,
1534}, {
David Hollis39c4b382007-02-20 08:02:24 -05001535 // Billionton Systems, USB2AR
1536 USB_DEVICE (0x08dd, 0x90ff),
1537 .driver_info = (unsigned long) &ax8817x_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001538}, {
1539 // ATEN UC210T
1540 USB_DEVICE (0x0557, 0x2009),
1541 .driver_info = (unsigned long) &ax8817x_info,
1542}, {
1543 // Buffalo LUA-U2-KTX
1544 USB_DEVICE (0x0411, 0x003d),
1545 .driver_info = (unsigned long) &ax8817x_info,
1546}, {
Mattia Dongiliac7b77f2008-05-06 20:42:35 -07001547 // Buffalo LUA-U2-GT 10/100/1000
1548 USB_DEVICE (0x0411, 0x006e),
1549 .driver_info = (unsigned long) &ax88178_info,
1550}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001551 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1552 USB_DEVICE (0x6189, 0x182d),
1553 .driver_info = (unsigned long) &ax8817x_info,
1554}, {
Joerg Neikes4e503912012-03-08 22:44:03 +00001555 // Sitecom LN-031 "USB 2.0 10/100/1000 Ethernet adapter"
1556 USB_DEVICE (0x0df6, 0x0056),
1557 .driver_info = (unsigned long) &ax88178_info,
1558}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001559 // corega FEther USB2-TX
1560 USB_DEVICE (0x07aa, 0x0017),
1561 .driver_info = (unsigned long) &ax8817x_info,
1562}, {
1563 // Surecom EP-1427X-2
1564 USB_DEVICE (0x1189, 0x0893),
1565 .driver_info = (unsigned long) &ax8817x_info,
1566}, {
1567 // goodway corp usb gwusb2e
1568 USB_DEVICE (0x1631, 0x6200),
1569 .driver_info = (unsigned long) &ax8817x_info,
1570}, {
David Hollis39c4b382007-02-20 08:02:24 -05001571 // JVC MP-PRX1 Port Replicator
1572 USB_DEVICE (0x04f1, 0x3008),
1573 .driver_info = (unsigned long) &ax8817x_info,
1574}, {
Marek Vasut30885902011-07-20 05:57:04 +00001575 // ASIX AX88772B 10/100
1576 USB_DEVICE (0x0b95, 0x772b),
1577 .driver_info = (unsigned long) &ax88772_info,
1578}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001579 // ASIX AX88772 10/100
David Hollis39c4b382007-02-20 08:02:24 -05001580 USB_DEVICE (0x0b95, 0x7720),
1581 .driver_info = (unsigned long) &ax88772_info,
David Hollis5e0f76c2005-12-19 13:58:38 -05001582}, {
Eduard Warkentin73274132006-05-18 01:13:17 -07001583 // ASIX AX88178 10/100/1000
1584 USB_DEVICE (0x0b95, 0x1780),
David Hollis933a27d2006-07-29 10:12:50 -04001585 .driver_info = (unsigned long) &ax88178_info,
Eduard Warkentin73274132006-05-18 01:13:17 -07001586}, {
Arnaud Ebalardf4680d32010-12-15 12:16:30 +00001587 // Logitec LAN-GTJ/U2A
1588 USB_DEVICE (0x0789, 0x0160),
1589 .driver_info = (unsigned long) &ax88178_info,
1590}, {
David Hollis5e0f76c2005-12-19 13:58:38 -05001591 // Linksys USB200M Rev 2
1592 USB_DEVICE (0x13b1, 0x0018),
1593 .driver_info = (unsigned long) &ax88772_info,
David Hollis5732ce82006-01-05 14:39:49 -05001594}, {
1595 // 0Q0 cable ethernet
1596 USB_DEVICE (0x1557, 0x7720),
1597 .driver_info = (unsigned long) &ax88772_info,
David Hollis933a27d2006-07-29 10:12:50 -04001598}, {
1599 // DLink DUB-E100 H/W Ver B1
1600 USB_DEVICE (0x07d1, 0x3c05),
1601 .driver_info = (unsigned long) &ax88772_info,
1602}, {
David Hollisb923e7f2006-09-21 08:09:29 -04001603 // DLink DUB-E100 H/W Ver B1 Alternate
1604 USB_DEVICE (0x2001, 0x3c05),
1605 .driver_info = (unsigned long) &ax88772_info,
1606}, {
David Hollis933a27d2006-07-29 10:12:50 -04001607 // Linksys USB1000
1608 USB_DEVICE (0x1737, 0x0039),
1609 .driver_info = (unsigned long) &ax88178_info,
YOSHIFUJI Hideaki / 吉藤英明b29cf312007-01-26 22:57:38 +09001610}, {
1611 // IO-DATA ETG-US2
1612 USB_DEVICE (0x04bb, 0x0930),
1613 .driver_info = (unsigned long) &ax88178_info,
David Hollis2ed22bc2007-05-23 07:33:17 -04001614}, {
1615 // Belkin F5D5055
1616 USB_DEVICE(0x050d, 0x5055),
1617 .driver_info = (unsigned long) &ax88178_info,
Aurelien Nephtali3d60efb52008-05-14 17:04:13 -07001618}, {
1619 // Apple USB Ethernet Adapter
1620 USB_DEVICE(0x05ac, 0x1402),
1621 .driver_info = (unsigned long) &ax88772_info,
Jason Cooperccf95402008-11-11 13:02:53 -05001622}, {
1623 // Cables-to-Go USB Ethernet Adapter
1624 USB_DEVICE(0x0b95, 0x772a),
1625 .driver_info = (unsigned long) &ax88772_info,
Greg Kroah-Hartmanfef7cc02009-02-24 23:52:24 -08001626}, {
1627 // ABOCOM for pci
1628 USB_DEVICE(0x14ea, 0xab11),
1629 .driver_info = (unsigned long) &ax88178_info,
1630}, {
1631 // ASIX 88772a
1632 USB_DEVICE(0x0db0, 0xa877),
1633 .driver_info = (unsigned long) &ax88772_info,
Aurelien Jacobse8303a32011-12-16 10:49:22 +00001634}, {
1635 // Asus USB Ethernet Adapter
1636 USB_DEVICE (0x0b95, 0x7e2b),
1637 .driver_info = (unsigned long) &ax88772_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001638},
1639 { }, // END
1640};
1641MODULE_DEVICE_TABLE(usb, products);
1642
1643static struct usb_driver asix_driver = {
Grant Grundler83e1b912011-10-04 09:55:18 +00001644 .name = DRIVER_NAME,
David Brownell2e55cc72005-08-31 09:53:10 -07001645 .id_table = products,
1646 .probe = usbnet_probe,
1647 .suspend = usbnet_suspend,
1648 .resume = usbnet_resume,
1649 .disconnect = usbnet_disconnect,
Oliver Neukuma11a6542007-08-03 13:52:19 +02001650 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001651 .disable_hub_initiated_lpm = 1,
David Brownell2e55cc72005-08-31 09:53:10 -07001652};
1653
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001654module_usb_driver(asix_driver);
David Brownell2e55cc72005-08-31 09:53:10 -07001655
1656MODULE_AUTHOR("David Hollis");
Grant Grundler4ad14382011-10-04 09:55:16 +00001657MODULE_VERSION(DRIVER_VERSION);
David Brownell2e55cc72005-08-31 09:53:10 -07001658MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1659MODULE_LICENSE("GPL");
1660