blob: 569028b2baf2d8930a21bca17b775c764f793c39 [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>
36
37#include "usbnet.h"
38
David Hollis933a27d2006-07-29 10:12:50 -040039#define DRIVER_VERSION "14-Jun-2006"
40static const char driver_name [] = "asix";
41
David Brownell2e55cc72005-08-31 09:53:10 -070042/* ASIX AX8817X based USB 2.0 Ethernet Devices */
43
44#define AX_CMD_SET_SW_MII 0x06
45#define AX_CMD_READ_MII_REG 0x07
46#define AX_CMD_WRITE_MII_REG 0x08
47#define AX_CMD_SET_HW_MII 0x0a
48#define AX_CMD_READ_EEPROM 0x0b
49#define AX_CMD_WRITE_EEPROM 0x0c
50#define AX_CMD_WRITE_ENABLE 0x0d
51#define AX_CMD_WRITE_DISABLE 0x0e
David Hollis933a27d2006-07-29 10:12:50 -040052#define AX_CMD_READ_RX_CTL 0x0f
David Brownell2e55cc72005-08-31 09:53:10 -070053#define AX_CMD_WRITE_RX_CTL 0x10
54#define AX_CMD_READ_IPG012 0x11
55#define AX_CMD_WRITE_IPG0 0x12
56#define AX_CMD_WRITE_IPG1 0x13
David Hollis933a27d2006-07-29 10:12:50 -040057#define AX_CMD_READ_NODE_ID 0x13
David Brownell2e55cc72005-08-31 09:53:10 -070058#define AX_CMD_WRITE_IPG2 0x14
59#define AX_CMD_WRITE_MULTI_FILTER 0x16
David Hollis933a27d2006-07-29 10:12:50 -040060#define AX88172_CMD_READ_NODE_ID 0x17
David Brownell2e55cc72005-08-31 09:53:10 -070061#define AX_CMD_READ_PHY_ID 0x19
62#define AX_CMD_READ_MEDIUM_STATUS 0x1a
63#define AX_CMD_WRITE_MEDIUM_MODE 0x1b
64#define AX_CMD_READ_MONITOR_MODE 0x1c
65#define AX_CMD_WRITE_MONITOR_MODE 0x1d
David Hollis933a27d2006-07-29 10:12:50 -040066#define AX_CMD_READ_GPIOS 0x1e
David Brownell2e55cc72005-08-31 09:53:10 -070067#define AX_CMD_WRITE_GPIOS 0x1f
68#define AX_CMD_SW_RESET 0x20
69#define AX_CMD_SW_PHY_STATUS 0x21
70#define AX_CMD_SW_PHY_SELECT 0x22
David Brownell2e55cc72005-08-31 09:53:10 -070071
72#define AX_MONITOR_MODE 0x01
73#define AX_MONITOR_LINK 0x02
74#define AX_MONITOR_MAGIC 0x04
75#define AX_MONITOR_HSFS 0x10
76
77/* AX88172 Medium Status Register values */
David Hollis933a27d2006-07-29 10:12:50 -040078#define AX88172_MEDIUM_FD 0x02
79#define AX88172_MEDIUM_TX 0x04
80#define AX88172_MEDIUM_FC 0x10
81#define AX88172_MEDIUM_DEFAULT \
82 ( AX88172_MEDIUM_FD | AX88172_MEDIUM_TX | AX88172_MEDIUM_FC )
David Brownell2e55cc72005-08-31 09:53:10 -070083
84#define AX_MCAST_FILTER_SIZE 8
85#define AX_MAX_MCAST 64
86
David Brownell2e55cc72005-08-31 09:53:10 -070087#define AX_SWRESET_CLEAR 0x00
88#define AX_SWRESET_RR 0x01
89#define AX_SWRESET_RT 0x02
90#define AX_SWRESET_PRTE 0x04
91#define AX_SWRESET_PRL 0x08
92#define AX_SWRESET_BZ 0x10
93#define AX_SWRESET_IPRL 0x20
94#define AX_SWRESET_IPPD 0x40
95
96#define AX88772_IPG0_DEFAULT 0x15
97#define AX88772_IPG1_DEFAULT 0x0c
98#define AX88772_IPG2_DEFAULT 0x12
99
David Hollis933a27d2006-07-29 10:12:50 -0400100/* AX88772 & AX88178 Medium Mode Register */
101#define AX_MEDIUM_PF 0x0080
102#define AX_MEDIUM_JFE 0x0040
103#define AX_MEDIUM_TFC 0x0020
104#define AX_MEDIUM_RFC 0x0010
105#define AX_MEDIUM_ENCK 0x0008
106#define AX_MEDIUM_AC 0x0004
107#define AX_MEDIUM_FD 0x0002
108#define AX_MEDIUM_GM 0x0001
109#define AX_MEDIUM_SM 0x1000
110#define AX_MEDIUM_SBP 0x0800
111#define AX_MEDIUM_PS 0x0200
112#define AX_MEDIUM_RE 0x0100
David Brownell2e55cc72005-08-31 09:53:10 -0700113
David Hollis933a27d2006-07-29 10:12:50 -0400114#define AX88178_MEDIUM_DEFAULT \
115 (AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
116 AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
117 AX_MEDIUM_RE )
118
119#define AX88772_MEDIUM_DEFAULT \
120 (AX_MEDIUM_FD | AX_MEDIUM_RFC | \
121 AX_MEDIUM_TFC | AX_MEDIUM_PS | \
122 AX_MEDIUM_AC | AX_MEDIUM_RE )
123
124/* AX88772 & AX88178 RX_CTL values */
125#define AX_RX_CTL_SO 0x0080
126#define AX_RX_CTL_AP 0x0020
127#define AX_RX_CTL_AM 0x0010
128#define AX_RX_CTL_AB 0x0008
129#define AX_RX_CTL_SEP 0x0004
130#define AX_RX_CTL_AMALL 0x0002
131#define AX_RX_CTL_PRO 0x0001
132#define AX_RX_CTL_MFB_2048 0x0000
133#define AX_RX_CTL_MFB_4096 0x0100
134#define AX_RX_CTL_MFB_8192 0x0200
135#define AX_RX_CTL_MFB_16384 0x0300
136
137#define AX_DEFAULT_RX_CTL \
138 (AX_RX_CTL_SO | AX_RX_CTL_AB )
139
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
166/* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
David Hollis48b1be62006-03-28 20:15:42 -0500167struct asix_data {
David Brownell2e55cc72005-08-31 09:53:10 -0700168 u8 multi_filter[AX_MCAST_FILTER_SIZE];
David Hollis933a27d2006-07-29 10:12:50 -0400169 u8 phymode;
170 u8 ledmode;
171 u8 eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700172};
173
174struct ax88172_int_data {
Al Viro51bf2972007-12-22 17:42:36 +0000175 __le16 res1;
David Brownell2e55cc72005-08-31 09:53:10 -0700176 u8 link;
Al Viro51bf2972007-12-22 17:42:36 +0000177 __le16 res2;
David Brownell2e55cc72005-08-31 09:53:10 -0700178 u8 status;
Al Viro51bf2972007-12-22 17:42:36 +0000179 __le16 res3;
David Brownell2e55cc72005-08-31 09:53:10 -0700180} __attribute__ ((packed));
181
David Hollis48b1be62006-03-28 20:15:42 -0500182static int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700183 u16 size, void *data)
184{
Al Viro51bf2972007-12-22 17:42:36 +0000185 void *buf;
186 int err = -ENOMEM;
187
David Hollis933a27d2006-07-29 10:12:50 -0400188 devdbg(dev,"asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
189 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000190
191 buf = kmalloc(size, GFP_KERNEL);
192 if (!buf)
193 goto out;
194
195 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700196 dev->udev,
197 usb_rcvctrlpipe(dev->udev, 0),
198 cmd,
199 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
200 value,
201 index,
Al Viro51bf2972007-12-22 17:42:36 +0000202 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700203 size,
204 USB_CTRL_GET_TIMEOUT);
Russ Dill94d43362008-01-09 21:32:07 -0700205 if (err == size)
Al Viro51bf2972007-12-22 17:42:36 +0000206 memcpy(data, buf, size);
Russ Dill94d43362008-01-09 21:32:07 -0700207 else if (err >= 0)
208 err = -EINVAL;
Al Viro51bf2972007-12-22 17:42:36 +0000209 kfree(buf);
210
211out:
212 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700213}
214
David Hollis48b1be62006-03-28 20:15:42 -0500215static int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700216 u16 size, void *data)
217{
Al Viro51bf2972007-12-22 17:42:36 +0000218 void *buf = NULL;
219 int err = -ENOMEM;
220
David Hollis933a27d2006-07-29 10:12:50 -0400221 devdbg(dev,"asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
222 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000223
224 if (data) {
225 buf = kmalloc(size, GFP_KERNEL);
226 if (!buf)
227 goto out;
228 memcpy(buf, data, size);
229 }
230
231 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700232 dev->udev,
233 usb_sndctrlpipe(dev->udev, 0),
234 cmd,
235 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
236 value,
237 index,
Al Viro51bf2972007-12-22 17:42:36 +0000238 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700239 size,
240 USB_CTRL_SET_TIMEOUT);
Al Viro51bf2972007-12-22 17:42:36 +0000241 kfree(buf);
242
243out:
244 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700245}
246
David Howells7d12e782006-10-05 14:55:46 +0100247static void asix_async_cmd_callback(struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700248{
249 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
250
251 if (urb->status < 0)
David Hollis48b1be62006-03-28 20:15:42 -0500252 printk(KERN_DEBUG "asix_async_cmd_callback() failed with %d",
David Brownell2e55cc72005-08-31 09:53:10 -0700253 urb->status);
254
255 kfree(req);
256 usb_free_urb(urb);
257}
258
David Hollis933a27d2006-07-29 10:12:50 -0400259static void
260asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
261 u16 size, void *data)
David Hollis48b1be62006-03-28 20:15:42 -0500262{
David Hollis933a27d2006-07-29 10:12:50 -0400263 struct usb_ctrlrequest *req;
264 int status;
265 struct urb *urb;
David Hollis48b1be62006-03-28 20:15:42 -0500266
David Hollis933a27d2006-07-29 10:12:50 -0400267 devdbg(dev,"asix_write_cmd_async() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
268 cmd, value, index, size);
269 if ((urb = usb_alloc_urb(0, GFP_ATOMIC)) == NULL) {
270 deverr(dev, "Error allocating URB in write_cmd_async!");
271 return;
David Hollis48b1be62006-03-28 20:15:42 -0500272 }
David Hollis933a27d2006-07-29 10:12:50 -0400273
274 if ((req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC)) == NULL) {
275 deverr(dev, "Failed to allocate memory for control request");
276 usb_free_urb(urb);
277 return;
278 }
279
280 req->bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
281 req->bRequest = cmd;
Oliver Neukum9aa742e2006-11-23 12:45:31 +0100282 req->wValue = cpu_to_le16(value);
283 req->wIndex = cpu_to_le16(index);
284 req->wLength = cpu_to_le16(size);
David Hollis933a27d2006-07-29 10:12:50 -0400285
286 usb_fill_control_urb(urb, dev->udev,
287 usb_sndctrlpipe(dev->udev, 0),
288 (void *)req, data, size,
289 asix_async_cmd_callback, req);
290
291 if((status = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
292 deverr(dev, "Error submitting the control message: status=%d",
293 status);
294 kfree(req);
295 usb_free_urb(urb);
296 }
David Hollis48b1be62006-03-28 20:15:42 -0500297}
298
David Hollis933a27d2006-07-29 10:12:50 -0400299static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
David Hollis48b1be62006-03-28 20:15:42 -0500300{
David Hollis933a27d2006-07-29 10:12:50 -0400301 u8 *head;
302 u32 header;
303 char *packet;
304 struct sk_buff *ax_skb;
305 u16 size;
David Hollis48b1be62006-03-28 20:15:42 -0500306
David Hollis933a27d2006-07-29 10:12:50 -0400307 head = (u8 *) skb->data;
308 memcpy(&header, head, sizeof(header));
309 le32_to_cpus(&header);
310 packet = head + sizeof(header);
David Hollis48b1be62006-03-28 20:15:42 -0500311
David Hollis933a27d2006-07-29 10:12:50 -0400312 skb_pull(skb, 4);
313
314 while (skb->len > 0) {
315 if ((short)(header & 0x0000ffff) !=
316 ~((short)((header & 0xffff0000) >> 16))) {
317 deverr(dev,"asix_rx_fixup() Bad Header Length");
318 }
319 /* get the packet length */
320 size = (u16) (header & 0x0000ffff);
321
322 if ((skb->len) - ((size + 1) & 0xfffe) == 0)
323 return 2;
324 if (size > ETH_FRAME_LEN) {
325 deverr(dev,"asix_rx_fixup() Bad RX Length %d", size);
326 return 0;
327 }
328 ax_skb = skb_clone(skb, GFP_ATOMIC);
329 if (ax_skb) {
330 ax_skb->len = size;
331 ax_skb->data = packet;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700332 skb_set_tail_pointer(ax_skb, size);
David Hollis933a27d2006-07-29 10:12:50 -0400333 usbnet_skb_return(dev, ax_skb);
334 } else {
335 return 0;
336 }
337
338 skb_pull(skb, (size + 1) & 0xfffe);
339
340 if (skb->len == 0)
341 break;
342
343 head = (u8 *) skb->data;
344 memcpy(&header, head, sizeof(header));
345 le32_to_cpus(&header);
346 packet = head + sizeof(header);
347 skb_pull(skb, 4);
348 }
349
350 if (skb->len < 0) {
351 deverr(dev,"asix_rx_fixup() Bad SKB Length %d", skb->len);
352 return 0;
353 }
354 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500355}
356
David Hollis933a27d2006-07-29 10:12:50 -0400357static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
358 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500359{
David Hollis933a27d2006-07-29 10:12:50 -0400360 int padlen;
361 int headroom = skb_headroom(skb);
362 int tailroom = skb_tailroom(skb);
363 u32 packet_len;
364 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500365
David Hollis933a27d2006-07-29 10:12:50 -0400366 padlen = ((skb->len + 4) % 512) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500367
David Hollis933a27d2006-07-29 10:12:50 -0400368 if ((!skb_cloned(skb))
369 && ((headroom + tailroom) >= (4 + padlen))) {
370 if ((headroom < 4) || (tailroom < padlen)) {
371 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700372 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400373 }
374 } else {
375 struct sk_buff *skb2;
376 skb2 = skb_copy_expand(skb, 4, padlen, flags);
377 dev_kfree_skb_any(skb);
378 skb = skb2;
379 if (!skb)
380 return NULL;
381 }
382
383 skb_push(skb, 4);
384 packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4);
David Hollis57e4f042007-02-05 12:03:03 -0500385 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300386 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400387
388 if ((skb->len % 512) == 0) {
David Hollis57e4f042007-02-05 12:03:03 -0500389 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700390 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400391 skb_put(skb, sizeof(padbytes));
392 }
393 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500394}
395
396static void asix_status(struct usbnet *dev, struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700397{
398 struct ax88172_int_data *event;
399 int link;
400
401 if (urb->actual_length < 8)
402 return;
403
404 event = urb->transfer_buffer;
405 link = event->link & 0x01;
406 if (netif_carrier_ok(dev->net) != link) {
407 if (link) {
408 netif_carrier_on(dev->net);
409 usbnet_defer_kevent (dev, EVENT_LINK_RESET );
410 } else
411 netif_carrier_off(dev->net);
David Hollis48b1be62006-03-28 20:15:42 -0500412 devdbg(dev, "Link Status is: %d", link);
David Brownell2e55cc72005-08-31 09:53:10 -0700413 }
414}
415
David Hollis933a27d2006-07-29 10:12:50 -0400416static inline int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700417{
David Hollis933a27d2006-07-29 10:12:50 -0400418 int ret;
419 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
420 if (ret < 0)
421 deverr(dev, "Failed to enable software MII access");
422 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700423}
424
David Hollis933a27d2006-07-29 10:12:50 -0400425static inline int asix_set_hw_mii(struct usbnet *dev)
426{
427 int ret;
428 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
429 if (ret < 0)
430 deverr(dev, "Failed to enable hardware MII access");
431 return ret;
432}
433
434static inline int asix_get_phy_addr(struct usbnet *dev)
435{
Al Viro51bf2972007-12-22 17:42:36 +0000436 u8 buf[2];
437 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400438
439 devdbg(dev, "asix_get_phy_addr()");
440
Al Viro51bf2972007-12-22 17:42:36 +0000441 if (ret < 0) {
David Hollis933a27d2006-07-29 10:12:50 -0400442 deverr(dev, "Error reading PHYID register: %02x", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000443 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400444 }
Al Viro51bf2972007-12-22 17:42:36 +0000445 devdbg(dev, "asix_get_phy_addr() returning 0x%04x", *((__le16 *)buf));
446 ret = buf[1];
447
448out:
David Hollis933a27d2006-07-29 10:12:50 -0400449 return ret;
450}
451
452static int asix_sw_reset(struct usbnet *dev, u8 flags)
453{
454 int ret;
455
456 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
457 if (ret < 0)
458 deverr(dev,"Failed to send software reset: %02x", ret);
459
460 return ret;
461}
462
463static u16 asix_read_rx_ctl(struct usbnet *dev)
464{
Al Viro51bf2972007-12-22 17:42:36 +0000465 __le16 v;
466 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400467
Al Viro51bf2972007-12-22 17:42:36 +0000468 if (ret < 0) {
David Hollis933a27d2006-07-29 10:12:50 -0400469 deverr(dev, "Error reading RX_CTL register: %02x", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000470 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400471 }
Al Viro51bf2972007-12-22 17:42:36 +0000472 ret = le16_to_cpu(v);
473out:
David Hollis933a27d2006-07-29 10:12:50 -0400474 return ret;
475}
476
477static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
478{
479 int ret;
480
481 devdbg(dev,"asix_write_rx_ctl() - mode = 0x%04x", mode);
482 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
483 if (ret < 0)
484 deverr(dev, "Failed to write RX_CTL mode to 0x%04x: %02x",
485 mode, ret);
486
487 return ret;
488}
489
490static u16 asix_read_medium_status(struct usbnet *dev)
491{
Al Viro51bf2972007-12-22 17:42:36 +0000492 __le16 v;
493 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400494
Al Viro51bf2972007-12-22 17:42:36 +0000495 if (ret < 0) {
David Hollis933a27d2006-07-29 10:12:50 -0400496 deverr(dev, "Error reading Medium Status register: %02x", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000497 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400498 }
Al Viro51bf2972007-12-22 17:42:36 +0000499 ret = le16_to_cpu(v);
500out:
David Hollis933a27d2006-07-29 10:12:50 -0400501 return ret;
502}
503
504static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
505{
506 int ret;
507
508 devdbg(dev,"asix_write_medium_mode() - mode = 0x%04x", mode);
509 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
510 if (ret < 0)
511 deverr(dev, "Failed to write Medium Mode mode to 0x%04x: %02x",
512 mode, ret);
513
514 return ret;
515}
516
517static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
518{
519 int ret;
520
521 devdbg(dev,"asix_write_gpio() - value = 0x%04x", value);
522 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
523 if (ret < 0)
524 deverr(dev, "Failed to write GPIO value 0x%04x: %02x",
525 value, ret);
526
527 if (sleep)
528 msleep(sleep);
529
530 return ret;
531}
532
533/*
534 * AX88772 & AX88178 have a 16-bit RX_CTL value
535 */
David Hollis48b1be62006-03-28 20:15:42 -0500536static void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700537{
538 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500539 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400540 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700541
542 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400543 rx_ctl |= AX_RX_CTL_PRO;
David Brownell2e55cc72005-08-31 09:53:10 -0700544 } else if (net->flags & IFF_ALLMULTI
545 || net->mc_count > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400546 rx_ctl |= AX_RX_CTL_AMALL;
David Brownell2e55cc72005-08-31 09:53:10 -0700547 } else if (net->mc_count == 0) {
548 /* just broadcast and directed */
549 } else {
550 /* We use the 20 byte dev->data
551 * for our 8 byte filter buffer
552 * to avoid allocating memory that
553 * is tricky to free later */
554 struct dev_mc_list *mc_list = net->mc_list;
555 u32 crc_bits;
556 int i;
557
558 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
559
560 /* Build the multicast hash filter. */
561 for (i = 0; i < net->mc_count; i++) {
562 crc_bits =
563 ether_crc(ETH_ALEN,
564 mc_list->dmi_addr) >> 26;
565 data->multi_filter[crc_bits >> 3] |=
566 1 << (crc_bits & 7);
567 mc_list = mc_list->next;
568 }
569
David Hollis48b1be62006-03-28 20:15:42 -0500570 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700571 AX_MCAST_FILTER_SIZE, data->multi_filter);
572
David Hollis933a27d2006-07-29 10:12:50 -0400573 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700574 }
575
David Hollis48b1be62006-03-28 20:15:42 -0500576 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700577}
578
David Hollis48b1be62006-03-28 20:15:42 -0500579static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700580{
581 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000582 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700583
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200584 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500585 asix_set_sw_mii(dev);
586 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000587 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500588 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200589 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700590
Al Viro51bf2972007-12-22 17:42:36 +0000591 devdbg(dev, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x", phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700592
Al Viro51bf2972007-12-22 17:42:36 +0000593 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700594}
595
596static void
David Hollis48b1be62006-03-28 20:15:42 -0500597asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700598{
599 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000600 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700601
David Hollis933a27d2006-07-29 10:12:50 -0400602 devdbg(dev, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x", phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200603 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500604 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000605 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500606 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200607 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700608}
609
David Hollis933a27d2006-07-29 10:12:50 -0400610/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
611static u32 asix_get_phyid(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700612{
David Hollis933a27d2006-07-29 10:12:50 -0400613 int phy_reg;
614 u32 phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700615
David Hollis933a27d2006-07-29 10:12:50 -0400616 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
617 if (phy_reg < 0)
618 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700619
David Hollis933a27d2006-07-29 10:12:50 -0400620 phy_id = (phy_reg & 0xffff) << 16;
David Brownell2e55cc72005-08-31 09:53:10 -0700621
David Hollis933a27d2006-07-29 10:12:50 -0400622 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
623 if (phy_reg < 0)
624 return 0;
625
626 phy_id |= (phy_reg & 0xffff);
627
628 return phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700629}
630
631static void
David Hollis48b1be62006-03-28 20:15:42 -0500632asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700633{
634 struct usbnet *dev = netdev_priv(net);
635 u8 opt;
636
David Hollis48b1be62006-03-28 20:15:42 -0500637 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700638 wolinfo->supported = 0;
639 wolinfo->wolopts = 0;
640 return;
641 }
642 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
643 wolinfo->wolopts = 0;
644 if (opt & AX_MONITOR_MODE) {
645 if (opt & AX_MONITOR_LINK)
646 wolinfo->wolopts |= WAKE_PHY;
647 if (opt & AX_MONITOR_MAGIC)
648 wolinfo->wolopts |= WAKE_MAGIC;
649 }
650}
651
652static int
David Hollis48b1be62006-03-28 20:15:42 -0500653asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700654{
655 struct usbnet *dev = netdev_priv(net);
656 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700657
658 if (wolinfo->wolopts & WAKE_PHY)
659 opt |= AX_MONITOR_LINK;
660 if (wolinfo->wolopts & WAKE_MAGIC)
661 opt |= AX_MONITOR_MAGIC;
662 if (opt != 0)
663 opt |= AX_MONITOR_MODE;
664
David Hollis48b1be62006-03-28 20:15:42 -0500665 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000666 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700667 return -EINVAL;
668
669 return 0;
670}
671
David Hollis48b1be62006-03-28 20:15:42 -0500672static int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700673{
David Hollis933a27d2006-07-29 10:12:50 -0400674 struct usbnet *dev = netdev_priv(net);
675 struct asix_data *data = (struct asix_data *)&dev->data;
676
677 return data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700678}
679
David Hollis48b1be62006-03-28 20:15:42 -0500680static int asix_get_eeprom(struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700681 struct ethtool_eeprom *eeprom, u8 *data)
682{
683 struct usbnet *dev = netdev_priv(net);
Al Viro51bf2972007-12-22 17:42:36 +0000684 __le16 *ebuf = (__le16 *)data;
David Brownell2e55cc72005-08-31 09:53:10 -0700685 int i;
686
687 /* Crude hack to ensure that we don't overwrite memory
688 * if an odd length is supplied
689 */
690 if (eeprom->len % 2)
691 return -EINVAL;
692
693 eeprom->magic = AX_EEPROM_MAGIC;
694
695 /* ax8817x returns 2 bytes from eeprom on read */
696 for (i=0; i < eeprom->len / 2; i++) {
David Hollis48b1be62006-03-28 20:15:42 -0500697 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
David Brownell2e55cc72005-08-31 09:53:10 -0700698 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
699 return -EINVAL;
700 }
701 return 0;
702}
703
David Hollis48b1be62006-03-28 20:15:42 -0500704static void asix_get_drvinfo (struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700705 struct ethtool_drvinfo *info)
706{
David Hollis933a27d2006-07-29 10:12:50 -0400707 struct usbnet *dev = netdev_priv(net);
708 struct asix_data *data = (struct asix_data *)&dev->data;
709
David Brownell2e55cc72005-08-31 09:53:10 -0700710 /* Inherit standard device info */
711 usbnet_get_drvinfo(net, info);
David Hollis933a27d2006-07-29 10:12:50 -0400712 strncpy (info->driver, driver_name, sizeof info->driver);
713 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
714 info->eedump_len = data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700715}
716
David Hollis933a27d2006-07-29 10:12:50 -0400717static u32 asix_get_link(struct net_device *net)
718{
719 struct usbnet *dev = netdev_priv(net);
720
721 return mii_link_ok(&dev->mii);
722}
723
724static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
725{
726 struct usbnet *dev = netdev_priv(net);
727
728 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700729}
730
731/* We need to override some ethtool_ops so we require our
732 own structure so we don't interfere with other usbnet
733 devices that may be connected at the same time. */
David Hollis48b1be62006-03-28 20:15:42 -0500734static struct ethtool_ops ax88172_ethtool_ops = {
735 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400736 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700737 .get_msglevel = usbnet_get_msglevel,
738 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500739 .get_wol = asix_get_wol,
740 .set_wol = asix_set_wol,
741 .get_eeprom_len = asix_get_eeprom_len,
742 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200743 .get_settings = usbnet_get_settings,
744 .set_settings = usbnet_set_settings,
745 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700746};
747
David Hollis933a27d2006-07-29 10:12:50 -0400748static void ax88172_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700749{
750 struct usbnet *dev = netdev_priv(net);
David Hollis933a27d2006-07-29 10:12:50 -0400751 struct asix_data *data = (struct asix_data *)&dev->data;
752 u8 rx_ctl = 0x8c;
David Brownell2e55cc72005-08-31 09:53:10 -0700753
David Hollis933a27d2006-07-29 10:12:50 -0400754 if (net->flags & IFF_PROMISC) {
755 rx_ctl |= 0x01;
756 } else if (net->flags & IFF_ALLMULTI
757 || net->mc_count > AX_MAX_MCAST) {
758 rx_ctl |= 0x02;
759 } else if (net->mc_count == 0) {
760 /* just broadcast and directed */
761 } else {
762 /* We use the 20 byte dev->data
763 * for our 8 byte filter buffer
764 * to avoid allocating memory that
765 * is tricky to free later */
766 struct dev_mc_list *mc_list = net->mc_list;
767 u32 crc_bits;
768 int i;
769
770 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
771
772 /* Build the multicast hash filter. */
773 for (i = 0; i < net->mc_count; i++) {
774 crc_bits =
775 ether_crc(ETH_ALEN,
776 mc_list->dmi_addr) >> 26;
777 data->multi_filter[crc_bits >> 3] |=
778 1 << (crc_bits & 7);
779 mc_list = mc_list->next;
780 }
781
782 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
783 AX_MCAST_FILTER_SIZE, data->multi_filter);
784
785 rx_ctl |= 0x10;
786 }
787
788 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
789}
790
791static int ax88172_link_reset(struct usbnet *dev)
792{
793 u8 mode;
794 struct ethtool_cmd ecmd;
795
796 mii_check_media(&dev->mii, 1, 1);
797 mii_ethtool_gset(&dev->mii, &ecmd);
798 mode = AX88172_MEDIUM_DEFAULT;
799
800 if (ecmd.duplex != DUPLEX_FULL)
801 mode |= ~AX88172_MEDIUM_FD;
802
803 devdbg(dev, "ax88172_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd.speed, ecmd.duplex, mode);
804
805 asix_write_medium_mode(dev, mode);
806
807 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700808}
809
David Hollis48b1be62006-03-28 20:15:42 -0500810static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
David Brownell2e55cc72005-08-31 09:53:10 -0700811{
812 int ret = 0;
Al Viro51bf2972007-12-22 17:42:36 +0000813 u8 buf[ETH_ALEN];
David Brownell2e55cc72005-08-31 09:53:10 -0700814 int i;
815 unsigned long gpio_bits = dev->driver_info->data;
David Hollis933a27d2006-07-29 10:12:50 -0400816 struct asix_data *data = (struct asix_data *)&dev->data;
817
818 data->eeprom_len = AX88172_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700819
820 usbnet_get_endpoints(dev,intf);
821
David Brownell2e55cc72005-08-31 09:53:10 -0700822 /* Toggle the GPIOs in a manufacturer/model specific way */
823 for (i = 2; i >= 0; i--) {
David Hollis48b1be62006-03-28 20:15:42 -0500824 if ((ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
David Brownell2e55cc72005-08-31 09:53:10 -0700825 (gpio_bits >> (i * 8)) & 0xff, 0, 0,
Al Viro51bf2972007-12-22 17:42:36 +0000826 NULL)) < 0)
827 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700828 msleep(5);
829 }
830
David Hollis933a27d2006-07-29 10:12:50 -0400831 if ((ret = asix_write_rx_ctl(dev, 0x80)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000832 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700833
834 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -0400835 if ((ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID,
Al Viro51bf2972007-12-22 17:42:36 +0000836 0, 0, ETH_ALEN, buf)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700837 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000838 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700839 }
840 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
841
David Brownell2e55cc72005-08-31 09:53:10 -0700842 /* Initialize MII structure */
843 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -0500844 dev->mii.mdio_read = asix_mdio_read;
845 dev->mii.mdio_write = asix_mdio_write;
David Brownell2e55cc72005-08-31 09:53:10 -0700846 dev->mii.phy_id_mask = 0x3f;
847 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -0400848 dev->mii.phy_id = asix_get_phy_addr(dev);
David Hollis48b1be62006-03-28 20:15:42 -0500849 dev->net->do_ioctl = asix_ioctl;
David Brownell2e55cc72005-08-31 09:53:10 -0700850
David Hollis933a27d2006-07-29 10:12:50 -0400851 dev->net->set_multicast_list = ax88172_set_multicast;
David Hollis48b1be62006-03-28 20:15:42 -0500852 dev->net->ethtool_ops = &ax88172_ethtool_ops;
David Brownell2e55cc72005-08-31 09:53:10 -0700853
David Hollis933a27d2006-07-29 10:12:50 -0400854 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
855 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700856 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
857 mii_nway_restart(&dev->mii);
858
859 return 0;
Al Viro51bf2972007-12-22 17:42:36 +0000860
861out:
David Brownell2e55cc72005-08-31 09:53:10 -0700862 return ret;
863}
864
865static struct ethtool_ops ax88772_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500866 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400867 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700868 .get_msglevel = usbnet_get_msglevel,
869 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500870 .get_wol = asix_get_wol,
871 .set_wol = asix_set_wol,
872 .get_eeprom_len = asix_get_eeprom_len,
873 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200874 .get_settings = usbnet_get_settings,
875 .set_settings = usbnet_set_settings,
876 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700877};
878
David Hollis933a27d2006-07-29 10:12:50 -0400879static int ax88772_link_reset(struct usbnet *dev)
880{
881 u16 mode;
882 struct ethtool_cmd ecmd;
883
884 mii_check_media(&dev->mii, 1, 1);
885 mii_ethtool_gset(&dev->mii, &ecmd);
886 mode = AX88772_MEDIUM_DEFAULT;
887
888 if (ecmd.speed != SPEED_100)
889 mode &= ~AX_MEDIUM_PS;
890
891 if (ecmd.duplex != DUPLEX_FULL)
892 mode &= ~AX_MEDIUM_FD;
893
894 devdbg(dev, "ax88772_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd.speed, ecmd.duplex, mode);
895
896 asix_write_medium_mode(dev, mode);
897
898 return 0;
899}
900
David Brownell2e55cc72005-08-31 09:53:10 -0700901static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
902{
Andres Salomond0ffff82007-01-11 18:39:16 -0500903 int ret, embd_phy;
David Hollis933a27d2006-07-29 10:12:50 -0400904 u16 rx_ctl;
905 struct asix_data *data = (struct asix_data *)&dev->data;
Al Viro51bf2972007-12-22 17:42:36 +0000906 u8 buf[ETH_ALEN];
David Hollis933a27d2006-07-29 10:12:50 -0400907 u32 phyid;
908
909 data->eeprom_len = AX88772_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700910
911 usbnet_get_endpoints(dev,intf);
912
David Hollis933a27d2006-07-29 10:12:50 -0400913 if ((ret = asix_write_gpio(dev,
914 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000915 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700916
Andres Salomond0ffff82007-01-11 18:39:16 -0500917 /* 0x10 is the phy id of the embedded 10/100 ethernet phy */
918 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
David Hollis48b1be62006-03-28 20:15:42 -0500919 if ((ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT,
Al Viro51bf2972007-12-22 17:42:36 +0000920 embd_phy, 0, 0, NULL)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700921 dbg("Select PHY #1 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000922 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700923 }
924
Andres Salomond0ffff82007-01-11 18:39:16 -0500925 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000926 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700927
928 msleep(150);
David Hollis48b1be62006-03-28 20:15:42 -0500929 if ((ret = asix_sw_reset(dev, AX_SWRESET_CLEAR)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000930 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700931
932 msleep(150);
Andres Salomond0ffff82007-01-11 18:39:16 -0500933 if (embd_phy) {
934 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000935 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -0500936 }
937 else {
938 if ((ret = asix_sw_reset(dev, AX_SWRESET_PRTE)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000939 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -0500940 }
David Brownell2e55cc72005-08-31 09:53:10 -0700941
942 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -0400943 rx_ctl = asix_read_rx_ctl(dev);
944 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
945 if ((ret = asix_write_rx_ctl(dev, 0x0000)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000946 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700947
David Hollis933a27d2006-07-29 10:12:50 -0400948 rx_ctl = asix_read_rx_ctl(dev);
949 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
950
David Brownell2e55cc72005-08-31 09:53:10 -0700951 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -0400952 if ((ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
David Brownell2e55cc72005-08-31 09:53:10 -0700953 0, 0, ETH_ALEN, buf)) < 0) {
954 dbg("Failed to read MAC address: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000955 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700956 }
957 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
958
David Brownell2e55cc72005-08-31 09:53:10 -0700959 /* Initialize MII structure */
960 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -0500961 dev->mii.mdio_read = asix_mdio_read;
962 dev->mii.mdio_write = asix_mdio_write;
David Hollis933a27d2006-07-29 10:12:50 -0400963 dev->mii.phy_id_mask = 0x1f;
964 dev->mii.reg_num_mask = 0x1f;
David Hollis48b1be62006-03-28 20:15:42 -0500965 dev->net->do_ioctl = asix_ioctl;
David Hollis933a27d2006-07-29 10:12:50 -0400966 dev->mii.phy_id = asix_get_phy_addr(dev);
967
968 phyid = asix_get_phyid(dev);
969 dbg("PHYID=0x%08x", phyid);
David Brownell2e55cc72005-08-31 09:53:10 -0700970
David Hollis48b1be62006-03-28 20:15:42 -0500971 if ((ret = asix_sw_reset(dev, AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000972 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700973
David Brownell2e55cc72005-08-31 09:53:10 -0700974 msleep(150);
975
David Hollis48b1be62006-03-28 20:15:42 -0500976 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000977 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700978
David Hollis48b1be62006-03-28 20:15:42 -0500979 msleep(150);
980
981 dev->net->set_multicast_list = asix_set_multicast;
David Brownell2e55cc72005-08-31 09:53:10 -0700982 dev->net->ethtool_ops = &ax88772_ethtool_ops;
983
David Hollis933a27d2006-07-29 10:12:50 -0400984 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
985 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700986 ADVERTISE_ALL | ADVERTISE_CSMA);
987 mii_nway_restart(&dev->mii);
988
David Hollis933a27d2006-07-29 10:12:50 -0400989 if ((ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000990 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700991
David Hollis48b1be62006-03-28 20:15:42 -0500992 if ((ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
David Brownell2e55cc72005-08-31 09:53:10 -0700993 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
Al Viro51bf2972007-12-22 17:42:36 +0000994 AX88772_IPG2_DEFAULT, 0, NULL)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700995 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000996 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700997 }
David Brownell2e55cc72005-08-31 09:53:10 -0700998
999 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
David Hollis933a27d2006-07-29 10:12:50 -04001000 if ((ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001001 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001002
David Hollis933a27d2006-07-29 10:12:50 -04001003 rx_ctl = asix_read_rx_ctl(dev);
1004 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1005
1006 rx_ctl = asix_read_medium_status(dev);
1007 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1008
David Brownell2e55cc72005-08-31 09:53:10 -07001009 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1010 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1011 /* hard_mtu is still the default - the device does not support
1012 jumbo eth frames */
1013 dev->rx_urb_size = 2048;
1014 }
David Brownell2e55cc72005-08-31 09:53:10 -07001015 return 0;
1016
Al Viro51bf2972007-12-22 17:42:36 +00001017out:
David Brownell2e55cc72005-08-31 09:53:10 -07001018 return ret;
1019}
1020
David Hollis933a27d2006-07-29 10:12:50 -04001021static struct ethtool_ops ax88178_ethtool_ops = {
1022 .get_drvinfo = asix_get_drvinfo,
1023 .get_link = asix_get_link,
David Hollis933a27d2006-07-29 10:12:50 -04001024 .get_msglevel = usbnet_get_msglevel,
1025 .set_msglevel = usbnet_set_msglevel,
1026 .get_wol = asix_get_wol,
1027 .set_wol = asix_set_wol,
1028 .get_eeprom_len = asix_get_eeprom_len,
1029 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001030 .get_settings = usbnet_get_settings,
1031 .set_settings = usbnet_set_settings,
1032 .nway_reset = usbnet_nway_reset,
David Hollis933a27d2006-07-29 10:12:50 -04001033};
1034
1035static int marvell_phy_init(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -07001036{
David Hollis933a27d2006-07-29 10:12:50 -04001037 struct asix_data *data = (struct asix_data *)&dev->data;
1038 u16 reg;
David Brownell2e55cc72005-08-31 09:53:10 -07001039
David Hollis933a27d2006-07-29 10:12:50 -04001040 devdbg(dev,"marvell_phy_init()");
David Brownell2e55cc72005-08-31 09:53:10 -07001041
David Hollis933a27d2006-07-29 10:12:50 -04001042 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
1043 devdbg(dev,"MII_MARVELL_STATUS = 0x%04x", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001044
David Hollis933a27d2006-07-29 10:12:50 -04001045 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1046 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
David Brownell2e55cc72005-08-31 09:53:10 -07001047
David Hollis933a27d2006-07-29 10:12:50 -04001048 if (data->ledmode) {
1049 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1050 MII_MARVELL_LED_CTRL);
1051 devdbg(dev,"MII_MARVELL_LED_CTRL (1) = 0x%04x", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001052
David Hollis933a27d2006-07-29 10:12:50 -04001053 reg &= 0xf8ff;
1054 reg |= (1 + 0x0100);
1055 asix_mdio_write(dev->net, dev->mii.phy_id,
1056 MII_MARVELL_LED_CTRL, reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001057
David Hollis933a27d2006-07-29 10:12:50 -04001058 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1059 MII_MARVELL_LED_CTRL);
1060 devdbg(dev,"MII_MARVELL_LED_CTRL (2) = 0x%04x", reg);
1061 reg &= 0xfc0f;
David Brownell2e55cc72005-08-31 09:53:10 -07001062 }
1063
David Brownell2e55cc72005-08-31 09:53:10 -07001064 return 0;
1065}
1066
David Hollis933a27d2006-07-29 10:12:50 -04001067static int marvell_led_status(struct usbnet *dev, u16 speed)
1068{
1069 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1070
1071 devdbg(dev, "marvell_led_status() read 0x%04x", reg);
1072
1073 /* Clear out the center LED bits - 0x03F0 */
1074 reg &= 0xfc0f;
1075
1076 switch (speed) {
1077 case SPEED_1000:
1078 reg |= 0x03e0;
1079 break;
1080 case SPEED_100:
1081 reg |= 0x03b0;
1082 break;
1083 default:
1084 reg |= 0x02f0;
1085 }
1086
1087 devdbg(dev, "marvell_led_status() writing 0x%04x", reg);
1088 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1089
1090 return 0;
1091}
1092
1093static int ax88178_link_reset(struct usbnet *dev)
1094{
1095 u16 mode;
1096 struct ethtool_cmd ecmd;
1097 struct asix_data *data = (struct asix_data *)&dev->data;
1098
1099 devdbg(dev,"ax88178_link_reset()");
1100
1101 mii_check_media(&dev->mii, 1, 1);
1102 mii_ethtool_gset(&dev->mii, &ecmd);
1103 mode = AX88178_MEDIUM_DEFAULT;
1104
1105 if (ecmd.speed == SPEED_1000)
1106 mode |= AX_MEDIUM_GM | AX_MEDIUM_ENCK;
1107 else if (ecmd.speed == SPEED_100)
1108 mode |= AX_MEDIUM_PS;
1109 else
1110 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1111
1112 if (ecmd.duplex == DUPLEX_FULL)
1113 mode |= AX_MEDIUM_FD;
1114 else
1115 mode &= ~AX_MEDIUM_FD;
1116
1117 devdbg(dev, "ax88178_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd.speed, ecmd.duplex, mode);
1118
1119 asix_write_medium_mode(dev, mode);
1120
1121 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
1122 marvell_led_status(dev, ecmd.speed);
1123
1124 return 0;
1125}
1126
1127static void ax88178_set_mfb(struct usbnet *dev)
1128{
1129 u16 mfb = AX_RX_CTL_MFB_16384;
1130 u16 rxctl;
1131 u16 medium;
1132 int old_rx_urb_size = dev->rx_urb_size;
1133
1134 if (dev->hard_mtu < 2048) {
1135 dev->rx_urb_size = 2048;
1136 mfb = AX_RX_CTL_MFB_2048;
1137 } else if (dev->hard_mtu < 4096) {
1138 dev->rx_urb_size = 4096;
1139 mfb = AX_RX_CTL_MFB_4096;
1140 } else if (dev->hard_mtu < 8192) {
1141 dev->rx_urb_size = 8192;
1142 mfb = AX_RX_CTL_MFB_8192;
1143 } else if (dev->hard_mtu < 16384) {
1144 dev->rx_urb_size = 16384;
1145 mfb = AX_RX_CTL_MFB_16384;
1146 }
1147
1148 rxctl = asix_read_rx_ctl(dev);
1149 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1150
1151 medium = asix_read_medium_status(dev);
1152 if (dev->net->mtu > 1500)
1153 medium |= AX_MEDIUM_JFE;
1154 else
1155 medium &= ~AX_MEDIUM_JFE;
1156 asix_write_medium_mode(dev, medium);
1157
1158 if (dev->rx_urb_size > old_rx_urb_size)
1159 usbnet_unlink_rx_urbs(dev);
1160}
1161
1162static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1163{
1164 struct usbnet *dev = netdev_priv(net);
1165 int ll_mtu = new_mtu + net->hard_header_len + 4;
1166
1167 devdbg(dev, "ax88178_change_mtu() new_mtu=%d", new_mtu);
1168
1169 if (new_mtu <= 0 || ll_mtu > 16384)
1170 return -EINVAL;
1171
1172 if ((ll_mtu % dev->maxpacket) == 0)
1173 return -EDOM;
1174
1175 net->mtu = new_mtu;
1176 dev->hard_mtu = net->mtu + net->hard_header_len;
1177 ax88178_set_mfb(dev);
1178
1179 return 0;
1180}
1181
1182static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1183{
1184 struct asix_data *data = (struct asix_data *)&dev->data;
1185 int ret;
Al Viro51bf2972007-12-22 17:42:36 +00001186 u8 buf[ETH_ALEN];
1187 __le16 eeprom;
1188 u8 status;
David Hollis933a27d2006-07-29 10:12:50 -04001189 int gpio0 = 0;
1190 u32 phyid;
1191
1192 usbnet_get_endpoints(dev,intf);
1193
Al Viro51bf2972007-12-22 17:42:36 +00001194 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1195 dbg("GPIO Status: 0x%04x", status);
David Hollis933a27d2006-07-29 10:12:50 -04001196
1197 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1198 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1199 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1200
1201 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1202
Al Viro51bf2972007-12-22 17:42:36 +00001203 if (eeprom == cpu_to_le16(0xffff)) {
David Hollis933a27d2006-07-29 10:12:50 -04001204 data->phymode = PHY_MODE_MARVELL;
1205 data->ledmode = 0;
1206 gpio0 = 1;
1207 } else {
Al Viro51bf2972007-12-22 17:42:36 +00001208 data->phymode = le16_to_cpu(eeprom) & 7;
1209 data->ledmode = le16_to_cpu(eeprom) >> 8;
1210 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
David Hollis933a27d2006-07-29 10:12:50 -04001211 }
1212 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
1213
1214 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
Al Viro51bf2972007-12-22 17:42:36 +00001215 if ((le16_to_cpu(eeprom) >> 8) != 1) {
David Hollis933a27d2006-07-29 10:12:50 -04001216 asix_write_gpio(dev, 0x003c, 30);
1217 asix_write_gpio(dev, 0x001c, 300);
1218 asix_write_gpio(dev, 0x003c, 30);
1219 } else {
1220 dbg("gpio phymode == 1 path");
1221 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1222 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1223 }
1224
1225 asix_sw_reset(dev, 0);
1226 msleep(150);
1227
1228 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1229 msleep(150);
1230
1231 asix_write_rx_ctl(dev, 0);
1232
1233 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -04001234 if ((ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
1235 0, 0, ETH_ALEN, buf)) < 0) {
1236 dbg("Failed to read MAC address: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001237 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001238 }
1239 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1240
1241 /* Initialize MII structure */
1242 dev->mii.dev = dev->net;
1243 dev->mii.mdio_read = asix_mdio_read;
1244 dev->mii.mdio_write = asix_mdio_write;
1245 dev->mii.phy_id_mask = 0x1f;
1246 dev->mii.reg_num_mask = 0xff;
1247 dev->mii.supports_gmii = 1;
1248 dev->net->do_ioctl = asix_ioctl;
1249 dev->mii.phy_id = asix_get_phy_addr(dev);
1250 dev->net->set_multicast_list = asix_set_multicast;
1251 dev->net->ethtool_ops = &ax88178_ethtool_ops;
1252 dev->net->change_mtu = &ax88178_change_mtu;
1253
1254 phyid = asix_get_phyid(dev);
1255 dbg("PHYID=0x%08x", phyid);
1256
1257 if (data->phymode == PHY_MODE_MARVELL) {
1258 marvell_phy_init(dev);
1259 msleep(60);
1260 }
1261
1262 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1263 BMCR_RESET | BMCR_ANENABLE);
1264 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1265 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1266 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1267 ADVERTISE_1000FULL);
1268
1269 mii_nway_restart(&dev->mii);
1270
1271 if ((ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001272 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001273
1274 if ((ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001275 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001276
1277 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1278 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1279 /* hard_mtu is still the default - the device does not support
1280 jumbo eth frames */
1281 dev->rx_urb_size = 2048;
1282 }
David Hollis933a27d2006-07-29 10:12:50 -04001283 return 0;
1284
Al Viro51bf2972007-12-22 17:42:36 +00001285out:
David Hollis933a27d2006-07-29 10:12:50 -04001286 return ret;
1287}
1288
David Brownell2e55cc72005-08-31 09:53:10 -07001289static const struct driver_info ax8817x_info = {
1290 .description = "ASIX AX8817x USB 2.0 Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001291 .bind = ax88172_bind,
1292 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001293 .link_reset = ax88172_link_reset,
1294 .reset = ax88172_link_reset,
1295 .flags = FLAG_ETHER,
1296 .data = 0x00130103,
1297};
1298
1299static const struct driver_info dlink_dub_e100_info = {
1300 .description = "DLink DUB-E100 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001301 .bind = ax88172_bind,
1302 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001303 .link_reset = ax88172_link_reset,
1304 .reset = ax88172_link_reset,
1305 .flags = FLAG_ETHER,
1306 .data = 0x009f9d9f,
1307};
1308
1309static const struct driver_info netgear_fa120_info = {
1310 .description = "Netgear FA-120 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001311 .bind = ax88172_bind,
1312 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001313 .link_reset = ax88172_link_reset,
1314 .reset = ax88172_link_reset,
1315 .flags = FLAG_ETHER,
1316 .data = 0x00130103,
1317};
1318
1319static const struct driver_info hawking_uf200_info = {
1320 .description = "Hawking UF200 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001321 .bind = ax88172_bind,
1322 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001323 .link_reset = ax88172_link_reset,
1324 .reset = ax88172_link_reset,
1325 .flags = FLAG_ETHER,
1326 .data = 0x001f1d1f,
1327};
1328
1329static const struct driver_info ax88772_info = {
1330 .description = "ASIX AX88772 USB 2.0 Ethernet",
1331 .bind = ax88772_bind,
David Hollis48b1be62006-03-28 20:15:42 -05001332 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001333 .link_reset = ax88772_link_reset,
1334 .reset = ax88772_link_reset,
1335 .flags = FLAG_ETHER | FLAG_FRAMING_AX,
David Hollis933a27d2006-07-29 10:12:50 -04001336 .rx_fixup = asix_rx_fixup,
1337 .tx_fixup = asix_tx_fixup,
1338};
1339
1340static const struct driver_info ax88178_info = {
1341 .description = "ASIX AX88178 USB 2.0 Ethernet",
1342 .bind = ax88178_bind,
1343 .status = asix_status,
1344 .link_reset = ax88178_link_reset,
1345 .reset = ax88178_link_reset,
1346 .flags = FLAG_ETHER | FLAG_FRAMING_AX,
1347 .rx_fixup = asix_rx_fixup,
1348 .tx_fixup = asix_tx_fixup,
David Brownell2e55cc72005-08-31 09:53:10 -07001349};
1350
1351static const struct usb_device_id products [] = {
1352{
1353 // Linksys USB200M
1354 USB_DEVICE (0x077b, 0x2226),
1355 .driver_info = (unsigned long) &ax8817x_info,
1356}, {
1357 // Netgear FA120
1358 USB_DEVICE (0x0846, 0x1040),
1359 .driver_info = (unsigned long) &netgear_fa120_info,
1360}, {
1361 // DLink DUB-E100
1362 USB_DEVICE (0x2001, 0x1a00),
1363 .driver_info = (unsigned long) &dlink_dub_e100_info,
1364}, {
1365 // Intellinet, ST Lab USB Ethernet
1366 USB_DEVICE (0x0b95, 0x1720),
1367 .driver_info = (unsigned long) &ax8817x_info,
1368}, {
1369 // Hawking UF200, TrendNet TU2-ET100
1370 USB_DEVICE (0x07b8, 0x420a),
1371 .driver_info = (unsigned long) &hawking_uf200_info,
1372}, {
David Hollis39c4b382007-02-20 08:02:24 -05001373 // Billionton Systems, USB2AR
1374 USB_DEVICE (0x08dd, 0x90ff),
1375 .driver_info = (unsigned long) &ax8817x_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001376}, {
1377 // ATEN UC210T
1378 USB_DEVICE (0x0557, 0x2009),
1379 .driver_info = (unsigned long) &ax8817x_info,
1380}, {
1381 // Buffalo LUA-U2-KTX
1382 USB_DEVICE (0x0411, 0x003d),
1383 .driver_info = (unsigned long) &ax8817x_info,
1384}, {
1385 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1386 USB_DEVICE (0x6189, 0x182d),
1387 .driver_info = (unsigned long) &ax8817x_info,
1388}, {
1389 // corega FEther USB2-TX
1390 USB_DEVICE (0x07aa, 0x0017),
1391 .driver_info = (unsigned long) &ax8817x_info,
1392}, {
1393 // Surecom EP-1427X-2
1394 USB_DEVICE (0x1189, 0x0893),
1395 .driver_info = (unsigned long) &ax8817x_info,
1396}, {
1397 // goodway corp usb gwusb2e
1398 USB_DEVICE (0x1631, 0x6200),
1399 .driver_info = (unsigned long) &ax8817x_info,
1400}, {
David Hollis39c4b382007-02-20 08:02:24 -05001401 // JVC MP-PRX1 Port Replicator
1402 USB_DEVICE (0x04f1, 0x3008),
1403 .driver_info = (unsigned long) &ax8817x_info,
1404}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001405 // ASIX AX88772 10/100
David Hollis39c4b382007-02-20 08:02:24 -05001406 USB_DEVICE (0x0b95, 0x7720),
1407 .driver_info = (unsigned long) &ax88772_info,
David Hollis5e0f76c2005-12-19 13:58:38 -05001408}, {
Eduard Warkentin73274132006-05-18 01:13:17 -07001409 // ASIX AX88178 10/100/1000
1410 USB_DEVICE (0x0b95, 0x1780),
David Hollis933a27d2006-07-29 10:12:50 -04001411 .driver_info = (unsigned long) &ax88178_info,
Eduard Warkentin73274132006-05-18 01:13:17 -07001412}, {
David Hollis5e0f76c2005-12-19 13:58:38 -05001413 // Linksys USB200M Rev 2
1414 USB_DEVICE (0x13b1, 0x0018),
1415 .driver_info = (unsigned long) &ax88772_info,
David Hollis5732ce82006-01-05 14:39:49 -05001416}, {
1417 // 0Q0 cable ethernet
1418 USB_DEVICE (0x1557, 0x7720),
1419 .driver_info = (unsigned long) &ax88772_info,
David Hollis933a27d2006-07-29 10:12:50 -04001420}, {
1421 // DLink DUB-E100 H/W Ver B1
1422 USB_DEVICE (0x07d1, 0x3c05),
1423 .driver_info = (unsigned long) &ax88772_info,
1424}, {
David Hollisb923e7f2006-09-21 08:09:29 -04001425 // DLink DUB-E100 H/W Ver B1 Alternate
1426 USB_DEVICE (0x2001, 0x3c05),
1427 .driver_info = (unsigned long) &ax88772_info,
1428}, {
David Hollis933a27d2006-07-29 10:12:50 -04001429 // Linksys USB1000
1430 USB_DEVICE (0x1737, 0x0039),
1431 .driver_info = (unsigned long) &ax88178_info,
YOSHIFUJI Hideaki / 吉藤英明b29cf312007-01-26 22:57:38 +09001432}, {
1433 // IO-DATA ETG-US2
1434 USB_DEVICE (0x04bb, 0x0930),
1435 .driver_info = (unsigned long) &ax88178_info,
David Hollis2ed22bc2007-05-23 07:33:17 -04001436}, {
1437 // Belkin F5D5055
1438 USB_DEVICE(0x050d, 0x5055),
1439 .driver_info = (unsigned long) &ax88178_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001440},
1441 { }, // END
1442};
1443MODULE_DEVICE_TABLE(usb, products);
1444
1445static struct usb_driver asix_driver = {
David Brownell2e55cc72005-08-31 09:53:10 -07001446 .name = "asix",
1447 .id_table = products,
1448 .probe = usbnet_probe,
1449 .suspend = usbnet_suspend,
1450 .resume = usbnet_resume,
1451 .disconnect = usbnet_disconnect,
Oliver Neukuma11a6542007-08-03 13:52:19 +02001452 .supports_autosuspend = 1,
David Brownell2e55cc72005-08-31 09:53:10 -07001453};
1454
1455static int __init asix_init(void)
1456{
1457 return usb_register(&asix_driver);
1458}
1459module_init(asix_init);
1460
1461static void __exit asix_exit(void)
1462{
1463 usb_deregister(&asix_driver);
1464}
1465module_exit(asix_exit);
1466
1467MODULE_AUTHOR("David Hollis");
1468MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1469MODULE_LICENSE("GPL");
1470