blob: 6564c32d3af09b42cf3c1618f1d6772584d182d8 [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
Eric Dumazet95162d62012-07-05 04:31:01 +0000361 /* We need to push 4 bytes in front of frame (packet_len)
362 * and maybe add 4 bytes after the end (if padlen is 4)
363 *
364 * Avoid skb_copy_expand() expensive call, using following rules :
365 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
366 * is false (and if we have 4 bytes of headroom)
367 * - We are allowed to put 4 bytes at tail if skb_cloned()
368 * is false (and if we have 4 bytes of tailroom)
369 *
370 * TCP packets for example are cloned, but skb_header_release()
371 * was called in tcp stack, allowing us to use headroom for our needs.
372 */
373 if (!skb_header_cloned(skb) &&
374 !(padlen && skb_cloned(skb)) &&
375 headroom + tailroom >= 4 + padlen) {
376 /* following should not happen, but better be safe */
377 if (headroom < 4 ||
378 tailroom < padlen) {
David Hollis933a27d2006-07-29 10:12:50 -0400379 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700380 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400381 }
382 } else {
383 struct sk_buff *skb2;
Eric Dumazet95162d62012-07-05 04:31:01 +0000384
David Hollis933a27d2006-07-29 10:12:50 -0400385 skb2 = skb_copy_expand(skb, 4, padlen, flags);
386 dev_kfree_skb_any(skb);
387 skb = skb2;
388 if (!skb)
389 return NULL;
390 }
391
Eric Dumazet95162d62012-07-05 04:31:01 +0000392 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
David Hollis933a27d2006-07-29 10:12:50 -0400393 skb_push(skb, 4);
David Hollis57e4f042007-02-05 12:03:03 -0500394 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300395 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400396
Ingo van Lil2a580942012-04-23 22:05:38 +0000397 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500398 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700399 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400400 skb_put(skb, sizeof(padbytes));
401 }
402 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500403}
404
405static void asix_status(struct usbnet *dev, struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700406{
407 struct ax88172_int_data *event;
408 int link;
409
410 if (urb->actual_length < 8)
411 return;
412
413 event = urb->transfer_buffer;
414 link = event->link & 0x01;
415 if (netif_carrier_ok(dev->net) != link) {
416 if (link) {
417 netif_carrier_on(dev->net);
418 usbnet_defer_kevent (dev, EVENT_LINK_RESET );
419 } else
420 netif_carrier_off(dev->net);
Joe Perches60b86752010-02-17 10:30:23 +0000421 netdev_dbg(dev->net, "Link Status is: %d\n", link);
David Brownell2e55cc72005-08-31 09:53:10 -0700422 }
423}
424
David Hollis933a27d2006-07-29 10:12:50 -0400425static inline int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700426{
David Hollis933a27d2006-07-29 10:12:50 -0400427 int ret;
428 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
429 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000430 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400431 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700432}
433
David Hollis933a27d2006-07-29 10:12:50 -0400434static inline int asix_set_hw_mii(struct usbnet *dev)
435{
436 int ret;
437 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
438 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000439 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400440 return ret;
441}
442
443static inline int asix_get_phy_addr(struct usbnet *dev)
444{
Al Viro51bf2972007-12-22 17:42:36 +0000445 u8 buf[2];
446 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400447
Joe Perches60b86752010-02-17 10:30:23 +0000448 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400449
Al Viro51bf2972007-12-22 17:42:36 +0000450 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000451 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000452 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400453 }
Joe Perches60b86752010-02-17 10:30:23 +0000454 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
455 *((__le16 *)buf));
Al Viro51bf2972007-12-22 17:42:36 +0000456 ret = buf[1];
457
458out:
David Hollis933a27d2006-07-29 10:12:50 -0400459 return ret;
460}
461
462static int asix_sw_reset(struct usbnet *dev, u8 flags)
463{
464 int ret;
465
466 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
467 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000468 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400469
470 return ret;
471}
472
473static u16 asix_read_rx_ctl(struct usbnet *dev)
474{
Al Viro51bf2972007-12-22 17:42:36 +0000475 __le16 v;
476 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400477
Al Viro51bf2972007-12-22 17:42:36 +0000478 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000479 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000480 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400481 }
Al Viro51bf2972007-12-22 17:42:36 +0000482 ret = le16_to_cpu(v);
483out:
David Hollis933a27d2006-07-29 10:12:50 -0400484 return ret;
485}
486
487static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
488{
489 int ret;
490
Joe Perches60b86752010-02-17 10:30:23 +0000491 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400492 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
493 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000494 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
495 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400496
497 return ret;
498}
499
500static u16 asix_read_medium_status(struct usbnet *dev)
501{
Al Viro51bf2972007-12-22 17:42:36 +0000502 __le16 v;
503 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400504
Al Viro51bf2972007-12-22 17:42:36 +0000505 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000506 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
507 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000508 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400509 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000510
511 return le16_to_cpu(v);
512
David Hollis933a27d2006-07-29 10:12:50 -0400513}
514
515static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
516{
517 int ret;
518
Joe Perches60b86752010-02-17 10:30:23 +0000519 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400520 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
521 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000522 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
523 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400524
525 return ret;
526}
527
528static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
529{
530 int ret;
531
Joe Perches60b86752010-02-17 10:30:23 +0000532 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400533 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
534 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000535 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
536 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400537
538 if (sleep)
539 msleep(sleep);
540
541 return ret;
542}
543
544/*
545 * AX88772 & AX88178 have a 16-bit RX_CTL value
546 */
David Hollis48b1be62006-03-28 20:15:42 -0500547static void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700548{
549 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500550 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400551 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700552
553 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400554 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000555 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000556 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400557 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000558 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700559 /* just broadcast and directed */
560 } else {
561 /* We use the 20 byte dev->data
562 * for our 8 byte filter buffer
563 * to avoid allocating memory that
564 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000565 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700566 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700567
568 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
569
570 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000571 netdev_for_each_mc_addr(ha, net) {
572 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700573 data->multi_filter[crc_bits >> 3] |=
574 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700575 }
576
David Hollis48b1be62006-03-28 20:15:42 -0500577 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700578 AX_MCAST_FILTER_SIZE, data->multi_filter);
579
David Hollis933a27d2006-07-29 10:12:50 -0400580 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700581 }
582
David Hollis48b1be62006-03-28 20:15:42 -0500583 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700584}
585
David Hollis48b1be62006-03-28 20:15:42 -0500586static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700587{
588 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000589 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700590
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200591 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500592 asix_set_sw_mii(dev);
593 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000594 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500595 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200596 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700597
Joe Perches60b86752010-02-17 10:30:23 +0000598 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
599 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700600
Al Viro51bf2972007-12-22 17:42:36 +0000601 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700602}
603
604static void
David Hollis48b1be62006-03-28 20:15:42 -0500605asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700606{
607 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000608 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700609
Joe Perches60b86752010-02-17 10:30:23 +0000610 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
611 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200612 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500613 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000614 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500615 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200616 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700617}
618
David Hollis933a27d2006-07-29 10:12:50 -0400619/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
620static u32 asix_get_phyid(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700621{
David Hollis933a27d2006-07-29 10:12:50 -0400622 int phy_reg;
623 u32 phy_id;
Grant Grundlera77929a2011-11-15 07:12:40 +0000624 int i;
David Brownell2e55cc72005-08-31 09:53:10 -0700625
Grant Grundlera77929a2011-11-15 07:12:40 +0000626 /* Poll for the rare case the FW or phy isn't ready yet. */
627 for (i = 0; i < 100; i++) {
628 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
629 if (phy_reg != 0 && phy_reg != 0xFFFF)
630 break;
631 mdelay(1);
632 }
633
634 if (phy_reg <= 0 || phy_reg == 0xFFFF)
David Hollis933a27d2006-07-29 10:12:50 -0400635 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700636
David Hollis933a27d2006-07-29 10:12:50 -0400637 phy_id = (phy_reg & 0xffff) << 16;
David Brownell2e55cc72005-08-31 09:53:10 -0700638
David Hollis933a27d2006-07-29 10:12:50 -0400639 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
640 if (phy_reg < 0)
641 return 0;
642
643 phy_id |= (phy_reg & 0xffff);
644
645 return phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700646}
647
648static void
David Hollis48b1be62006-03-28 20:15:42 -0500649asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700650{
651 struct usbnet *dev = netdev_priv(net);
652 u8 opt;
653
David Hollis48b1be62006-03-28 20:15:42 -0500654 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700655 wolinfo->supported = 0;
656 wolinfo->wolopts = 0;
657 return;
658 }
659 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
660 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000661 if (opt & AX_MONITOR_LINK)
662 wolinfo->wolopts |= WAKE_PHY;
663 if (opt & AX_MONITOR_MAGIC)
664 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700665}
666
667static int
David Hollis48b1be62006-03-28 20:15:42 -0500668asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700669{
670 struct usbnet *dev = netdev_priv(net);
671 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700672
673 if (wolinfo->wolopts & WAKE_PHY)
674 opt |= AX_MONITOR_LINK;
675 if (wolinfo->wolopts & WAKE_MAGIC)
676 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700677
David Hollis48b1be62006-03-28 20:15:42 -0500678 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000679 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700680 return -EINVAL;
681
682 return 0;
683}
684
David Hollis48b1be62006-03-28 20:15:42 -0500685static int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700686{
David Hollis933a27d2006-07-29 10:12:50 -0400687 struct usbnet *dev = netdev_priv(net);
688 struct asix_data *data = (struct asix_data *)&dev->data;
689
690 return data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700691}
692
David Hollis48b1be62006-03-28 20:15:42 -0500693static int asix_get_eeprom(struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700694 struct ethtool_eeprom *eeprom, u8 *data)
695{
696 struct usbnet *dev = netdev_priv(net);
Al Viro51bf2972007-12-22 17:42:36 +0000697 __le16 *ebuf = (__le16 *)data;
David Brownell2e55cc72005-08-31 09:53:10 -0700698 int i;
699
700 /* Crude hack to ensure that we don't overwrite memory
701 * if an odd length is supplied
702 */
703 if (eeprom->len % 2)
704 return -EINVAL;
705
706 eeprom->magic = AX_EEPROM_MAGIC;
707
708 /* ax8817x returns 2 bytes from eeprom on read */
709 for (i=0; i < eeprom->len / 2; i++) {
David Hollis48b1be62006-03-28 20:15:42 -0500710 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
David Brownell2e55cc72005-08-31 09:53:10 -0700711 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
712 return -EINVAL;
713 }
714 return 0;
715}
716
David Hollis48b1be62006-03-28 20:15:42 -0500717static void asix_get_drvinfo (struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700718 struct ethtool_drvinfo *info)
719{
David Hollis933a27d2006-07-29 10:12:50 -0400720 struct usbnet *dev = netdev_priv(net);
721 struct asix_data *data = (struct asix_data *)&dev->data;
722
David Brownell2e55cc72005-08-31 09:53:10 -0700723 /* Inherit standard device info */
724 usbnet_get_drvinfo(net, info);
Grant Grundler83e1b912011-10-04 09:55:18 +0000725 strncpy (info->driver, DRIVER_NAME, sizeof info->driver);
David Hollis933a27d2006-07-29 10:12:50 -0400726 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
727 info->eedump_len = data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700728}
729
David Hollis933a27d2006-07-29 10:12:50 -0400730static u32 asix_get_link(struct net_device *net)
731{
732 struct usbnet *dev = netdev_priv(net);
733
734 return mii_link_ok(&dev->mii);
735}
736
737static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
738{
739 struct usbnet *dev = netdev_priv(net);
740
741 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700742}
743
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000744static int asix_set_mac_address(struct net_device *net, void *p)
745{
746 struct usbnet *dev = netdev_priv(net);
747 struct asix_data *data = (struct asix_data *)&dev->data;
748 struct sockaddr *addr = p;
749
750 if (netif_running(net))
751 return -EBUSY;
752 if (!is_valid_ether_addr(addr->sa_data))
753 return -EADDRNOTAVAIL;
754
755 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
756
757 /* We use the 20 byte dev->data
758 * for our 6 byte mac buffer
759 * to avoid allocating memory that
760 * is tricky to free later */
761 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
762 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
763 data->mac_addr);
764
765 return 0;
766}
767
David Brownell2e55cc72005-08-31 09:53:10 -0700768/* We need to override some ethtool_ops so we require our
769 own structure so we don't interfere with other usbnet
770 devices that may be connected at the same time. */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700771static const struct ethtool_ops ax88172_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500772 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400773 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700774 .get_msglevel = usbnet_get_msglevel,
775 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500776 .get_wol = asix_get_wol,
777 .set_wol = asix_set_wol,
778 .get_eeprom_len = asix_get_eeprom_len,
779 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200780 .get_settings = usbnet_get_settings,
781 .set_settings = usbnet_set_settings,
782 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700783};
784
David Hollis933a27d2006-07-29 10:12:50 -0400785static void ax88172_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700786{
787 struct usbnet *dev = netdev_priv(net);
David Hollis933a27d2006-07-29 10:12:50 -0400788 struct asix_data *data = (struct asix_data *)&dev->data;
789 u8 rx_ctl = 0x8c;
David Brownell2e55cc72005-08-31 09:53:10 -0700790
David Hollis933a27d2006-07-29 10:12:50 -0400791 if (net->flags & IFF_PROMISC) {
792 rx_ctl |= 0x01;
Joe Perches8e95a202009-12-03 07:58:21 +0000793 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000794 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400795 rx_ctl |= 0x02;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000796 } else if (netdev_mc_empty(net)) {
David Hollis933a27d2006-07-29 10:12:50 -0400797 /* just broadcast and directed */
798 } else {
799 /* We use the 20 byte dev->data
800 * for our 8 byte filter buffer
801 * to avoid allocating memory that
802 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000803 struct netdev_hw_addr *ha;
David Hollis933a27d2006-07-29 10:12:50 -0400804 u32 crc_bits;
David Hollis933a27d2006-07-29 10:12:50 -0400805
806 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
807
808 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000809 netdev_for_each_mc_addr(ha, net) {
810 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Hollis933a27d2006-07-29 10:12:50 -0400811 data->multi_filter[crc_bits >> 3] |=
812 1 << (crc_bits & 7);
David Hollis933a27d2006-07-29 10:12:50 -0400813 }
814
815 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
816 AX_MCAST_FILTER_SIZE, data->multi_filter);
817
818 rx_ctl |= 0x10;
819 }
820
821 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
822}
823
824static int ax88172_link_reset(struct usbnet *dev)
825{
826 u8 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000827 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -0400828
829 mii_check_media(&dev->mii, 1, 1);
830 mii_ethtool_gset(&dev->mii, &ecmd);
831 mode = AX88172_MEDIUM_DEFAULT;
832
833 if (ecmd.duplex != DUPLEX_FULL)
834 mode |= ~AX88172_MEDIUM_FD;
835
David Decotigny8ae6dac2011-04-27 18:32:38 +0000836 netdev_dbg(dev->net, "ax88172_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
837 ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400838
839 asix_write_medium_mode(dev, mode);
840
841 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700842}
843
Stephen Hemminger17033382009-03-20 19:35:55 +0000844static const struct net_device_ops ax88172_netdev_ops = {
845 .ndo_open = usbnet_open,
846 .ndo_stop = usbnet_stop,
847 .ndo_start_xmit = usbnet_start_xmit,
848 .ndo_tx_timeout = usbnet_tx_timeout,
849 .ndo_change_mtu = usbnet_change_mtu,
850 .ndo_set_mac_address = eth_mac_addr,
851 .ndo_validate_addr = eth_validate_addr,
852 .ndo_do_ioctl = asix_ioctl,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000853 .ndo_set_rx_mode = ax88172_set_multicast,
Stephen Hemminger17033382009-03-20 19:35:55 +0000854};
855
David Hollis48b1be62006-03-28 20:15:42 -0500856static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
David Brownell2e55cc72005-08-31 09:53:10 -0700857{
858 int ret = 0;
Al Viro51bf2972007-12-22 17:42:36 +0000859 u8 buf[ETH_ALEN];
David Brownell2e55cc72005-08-31 09:53:10 -0700860 int i;
861 unsigned long gpio_bits = dev->driver_info->data;
David Hollis933a27d2006-07-29 10:12:50 -0400862 struct asix_data *data = (struct asix_data *)&dev->data;
863
864 data->eeprom_len = AX88172_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700865
866 usbnet_get_endpoints(dev,intf);
867
David Brownell2e55cc72005-08-31 09:53:10 -0700868 /* Toggle the GPIOs in a manufacturer/model specific way */
869 for (i = 2; i >= 0; i--) {
Grant Grundler83e1b912011-10-04 09:55:18 +0000870 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
871 (gpio_bits >> (i * 8)) & 0xff, 0, 0, NULL);
872 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000873 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700874 msleep(5);
875 }
876
Grant Grundler83e1b912011-10-04 09:55:18 +0000877 ret = asix_write_rx_ctl(dev, 0x80);
878 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000879 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700880
881 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +0000882 ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
883 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700884 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000885 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700886 }
887 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
888
David Brownell2e55cc72005-08-31 09:53:10 -0700889 /* Initialize MII structure */
890 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -0500891 dev->mii.mdio_read = asix_mdio_read;
892 dev->mii.mdio_write = asix_mdio_write;
David Brownell2e55cc72005-08-31 09:53:10 -0700893 dev->mii.phy_id_mask = 0x3f;
894 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -0400895 dev->mii.phy_id = asix_get_phy_addr(dev);
David Brownell2e55cc72005-08-31 09:53:10 -0700896
Stephen Hemminger17033382009-03-20 19:35:55 +0000897 dev->net->netdev_ops = &ax88172_netdev_ops;
David Hollis48b1be62006-03-28 20:15:42 -0500898 dev->net->ethtool_ops = &ax88172_ethtool_ops;
Eric Dumazet95162d62012-07-05 04:31:01 +0000899 dev->net->needed_headroom = 4; /* cf asix_tx_fixup() */
900 dev->net->needed_tailroom = 4; /* cf asix_tx_fixup() */
David Brownell2e55cc72005-08-31 09:53:10 -0700901
David Hollis933a27d2006-07-29 10:12:50 -0400902 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
903 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700904 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
905 mii_nway_restart(&dev->mii);
906
907 return 0;
Al Viro51bf2972007-12-22 17:42:36 +0000908
909out:
David Brownell2e55cc72005-08-31 09:53:10 -0700910 return ret;
911}
912
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700913static const struct ethtool_ops ax88772_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500914 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400915 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700916 .get_msglevel = usbnet_get_msglevel,
917 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500918 .get_wol = asix_get_wol,
919 .set_wol = asix_set_wol,
920 .get_eeprom_len = asix_get_eeprom_len,
921 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200922 .get_settings = usbnet_get_settings,
923 .set_settings = usbnet_set_settings,
924 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700925};
926
David Hollis933a27d2006-07-29 10:12:50 -0400927static int ax88772_link_reset(struct usbnet *dev)
928{
929 u16 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000930 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -0400931
932 mii_check_media(&dev->mii, 1, 1);
933 mii_ethtool_gset(&dev->mii, &ecmd);
934 mode = AX88772_MEDIUM_DEFAULT;
935
David Decotigny8ae6dac2011-04-27 18:32:38 +0000936 if (ethtool_cmd_speed(&ecmd) != SPEED_100)
David Hollis933a27d2006-07-29 10:12:50 -0400937 mode &= ~AX_MEDIUM_PS;
938
939 if (ecmd.duplex != DUPLEX_FULL)
940 mode &= ~AX_MEDIUM_FD;
941
David Decotigny8ae6dac2011-04-27 18:32:38 +0000942 netdev_dbg(dev->net, "ax88772_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
943 ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400944
945 asix_write_medium_mode(dev, mode);
946
947 return 0;
948}
949
Grant Grundler4ad14382011-10-04 09:55:16 +0000950static int ax88772_reset(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700951{
Jussi Kivilinna8ef66bd2012-01-10 06:40:17 +0000952 struct asix_data *data = (struct asix_data *)&dev->data;
Andres Salomond0ffff82007-01-11 18:39:16 -0500953 int ret, embd_phy;
David Hollis933a27d2006-07-29 10:12:50 -0400954 u16 rx_ctl;
David Brownell2e55cc72005-08-31 09:53:10 -0700955
Grant Grundler83e1b912011-10-04 09:55:18 +0000956 ret = asix_write_gpio(dev,
957 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5);
958 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000959 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700960
Andres Salomond0ffff82007-01-11 18:39:16 -0500961 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
Grant Grundler4ad14382011-10-04 09:55:16 +0000962
Grant Grundler83e1b912011-10-04 09:55:18 +0000963 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
964 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700965 dbg("Select PHY #1 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000966 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700967 }
968
Grant Grundler83e1b912011-10-04 09:55:18 +0000969 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
970 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000971 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700972
973 msleep(150);
Grant Grundler83e1b912011-10-04 09:55:18 +0000974
975 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
976 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000977 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700978
979 msleep(150);
Grant Grundler4ad14382011-10-04 09:55:16 +0000980
Andres Salomond0ffff82007-01-11 18:39:16 -0500981 if (embd_phy) {
Grant Grundler83e1b912011-10-04 09:55:18 +0000982 ret = asix_sw_reset(dev, AX_SWRESET_IPRL);
983 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000984 goto out;
Grant Grundler83e1b912011-10-04 09:55:18 +0000985 } else {
986 ret = asix_sw_reset(dev, AX_SWRESET_PRTE);
987 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000988 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -0500989 }
David Brownell2e55cc72005-08-31 09:53:10 -0700990
991 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -0400992 rx_ctl = asix_read_rx_ctl(dev);
993 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
Grant Grundler83e1b912011-10-04 09:55:18 +0000994 ret = asix_write_rx_ctl(dev, 0x0000);
995 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000996 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700997
David Hollis933a27d2006-07-29 10:12:50 -0400998 rx_ctl = asix_read_rx_ctl(dev);
999 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
1000
Grant Grundler83e1b912011-10-04 09:55:18 +00001001 ret = asix_sw_reset(dev, AX_SWRESET_PRL);
1002 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001003 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001004
David Brownell2e55cc72005-08-31 09:53:10 -07001005 msleep(150);
1006
Grant Grundler83e1b912011-10-04 09:55:18 +00001007 ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL);
1008 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001009 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001010
David Hollis48b1be62006-03-28 20:15:42 -05001011 msleep(150);
1012
David Hollis933a27d2006-07-29 10:12:50 -04001013 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
1014 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -07001015 ADVERTISE_ALL | ADVERTISE_CSMA);
1016 mii_nway_restart(&dev->mii);
1017
Grant Grundler83e1b912011-10-04 09:55:18 +00001018 ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT);
1019 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001020 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001021
Grant Grundler83e1b912011-10-04 09:55:18 +00001022 ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
David Brownell2e55cc72005-08-31 09:53:10 -07001023 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
Grant Grundler83e1b912011-10-04 09:55:18 +00001024 AX88772_IPG2_DEFAULT, 0, NULL);
1025 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -07001026 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001027 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001028 }
David Brownell2e55cc72005-08-31 09:53:10 -07001029
Jussi Kivilinna8ef66bd2012-01-10 06:40:17 +00001030 /* Rewrite MAC address */
1031 memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
1032 ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
1033 data->mac_addr);
1034 if (ret < 0)
1035 goto out;
1036
David Brownell2e55cc72005-08-31 09:53:10 -07001037 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
Grant Grundler83e1b912011-10-04 09:55:18 +00001038 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1039 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001040 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001041
David Hollis933a27d2006-07-29 10:12:50 -04001042 rx_ctl = asix_read_rx_ctl(dev);
1043 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1044
1045 rx_ctl = asix_read_medium_status(dev);
1046 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1047
Grant Grundler4ad14382011-10-04 09:55:16 +00001048 return 0;
1049
1050out:
1051 return ret;
1052
1053}
1054
1055static const struct net_device_ops ax88772_netdev_ops = {
1056 .ndo_open = usbnet_open,
1057 .ndo_stop = usbnet_stop,
1058 .ndo_start_xmit = usbnet_start_xmit,
1059 .ndo_tx_timeout = usbnet_tx_timeout,
1060 .ndo_change_mtu = usbnet_change_mtu,
1061 .ndo_set_mac_address = asix_set_mac_address,
1062 .ndo_validate_addr = eth_validate_addr,
1063 .ndo_do_ioctl = asix_ioctl,
1064 .ndo_set_rx_mode = asix_set_multicast,
1065};
1066
1067static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
1068{
Grant Grundlerd3665182011-11-15 07:12:41 +00001069 int ret, embd_phy;
Grant Grundler4ad14382011-10-04 09:55:16 +00001070 struct asix_data *data = (struct asix_data *)&dev->data;
1071 u8 buf[ETH_ALEN];
1072 u32 phyid;
1073
1074 data->eeprom_len = AX88772_EEPROM_LEN;
1075
1076 usbnet_get_endpoints(dev,intf);
1077
1078 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +00001079 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1080 if (ret < 0) {
Grant Grundler4ad14382011-10-04 09:55:16 +00001081 dbg("Failed to read MAC address: %d", ret);
Grant Grundler83e1b912011-10-04 09:55:18 +00001082 return ret;
Grant Grundler4ad14382011-10-04 09:55:16 +00001083 }
1084 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1085
1086 /* Initialize MII structure */
1087 dev->mii.dev = dev->net;
1088 dev->mii.mdio_read = asix_mdio_read;
1089 dev->mii.mdio_write = asix_mdio_write;
1090 dev->mii.phy_id_mask = 0x1f;
1091 dev->mii.reg_num_mask = 0x1f;
1092 dev->mii.phy_id = asix_get_phy_addr(dev);
1093
Grant Grundler4ad14382011-10-04 09:55:16 +00001094 dev->net->netdev_ops = &ax88772_netdev_ops;
1095 dev->net->ethtool_ops = &ax88772_ethtool_ops;
Eric Dumazet95162d62012-07-05 04:31:01 +00001096 dev->net->needed_headroom = 4; /* cf asix_tx_fixup() */
1097 dev->net->needed_tailroom = 4; /* cf asix_tx_fixup() */
Grant Grundler4ad14382011-10-04 09:55:16 +00001098
Grant Grundlerd3665182011-11-15 07:12:41 +00001099 embd_phy = ((dev->mii.phy_id & 0x1f) == 0x10 ? 1 : 0);
1100
1101 /* Reset the PHY to normal operation mode */
1102 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
1103 if (ret < 0) {
1104 dbg("Select PHY #1 failed: %d", ret);
1105 return ret;
1106 }
1107
1108 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
Grant Grundler83e1b912011-10-04 09:55:18 +00001109 if (ret < 0)
1110 return ret;
Grant Grundler4ad14382011-10-04 09:55:16 +00001111
Grant Grundlerd3665182011-11-15 07:12:41 +00001112 msleep(150);
1113
1114 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
1115 if (ret < 0)
1116 return ret;
1117
1118 msleep(150);
1119
1120 ret = asix_sw_reset(dev, embd_phy ? AX_SWRESET_IPRL : AX_SWRESET_PRTE);
1121
1122 /* Read PHYID register *AFTER* the PHY was reset properly */
1123 phyid = asix_get_phyid(dev);
1124 dbg("PHYID=0x%08x", phyid);
1125
David Brownell2e55cc72005-08-31 09:53:10 -07001126 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1127 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1128 /* hard_mtu is still the default - the device does not support
1129 jumbo eth frames */
1130 dev->rx_urb_size = 2048;
1131 }
Grant Grundler83e1b912011-10-04 09:55:18 +00001132
David Brownell2e55cc72005-08-31 09:53:10 -07001133 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -07001134}
1135
stephen hemmingerbc689c92012-01-05 19:10:23 +00001136static const struct ethtool_ops ax88178_ethtool_ops = {
David Hollis933a27d2006-07-29 10:12:50 -04001137 .get_drvinfo = asix_get_drvinfo,
1138 .get_link = asix_get_link,
David Hollis933a27d2006-07-29 10:12:50 -04001139 .get_msglevel = usbnet_get_msglevel,
1140 .set_msglevel = usbnet_set_msglevel,
1141 .get_wol = asix_get_wol,
1142 .set_wol = asix_set_wol,
1143 .get_eeprom_len = asix_get_eeprom_len,
1144 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001145 .get_settings = usbnet_get_settings,
1146 .set_settings = usbnet_set_settings,
1147 .nway_reset = usbnet_nway_reset,
David Hollis933a27d2006-07-29 10:12:50 -04001148};
1149
1150static int marvell_phy_init(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -07001151{
David Hollis933a27d2006-07-29 10:12:50 -04001152 struct asix_data *data = (struct asix_data *)&dev->data;
1153 u16 reg;
David Brownell2e55cc72005-08-31 09:53:10 -07001154
Joe Perches60b86752010-02-17 10:30:23 +00001155 netdev_dbg(dev->net, "marvell_phy_init()\n");
David Brownell2e55cc72005-08-31 09:53:10 -07001156
David Hollis933a27d2006-07-29 10:12:50 -04001157 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
Joe Perches60b86752010-02-17 10:30:23 +00001158 netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001159
David Hollis933a27d2006-07-29 10:12:50 -04001160 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1161 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
David Brownell2e55cc72005-08-31 09:53:10 -07001162
David Hollis933a27d2006-07-29 10:12:50 -04001163 if (data->ledmode) {
1164 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1165 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001166 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001167
David Hollis933a27d2006-07-29 10:12:50 -04001168 reg &= 0xf8ff;
1169 reg |= (1 + 0x0100);
1170 asix_mdio_write(dev->net, dev->mii.phy_id,
1171 MII_MARVELL_LED_CTRL, reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001172
David Hollis933a27d2006-07-29 10:12:50 -04001173 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1174 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001175 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001176 reg &= 0xfc0f;
David Brownell2e55cc72005-08-31 09:53:10 -07001177 }
1178
David Brownell2e55cc72005-08-31 09:53:10 -07001179 return 0;
1180}
1181
Grant Grundler610d8852011-10-04 09:55:17 +00001182static int rtl8211cl_phy_init(struct usbnet *dev)
1183{
1184 struct asix_data *data = (struct asix_data *)&dev->data;
1185
1186 netdev_dbg(dev->net, "rtl8211cl_phy_init()\n");
1187
1188 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0005);
1189 asix_mdio_write (dev->net, dev->mii.phy_id, 0x0c, 0);
1190 asix_mdio_write (dev->net, dev->mii.phy_id, 0x01,
1191 asix_mdio_read (dev->net, dev->mii.phy_id, 0x01) | 0x0080);
1192 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1193
1194 if (data->ledmode == 12) {
1195 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0002);
1196 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1a, 0x00cb);
1197 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1198 }
1199
1200 return 0;
1201}
1202
David Hollis933a27d2006-07-29 10:12:50 -04001203static int marvell_led_status(struct usbnet *dev, u16 speed)
1204{
1205 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1206
Joe Perches60b86752010-02-17 10:30:23 +00001207 netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001208
1209 /* Clear out the center LED bits - 0x03F0 */
1210 reg &= 0xfc0f;
1211
1212 switch (speed) {
1213 case SPEED_1000:
1214 reg |= 0x03e0;
1215 break;
1216 case SPEED_100:
1217 reg |= 0x03b0;
1218 break;
1219 default:
1220 reg |= 0x02f0;
1221 }
1222
Joe Perches60b86752010-02-17 10:30:23 +00001223 netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001224 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1225
1226 return 0;
1227}
1228
Grant Grundler610d8852011-10-04 09:55:17 +00001229static int ax88178_reset(struct usbnet *dev)
1230{
1231 struct asix_data *data = (struct asix_data *)&dev->data;
1232 int ret;
1233 __le16 eeprom;
1234 u8 status;
1235 int gpio0 = 0;
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001236 u32 phyid;
Grant Grundler610d8852011-10-04 09:55:17 +00001237
1238 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1239 dbg("GPIO Status: 0x%04x", status);
1240
1241 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1242 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1243 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1244
1245 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1246
1247 if (eeprom == cpu_to_le16(0xffff)) {
1248 data->phymode = PHY_MODE_MARVELL;
1249 data->ledmode = 0;
1250 gpio0 = 1;
1251 } else {
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001252 data->phymode = le16_to_cpu(eeprom) & 0x7F;
Grant Grundler610d8852011-10-04 09:55:17 +00001253 data->ledmode = le16_to_cpu(eeprom) >> 8;
1254 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
1255 }
1256 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
1257
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001258 /* Power up external GigaPHY through AX88178 GPIO pin */
Grant Grundler610d8852011-10-04 09:55:17 +00001259 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
1260 if ((le16_to_cpu(eeprom) >> 8) != 1) {
1261 asix_write_gpio(dev, 0x003c, 30);
1262 asix_write_gpio(dev, 0x001c, 300);
1263 asix_write_gpio(dev, 0x003c, 30);
1264 } else {
1265 dbg("gpio phymode == 1 path");
1266 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1267 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1268 }
1269
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001270 /* Read PHYID register *AFTER* powering up PHY */
1271 phyid = asix_get_phyid(dev);
1272 dbg("PHYID=0x%08x", phyid);
1273
1274 /* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */
1275 asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, 0, 0, 0, NULL);
1276
Grant Grundler610d8852011-10-04 09:55:17 +00001277 asix_sw_reset(dev, 0);
1278 msleep(150);
1279
1280 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1281 msleep(150);
1282
1283 asix_write_rx_ctl(dev, 0);
1284
1285 if (data->phymode == PHY_MODE_MARVELL) {
1286 marvell_phy_init(dev);
1287 msleep(60);
1288 } else if (data->phymode == PHY_MODE_RTL8211CL)
1289 rtl8211cl_phy_init(dev);
1290
1291 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1292 BMCR_RESET | BMCR_ANENABLE);
1293 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1294 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1295 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1296 ADVERTISE_1000FULL);
1297
1298 mii_nway_restart(&dev->mii);
1299
Grant Grundler83e1b912011-10-04 09:55:18 +00001300 ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT);
1301 if (ret < 0)
1302 return ret;
Grant Grundler610d8852011-10-04 09:55:17 +00001303
Jussi Kivilinna71bc5d92012-01-10 06:40:23 +00001304 /* Rewrite MAC address */
1305 memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
1306 ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
1307 data->mac_addr);
1308 if (ret < 0)
1309 return ret;
1310
Grant Grundler83e1b912011-10-04 09:55:18 +00001311 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1312 if (ret < 0)
1313 return ret;
Grant Grundler610d8852011-10-04 09:55:17 +00001314
1315 return 0;
Grant Grundler610d8852011-10-04 09:55:17 +00001316}
1317
David Hollis933a27d2006-07-29 10:12:50 -04001318static int ax88178_link_reset(struct usbnet *dev)
1319{
1320 u16 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001321 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -04001322 struct asix_data *data = (struct asix_data *)&dev->data;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001323 u32 speed;
David Hollis933a27d2006-07-29 10:12:50 -04001324
Joe Perches60b86752010-02-17 10:30:23 +00001325 netdev_dbg(dev->net, "ax88178_link_reset()\n");
David Hollis933a27d2006-07-29 10:12:50 -04001326
1327 mii_check_media(&dev->mii, 1, 1);
1328 mii_ethtool_gset(&dev->mii, &ecmd);
1329 mode = AX88178_MEDIUM_DEFAULT;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001330 speed = ethtool_cmd_speed(&ecmd);
David Hollis933a27d2006-07-29 10:12:50 -04001331
David Decotigny8ae6dac2011-04-27 18:32:38 +00001332 if (speed == SPEED_1000)
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001333 mode |= AX_MEDIUM_GM;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001334 else if (speed == SPEED_100)
David Hollis933a27d2006-07-29 10:12:50 -04001335 mode |= AX_MEDIUM_PS;
1336 else
1337 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1338
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001339 mode |= AX_MEDIUM_ENCK;
1340
David Hollis933a27d2006-07-29 10:12:50 -04001341 if (ecmd.duplex == DUPLEX_FULL)
1342 mode |= AX_MEDIUM_FD;
1343 else
1344 mode &= ~AX_MEDIUM_FD;
1345
David Decotigny8ae6dac2011-04-27 18:32:38 +00001346 netdev_dbg(dev->net, "ax88178_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
1347 speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -04001348
1349 asix_write_medium_mode(dev, mode);
1350
1351 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
David Decotigny8ae6dac2011-04-27 18:32:38 +00001352 marvell_led_status(dev, speed);
David Hollis933a27d2006-07-29 10:12:50 -04001353
1354 return 0;
1355}
1356
1357static void ax88178_set_mfb(struct usbnet *dev)
1358{
1359 u16 mfb = AX_RX_CTL_MFB_16384;
1360 u16 rxctl;
1361 u16 medium;
1362 int old_rx_urb_size = dev->rx_urb_size;
1363
1364 if (dev->hard_mtu < 2048) {
1365 dev->rx_urb_size = 2048;
1366 mfb = AX_RX_CTL_MFB_2048;
1367 } else if (dev->hard_mtu < 4096) {
1368 dev->rx_urb_size = 4096;
1369 mfb = AX_RX_CTL_MFB_4096;
1370 } else if (dev->hard_mtu < 8192) {
1371 dev->rx_urb_size = 8192;
1372 mfb = AX_RX_CTL_MFB_8192;
1373 } else if (dev->hard_mtu < 16384) {
1374 dev->rx_urb_size = 16384;
1375 mfb = AX_RX_CTL_MFB_16384;
1376 }
1377
1378 rxctl = asix_read_rx_ctl(dev);
1379 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1380
1381 medium = asix_read_medium_status(dev);
1382 if (dev->net->mtu > 1500)
1383 medium |= AX_MEDIUM_JFE;
1384 else
1385 medium &= ~AX_MEDIUM_JFE;
1386 asix_write_medium_mode(dev, medium);
1387
1388 if (dev->rx_urb_size > old_rx_urb_size)
1389 usbnet_unlink_rx_urbs(dev);
1390}
1391
1392static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1393{
1394 struct usbnet *dev = netdev_priv(net);
1395 int ll_mtu = new_mtu + net->hard_header_len + 4;
1396
Joe Perches60b86752010-02-17 10:30:23 +00001397 netdev_dbg(dev->net, "ax88178_change_mtu() new_mtu=%d\n", new_mtu);
David Hollis933a27d2006-07-29 10:12:50 -04001398
1399 if (new_mtu <= 0 || ll_mtu > 16384)
1400 return -EINVAL;
1401
1402 if ((ll_mtu % dev->maxpacket) == 0)
1403 return -EDOM;
1404
1405 net->mtu = new_mtu;
1406 dev->hard_mtu = net->mtu + net->hard_header_len;
1407 ax88178_set_mfb(dev);
1408
1409 return 0;
1410}
1411
Stephen Hemminger17033382009-03-20 19:35:55 +00001412static const struct net_device_ops ax88178_netdev_ops = {
1413 .ndo_open = usbnet_open,
1414 .ndo_stop = usbnet_stop,
1415 .ndo_start_xmit = usbnet_start_xmit,
1416 .ndo_tx_timeout = usbnet_tx_timeout,
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +00001417 .ndo_set_mac_address = asix_set_mac_address,
Stephen Hemminger17033382009-03-20 19:35:55 +00001418 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001419 .ndo_set_rx_mode = asix_set_multicast,
Stephen Hemminger17033382009-03-20 19:35:55 +00001420 .ndo_do_ioctl = asix_ioctl,
1421 .ndo_change_mtu = ax88178_change_mtu,
1422};
1423
David Hollis933a27d2006-07-29 10:12:50 -04001424static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1425{
David Hollis933a27d2006-07-29 10:12:50 -04001426 int ret;
Al Viro51bf2972007-12-22 17:42:36 +00001427 u8 buf[ETH_ALEN];
Grant Grundler79de9ef2011-10-17 05:51:06 +00001428 struct asix_data *data = (struct asix_data *)&dev->data;
1429
1430 data->eeprom_len = AX88772_EEPROM_LEN;
David Hollis933a27d2006-07-29 10:12:50 -04001431
1432 usbnet_get_endpoints(dev,intf);
1433
David Hollis933a27d2006-07-29 10:12:50 -04001434 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +00001435 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1436 if (ret < 0) {
David Hollis933a27d2006-07-29 10:12:50 -04001437 dbg("Failed to read MAC address: %d", ret);
Grant Grundler83e1b912011-10-04 09:55:18 +00001438 return ret;
David Hollis933a27d2006-07-29 10:12:50 -04001439 }
1440 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1441
1442 /* Initialize MII structure */
1443 dev->mii.dev = dev->net;
1444 dev->mii.mdio_read = asix_mdio_read;
1445 dev->mii.mdio_write = asix_mdio_write;
1446 dev->mii.phy_id_mask = 0x1f;
1447 dev->mii.reg_num_mask = 0xff;
1448 dev->mii.supports_gmii = 1;
David Hollis933a27d2006-07-29 10:12:50 -04001449 dev->mii.phy_id = asix_get_phy_addr(dev);
Stephen Hemminger17033382009-03-20 19:35:55 +00001450
1451 dev->net->netdev_ops = &ax88178_netdev_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001452 dev->net->ethtool_ops = &ax88178_ethtool_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001453
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001454 /* Blink LEDS so users know driver saw dongle */
1455 asix_sw_reset(dev, 0);
1456 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001457
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001458 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1459 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001460
1461 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1462 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1463 /* hard_mtu is still the default - the device does not support
1464 jumbo eth frames */
1465 dev->rx_urb_size = 2048;
1466 }
David Hollis933a27d2006-07-29 10:12:50 -04001467
Grant Grundler83e1b912011-10-04 09:55:18 +00001468 return 0;
David Hollis933a27d2006-07-29 10:12:50 -04001469}
1470
David Brownell2e55cc72005-08-31 09:53:10 -07001471static const struct driver_info ax8817x_info = {
1472 .description = "ASIX AX8817x USB 2.0 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 dlink_dub_e100_info = {
1482 .description = "DLink DUB-E100 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 = 0x009f9d9f,
1489};
1490
1491static const struct driver_info netgear_fa120_info = {
1492 .description = "Netgear FA-120 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001493 .bind = ax88172_bind,
1494 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001495 .link_reset = ax88172_link_reset,
1496 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001497 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001498 .data = 0x00130103,
1499};
1500
1501static const struct driver_info hawking_uf200_info = {
1502 .description = "Hawking UF200 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001503 .bind = ax88172_bind,
1504 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001505 .link_reset = ax88172_link_reset,
1506 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001507 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001508 .data = 0x001f1d1f,
1509};
1510
1511static const struct driver_info ax88772_info = {
1512 .description = "ASIX AX88772 USB 2.0 Ethernet",
1513 .bind = ax88772_bind,
David Hollis48b1be62006-03-28 20:15:42 -05001514 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001515 .link_reset = ax88772_link_reset,
Grant Grundler4ad14382011-10-04 09:55:16 +00001516 .reset = ax88772_reset,
Eric Dumazeta9e0aca2012-03-14 20:18:32 +00001517 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR | FLAG_MULTI_PACKET,
David Hollis933a27d2006-07-29 10:12:50 -04001518 .rx_fixup = asix_rx_fixup,
1519 .tx_fixup = asix_tx_fixup,
1520};
1521
1522static const struct driver_info ax88178_info = {
1523 .description = "ASIX AX88178 USB 2.0 Ethernet",
1524 .bind = ax88178_bind,
1525 .status = asix_status,
1526 .link_reset = ax88178_link_reset,
Grant Grundler610d8852011-10-04 09:55:17 +00001527 .reset = ax88178_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001528 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001529 .rx_fixup = asix_rx_fixup,
1530 .tx_fixup = asix_tx_fixup,
David Brownell2e55cc72005-08-31 09:53:10 -07001531};
1532
1533static const struct usb_device_id products [] = {
1534{
1535 // Linksys USB200M
1536 USB_DEVICE (0x077b, 0x2226),
1537 .driver_info = (unsigned long) &ax8817x_info,
1538}, {
1539 // Netgear FA120
1540 USB_DEVICE (0x0846, 0x1040),
1541 .driver_info = (unsigned long) &netgear_fa120_info,
1542}, {
1543 // DLink DUB-E100
1544 USB_DEVICE (0x2001, 0x1a00),
1545 .driver_info = (unsigned long) &dlink_dub_e100_info,
1546}, {
1547 // Intellinet, ST Lab USB Ethernet
1548 USB_DEVICE (0x0b95, 0x1720),
1549 .driver_info = (unsigned long) &ax8817x_info,
1550}, {
1551 // Hawking UF200, TrendNet TU2-ET100
1552 USB_DEVICE (0x07b8, 0x420a),
1553 .driver_info = (unsigned long) &hawking_uf200_info,
1554}, {
David Hollis39c4b382007-02-20 08:02:24 -05001555 // Billionton Systems, USB2AR
1556 USB_DEVICE (0x08dd, 0x90ff),
1557 .driver_info = (unsigned long) &ax8817x_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001558}, {
1559 // ATEN UC210T
1560 USB_DEVICE (0x0557, 0x2009),
1561 .driver_info = (unsigned long) &ax8817x_info,
1562}, {
1563 // Buffalo LUA-U2-KTX
1564 USB_DEVICE (0x0411, 0x003d),
1565 .driver_info = (unsigned long) &ax8817x_info,
1566}, {
Mattia Dongiliac7b77f2008-05-06 20:42:35 -07001567 // Buffalo LUA-U2-GT 10/100/1000
1568 USB_DEVICE (0x0411, 0x006e),
1569 .driver_info = (unsigned long) &ax88178_info,
1570}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001571 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1572 USB_DEVICE (0x6189, 0x182d),
1573 .driver_info = (unsigned long) &ax8817x_info,
1574}, {
Joerg Neikes4e503912012-03-08 22:44:03 +00001575 // Sitecom LN-031 "USB 2.0 10/100/1000 Ethernet adapter"
1576 USB_DEVICE (0x0df6, 0x0056),
1577 .driver_info = (unsigned long) &ax88178_info,
1578}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001579 // corega FEther USB2-TX
1580 USB_DEVICE (0x07aa, 0x0017),
1581 .driver_info = (unsigned long) &ax8817x_info,
1582}, {
1583 // Surecom EP-1427X-2
1584 USB_DEVICE (0x1189, 0x0893),
1585 .driver_info = (unsigned long) &ax8817x_info,
1586}, {
1587 // goodway corp usb gwusb2e
1588 USB_DEVICE (0x1631, 0x6200),
1589 .driver_info = (unsigned long) &ax8817x_info,
1590}, {
David Hollis39c4b382007-02-20 08:02:24 -05001591 // JVC MP-PRX1 Port Replicator
1592 USB_DEVICE (0x04f1, 0x3008),
1593 .driver_info = (unsigned long) &ax8817x_info,
1594}, {
Marek Vasut30885902011-07-20 05:57:04 +00001595 // ASIX AX88772B 10/100
1596 USB_DEVICE (0x0b95, 0x772b),
1597 .driver_info = (unsigned long) &ax88772_info,
1598}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001599 // ASIX AX88772 10/100
David Hollis39c4b382007-02-20 08:02:24 -05001600 USB_DEVICE (0x0b95, 0x7720),
1601 .driver_info = (unsigned long) &ax88772_info,
David Hollis5e0f76c2005-12-19 13:58:38 -05001602}, {
Eduard Warkentin73274132006-05-18 01:13:17 -07001603 // ASIX AX88178 10/100/1000
1604 USB_DEVICE (0x0b95, 0x1780),
David Hollis933a27d2006-07-29 10:12:50 -04001605 .driver_info = (unsigned long) &ax88178_info,
Eduard Warkentin73274132006-05-18 01:13:17 -07001606}, {
Arnaud Ebalardf4680d32010-12-15 12:16:30 +00001607 // Logitec LAN-GTJ/U2A
1608 USB_DEVICE (0x0789, 0x0160),
1609 .driver_info = (unsigned long) &ax88178_info,
1610}, {
David Hollis5e0f76c2005-12-19 13:58:38 -05001611 // Linksys USB200M Rev 2
1612 USB_DEVICE (0x13b1, 0x0018),
1613 .driver_info = (unsigned long) &ax88772_info,
David Hollis5732ce82006-01-05 14:39:49 -05001614}, {
1615 // 0Q0 cable ethernet
1616 USB_DEVICE (0x1557, 0x7720),
1617 .driver_info = (unsigned long) &ax88772_info,
David Hollis933a27d2006-07-29 10:12:50 -04001618}, {
1619 // DLink DUB-E100 H/W Ver B1
1620 USB_DEVICE (0x07d1, 0x3c05),
1621 .driver_info = (unsigned long) &ax88772_info,
1622}, {
David Hollisb923e7f2006-09-21 08:09:29 -04001623 // DLink DUB-E100 H/W Ver B1 Alternate
1624 USB_DEVICE (0x2001, 0x3c05),
1625 .driver_info = (unsigned long) &ax88772_info,
1626}, {
David Hollis933a27d2006-07-29 10:12:50 -04001627 // Linksys USB1000
1628 USB_DEVICE (0x1737, 0x0039),
1629 .driver_info = (unsigned long) &ax88178_info,
YOSHIFUJI Hideaki / 吉藤英明b29cf312007-01-26 22:57:38 +09001630}, {
1631 // IO-DATA ETG-US2
1632 USB_DEVICE (0x04bb, 0x0930),
1633 .driver_info = (unsigned long) &ax88178_info,
David Hollis2ed22bc2007-05-23 07:33:17 -04001634}, {
1635 // Belkin F5D5055
1636 USB_DEVICE(0x050d, 0x5055),
1637 .driver_info = (unsigned long) &ax88178_info,
Aurelien Nephtali3d60efb52008-05-14 17:04:13 -07001638}, {
1639 // Apple USB Ethernet Adapter
1640 USB_DEVICE(0x05ac, 0x1402),
1641 .driver_info = (unsigned long) &ax88772_info,
Jason Cooperccf95402008-11-11 13:02:53 -05001642}, {
1643 // Cables-to-Go USB Ethernet Adapter
1644 USB_DEVICE(0x0b95, 0x772a),
1645 .driver_info = (unsigned long) &ax88772_info,
Greg Kroah-Hartmanfef7cc02009-02-24 23:52:24 -08001646}, {
1647 // ABOCOM for pci
1648 USB_DEVICE(0x14ea, 0xab11),
1649 .driver_info = (unsigned long) &ax88178_info,
1650}, {
1651 // ASIX 88772a
1652 USB_DEVICE(0x0db0, 0xa877),
1653 .driver_info = (unsigned long) &ax88772_info,
Aurelien Jacobse8303a32011-12-16 10:49:22 +00001654}, {
1655 // Asus USB Ethernet Adapter
1656 USB_DEVICE (0x0b95, 0x7e2b),
1657 .driver_info = (unsigned long) &ax88772_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001658},
1659 { }, // END
1660};
1661MODULE_DEVICE_TABLE(usb, products);
1662
1663static struct usb_driver asix_driver = {
Grant Grundler83e1b912011-10-04 09:55:18 +00001664 .name = DRIVER_NAME,
David Brownell2e55cc72005-08-31 09:53:10 -07001665 .id_table = products,
1666 .probe = usbnet_probe,
1667 .suspend = usbnet_suspend,
1668 .resume = usbnet_resume,
1669 .disconnect = usbnet_disconnect,
Oliver Neukuma11a6542007-08-03 13:52:19 +02001670 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001671 .disable_hub_initiated_lpm = 1,
David Brownell2e55cc72005-08-31 09:53:10 -07001672};
1673
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001674module_usb_driver(asix_driver);
David Brownell2e55cc72005-08-31 09:53:10 -07001675
1676MODULE_AUTHOR("David Hollis");
Grant Grundler4ad14382011-10-04 09:55:16 +00001677MODULE_VERSION(DRIVER_VERSION);
David Brownell2e55cc72005-08-31 09:53:10 -07001678MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1679MODULE_LICENSE("GPL");
1680