blob: 8e84f5bdd6ca581a3f6d26cfe9a06eb1b27771b2 [file] [log] [blame]
David Brownell2e55cc72005-08-31 09:53:10 -07001/*
2 * ASIX AX8817X based USB 2.0 Ethernet Devices
David Hollis933a27d2006-07-29 10:12:50 -04003 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
David Brownell2e55cc72005-08-31 09:53:10 -07004 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
David Hollis933a27d2006-07-29 10:12:50 -04005 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
David Brownell2e55cc72005-08-31 09:53:10 -07006 * Copyright (c) 2002-2003 TiVo Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23// #define DEBUG // error path messages, extra info
24// #define VERBOSE // more; success messages
25
David Brownell2e55cc72005-08-31 09:53:10 -070026#include <linux/module.h>
27#include <linux/kmod.h>
David Brownell2e55cc72005-08-31 09:53:10 -070028#include <linux/init.h>
29#include <linux/netdevice.h>
30#include <linux/etherdevice.h>
31#include <linux/ethtool.h>
32#include <linux/workqueue.h>
33#include <linux/mii.h>
34#include <linux/usb.h>
35#include <linux/crc32.h>
Jussi Kivilinna3692e942008-01-26 00:51:45 +020036#include <linux/usb/usbnet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
David Brownell2e55cc72005-08-31 09:53:10 -070038
allanf87ce5b2011-12-22 20:38:51 +000039#define DRIVER_VERSION "22-Dec-2011"
Grant Grundler83e1b912011-10-04 09:55:18 +000040#define DRIVER_NAME "asix"
David Hollis933a27d2006-07-29 10:12:50 -040041
David Brownell2e55cc72005-08-31 09:53:10 -070042/* ASIX AX8817X based USB 2.0 Ethernet Devices */
43
44#define AX_CMD_SET_SW_MII 0x06
45#define AX_CMD_READ_MII_REG 0x07
46#define AX_CMD_WRITE_MII_REG 0x08
47#define AX_CMD_SET_HW_MII 0x0a
48#define AX_CMD_READ_EEPROM 0x0b
49#define AX_CMD_WRITE_EEPROM 0x0c
50#define AX_CMD_WRITE_ENABLE 0x0d
51#define AX_CMD_WRITE_DISABLE 0x0e
David Hollis933a27d2006-07-29 10:12:50 -040052#define AX_CMD_READ_RX_CTL 0x0f
David Brownell2e55cc72005-08-31 09:53:10 -070053#define AX_CMD_WRITE_RX_CTL 0x10
54#define AX_CMD_READ_IPG012 0x11
55#define AX_CMD_WRITE_IPG0 0x12
56#define AX_CMD_WRITE_IPG1 0x13
David Hollis933a27d2006-07-29 10:12:50 -040057#define AX_CMD_READ_NODE_ID 0x13
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +000058#define AX_CMD_WRITE_NODE_ID 0x14
David Brownell2e55cc72005-08-31 09:53:10 -070059#define AX_CMD_WRITE_IPG2 0x14
60#define AX_CMD_WRITE_MULTI_FILTER 0x16
David Hollis933a27d2006-07-29 10:12:50 -040061#define AX88172_CMD_READ_NODE_ID 0x17
David Brownell2e55cc72005-08-31 09:53:10 -070062#define AX_CMD_READ_PHY_ID 0x19
63#define AX_CMD_READ_MEDIUM_STATUS 0x1a
64#define AX_CMD_WRITE_MEDIUM_MODE 0x1b
65#define AX_CMD_READ_MONITOR_MODE 0x1c
66#define AX_CMD_WRITE_MONITOR_MODE 0x1d
David Hollis933a27d2006-07-29 10:12:50 -040067#define AX_CMD_READ_GPIOS 0x1e
David Brownell2e55cc72005-08-31 09:53:10 -070068#define AX_CMD_WRITE_GPIOS 0x1f
69#define AX_CMD_SW_RESET 0x20
70#define AX_CMD_SW_PHY_STATUS 0x21
71#define AX_CMD_SW_PHY_SELECT 0x22
David Brownell2e55cc72005-08-31 09:53:10 -070072
73#define AX_MONITOR_MODE 0x01
74#define AX_MONITOR_LINK 0x02
75#define AX_MONITOR_MAGIC 0x04
76#define AX_MONITOR_HSFS 0x10
77
78/* AX88172 Medium Status Register values */
David Hollis933a27d2006-07-29 10:12:50 -040079#define AX88172_MEDIUM_FD 0x02
80#define AX88172_MEDIUM_TX 0x04
81#define AX88172_MEDIUM_FC 0x10
82#define AX88172_MEDIUM_DEFAULT \
83 ( AX88172_MEDIUM_FD | AX88172_MEDIUM_TX | AX88172_MEDIUM_FC )
David Brownell2e55cc72005-08-31 09:53:10 -070084
85#define AX_MCAST_FILTER_SIZE 8
86#define AX_MAX_MCAST 64
87
David Brownell2e55cc72005-08-31 09:53:10 -070088#define AX_SWRESET_CLEAR 0x00
89#define AX_SWRESET_RR 0x01
90#define AX_SWRESET_RT 0x02
91#define AX_SWRESET_PRTE 0x04
92#define AX_SWRESET_PRL 0x08
93#define AX_SWRESET_BZ 0x10
94#define AX_SWRESET_IPRL 0x20
95#define AX_SWRESET_IPPD 0x40
96
97#define AX88772_IPG0_DEFAULT 0x15
98#define AX88772_IPG1_DEFAULT 0x0c
99#define AX88772_IPG2_DEFAULT 0x12
100
David Hollis933a27d2006-07-29 10:12:50 -0400101/* AX88772 & AX88178 Medium Mode Register */
102#define AX_MEDIUM_PF 0x0080
103#define AX_MEDIUM_JFE 0x0040
104#define AX_MEDIUM_TFC 0x0020
105#define AX_MEDIUM_RFC 0x0010
106#define AX_MEDIUM_ENCK 0x0008
107#define AX_MEDIUM_AC 0x0004
108#define AX_MEDIUM_FD 0x0002
109#define AX_MEDIUM_GM 0x0001
110#define AX_MEDIUM_SM 0x1000
111#define AX_MEDIUM_SBP 0x0800
112#define AX_MEDIUM_PS 0x0200
113#define AX_MEDIUM_RE 0x0100
David Brownell2e55cc72005-08-31 09:53:10 -0700114
David Hollis933a27d2006-07-29 10:12:50 -0400115#define AX88178_MEDIUM_DEFAULT \
116 (AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
117 AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
Grant Grundler83e1b912011-10-04 09:55:18 +0000118 AX_MEDIUM_RE)
David Hollis933a27d2006-07-29 10:12:50 -0400119
120#define AX88772_MEDIUM_DEFAULT \
121 (AX_MEDIUM_FD | AX_MEDIUM_RFC | \
122 AX_MEDIUM_TFC | AX_MEDIUM_PS | \
Grant Grundler83e1b912011-10-04 09:55:18 +0000123 AX_MEDIUM_AC | AX_MEDIUM_RE)
David Hollis933a27d2006-07-29 10:12:50 -0400124
125/* AX88772 & AX88178 RX_CTL values */
Grant Grundler83e1b912011-10-04 09:55:18 +0000126#define AX_RX_CTL_SO 0x0080
127#define AX_RX_CTL_AP 0x0020
128#define AX_RX_CTL_AM 0x0010
129#define AX_RX_CTL_AB 0x0008
130#define AX_RX_CTL_SEP 0x0004
131#define AX_RX_CTL_AMALL 0x0002
132#define AX_RX_CTL_PRO 0x0001
133#define AX_RX_CTL_MFB_2048 0x0000
134#define AX_RX_CTL_MFB_4096 0x0100
135#define AX_RX_CTL_MFB_8192 0x0200
136#define AX_RX_CTL_MFB_16384 0x0300
David Hollis933a27d2006-07-29 10:12:50 -0400137
Grant Grundler83e1b912011-10-04 09:55:18 +0000138#define AX_DEFAULT_RX_CTL (AX_RX_CTL_SO | AX_RX_CTL_AB)
David Hollis933a27d2006-07-29 10:12:50 -0400139
140/* GPIO 0 .. 2 toggles */
141#define AX_GPIO_GPO0EN 0x01 /* GPIO0 Output enable */
142#define AX_GPIO_GPO_0 0x02 /* GPIO0 Output value */
143#define AX_GPIO_GPO1EN 0x04 /* GPIO1 Output enable */
144#define AX_GPIO_GPO_1 0x08 /* GPIO1 Output value */
145#define AX_GPIO_GPO2EN 0x10 /* GPIO2 Output enable */
146#define AX_GPIO_GPO_2 0x20 /* GPIO2 Output value */
147#define AX_GPIO_RESERVED 0x40 /* Reserved */
148#define AX_GPIO_RSE 0x80 /* Reload serial EEPROM */
149
150#define AX_EEPROM_MAGIC 0xdeadbeef
151#define AX88172_EEPROM_LEN 0x40
152#define AX88772_EEPROM_LEN 0xff
153
154#define PHY_MODE_MARVELL 0x0000
155#define MII_MARVELL_LED_CTRL 0x0018
156#define MII_MARVELL_STATUS 0x001b
157#define MII_MARVELL_CTRL 0x0014
158
159#define MARVELL_LED_MANUAL 0x0019
160
161#define MARVELL_STATUS_HWCFG 0x0004
162
163#define MARVELL_CTRL_TXDELAY 0x0002
164#define MARVELL_CTRL_RXDELAY 0x0080
David Brownell2e55cc72005-08-31 09:53:10 -0700165
Grant Grundler34861402011-11-15 07:12:39 +0000166#define PHY_MODE_RTL8211CL 0x000C
Grant Grundler610d8852011-10-04 09:55:17 +0000167
David Brownell2e55cc72005-08-31 09:53:10 -0700168/* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
David Hollis48b1be62006-03-28 20:15:42 -0500169struct asix_data {
David Brownell2e55cc72005-08-31 09:53:10 -0700170 u8 multi_filter[AX_MCAST_FILTER_SIZE];
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000171 u8 mac_addr[ETH_ALEN];
David Hollis933a27d2006-07-29 10:12:50 -0400172 u8 phymode;
173 u8 ledmode;
174 u8 eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700175};
176
177struct ax88172_int_data {
Al Viro51bf2972007-12-22 17:42:36 +0000178 __le16 res1;
David Brownell2e55cc72005-08-31 09:53:10 -0700179 u8 link;
Al Viro51bf2972007-12-22 17:42:36 +0000180 __le16 res2;
David Brownell2e55cc72005-08-31 09:53:10 -0700181 u8 status;
Al Viro51bf2972007-12-22 17:42:36 +0000182 __le16 res3;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000183} __packed;
David Brownell2e55cc72005-08-31 09:53:10 -0700184
David Hollis48b1be62006-03-28 20:15:42 -0500185static int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700186 u16 size, void *data)
187{
Al Viro51bf2972007-12-22 17:42:36 +0000188 void *buf;
189 int err = -ENOMEM;
190
Joe Perches60b86752010-02-17 10:30:23 +0000191 netdev_dbg(dev->net, "asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
192 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000193
194 buf = kmalloc(size, GFP_KERNEL);
195 if (!buf)
196 goto out;
197
198 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700199 dev->udev,
200 usb_rcvctrlpipe(dev->udev, 0),
201 cmd,
202 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
203 value,
204 index,
Al Viro51bf2972007-12-22 17:42:36 +0000205 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700206 size,
207 USB_CTRL_GET_TIMEOUT);
Russ Dill94d43362008-01-09 21:32:07 -0700208 if (err == size)
Al Viro51bf2972007-12-22 17:42:36 +0000209 memcpy(data, buf, size);
Russ Dill94d43362008-01-09 21:32:07 -0700210 else if (err >= 0)
211 err = -EINVAL;
Al Viro51bf2972007-12-22 17:42:36 +0000212 kfree(buf);
213
214out:
215 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700216}
217
David Hollis48b1be62006-03-28 20:15:42 -0500218static int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700219 u16 size, void *data)
220{
Al Viro51bf2972007-12-22 17:42:36 +0000221 void *buf = NULL;
222 int err = -ENOMEM;
223
Joe Perches60b86752010-02-17 10:30:23 +0000224 netdev_dbg(dev->net, "asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
225 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000226
227 if (data) {
Julia Lawall99bf2362010-05-15 11:20:45 +0000228 buf = kmemdup(data, size, GFP_KERNEL);
Al Viro51bf2972007-12-22 17:42:36 +0000229 if (!buf)
230 goto out;
Al Viro51bf2972007-12-22 17:42:36 +0000231 }
232
233 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700234 dev->udev,
235 usb_sndctrlpipe(dev->udev, 0),
236 cmd,
237 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
238 value,
239 index,
Al Viro51bf2972007-12-22 17:42:36 +0000240 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700241 size,
242 USB_CTRL_SET_TIMEOUT);
Al Viro51bf2972007-12-22 17:42:36 +0000243 kfree(buf);
244
245out:
246 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700247}
248
David Howells7d12e782006-10-05 14:55:46 +0100249static void asix_async_cmd_callback(struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700250{
251 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800252 int status = urb->status;
David Brownell2e55cc72005-08-31 09:53:10 -0700253
Oliver Neukumc94cb312008-12-18 23:00:59 -0800254 if (status < 0)
David Hollis48b1be62006-03-28 20:15:42 -0500255 printk(KERN_DEBUG "asix_async_cmd_callback() failed with %d",
Oliver Neukumc94cb312008-12-18 23:00:59 -0800256 status);
David Brownell2e55cc72005-08-31 09:53:10 -0700257
258 kfree(req);
259 usb_free_urb(urb);
260}
261
David Hollis933a27d2006-07-29 10:12:50 -0400262static void
263asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
264 u16 size, void *data)
David Hollis48b1be62006-03-28 20:15:42 -0500265{
David Hollis933a27d2006-07-29 10:12:50 -0400266 struct usb_ctrlrequest *req;
267 int status;
268 struct urb *urb;
David Hollis48b1be62006-03-28 20:15:42 -0500269
Joe Perches60b86752010-02-17 10:30:23 +0000270 netdev_dbg(dev->net, "asix_write_cmd_async() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
271 cmd, value, index, size);
Grant Grundler83e1b912011-10-04 09:55:18 +0000272
273 urb = usb_alloc_urb(0, GFP_ATOMIC);
274 if (!urb) {
Joe Perches60b86752010-02-17 10:30:23 +0000275 netdev_err(dev->net, "Error allocating URB in write_cmd_async!\n");
David Hollis933a27d2006-07-29 10:12:50 -0400276 return;
David Hollis48b1be62006-03-28 20:15:42 -0500277 }
David Hollis933a27d2006-07-29 10:12:50 -0400278
Grant Grundler83e1b912011-10-04 09:55:18 +0000279 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
280 if (!req) {
Joe Perches60b86752010-02-17 10:30:23 +0000281 netdev_err(dev->net, "Failed to allocate memory for control request\n");
David Hollis933a27d2006-07-29 10:12:50 -0400282 usb_free_urb(urb);
283 return;
284 }
285
286 req->bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
287 req->bRequest = cmd;
Oliver Neukum9aa742e2006-11-23 12:45:31 +0100288 req->wValue = cpu_to_le16(value);
289 req->wIndex = cpu_to_le16(index);
290 req->wLength = cpu_to_le16(size);
David Hollis933a27d2006-07-29 10:12:50 -0400291
292 usb_fill_control_urb(urb, dev->udev,
293 usb_sndctrlpipe(dev->udev, 0),
294 (void *)req, data, size,
295 asix_async_cmd_callback, req);
296
Grant Grundler83e1b912011-10-04 09:55:18 +0000297 status = usb_submit_urb(urb, GFP_ATOMIC);
298 if (status < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000299 netdev_err(dev->net, "Error submitting the control message: status=%d\n",
300 status);
David Hollis933a27d2006-07-29 10:12:50 -0400301 kfree(req);
302 usb_free_urb(urb);
303 }
David Hollis48b1be62006-03-28 20:15:42 -0500304}
305
David Hollis933a27d2006-07-29 10:12:50 -0400306static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
David Hollis48b1be62006-03-28 20:15:42 -0500307{
David Hollis933a27d2006-07-29 10:12:50 -0400308 u8 *head;
309 u32 header;
310 char *packet;
311 struct sk_buff *ax_skb;
312 u16 size;
David Hollis48b1be62006-03-28 20:15:42 -0500313
David Hollis933a27d2006-07-29 10:12:50 -0400314 head = (u8 *) skb->data;
315 memcpy(&header, head, sizeof(header));
316 le32_to_cpus(&header);
317 packet = head + sizeof(header);
David Hollis48b1be62006-03-28 20:15:42 -0500318
David Hollis933a27d2006-07-29 10:12:50 -0400319 skb_pull(skb, 4);
320
321 while (skb->len > 0) {
Marek Vasutbca0beb2011-07-26 16:44:47 +0000322 if ((header & 0x07ff) != ((~header >> 16) & 0x07ff))
Joe Perches60b86752010-02-17 10:30:23 +0000323 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length\n");
Marek Vasutbc466e62011-07-26 16:44:46 +0000324
David Hollis933a27d2006-07-29 10:12:50 -0400325 /* get the packet length */
Marek Vasutbca0beb2011-07-26 16:44:47 +0000326 size = (u16) (header & 0x000007ff);
David Hollis933a27d2006-07-29 10:12:50 -0400327
Neil Jones3f78d1f2010-05-17 17:18:28 -0700328 if ((skb->len) - ((size + 1) & 0xfffe) == 0) {
David S. Millerf925b132010-05-25 16:24:03 -0700329 u8 alignment = (unsigned long)skb->data & 0x3;
Neil Jones3f78d1f2010-05-17 17:18:28 -0700330 if (alignment != 0x2) {
331 /*
332 * not 16bit aligned so use the room provided by
333 * the 32 bit header to align the data
334 *
335 * note we want 16bit alignment as MAC header is
336 * 14bytes thus ip header will be aligned on
337 * 32bit boundary so accessing ipheader elements
338 * using a cast to struct ip header wont cause
339 * an unaligned accesses.
340 */
341 u8 realignment = (alignment + 2) & 0x3;
342 memmove(skb->data - realignment,
343 skb->data,
344 size);
345 skb->data -= realignment;
346 skb_set_tail_pointer(skb, size);
347 }
David Hollis933a27d2006-07-29 10:12:50 -0400348 return 2;
Neil Jones3f78d1f2010-05-17 17:18:28 -0700349 }
350
Jussi Kivilinna9227a462010-06-07 00:56:27 -0700351 if (size > dev->net->mtu + ETH_HLEN) {
Joe Perches60b86752010-02-17 10:30:23 +0000352 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
353 size);
David Hollis933a27d2006-07-29 10:12:50 -0400354 return 0;
355 }
356 ax_skb = skb_clone(skb, GFP_ATOMIC);
357 if (ax_skb) {
David S. Millerf925b132010-05-25 16:24:03 -0700358 u8 alignment = (unsigned long)packet & 0x3;
David Hollis933a27d2006-07-29 10:12:50 -0400359 ax_skb->len = size;
Neil Jones3f78d1f2010-05-17 17:18:28 -0700360
361 if (alignment != 0x2) {
362 /*
363 * not 16bit aligned use the room provided by
364 * the 32 bit header to align the data
365 */
366 u8 realignment = (alignment + 2) & 0x3;
367 memmove(packet - realignment, packet, size);
368 packet -= realignment;
369 }
David Hollis933a27d2006-07-29 10:12:50 -0400370 ax_skb->data = packet;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700371 skb_set_tail_pointer(ax_skb, size);
David Hollis933a27d2006-07-29 10:12:50 -0400372 usbnet_skb_return(dev, ax_skb);
373 } else {
374 return 0;
375 }
376
377 skb_pull(skb, (size + 1) & 0xfffe);
378
Aurelien Jacobs6c15d742012-01-07 12:15:16 -0800379 if (skb->len < sizeof(header))
David Hollis933a27d2006-07-29 10:12:50 -0400380 break;
381
382 head = (u8 *) skb->data;
383 memcpy(&header, head, sizeof(header));
384 le32_to_cpus(&header);
385 packet = head + sizeof(header);
386 skb_pull(skb, 4);
387 }
388
389 if (skb->len < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000390 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d\n",
391 skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400392 return 0;
393 }
394 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500395}
396
David Hollis933a27d2006-07-29 10:12:50 -0400397static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
398 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500399{
David Hollis933a27d2006-07-29 10:12:50 -0400400 int padlen;
401 int headroom = skb_headroom(skb);
402 int tailroom = skb_tailroom(skb);
403 u32 packet_len;
404 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500405
David Hollis933a27d2006-07-29 10:12:50 -0400406 padlen = ((skb->len + 4) % 512) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500407
Joe Perches8e95a202009-12-03 07:58:21 +0000408 if ((!skb_cloned(skb)) &&
409 ((headroom + tailroom) >= (4 + padlen))) {
David Hollis933a27d2006-07-29 10:12:50 -0400410 if ((headroom < 4) || (tailroom < padlen)) {
411 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700412 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400413 }
414 } else {
415 struct sk_buff *skb2;
416 skb2 = skb_copy_expand(skb, 4, padlen, flags);
417 dev_kfree_skb_any(skb);
418 skb = skb2;
419 if (!skb)
420 return NULL;
421 }
422
423 skb_push(skb, 4);
424 packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4);
David Hollis57e4f042007-02-05 12:03:03 -0500425 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300426 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400427
428 if ((skb->len % 512) == 0) {
David Hollis57e4f042007-02-05 12:03:03 -0500429 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700430 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400431 skb_put(skb, sizeof(padbytes));
432 }
433 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500434}
435
436static void asix_status(struct usbnet *dev, struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700437{
438 struct ax88172_int_data *event;
439 int link;
440
441 if (urb->actual_length < 8)
442 return;
443
444 event = urb->transfer_buffer;
445 link = event->link & 0x01;
446 if (netif_carrier_ok(dev->net) != link) {
447 if (link) {
448 netif_carrier_on(dev->net);
449 usbnet_defer_kevent (dev, EVENT_LINK_RESET );
450 } else
451 netif_carrier_off(dev->net);
Joe Perches60b86752010-02-17 10:30:23 +0000452 netdev_dbg(dev->net, "Link Status is: %d\n", link);
David Brownell2e55cc72005-08-31 09:53:10 -0700453 }
454}
455
David Hollis933a27d2006-07-29 10:12:50 -0400456static inline int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700457{
David Hollis933a27d2006-07-29 10:12:50 -0400458 int ret;
459 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
460 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000461 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400462 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700463}
464
David Hollis933a27d2006-07-29 10:12:50 -0400465static inline int asix_set_hw_mii(struct usbnet *dev)
466{
467 int ret;
468 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
469 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000470 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400471 return ret;
472}
473
474static inline int asix_get_phy_addr(struct usbnet *dev)
475{
Al Viro51bf2972007-12-22 17:42:36 +0000476 u8 buf[2];
477 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400478
Joe Perches60b86752010-02-17 10:30:23 +0000479 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400480
Al Viro51bf2972007-12-22 17:42:36 +0000481 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000482 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000483 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400484 }
Joe Perches60b86752010-02-17 10:30:23 +0000485 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
486 *((__le16 *)buf));
Al Viro51bf2972007-12-22 17:42:36 +0000487 ret = buf[1];
488
489out:
David Hollis933a27d2006-07-29 10:12:50 -0400490 return ret;
491}
492
493static int asix_sw_reset(struct usbnet *dev, u8 flags)
494{
495 int ret;
496
497 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
498 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000499 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400500
501 return ret;
502}
503
504static u16 asix_read_rx_ctl(struct usbnet *dev)
505{
Al Viro51bf2972007-12-22 17:42:36 +0000506 __le16 v;
507 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400508
Al Viro51bf2972007-12-22 17:42:36 +0000509 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000510 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000511 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400512 }
Al Viro51bf2972007-12-22 17:42:36 +0000513 ret = le16_to_cpu(v);
514out:
David Hollis933a27d2006-07-29 10:12:50 -0400515 return ret;
516}
517
518static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
519{
520 int ret;
521
Joe Perches60b86752010-02-17 10:30:23 +0000522 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400523 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
524 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000525 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
526 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400527
528 return ret;
529}
530
531static u16 asix_read_medium_status(struct usbnet *dev)
532{
Al Viro51bf2972007-12-22 17:42:36 +0000533 __le16 v;
534 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400535
Al Viro51bf2972007-12-22 17:42:36 +0000536 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000537 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
538 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000539 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400540 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000541
542 return le16_to_cpu(v);
543
David Hollis933a27d2006-07-29 10:12:50 -0400544}
545
546static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
547{
548 int ret;
549
Joe Perches60b86752010-02-17 10:30:23 +0000550 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400551 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
552 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000553 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
554 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400555
556 return ret;
557}
558
559static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
560{
561 int ret;
562
Joe Perches60b86752010-02-17 10:30:23 +0000563 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400564 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
565 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000566 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
567 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400568
569 if (sleep)
570 msleep(sleep);
571
572 return ret;
573}
574
575/*
576 * AX88772 & AX88178 have a 16-bit RX_CTL value
577 */
David Hollis48b1be62006-03-28 20:15:42 -0500578static void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700579{
580 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500581 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400582 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700583
584 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400585 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000586 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000587 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400588 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000589 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700590 /* just broadcast and directed */
591 } else {
592 /* We use the 20 byte dev->data
593 * for our 8 byte filter buffer
594 * to avoid allocating memory that
595 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000596 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700597 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700598
599 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
600
601 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000602 netdev_for_each_mc_addr(ha, net) {
603 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700604 data->multi_filter[crc_bits >> 3] |=
605 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700606 }
607
David Hollis48b1be62006-03-28 20:15:42 -0500608 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700609 AX_MCAST_FILTER_SIZE, data->multi_filter);
610
David Hollis933a27d2006-07-29 10:12:50 -0400611 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700612 }
613
David Hollis48b1be62006-03-28 20:15:42 -0500614 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700615}
616
David Hollis48b1be62006-03-28 20:15:42 -0500617static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700618{
619 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000620 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700621
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200622 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500623 asix_set_sw_mii(dev);
624 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000625 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500626 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200627 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700628
Joe Perches60b86752010-02-17 10:30:23 +0000629 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
630 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700631
Al Viro51bf2972007-12-22 17:42:36 +0000632 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700633}
634
635static void
David Hollis48b1be62006-03-28 20:15:42 -0500636asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700637{
638 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000639 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700640
Joe Perches60b86752010-02-17 10:30:23 +0000641 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
642 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200643 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500644 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000645 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500646 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200647 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700648}
649
David Hollis933a27d2006-07-29 10:12:50 -0400650/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
651static u32 asix_get_phyid(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700652{
David Hollis933a27d2006-07-29 10:12:50 -0400653 int phy_reg;
654 u32 phy_id;
Grant Grundlera77929a2011-11-15 07:12:40 +0000655 int i;
David Brownell2e55cc72005-08-31 09:53:10 -0700656
Grant Grundlera77929a2011-11-15 07:12:40 +0000657 /* Poll for the rare case the FW or phy isn't ready yet. */
658 for (i = 0; i < 100; i++) {
659 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
660 if (phy_reg != 0 && phy_reg != 0xFFFF)
661 break;
662 mdelay(1);
663 }
664
665 if (phy_reg <= 0 || phy_reg == 0xFFFF)
David Hollis933a27d2006-07-29 10:12:50 -0400666 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700667
David Hollis933a27d2006-07-29 10:12:50 -0400668 phy_id = (phy_reg & 0xffff) << 16;
David Brownell2e55cc72005-08-31 09:53:10 -0700669
David Hollis933a27d2006-07-29 10:12:50 -0400670 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
671 if (phy_reg < 0)
672 return 0;
673
674 phy_id |= (phy_reg & 0xffff);
675
676 return phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700677}
678
679static void
David Hollis48b1be62006-03-28 20:15:42 -0500680asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700681{
682 struct usbnet *dev = netdev_priv(net);
683 u8 opt;
684
David Hollis48b1be62006-03-28 20:15:42 -0500685 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700686 wolinfo->supported = 0;
687 wolinfo->wolopts = 0;
688 return;
689 }
690 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
691 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000692 if (opt & AX_MONITOR_LINK)
693 wolinfo->wolopts |= WAKE_PHY;
694 if (opt & AX_MONITOR_MAGIC)
695 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700696}
697
698static int
David Hollis48b1be62006-03-28 20:15:42 -0500699asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700700{
701 struct usbnet *dev = netdev_priv(net);
702 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700703
704 if (wolinfo->wolopts & WAKE_PHY)
705 opt |= AX_MONITOR_LINK;
706 if (wolinfo->wolopts & WAKE_MAGIC)
707 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700708
David Hollis48b1be62006-03-28 20:15:42 -0500709 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000710 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700711 return -EINVAL;
712
713 return 0;
714}
715
David Hollis48b1be62006-03-28 20:15:42 -0500716static int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700717{
David Hollis933a27d2006-07-29 10:12:50 -0400718 struct usbnet *dev = netdev_priv(net);
719 struct asix_data *data = (struct asix_data *)&dev->data;
720
721 return data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700722}
723
David Hollis48b1be62006-03-28 20:15:42 -0500724static int asix_get_eeprom(struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700725 struct ethtool_eeprom *eeprom, u8 *data)
726{
727 struct usbnet *dev = netdev_priv(net);
Al Viro51bf2972007-12-22 17:42:36 +0000728 __le16 *ebuf = (__le16 *)data;
David Brownell2e55cc72005-08-31 09:53:10 -0700729 int i;
730
731 /* Crude hack to ensure that we don't overwrite memory
732 * if an odd length is supplied
733 */
734 if (eeprom->len % 2)
735 return -EINVAL;
736
737 eeprom->magic = AX_EEPROM_MAGIC;
738
739 /* ax8817x returns 2 bytes from eeprom on read */
740 for (i=0; i < eeprom->len / 2; i++) {
David Hollis48b1be62006-03-28 20:15:42 -0500741 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
David Brownell2e55cc72005-08-31 09:53:10 -0700742 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
743 return -EINVAL;
744 }
745 return 0;
746}
747
David Hollis48b1be62006-03-28 20:15:42 -0500748static void asix_get_drvinfo (struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700749 struct ethtool_drvinfo *info)
750{
David Hollis933a27d2006-07-29 10:12:50 -0400751 struct usbnet *dev = netdev_priv(net);
752 struct asix_data *data = (struct asix_data *)&dev->data;
753
David Brownell2e55cc72005-08-31 09:53:10 -0700754 /* Inherit standard device info */
755 usbnet_get_drvinfo(net, info);
Grant Grundler83e1b912011-10-04 09:55:18 +0000756 strncpy (info->driver, DRIVER_NAME, sizeof info->driver);
David Hollis933a27d2006-07-29 10:12:50 -0400757 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
758 info->eedump_len = data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700759}
760
David Hollis933a27d2006-07-29 10:12:50 -0400761static u32 asix_get_link(struct net_device *net)
762{
763 struct usbnet *dev = netdev_priv(net);
764
765 return mii_link_ok(&dev->mii);
766}
767
768static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
769{
770 struct usbnet *dev = netdev_priv(net);
771
772 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700773}
774
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000775static int asix_set_mac_address(struct net_device *net, void *p)
776{
777 struct usbnet *dev = netdev_priv(net);
778 struct asix_data *data = (struct asix_data *)&dev->data;
779 struct sockaddr *addr = p;
780
781 if (netif_running(net))
782 return -EBUSY;
783 if (!is_valid_ether_addr(addr->sa_data))
784 return -EADDRNOTAVAIL;
785
786 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
787
788 /* We use the 20 byte dev->data
789 * for our 6 byte mac buffer
790 * to avoid allocating memory that
791 * is tricky to free later */
792 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
793 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
794 data->mac_addr);
795
796 return 0;
797}
798
David Brownell2e55cc72005-08-31 09:53:10 -0700799/* We need to override some ethtool_ops so we require our
800 own structure so we don't interfere with other usbnet
801 devices that may be connected at the same time. */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700802static const struct ethtool_ops ax88172_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500803 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400804 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700805 .get_msglevel = usbnet_get_msglevel,
806 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500807 .get_wol = asix_get_wol,
808 .set_wol = asix_set_wol,
809 .get_eeprom_len = asix_get_eeprom_len,
810 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200811 .get_settings = usbnet_get_settings,
812 .set_settings = usbnet_set_settings,
813 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700814};
815
David Hollis933a27d2006-07-29 10:12:50 -0400816static void ax88172_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700817{
818 struct usbnet *dev = netdev_priv(net);
David Hollis933a27d2006-07-29 10:12:50 -0400819 struct asix_data *data = (struct asix_data *)&dev->data;
820 u8 rx_ctl = 0x8c;
David Brownell2e55cc72005-08-31 09:53:10 -0700821
David Hollis933a27d2006-07-29 10:12:50 -0400822 if (net->flags & IFF_PROMISC) {
823 rx_ctl |= 0x01;
Joe Perches8e95a202009-12-03 07:58:21 +0000824 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000825 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400826 rx_ctl |= 0x02;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000827 } else if (netdev_mc_empty(net)) {
David Hollis933a27d2006-07-29 10:12:50 -0400828 /* just broadcast and directed */
829 } else {
830 /* We use the 20 byte dev->data
831 * for our 8 byte filter buffer
832 * to avoid allocating memory that
833 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000834 struct netdev_hw_addr *ha;
David Hollis933a27d2006-07-29 10:12:50 -0400835 u32 crc_bits;
David Hollis933a27d2006-07-29 10:12:50 -0400836
837 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
838
839 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000840 netdev_for_each_mc_addr(ha, net) {
841 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Hollis933a27d2006-07-29 10:12:50 -0400842 data->multi_filter[crc_bits >> 3] |=
843 1 << (crc_bits & 7);
David Hollis933a27d2006-07-29 10:12:50 -0400844 }
845
846 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
847 AX_MCAST_FILTER_SIZE, data->multi_filter);
848
849 rx_ctl |= 0x10;
850 }
851
852 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
853}
854
855static int ax88172_link_reset(struct usbnet *dev)
856{
857 u8 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000858 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -0400859
860 mii_check_media(&dev->mii, 1, 1);
861 mii_ethtool_gset(&dev->mii, &ecmd);
862 mode = AX88172_MEDIUM_DEFAULT;
863
864 if (ecmd.duplex != DUPLEX_FULL)
865 mode |= ~AX88172_MEDIUM_FD;
866
David Decotigny8ae6dac2011-04-27 18:32:38 +0000867 netdev_dbg(dev->net, "ax88172_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
868 ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400869
870 asix_write_medium_mode(dev, mode);
871
872 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700873}
874
Stephen Hemminger17033382009-03-20 19:35:55 +0000875static const struct net_device_ops ax88172_netdev_ops = {
876 .ndo_open = usbnet_open,
877 .ndo_stop = usbnet_stop,
878 .ndo_start_xmit = usbnet_start_xmit,
879 .ndo_tx_timeout = usbnet_tx_timeout,
880 .ndo_change_mtu = usbnet_change_mtu,
881 .ndo_set_mac_address = eth_mac_addr,
882 .ndo_validate_addr = eth_validate_addr,
883 .ndo_do_ioctl = asix_ioctl,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000884 .ndo_set_rx_mode = ax88172_set_multicast,
Stephen Hemminger17033382009-03-20 19:35:55 +0000885};
886
David Hollis48b1be62006-03-28 20:15:42 -0500887static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
David Brownell2e55cc72005-08-31 09:53:10 -0700888{
889 int ret = 0;
Al Viro51bf2972007-12-22 17:42:36 +0000890 u8 buf[ETH_ALEN];
David Brownell2e55cc72005-08-31 09:53:10 -0700891 int i;
892 unsigned long gpio_bits = dev->driver_info->data;
David Hollis933a27d2006-07-29 10:12:50 -0400893 struct asix_data *data = (struct asix_data *)&dev->data;
894
895 data->eeprom_len = AX88172_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700896
897 usbnet_get_endpoints(dev,intf);
898
David Brownell2e55cc72005-08-31 09:53:10 -0700899 /* Toggle the GPIOs in a manufacturer/model specific way */
900 for (i = 2; i >= 0; i--) {
Grant Grundler83e1b912011-10-04 09:55:18 +0000901 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
902 (gpio_bits >> (i * 8)) & 0xff, 0, 0, NULL);
903 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000904 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700905 msleep(5);
906 }
907
Grant Grundler83e1b912011-10-04 09:55:18 +0000908 ret = asix_write_rx_ctl(dev, 0x80);
909 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000910 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700911
912 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +0000913 ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
914 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700915 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000916 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700917 }
918 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
919
David Brownell2e55cc72005-08-31 09:53:10 -0700920 /* Initialize MII structure */
921 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -0500922 dev->mii.mdio_read = asix_mdio_read;
923 dev->mii.mdio_write = asix_mdio_write;
David Brownell2e55cc72005-08-31 09:53:10 -0700924 dev->mii.phy_id_mask = 0x3f;
925 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -0400926 dev->mii.phy_id = asix_get_phy_addr(dev);
David Brownell2e55cc72005-08-31 09:53:10 -0700927
Stephen Hemminger17033382009-03-20 19:35:55 +0000928 dev->net->netdev_ops = &ax88172_netdev_ops;
David Hollis48b1be62006-03-28 20:15:42 -0500929 dev->net->ethtool_ops = &ax88172_ethtool_ops;
David Brownell2e55cc72005-08-31 09:53:10 -0700930
David Hollis933a27d2006-07-29 10:12:50 -0400931 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
932 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700933 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
934 mii_nway_restart(&dev->mii);
935
936 return 0;
Al Viro51bf2972007-12-22 17:42:36 +0000937
938out:
David Brownell2e55cc72005-08-31 09:53:10 -0700939 return ret;
940}
941
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700942static const struct ethtool_ops ax88772_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500943 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400944 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700945 .get_msglevel = usbnet_get_msglevel,
946 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500947 .get_wol = asix_get_wol,
948 .set_wol = asix_set_wol,
949 .get_eeprom_len = asix_get_eeprom_len,
950 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200951 .get_settings = usbnet_get_settings,
952 .set_settings = usbnet_set_settings,
953 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700954};
955
David Hollis933a27d2006-07-29 10:12:50 -0400956static int ax88772_link_reset(struct usbnet *dev)
957{
958 u16 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000959 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -0400960
961 mii_check_media(&dev->mii, 1, 1);
962 mii_ethtool_gset(&dev->mii, &ecmd);
963 mode = AX88772_MEDIUM_DEFAULT;
964
David Decotigny8ae6dac2011-04-27 18:32:38 +0000965 if (ethtool_cmd_speed(&ecmd) != SPEED_100)
David Hollis933a27d2006-07-29 10:12:50 -0400966 mode &= ~AX_MEDIUM_PS;
967
968 if (ecmd.duplex != DUPLEX_FULL)
969 mode &= ~AX_MEDIUM_FD;
970
David Decotigny8ae6dac2011-04-27 18:32:38 +0000971 netdev_dbg(dev->net, "ax88772_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
972 ethtool_cmd_speed(&ecmd), ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400973
974 asix_write_medium_mode(dev, mode);
975
976 return 0;
977}
978
Grant Grundler4ad14382011-10-04 09:55:16 +0000979static int ax88772_reset(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700980{
Jussi Kivilinna8ef66bd2012-01-10 06:40:17 +0000981 struct asix_data *data = (struct asix_data *)&dev->data;
Andres Salomond0ffff82007-01-11 18:39:16 -0500982 int ret, embd_phy;
David Hollis933a27d2006-07-29 10:12:50 -0400983 u16 rx_ctl;
David Brownell2e55cc72005-08-31 09:53:10 -0700984
Grant Grundler83e1b912011-10-04 09:55:18 +0000985 ret = asix_write_gpio(dev,
986 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5);
987 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000988 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700989
Andres Salomond0ffff82007-01-11 18:39:16 -0500990 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
Grant Grundler4ad14382011-10-04 09:55:16 +0000991
Grant Grundler83e1b912011-10-04 09:55:18 +0000992 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
993 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700994 dbg("Select PHY #1 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000995 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700996 }
997
Grant Grundler83e1b912011-10-04 09:55:18 +0000998 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
999 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001000 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001001
1002 msleep(150);
Grant Grundler83e1b912011-10-04 09:55:18 +00001003
1004 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
1005 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001006 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001007
1008 msleep(150);
Grant Grundler4ad14382011-10-04 09:55:16 +00001009
Andres Salomond0ffff82007-01-11 18:39:16 -05001010 if (embd_phy) {
Grant Grundler83e1b912011-10-04 09:55:18 +00001011 ret = asix_sw_reset(dev, AX_SWRESET_IPRL);
1012 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001013 goto out;
Grant Grundler83e1b912011-10-04 09:55:18 +00001014 } else {
1015 ret = asix_sw_reset(dev, AX_SWRESET_PRTE);
1016 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001017 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -05001018 }
David Brownell2e55cc72005-08-31 09:53:10 -07001019
1020 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001021 rx_ctl = asix_read_rx_ctl(dev);
1022 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
Grant Grundler83e1b912011-10-04 09:55:18 +00001023 ret = asix_write_rx_ctl(dev, 0x0000);
1024 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001025 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001026
David Hollis933a27d2006-07-29 10:12:50 -04001027 rx_ctl = asix_read_rx_ctl(dev);
1028 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
1029
Grant Grundler83e1b912011-10-04 09:55:18 +00001030 ret = asix_sw_reset(dev, AX_SWRESET_PRL);
1031 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001032 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001033
David Brownell2e55cc72005-08-31 09:53:10 -07001034 msleep(150);
1035
Grant Grundler83e1b912011-10-04 09:55:18 +00001036 ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL);
1037 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001038 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001039
David Hollis48b1be62006-03-28 20:15:42 -05001040 msleep(150);
1041
David Hollis933a27d2006-07-29 10:12:50 -04001042 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
1043 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -07001044 ADVERTISE_ALL | ADVERTISE_CSMA);
1045 mii_nway_restart(&dev->mii);
1046
Grant Grundler83e1b912011-10-04 09:55:18 +00001047 ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT);
1048 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001049 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001050
Grant Grundler83e1b912011-10-04 09:55:18 +00001051 ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
David Brownell2e55cc72005-08-31 09:53:10 -07001052 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
Grant Grundler83e1b912011-10-04 09:55:18 +00001053 AX88772_IPG2_DEFAULT, 0, NULL);
1054 if (ret < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -07001055 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001056 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001057 }
David Brownell2e55cc72005-08-31 09:53:10 -07001058
Jussi Kivilinna8ef66bd2012-01-10 06:40:17 +00001059 /* Rewrite MAC address */
1060 memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
1061 ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
1062 data->mac_addr);
1063 if (ret < 0)
1064 goto out;
1065
David Brownell2e55cc72005-08-31 09:53:10 -07001066 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
Grant Grundler83e1b912011-10-04 09:55:18 +00001067 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1068 if (ret < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001069 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001070
David Hollis933a27d2006-07-29 10:12:50 -04001071 rx_ctl = asix_read_rx_ctl(dev);
1072 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1073
1074 rx_ctl = asix_read_medium_status(dev);
1075 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1076
Grant Grundler4ad14382011-10-04 09:55:16 +00001077 return 0;
1078
1079out:
1080 return ret;
1081
1082}
1083
1084static const struct net_device_ops ax88772_netdev_ops = {
1085 .ndo_open = usbnet_open,
1086 .ndo_stop = usbnet_stop,
1087 .ndo_start_xmit = usbnet_start_xmit,
1088 .ndo_tx_timeout = usbnet_tx_timeout,
1089 .ndo_change_mtu = usbnet_change_mtu,
1090 .ndo_set_mac_address = asix_set_mac_address,
1091 .ndo_validate_addr = eth_validate_addr,
1092 .ndo_do_ioctl = asix_ioctl,
1093 .ndo_set_rx_mode = asix_set_multicast,
1094};
1095
1096static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
1097{
Grant Grundlerd3665182011-11-15 07:12:41 +00001098 int ret, embd_phy;
Grant Grundler4ad14382011-10-04 09:55:16 +00001099 struct asix_data *data = (struct asix_data *)&dev->data;
1100 u8 buf[ETH_ALEN];
1101 u32 phyid;
1102
1103 data->eeprom_len = AX88772_EEPROM_LEN;
1104
1105 usbnet_get_endpoints(dev,intf);
1106
1107 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +00001108 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1109 if (ret < 0) {
Grant Grundler4ad14382011-10-04 09:55:16 +00001110 dbg("Failed to read MAC address: %d", ret);
Grant Grundler83e1b912011-10-04 09:55:18 +00001111 return ret;
Grant Grundler4ad14382011-10-04 09:55:16 +00001112 }
1113 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1114
1115 /* Initialize MII structure */
1116 dev->mii.dev = dev->net;
1117 dev->mii.mdio_read = asix_mdio_read;
1118 dev->mii.mdio_write = asix_mdio_write;
1119 dev->mii.phy_id_mask = 0x1f;
1120 dev->mii.reg_num_mask = 0x1f;
1121 dev->mii.phy_id = asix_get_phy_addr(dev);
1122
Grant Grundler4ad14382011-10-04 09:55:16 +00001123 dev->net->netdev_ops = &ax88772_netdev_ops;
1124 dev->net->ethtool_ops = &ax88772_ethtool_ops;
1125
Grant Grundlerd3665182011-11-15 07:12:41 +00001126 embd_phy = ((dev->mii.phy_id & 0x1f) == 0x10 ? 1 : 0);
1127
1128 /* Reset the PHY to normal operation mode */
1129 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
1130 if (ret < 0) {
1131 dbg("Select PHY #1 failed: %d", ret);
1132 return ret;
1133 }
1134
1135 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
Grant Grundler83e1b912011-10-04 09:55:18 +00001136 if (ret < 0)
1137 return ret;
Grant Grundler4ad14382011-10-04 09:55:16 +00001138
Grant Grundlerd3665182011-11-15 07:12:41 +00001139 msleep(150);
1140
1141 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
1142 if (ret < 0)
1143 return ret;
1144
1145 msleep(150);
1146
1147 ret = asix_sw_reset(dev, embd_phy ? AX_SWRESET_IPRL : AX_SWRESET_PRTE);
1148
1149 /* Read PHYID register *AFTER* the PHY was reset properly */
1150 phyid = asix_get_phyid(dev);
1151 dbg("PHYID=0x%08x", phyid);
1152
David Brownell2e55cc72005-08-31 09:53:10 -07001153 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1154 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1155 /* hard_mtu is still the default - the device does not support
1156 jumbo eth frames */
1157 dev->rx_urb_size = 2048;
1158 }
Grant Grundler83e1b912011-10-04 09:55:18 +00001159
David Brownell2e55cc72005-08-31 09:53:10 -07001160 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -07001161}
1162
stephen hemmingerbc689c92012-01-05 19:10:23 +00001163static const struct ethtool_ops ax88178_ethtool_ops = {
David Hollis933a27d2006-07-29 10:12:50 -04001164 .get_drvinfo = asix_get_drvinfo,
1165 .get_link = asix_get_link,
David Hollis933a27d2006-07-29 10:12:50 -04001166 .get_msglevel = usbnet_get_msglevel,
1167 .set_msglevel = usbnet_set_msglevel,
1168 .get_wol = asix_get_wol,
1169 .set_wol = asix_set_wol,
1170 .get_eeprom_len = asix_get_eeprom_len,
1171 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001172 .get_settings = usbnet_get_settings,
1173 .set_settings = usbnet_set_settings,
1174 .nway_reset = usbnet_nway_reset,
David Hollis933a27d2006-07-29 10:12:50 -04001175};
1176
1177static int marvell_phy_init(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -07001178{
David Hollis933a27d2006-07-29 10:12:50 -04001179 struct asix_data *data = (struct asix_data *)&dev->data;
1180 u16 reg;
David Brownell2e55cc72005-08-31 09:53:10 -07001181
Joe Perches60b86752010-02-17 10:30:23 +00001182 netdev_dbg(dev->net, "marvell_phy_init()\n");
David Brownell2e55cc72005-08-31 09:53:10 -07001183
David Hollis933a27d2006-07-29 10:12:50 -04001184 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
Joe Perches60b86752010-02-17 10:30:23 +00001185 netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001186
David Hollis933a27d2006-07-29 10:12:50 -04001187 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1188 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
David Brownell2e55cc72005-08-31 09:53:10 -07001189
David Hollis933a27d2006-07-29 10:12:50 -04001190 if (data->ledmode) {
1191 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1192 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001193 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001194
David Hollis933a27d2006-07-29 10:12:50 -04001195 reg &= 0xf8ff;
1196 reg |= (1 + 0x0100);
1197 asix_mdio_write(dev->net, dev->mii.phy_id,
1198 MII_MARVELL_LED_CTRL, reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001199
David Hollis933a27d2006-07-29 10:12:50 -04001200 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1201 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001202 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001203 reg &= 0xfc0f;
David Brownell2e55cc72005-08-31 09:53:10 -07001204 }
1205
David Brownell2e55cc72005-08-31 09:53:10 -07001206 return 0;
1207}
1208
Grant Grundler610d8852011-10-04 09:55:17 +00001209static int rtl8211cl_phy_init(struct usbnet *dev)
1210{
1211 struct asix_data *data = (struct asix_data *)&dev->data;
1212
1213 netdev_dbg(dev->net, "rtl8211cl_phy_init()\n");
1214
1215 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0005);
1216 asix_mdio_write (dev->net, dev->mii.phy_id, 0x0c, 0);
1217 asix_mdio_write (dev->net, dev->mii.phy_id, 0x01,
1218 asix_mdio_read (dev->net, dev->mii.phy_id, 0x01) | 0x0080);
1219 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1220
1221 if (data->ledmode == 12) {
1222 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0002);
1223 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1a, 0x00cb);
1224 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1225 }
1226
1227 return 0;
1228}
1229
David Hollis933a27d2006-07-29 10:12:50 -04001230static int marvell_led_status(struct usbnet *dev, u16 speed)
1231{
1232 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1233
Joe Perches60b86752010-02-17 10:30:23 +00001234 netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001235
1236 /* Clear out the center LED bits - 0x03F0 */
1237 reg &= 0xfc0f;
1238
1239 switch (speed) {
1240 case SPEED_1000:
1241 reg |= 0x03e0;
1242 break;
1243 case SPEED_100:
1244 reg |= 0x03b0;
1245 break;
1246 default:
1247 reg |= 0x02f0;
1248 }
1249
Joe Perches60b86752010-02-17 10:30:23 +00001250 netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001251 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1252
1253 return 0;
1254}
1255
Grant Grundler610d8852011-10-04 09:55:17 +00001256static int ax88178_reset(struct usbnet *dev)
1257{
1258 struct asix_data *data = (struct asix_data *)&dev->data;
1259 int ret;
1260 __le16 eeprom;
1261 u8 status;
1262 int gpio0 = 0;
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001263 u32 phyid;
Grant Grundler610d8852011-10-04 09:55:17 +00001264
1265 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1266 dbg("GPIO Status: 0x%04x", status);
1267
1268 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1269 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1270 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1271
1272 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1273
1274 if (eeprom == cpu_to_le16(0xffff)) {
1275 data->phymode = PHY_MODE_MARVELL;
1276 data->ledmode = 0;
1277 gpio0 = 1;
1278 } else {
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001279 data->phymode = le16_to_cpu(eeprom) & 0x7F;
Grant Grundler610d8852011-10-04 09:55:17 +00001280 data->ledmode = le16_to_cpu(eeprom) >> 8;
1281 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
1282 }
1283 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
1284
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001285 /* Power up external GigaPHY through AX88178 GPIO pin */
Grant Grundler610d8852011-10-04 09:55:17 +00001286 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
1287 if ((le16_to_cpu(eeprom) >> 8) != 1) {
1288 asix_write_gpio(dev, 0x003c, 30);
1289 asix_write_gpio(dev, 0x001c, 300);
1290 asix_write_gpio(dev, 0x003c, 30);
1291 } else {
1292 dbg("gpio phymode == 1 path");
1293 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1294 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1295 }
1296
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001297 /* Read PHYID register *AFTER* powering up PHY */
1298 phyid = asix_get_phyid(dev);
1299 dbg("PHYID=0x%08x", phyid);
1300
1301 /* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */
1302 asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, 0, 0, 0, NULL);
1303
Grant Grundler610d8852011-10-04 09:55:17 +00001304 asix_sw_reset(dev, 0);
1305 msleep(150);
1306
1307 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1308 msleep(150);
1309
1310 asix_write_rx_ctl(dev, 0);
1311
1312 if (data->phymode == PHY_MODE_MARVELL) {
1313 marvell_phy_init(dev);
1314 msleep(60);
1315 } else if (data->phymode == PHY_MODE_RTL8211CL)
1316 rtl8211cl_phy_init(dev);
1317
1318 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1319 BMCR_RESET | BMCR_ANENABLE);
1320 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1321 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1322 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1323 ADVERTISE_1000FULL);
1324
1325 mii_nway_restart(&dev->mii);
1326
Grant Grundler83e1b912011-10-04 09:55:18 +00001327 ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT);
1328 if (ret < 0)
1329 return ret;
Grant Grundler610d8852011-10-04 09:55:17 +00001330
Jussi Kivilinna71bc5d92012-01-10 06:40:23 +00001331 /* Rewrite MAC address */
1332 memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN);
1333 ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
1334 data->mac_addr);
1335 if (ret < 0)
1336 return ret;
1337
Grant Grundler83e1b912011-10-04 09:55:18 +00001338 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1339 if (ret < 0)
1340 return ret;
Grant Grundler610d8852011-10-04 09:55:17 +00001341
1342 return 0;
Grant Grundler610d8852011-10-04 09:55:17 +00001343}
1344
David Hollis933a27d2006-07-29 10:12:50 -04001345static int ax88178_link_reset(struct usbnet *dev)
1346{
1347 u16 mode;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001348 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
David Hollis933a27d2006-07-29 10:12:50 -04001349 struct asix_data *data = (struct asix_data *)&dev->data;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001350 u32 speed;
David Hollis933a27d2006-07-29 10:12:50 -04001351
Joe Perches60b86752010-02-17 10:30:23 +00001352 netdev_dbg(dev->net, "ax88178_link_reset()\n");
David Hollis933a27d2006-07-29 10:12:50 -04001353
1354 mii_check_media(&dev->mii, 1, 1);
1355 mii_ethtool_gset(&dev->mii, &ecmd);
1356 mode = AX88178_MEDIUM_DEFAULT;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001357 speed = ethtool_cmd_speed(&ecmd);
David Hollis933a27d2006-07-29 10:12:50 -04001358
David Decotigny8ae6dac2011-04-27 18:32:38 +00001359 if (speed == SPEED_1000)
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001360 mode |= AX_MEDIUM_GM;
David Decotigny8ae6dac2011-04-27 18:32:38 +00001361 else if (speed == SPEED_100)
David Hollis933a27d2006-07-29 10:12:50 -04001362 mode |= AX_MEDIUM_PS;
1363 else
1364 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1365
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001366 mode |= AX_MEDIUM_ENCK;
1367
David Hollis933a27d2006-07-29 10:12:50 -04001368 if (ecmd.duplex == DUPLEX_FULL)
1369 mode |= AX_MEDIUM_FD;
1370 else
1371 mode &= ~AX_MEDIUM_FD;
1372
David Decotigny8ae6dac2011-04-27 18:32:38 +00001373 netdev_dbg(dev->net, "ax88178_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
1374 speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -04001375
1376 asix_write_medium_mode(dev, mode);
1377
1378 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
David Decotigny8ae6dac2011-04-27 18:32:38 +00001379 marvell_led_status(dev, speed);
David Hollis933a27d2006-07-29 10:12:50 -04001380
1381 return 0;
1382}
1383
1384static void ax88178_set_mfb(struct usbnet *dev)
1385{
1386 u16 mfb = AX_RX_CTL_MFB_16384;
1387 u16 rxctl;
1388 u16 medium;
1389 int old_rx_urb_size = dev->rx_urb_size;
1390
1391 if (dev->hard_mtu < 2048) {
1392 dev->rx_urb_size = 2048;
1393 mfb = AX_RX_CTL_MFB_2048;
1394 } else if (dev->hard_mtu < 4096) {
1395 dev->rx_urb_size = 4096;
1396 mfb = AX_RX_CTL_MFB_4096;
1397 } else if (dev->hard_mtu < 8192) {
1398 dev->rx_urb_size = 8192;
1399 mfb = AX_RX_CTL_MFB_8192;
1400 } else if (dev->hard_mtu < 16384) {
1401 dev->rx_urb_size = 16384;
1402 mfb = AX_RX_CTL_MFB_16384;
1403 }
1404
1405 rxctl = asix_read_rx_ctl(dev);
1406 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1407
1408 medium = asix_read_medium_status(dev);
1409 if (dev->net->mtu > 1500)
1410 medium |= AX_MEDIUM_JFE;
1411 else
1412 medium &= ~AX_MEDIUM_JFE;
1413 asix_write_medium_mode(dev, medium);
1414
1415 if (dev->rx_urb_size > old_rx_urb_size)
1416 usbnet_unlink_rx_urbs(dev);
1417}
1418
1419static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1420{
1421 struct usbnet *dev = netdev_priv(net);
1422 int ll_mtu = new_mtu + net->hard_header_len + 4;
1423
Joe Perches60b86752010-02-17 10:30:23 +00001424 netdev_dbg(dev->net, "ax88178_change_mtu() new_mtu=%d\n", new_mtu);
David Hollis933a27d2006-07-29 10:12:50 -04001425
1426 if (new_mtu <= 0 || ll_mtu > 16384)
1427 return -EINVAL;
1428
1429 if ((ll_mtu % dev->maxpacket) == 0)
1430 return -EDOM;
1431
1432 net->mtu = new_mtu;
1433 dev->hard_mtu = net->mtu + net->hard_header_len;
1434 ax88178_set_mfb(dev);
1435
1436 return 0;
1437}
1438
Stephen Hemminger17033382009-03-20 19:35:55 +00001439static const struct net_device_ops ax88178_netdev_ops = {
1440 .ndo_open = usbnet_open,
1441 .ndo_stop = usbnet_stop,
1442 .ndo_start_xmit = usbnet_start_xmit,
1443 .ndo_tx_timeout = usbnet_tx_timeout,
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +00001444 .ndo_set_mac_address = asix_set_mac_address,
Stephen Hemminger17033382009-03-20 19:35:55 +00001445 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001446 .ndo_set_rx_mode = asix_set_multicast,
Stephen Hemminger17033382009-03-20 19:35:55 +00001447 .ndo_do_ioctl = asix_ioctl,
1448 .ndo_change_mtu = ax88178_change_mtu,
1449};
1450
David Hollis933a27d2006-07-29 10:12:50 -04001451static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1452{
David Hollis933a27d2006-07-29 10:12:50 -04001453 int ret;
Al Viro51bf2972007-12-22 17:42:36 +00001454 u8 buf[ETH_ALEN];
Grant Grundler79de9ef2011-10-17 05:51:06 +00001455 struct asix_data *data = (struct asix_data *)&dev->data;
1456
1457 data->eeprom_len = AX88772_EEPROM_LEN;
David Hollis933a27d2006-07-29 10:12:50 -04001458
1459 usbnet_get_endpoints(dev,intf);
1460
David Hollis933a27d2006-07-29 10:12:50 -04001461 /* Get the MAC address */
Grant Grundler83e1b912011-10-04 09:55:18 +00001462 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1463 if (ret < 0) {
David Hollis933a27d2006-07-29 10:12:50 -04001464 dbg("Failed to read MAC address: %d", ret);
Grant Grundler83e1b912011-10-04 09:55:18 +00001465 return ret;
David Hollis933a27d2006-07-29 10:12:50 -04001466 }
1467 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1468
1469 /* Initialize MII structure */
1470 dev->mii.dev = dev->net;
1471 dev->mii.mdio_read = asix_mdio_read;
1472 dev->mii.mdio_write = asix_mdio_write;
1473 dev->mii.phy_id_mask = 0x1f;
1474 dev->mii.reg_num_mask = 0xff;
1475 dev->mii.supports_gmii = 1;
David Hollis933a27d2006-07-29 10:12:50 -04001476 dev->mii.phy_id = asix_get_phy_addr(dev);
Stephen Hemminger17033382009-03-20 19:35:55 +00001477
1478 dev->net->netdev_ops = &ax88178_netdev_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001479 dev->net->ethtool_ops = &ax88178_ethtool_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001480
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001481 /* Blink LEDS so users know driver saw dongle */
1482 asix_sw_reset(dev, 0);
1483 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001484
Grant Grundlerb2d3ad292011-11-15 07:12:42 +00001485 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1486 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001487
1488 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1489 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1490 /* hard_mtu is still the default - the device does not support
1491 jumbo eth frames */
1492 dev->rx_urb_size = 2048;
1493 }
David Hollis933a27d2006-07-29 10:12:50 -04001494
Grant Grundler83e1b912011-10-04 09:55:18 +00001495 return 0;
David Hollis933a27d2006-07-29 10:12:50 -04001496}
1497
David Brownell2e55cc72005-08-31 09:53:10 -07001498static const struct driver_info ax8817x_info = {
1499 .description = "ASIX AX8817x USB 2.0 Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001500 .bind = ax88172_bind,
1501 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001502 .link_reset = ax88172_link_reset,
1503 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001504 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001505 .data = 0x00130103,
1506};
1507
1508static const struct driver_info dlink_dub_e100_info = {
1509 .description = "DLink DUB-E100 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001510 .bind = ax88172_bind,
1511 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001512 .link_reset = ax88172_link_reset,
1513 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001514 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001515 .data = 0x009f9d9f,
1516};
1517
1518static const struct driver_info netgear_fa120_info = {
1519 .description = "Netgear FA-120 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001520 .bind = ax88172_bind,
1521 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001522 .link_reset = ax88172_link_reset,
1523 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001524 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001525 .data = 0x00130103,
1526};
1527
1528static const struct driver_info hawking_uf200_info = {
1529 .description = "Hawking UF200 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001530 .bind = ax88172_bind,
1531 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001532 .link_reset = ax88172_link_reset,
1533 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001534 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001535 .data = 0x001f1d1f,
1536};
1537
1538static const struct driver_info ax88772_info = {
1539 .description = "ASIX AX88772 USB 2.0 Ethernet",
1540 .bind = ax88772_bind,
David Hollis48b1be62006-03-28 20:15:42 -05001541 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001542 .link_reset = ax88772_link_reset,
Grant Grundler4ad14382011-10-04 09:55:16 +00001543 .reset = ax88772_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001544 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001545 .rx_fixup = asix_rx_fixup,
1546 .tx_fixup = asix_tx_fixup,
1547};
1548
1549static const struct driver_info ax88178_info = {
1550 .description = "ASIX AX88178 USB 2.0 Ethernet",
1551 .bind = ax88178_bind,
1552 .status = asix_status,
1553 .link_reset = ax88178_link_reset,
Grant Grundler610d8852011-10-04 09:55:17 +00001554 .reset = ax88178_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001555 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001556 .rx_fixup = asix_rx_fixup,
1557 .tx_fixup = asix_tx_fixup,
David Brownell2e55cc72005-08-31 09:53:10 -07001558};
1559
1560static const struct usb_device_id products [] = {
1561{
1562 // Linksys USB200M
1563 USB_DEVICE (0x077b, 0x2226),
1564 .driver_info = (unsigned long) &ax8817x_info,
1565}, {
1566 // Netgear FA120
1567 USB_DEVICE (0x0846, 0x1040),
1568 .driver_info = (unsigned long) &netgear_fa120_info,
1569}, {
1570 // DLink DUB-E100
1571 USB_DEVICE (0x2001, 0x1a00),
1572 .driver_info = (unsigned long) &dlink_dub_e100_info,
1573}, {
1574 // Intellinet, ST Lab USB Ethernet
1575 USB_DEVICE (0x0b95, 0x1720),
1576 .driver_info = (unsigned long) &ax8817x_info,
1577}, {
1578 // Hawking UF200, TrendNet TU2-ET100
1579 USB_DEVICE (0x07b8, 0x420a),
1580 .driver_info = (unsigned long) &hawking_uf200_info,
1581}, {
David Hollis39c4b382007-02-20 08:02:24 -05001582 // Billionton Systems, USB2AR
1583 USB_DEVICE (0x08dd, 0x90ff),
1584 .driver_info = (unsigned long) &ax8817x_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001585}, {
1586 // ATEN UC210T
1587 USB_DEVICE (0x0557, 0x2009),
1588 .driver_info = (unsigned long) &ax8817x_info,
1589}, {
1590 // Buffalo LUA-U2-KTX
1591 USB_DEVICE (0x0411, 0x003d),
1592 .driver_info = (unsigned long) &ax8817x_info,
1593}, {
Mattia Dongiliac7b77f2008-05-06 20:42:35 -07001594 // Buffalo LUA-U2-GT 10/100/1000
1595 USB_DEVICE (0x0411, 0x006e),
1596 .driver_info = (unsigned long) &ax88178_info,
1597}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001598 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1599 USB_DEVICE (0x6189, 0x182d),
1600 .driver_info = (unsigned long) &ax8817x_info,
1601}, {
1602 // corega FEther USB2-TX
1603 USB_DEVICE (0x07aa, 0x0017),
1604 .driver_info = (unsigned long) &ax8817x_info,
1605}, {
1606 // Surecom EP-1427X-2
1607 USB_DEVICE (0x1189, 0x0893),
1608 .driver_info = (unsigned long) &ax8817x_info,
1609}, {
1610 // goodway corp usb gwusb2e
1611 USB_DEVICE (0x1631, 0x6200),
1612 .driver_info = (unsigned long) &ax8817x_info,
1613}, {
David Hollis39c4b382007-02-20 08:02:24 -05001614 // JVC MP-PRX1 Port Replicator
1615 USB_DEVICE (0x04f1, 0x3008),
1616 .driver_info = (unsigned long) &ax8817x_info,
1617}, {
Marek Vasut30885902011-07-20 05:57:04 +00001618 // ASIX AX88772B 10/100
1619 USB_DEVICE (0x0b95, 0x772b),
1620 .driver_info = (unsigned long) &ax88772_info,
1621}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001622 // ASIX AX88772 10/100
David Hollis39c4b382007-02-20 08:02:24 -05001623 USB_DEVICE (0x0b95, 0x7720),
1624 .driver_info = (unsigned long) &ax88772_info,
David Hollis5e0f76c2005-12-19 13:58:38 -05001625}, {
Eduard Warkentin73274132006-05-18 01:13:17 -07001626 // ASIX AX88178 10/100/1000
1627 USB_DEVICE (0x0b95, 0x1780),
David Hollis933a27d2006-07-29 10:12:50 -04001628 .driver_info = (unsigned long) &ax88178_info,
Eduard Warkentin73274132006-05-18 01:13:17 -07001629}, {
Arnaud Ebalardf4680d32010-12-15 12:16:30 +00001630 // Logitec LAN-GTJ/U2A
1631 USB_DEVICE (0x0789, 0x0160),
1632 .driver_info = (unsigned long) &ax88178_info,
1633}, {
David Hollis5e0f76c2005-12-19 13:58:38 -05001634 // Linksys USB200M Rev 2
1635 USB_DEVICE (0x13b1, 0x0018),
1636 .driver_info = (unsigned long) &ax88772_info,
David Hollis5732ce82006-01-05 14:39:49 -05001637}, {
1638 // 0Q0 cable ethernet
1639 USB_DEVICE (0x1557, 0x7720),
1640 .driver_info = (unsigned long) &ax88772_info,
David Hollis933a27d2006-07-29 10:12:50 -04001641}, {
1642 // DLink DUB-E100 H/W Ver B1
1643 USB_DEVICE (0x07d1, 0x3c05),
1644 .driver_info = (unsigned long) &ax88772_info,
1645}, {
David Hollisb923e7f2006-09-21 08:09:29 -04001646 // DLink DUB-E100 H/W Ver B1 Alternate
1647 USB_DEVICE (0x2001, 0x3c05),
1648 .driver_info = (unsigned long) &ax88772_info,
1649}, {
David Hollis933a27d2006-07-29 10:12:50 -04001650 // Linksys USB1000
1651 USB_DEVICE (0x1737, 0x0039),
1652 .driver_info = (unsigned long) &ax88178_info,
YOSHIFUJI Hideaki / 吉藤英明b29cf312007-01-26 22:57:38 +09001653}, {
1654 // IO-DATA ETG-US2
1655 USB_DEVICE (0x04bb, 0x0930),
1656 .driver_info = (unsigned long) &ax88178_info,
David Hollis2ed22bc2007-05-23 07:33:17 -04001657}, {
1658 // Belkin F5D5055
1659 USB_DEVICE(0x050d, 0x5055),
1660 .driver_info = (unsigned long) &ax88178_info,
Aurelien Nephtali3d60efb52008-05-14 17:04:13 -07001661}, {
1662 // Apple USB Ethernet Adapter
1663 USB_DEVICE(0x05ac, 0x1402),
1664 .driver_info = (unsigned long) &ax88772_info,
Jason Cooperccf95402008-11-11 13:02:53 -05001665}, {
1666 // Cables-to-Go USB Ethernet Adapter
1667 USB_DEVICE(0x0b95, 0x772a),
1668 .driver_info = (unsigned long) &ax88772_info,
Greg Kroah-Hartmanfef7cc02009-02-24 23:52:24 -08001669}, {
1670 // ABOCOM for pci
1671 USB_DEVICE(0x14ea, 0xab11),
1672 .driver_info = (unsigned long) &ax88178_info,
1673}, {
1674 // ASIX 88772a
1675 USB_DEVICE(0x0db0, 0xa877),
1676 .driver_info = (unsigned long) &ax88772_info,
Aurelien Jacobse8303a32011-12-16 10:49:22 +00001677}, {
1678 // Asus USB Ethernet Adapter
1679 USB_DEVICE (0x0b95, 0x7e2b),
1680 .driver_info = (unsigned long) &ax88772_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001681},
1682 { }, // END
1683};
1684MODULE_DEVICE_TABLE(usb, products);
1685
1686static struct usb_driver asix_driver = {
Grant Grundler83e1b912011-10-04 09:55:18 +00001687 .name = DRIVER_NAME,
David Brownell2e55cc72005-08-31 09:53:10 -07001688 .id_table = products,
1689 .probe = usbnet_probe,
1690 .suspend = usbnet_suspend,
1691 .resume = usbnet_resume,
1692 .disconnect = usbnet_disconnect,
Oliver Neukuma11a6542007-08-03 13:52:19 +02001693 .supports_autosuspend = 1,
David Brownell2e55cc72005-08-31 09:53:10 -07001694};
1695
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001696module_usb_driver(asix_driver);
David Brownell2e55cc72005-08-31 09:53:10 -07001697
1698MODULE_AUTHOR("David Hollis");
Grant Grundler4ad14382011-10-04 09:55:16 +00001699MODULE_VERSION(DRIVER_VERSION);
David Brownell2e55cc72005-08-31 09:53:10 -07001700MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1701MODULE_LICENSE("GPL");
1702