drivers: isdn: Fix dependency for ISDN_PPP
[deliverable/linux.git] / drivers / net / usb / asix.c
CommitLineData
2e55cc72
DB
1/*
2 * ASIX AX8817X based USB 2.0 Ethernet Devices
933a27d3 3 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
2e55cc72 4 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
933a27d3 5 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
2e55cc72
DB
6 * 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
2e55cc72
DB
26#include <linux/module.h>
27#include <linux/kmod.h>
2e55cc72
DB
28#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>
3692e94f 36#include <linux/usb/usbnet.h>
5a0e3ad6 37#include <linux/slab.h>
2e55cc72 38
f87ce5b2 39#define DRIVER_VERSION "22-Dec-2011"
83e1b918 40#define DRIVER_NAME "asix"
933a27d3 41
2e55cc72
DB
42/* 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
933a27d3 52#define AX_CMD_READ_RX_CTL 0x0f
2e55cc72
DB
53#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
933a27d3 57#define AX_CMD_READ_NODE_ID 0x13
7f29a3ba 58#define AX_CMD_WRITE_NODE_ID 0x14
2e55cc72
DB
59#define AX_CMD_WRITE_IPG2 0x14
60#define AX_CMD_WRITE_MULTI_FILTER 0x16
933a27d3 61#define AX88172_CMD_READ_NODE_ID 0x17
2e55cc72
DB
62#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
933a27d3 67#define AX_CMD_READ_GPIOS 0x1e
2e55cc72
DB
68#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
2e55cc72
DB
72
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 */
933a27d3
DH
79#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 )
2e55cc72
DB
84
85#define AX_MCAST_FILTER_SIZE 8
86#define AX_MAX_MCAST 64
87
2e55cc72
DB
88#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
933a27d3
DH
101/* 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
114
115#define AX88178_MEDIUM_DEFAULT \
116 (AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
117 AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
83e1b918 118 AX_MEDIUM_RE)
2e55cc72 119
933a27d3
DH
120#define AX88772_MEDIUM_DEFAULT \
121 (AX_MEDIUM_FD | AX_MEDIUM_RFC | \
122 AX_MEDIUM_TFC | AX_MEDIUM_PS | \
83e1b918 123 AX_MEDIUM_AC | AX_MEDIUM_RE)
933a27d3
DH
124
125/* AX88772 & AX88178 RX_CTL values */
83e1b918
GG
126#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
137
138#define AX_DEFAULT_RX_CTL (AX_RX_CTL_SO | AX_RX_CTL_AB)
933a27d3
DH
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
2e55cc72 165
3486140e 166#define PHY_MODE_RTL8211CL 0x000C
610d885d 167
2e55cc72 168/* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
48b1be6a 169struct asix_data {
2e55cc72 170 u8 multi_filter[AX_MCAST_FILTER_SIZE];
7f29a3ba 171 u8 mac_addr[ETH_ALEN];
933a27d3
DH
172 u8 phymode;
173 u8 ledmode;
174 u8 eeprom_len;
2e55cc72
DB
175};
176
177struct ax88172_int_data {
51bf2976 178 __le16 res1;
2e55cc72 179 u8 link;
51bf2976 180 __le16 res2;
2e55cc72 181 u8 status;
51bf2976 182 __le16 res3;
ba2d3587 183} __packed;
2e55cc72 184
48b1be6a 185static int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
2e55cc72
DB
186 u16 size, void *data)
187{
51bf2976
AV
188 void *buf;
189 int err = -ENOMEM;
190
60b86755
JP
191 netdev_dbg(dev->net, "asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
192 cmd, value, index, size);
51bf2976
AV
193
194 buf = kmalloc(size, GFP_KERNEL);
195 if (!buf)
196 goto out;
197
198 err = usb_control_msg(
2e55cc72
DB
199 dev->udev,
200 usb_rcvctrlpipe(dev->udev, 0),
201 cmd,
202 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
203 value,
204 index,
51bf2976 205 buf,
2e55cc72
DB
206 size,
207 USB_CTRL_GET_TIMEOUT);
94d43363 208 if (err == size)
51bf2976 209 memcpy(data, buf, size);
94d43363
RD
210 else if (err >= 0)
211 err = -EINVAL;
51bf2976
AV
212 kfree(buf);
213
214out:
215 return err;
2e55cc72
DB
216}
217
48b1be6a 218static int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
2e55cc72
DB
219 u16 size, void *data)
220{
51bf2976
AV
221 void *buf = NULL;
222 int err = -ENOMEM;
223
60b86755
JP
224 netdev_dbg(dev->net, "asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
225 cmd, value, index, size);
51bf2976
AV
226
227 if (data) {
99bf2366 228 buf = kmemdup(data, size, GFP_KERNEL);
51bf2976
AV
229 if (!buf)
230 goto out;
51bf2976
AV
231 }
232
233 err = usb_control_msg(
2e55cc72
DB
234 dev->udev,
235 usb_sndctrlpipe(dev->udev, 0),
236 cmd,
237 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
238 value,
239 index,
51bf2976 240 buf,
2e55cc72
DB
241 size,
242 USB_CTRL_SET_TIMEOUT);
51bf2976
AV
243 kfree(buf);
244
245out:
246 return err;
2e55cc72
DB
247}
248
7d12e780 249static void asix_async_cmd_callback(struct urb *urb)
2e55cc72
DB
250{
251 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
c94cb314 252 int status = urb->status;
2e55cc72 253
c94cb314 254 if (status < 0)
48b1be6a 255 printk(KERN_DEBUG "asix_async_cmd_callback() failed with %d",
c94cb314 256 status);
2e55cc72
DB
257
258 kfree(req);
259 usb_free_urb(urb);
260}
261
933a27d3
DH
262static void
263asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
264 u16 size, void *data)
265{
266 struct usb_ctrlrequest *req;
267 int status;
268 struct urb *urb;
269
60b86755
JP
270 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);
83e1b918
GG
272
273 urb = usb_alloc_urb(0, GFP_ATOMIC);
274 if (!urb) {
60b86755 275 netdev_err(dev->net, "Error allocating URB in write_cmd_async!\n");
933a27d3
DH
276 return;
277 }
278
83e1b918
GG
279 req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
280 if (!req) {
60b86755 281 netdev_err(dev->net, "Failed to allocate memory for control request\n");
933a27d3
DH
282 usb_free_urb(urb);
283 return;
284 }
285
286 req->bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
287 req->bRequest = cmd;
9aa742ef
ON
288 req->wValue = cpu_to_le16(value);
289 req->wIndex = cpu_to_le16(index);
290 req->wLength = cpu_to_le16(size);
933a27d3
DH
291
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
83e1b918
GG
297 status = usb_submit_urb(urb, GFP_ATOMIC);
298 if (status < 0) {
60b86755
JP
299 netdev_err(dev->net, "Error submitting the control message: status=%d\n",
300 status);
933a27d3
DH
301 kfree(req);
302 usb_free_urb(urb);
303 }
304}
305
306static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
307{
308 u8 *head;
309 u32 header;
310 char *packet;
311 struct sk_buff *ax_skb;
312 u16 size;
313
314 head = (u8 *) skb->data;
315 memcpy(&header, head, sizeof(header));
316 le32_to_cpus(&header);
317 packet = head + sizeof(header);
318
319 skb_pull(skb, 4);
320
321 while (skb->len > 0) {
bca0beb9 322 if ((header & 0x07ff) != ((~header >> 16) & 0x07ff))
60b86755 323 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length\n");
bc466e67 324
933a27d3 325 /* get the packet length */
bca0beb9 326 size = (u16) (header & 0x000007ff);
933a27d3 327
3f78d1f2 328 if ((skb->len) - ((size + 1) & 0xfffe) == 0) {
f925b130 329 u8 alignment = (unsigned long)skb->data & 0x3;
3f78d1f2
NJ
330 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 }
933a27d3 348 return 2;
3f78d1f2
NJ
349 }
350
9227a46b 351 if (size > dev->net->mtu + ETH_HLEN) {
60b86755
JP
352 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
353 size);
933a27d3
DH
354 return 0;
355 }
356 ax_skb = skb_clone(skb, GFP_ATOMIC);
357 if (ax_skb) {
f925b130 358 u8 alignment = (unsigned long)packet & 0x3;
933a27d3 359 ax_skb->len = size;
3f78d1f2
NJ
360
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 }
933a27d3 370 ax_skb->data = packet;
27a884dc 371 skb_set_tail_pointer(ax_skb, size);
933a27d3
DH
372 usbnet_skb_return(dev, ax_skb);
373 } else {
374 return 0;
375 }
376
377 skb_pull(skb, (size + 1) & 0xfffe);
378
6c15d74d 379 if (skb->len < sizeof(header))
933a27d3
DH
380 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) {
60b86755
JP
390 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d\n",
391 skb->len);
933a27d3
DH
392 return 0;
393 }
394 return 1;
395}
396
397static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
398 gfp_t flags)
399{
400 int padlen;
401 int headroom = skb_headroom(skb);
402 int tailroom = skb_tailroom(skb);
403 u32 packet_len;
404 u32 padbytes = 0xffff0000;
405
406 padlen = ((skb->len + 4) % 512) ? 0 : 4;
407
8e95a202
JP
408 if ((!skb_cloned(skb)) &&
409 ((headroom + tailroom) >= (4 + padlen))) {
933a27d3
DH
410 if ((headroom < 4) || (tailroom < padlen)) {
411 skb->data = memmove(skb->head + 4, skb->data, skb->len);
27a884dc 412 skb_set_tail_pointer(skb, skb->len);
933a27d3
DH
413 }
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);
57e4f041 425 cpu_to_le32s(&packet_len);
27d7ff46 426 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
933a27d3
DH
427
428 if ((skb->len % 512) == 0) {
57e4f041 429 cpu_to_le32s(&padbytes);
27a884dc 430 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
933a27d3
DH
431 skb_put(skb, sizeof(padbytes));
432 }
433 return skb;
434}
435
436static void asix_status(struct usbnet *dev, struct urb *urb)
437{
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);
60b86755 452 netdev_dbg(dev->net, "Link Status is: %d\n", link);
933a27d3
DH
453 }
454}
455
48b1be6a
DH
456static inline int asix_set_sw_mii(struct usbnet *dev)
457{
458 int ret;
459 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
460 if (ret < 0)
60b86755 461 netdev_err(dev->net, "Failed to enable software MII access\n");
48b1be6a
DH
462 return ret;
463}
464
465static 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)
60b86755 470 netdev_err(dev->net, "Failed to enable hardware MII access\n");
48b1be6a
DH
471 return ret;
472}
473
933a27d3 474static inline int asix_get_phy_addr(struct usbnet *dev)
48b1be6a 475{
51bf2976
AV
476 u8 buf[2];
477 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
48b1be6a 478
60b86755 479 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
933a27d3 480
51bf2976 481 if (ret < 0) {
60b86755 482 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
51bf2976 483 goto out;
48b1be6a 484 }
60b86755
JP
485 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
486 *((__le16 *)buf));
51bf2976
AV
487 ret = buf[1];
488
489out:
48b1be6a
DH
490 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)
60b86755 499 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
933a27d3
DH
500
501 return ret;
502}
48b1be6a 503
933a27d3
DH
504static u16 asix_read_rx_ctl(struct usbnet *dev)
505{
51bf2976
AV
506 __le16 v;
507 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
933a27d3 508
51bf2976 509 if (ret < 0) {
60b86755 510 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
51bf2976 511 goto out;
933a27d3 512 }
51bf2976
AV
513 ret = le16_to_cpu(v);
514out:
48b1be6a
DH
515 return ret;
516}
517
518static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
519{
520 int ret;
521
60b86755 522 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
48b1be6a
DH
523 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
524 if (ret < 0)
60b86755
JP
525 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
526 mode, ret);
48b1be6a
DH
527
528 return ret;
529}
530
933a27d3 531static u16 asix_read_medium_status(struct usbnet *dev)
2e55cc72 532{
51bf2976
AV
533 __le16 v;
534 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
2e55cc72 535
51bf2976 536 if (ret < 0) {
60b86755
JP
537 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
538 ret);
83e1b918 539 return ret; /* TODO: callers not checking for error ret */
2e55cc72 540 }
83e1b918
GG
541
542 return le16_to_cpu(v);
543
2e55cc72
DB
544}
545
933a27d3 546static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
2e55cc72 547{
933a27d3 548 int ret;
2e55cc72 549
60b86755 550 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
933a27d3
DH
551 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
552 if (ret < 0)
60b86755
JP
553 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
554 mode, ret);
2e55cc72 555
933a27d3
DH
556 return ret;
557}
2e55cc72 558
933a27d3
DH
559static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
560{
561 int ret;
2e55cc72 562
60b86755 563 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
933a27d3
DH
564 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
565 if (ret < 0)
60b86755
JP
566 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
567 value, ret);
2e55cc72 568
933a27d3
DH
569 if (sleep)
570 msleep(sleep);
571
572 return ret;
2e55cc72
DB
573}
574
933a27d3
DH
575/*
576 * AX88772 & AX88178 have a 16-bit RX_CTL value
577 */
48b1be6a 578static void asix_set_multicast(struct net_device *net)
2e55cc72
DB
579{
580 struct usbnet *dev = netdev_priv(net);
48b1be6a 581 struct asix_data *data = (struct asix_data *)&dev->data;
933a27d3 582 u16 rx_ctl = AX_DEFAULT_RX_CTL;
2e55cc72
DB
583
584 if (net->flags & IFF_PROMISC) {
933a27d3 585 rx_ctl |= AX_RX_CTL_PRO;
8e95a202 586 } else if (net->flags & IFF_ALLMULTI ||
4cd24eaf 587 netdev_mc_count(net) > AX_MAX_MCAST) {
933a27d3 588 rx_ctl |= AX_RX_CTL_AMALL;
4cd24eaf 589 } else if (netdev_mc_empty(net)) {
2e55cc72
DB
590 /* 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 */
22bedad3 596 struct netdev_hw_addr *ha;
2e55cc72 597 u32 crc_bits;
2e55cc72
DB
598
599 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
600
601 /* Build the multicast hash filter. */
22bedad3
JP
602 netdev_for_each_mc_addr(ha, net) {
603 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
2e55cc72
DB
604 data->multi_filter[crc_bits >> 3] |=
605 1 << (crc_bits & 7);
2e55cc72
DB
606 }
607
48b1be6a 608 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
2e55cc72
DB
609 AX_MCAST_FILTER_SIZE, data->multi_filter);
610
933a27d3 611 rx_ctl |= AX_RX_CTL_AM;
2e55cc72
DB
612 }
613
48b1be6a 614 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
2e55cc72
DB
615}
616
48b1be6a 617static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
2e55cc72
DB
618{
619 struct usbnet *dev = netdev_priv(netdev);
51bf2976 620 __le16 res;
2e55cc72 621
a9fc6338 622 mutex_lock(&dev->phy_mutex);
48b1be6a
DH
623 asix_set_sw_mii(dev);
624 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
51bf2976 625 (__u16)loc, 2, &res);
48b1be6a 626 asix_set_hw_mii(dev);
a9fc6338 627 mutex_unlock(&dev->phy_mutex);
2e55cc72 628
60b86755
JP
629 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));
2e55cc72 631
51bf2976 632 return le16_to_cpu(res);
2e55cc72
DB
633}
634
635static void
48b1be6a 636asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
2e55cc72
DB
637{
638 struct usbnet *dev = netdev_priv(netdev);
51bf2976 639 __le16 res = cpu_to_le16(val);
2e55cc72 640
60b86755
JP
641 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
642 phy_id, loc, val);
a9fc6338 643 mutex_lock(&dev->phy_mutex);
48b1be6a 644 asix_set_sw_mii(dev);
51bf2976 645 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
48b1be6a 646 asix_set_hw_mii(dev);
a9fc6338 647 mutex_unlock(&dev->phy_mutex);
2e55cc72
DB
648}
649
933a27d3
DH
650/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
651static u32 asix_get_phyid(struct usbnet *dev)
2e55cc72 652{
933a27d3
DH
653 int phy_reg;
654 u32 phy_id;
a77929a2 655 int i;
2e55cc72 656
a77929a2
GG
657 /* 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)
933a27d3 666 return 0;
2e55cc72 667
933a27d3 668 phy_id = (phy_reg & 0xffff) << 16;
2e55cc72 669
933a27d3
DH
670 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;
2e55cc72
DB
677}
678
679static void
48b1be6a 680asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
2e55cc72
DB
681{
682 struct usbnet *dev = netdev_priv(net);
683 u8 opt;
684
48b1be6a 685 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
2e55cc72
DB
686 wolinfo->supported = 0;
687 wolinfo->wolopts = 0;
688 return;
689 }
690 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
691 wolinfo->wolopts = 0;
f87ce5b2 692 if (opt & AX_MONITOR_LINK)
693 wolinfo->wolopts |= WAKE_PHY;
694 if (opt & AX_MONITOR_MAGIC)
695 wolinfo->wolopts |= WAKE_MAGIC;
2e55cc72
DB
696}
697
698static int
48b1be6a 699asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
2e55cc72
DB
700{
701 struct usbnet *dev = netdev_priv(net);
702 u8 opt = 0;
2e55cc72
DB
703
704 if (wolinfo->wolopts & WAKE_PHY)
705 opt |= AX_MONITOR_LINK;
706 if (wolinfo->wolopts & WAKE_MAGIC)
707 opt |= AX_MONITOR_MAGIC;
2e55cc72 708
48b1be6a 709 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
51bf2976 710 opt, 0, 0, NULL) < 0)
2e55cc72
DB
711 return -EINVAL;
712
713 return 0;
714}
715
48b1be6a 716static int asix_get_eeprom_len(struct net_device *net)
2e55cc72 717{
933a27d3
DH
718 struct usbnet *dev = netdev_priv(net);
719 struct asix_data *data = (struct asix_data *)&dev->data;
720
721 return data->eeprom_len;
2e55cc72
DB
722}
723
48b1be6a 724static int asix_get_eeprom(struct net_device *net,
2e55cc72
DB
725 struct ethtool_eeprom *eeprom, u8 *data)
726{
727 struct usbnet *dev = netdev_priv(net);
51bf2976 728 __le16 *ebuf = (__le16 *)data;
2e55cc72
DB
729 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++) {
48b1be6a 741 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
2e55cc72
DB
742 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
743 return -EINVAL;
744 }
745 return 0;
746}
747
48b1be6a 748static void asix_get_drvinfo (struct net_device *net,
2e55cc72
DB
749 struct ethtool_drvinfo *info)
750{
933a27d3
DH
751 struct usbnet *dev = netdev_priv(net);
752 struct asix_data *data = (struct asix_data *)&dev->data;
753
2e55cc72
DB
754 /* Inherit standard device info */
755 usbnet_get_drvinfo(net, info);
83e1b918 756 strncpy (info->driver, DRIVER_NAME, sizeof info->driver);
933a27d3
DH
757 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
758 info->eedump_len = data->eeprom_len;
2e55cc72
DB
759}
760
933a27d3
DH
761static 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);
773}
774
7f29a3ba
JK
775static 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
933a27d3
DH
799/* 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. */
0fc0b732 802static const struct ethtool_ops ax88172_ethtool_ops = {
933a27d3
DH
803 .get_drvinfo = asix_get_drvinfo,
804 .get_link = asix_get_link,
933a27d3 805 .get_msglevel = usbnet_get_msglevel,
2e55cc72 806 .set_msglevel = usbnet_set_msglevel,
48b1be6a
DH
807 .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,
c41286fd
AB
811 .get_settings = usbnet_get_settings,
812 .set_settings = usbnet_set_settings,
813 .nway_reset = usbnet_nway_reset,
2e55cc72
DB
814};
815
933a27d3 816static void ax88172_set_multicast(struct net_device *net)
2e55cc72
DB
817{
818 struct usbnet *dev = netdev_priv(net);
933a27d3
DH
819 struct asix_data *data = (struct asix_data *)&dev->data;
820 u8 rx_ctl = 0x8c;
2e55cc72 821
933a27d3
DH
822 if (net->flags & IFF_PROMISC) {
823 rx_ctl |= 0x01;
8e95a202 824 } else if (net->flags & IFF_ALLMULTI ||
4cd24eaf 825 netdev_mc_count(net) > AX_MAX_MCAST) {
933a27d3 826 rx_ctl |= 0x02;
4cd24eaf 827 } else if (netdev_mc_empty(net)) {
933a27d3
DH
828 /* 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 */
22bedad3 834 struct netdev_hw_addr *ha;
933a27d3 835 u32 crc_bits;
933a27d3
DH
836
837 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
838
839 /* Build the multicast hash filter. */
22bedad3
JP
840 netdev_for_each_mc_addr(ha, net) {
841 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
933a27d3
DH
842 data->multi_filter[crc_bits >> 3] |=
843 1 << (crc_bits & 7);
933a27d3
DH
844 }
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;
8ae6daca 858 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
933a27d3
DH
859
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
8ae6daca
DD
867 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);
933a27d3
DH
869
870 asix_write_medium_mode(dev, mode);
871
872 return 0;
2e55cc72
DB
873}
874
1703338c
SH
875static 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,
afc4b13d 884 .ndo_set_rx_mode = ax88172_set_multicast,
1703338c
SH
885};
886
48b1be6a 887static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
2e55cc72
DB
888{
889 int ret = 0;
51bf2976 890 u8 buf[ETH_ALEN];
2e55cc72
DB
891 int i;
892 unsigned long gpio_bits = dev->driver_info->data;
933a27d3
DH
893 struct asix_data *data = (struct asix_data *)&dev->data;
894
895 data->eeprom_len = AX88172_EEPROM_LEN;
2e55cc72
DB
896
897 usbnet_get_endpoints(dev,intf);
898
2e55cc72
DB
899 /* Toggle the GPIOs in a manufacturer/model specific way */
900 for (i = 2; i >= 0; i--) {
83e1b918
GG
901 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
902 (gpio_bits >> (i * 8)) & 0xff, 0, 0, NULL);
903 if (ret < 0)
51bf2976 904 goto out;
2e55cc72
DB
905 msleep(5);
906 }
907
83e1b918
GG
908 ret = asix_write_rx_ctl(dev, 0x80);
909 if (ret < 0)
51bf2976 910 goto out;
2e55cc72
DB
911
912 /* Get the MAC address */
83e1b918
GG
913 ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
914 if (ret < 0) {
2e55cc72 915 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
51bf2976 916 goto out;
2e55cc72
DB
917 }
918 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
919
2e55cc72
DB
920 /* Initialize MII structure */
921 dev->mii.dev = dev->net;
48b1be6a
DH
922 dev->mii.mdio_read = asix_mdio_read;
923 dev->mii.mdio_write = asix_mdio_write;
2e55cc72
DB
924 dev->mii.phy_id_mask = 0x3f;
925 dev->mii.reg_num_mask = 0x1f;
933a27d3 926 dev->mii.phy_id = asix_get_phy_addr(dev);
2e55cc72 927
1703338c 928 dev->net->netdev_ops = &ax88172_netdev_ops;
48b1be6a 929 dev->net->ethtool_ops = &ax88172_ethtool_ops;
2e55cc72 930
933a27d3
DH
931 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,
2e55cc72
DB
933 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
934 mii_nway_restart(&dev->mii);
935
936 return 0;
51bf2976
AV
937
938out:
2e55cc72
DB
939 return ret;
940}
941
0fc0b732 942static const struct ethtool_ops ax88772_ethtool_ops = {
48b1be6a 943 .get_drvinfo = asix_get_drvinfo,
933a27d3 944 .get_link = asix_get_link,
2e55cc72
DB
945 .get_msglevel = usbnet_get_msglevel,
946 .set_msglevel = usbnet_set_msglevel,
48b1be6a
DH
947 .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,
c41286fd
AB
951 .get_settings = usbnet_get_settings,
952 .set_settings = usbnet_set_settings,
953 .nway_reset = usbnet_nway_reset,
2e55cc72
DB
954};
955
933a27d3
DH
956static int ax88772_link_reset(struct usbnet *dev)
957{
958 u16 mode;
8ae6daca 959 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
933a27d3
DH
960
961 mii_check_media(&dev->mii, 1, 1);
962 mii_ethtool_gset(&dev->mii, &ecmd);
963 mode = AX88772_MEDIUM_DEFAULT;
964
8ae6daca 965 if (ethtool_cmd_speed(&ecmd) != SPEED_100)
933a27d3
DH
966 mode &= ~AX_MEDIUM_PS;
967
968 if (ecmd.duplex != DUPLEX_FULL)
969 mode &= ~AX_MEDIUM_FD;
970
8ae6daca
DD
971 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);
933a27d3
DH
973
974 asix_write_medium_mode(dev, mode);
975
976 return 0;
977}
978
4ad1438f 979static int ax88772_reset(struct usbnet *dev)
2e55cc72 980{
d0ffff8f 981 int ret, embd_phy;
933a27d3 982 u16 rx_ctl;
2e55cc72 983
83e1b918
GG
984 ret = asix_write_gpio(dev,
985 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5);
986 if (ret < 0)
51bf2976 987 goto out;
2e55cc72 988
d0ffff8f 989 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
4ad1438f 990
83e1b918
GG
991 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
992 if (ret < 0) {
2e55cc72 993 dbg("Select PHY #1 failed: %d", ret);
51bf2976 994 goto out;
2e55cc72
DB
995 }
996
83e1b918
GG
997 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
998 if (ret < 0)
51bf2976 999 goto out;
2e55cc72
DB
1000
1001 msleep(150);
83e1b918
GG
1002
1003 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
1004 if (ret < 0)
51bf2976 1005 goto out;
2e55cc72
DB
1006
1007 msleep(150);
4ad1438f 1008
d0ffff8f 1009 if (embd_phy) {
83e1b918
GG
1010 ret = asix_sw_reset(dev, AX_SWRESET_IPRL);
1011 if (ret < 0)
51bf2976 1012 goto out;
83e1b918
GG
1013 } else {
1014 ret = asix_sw_reset(dev, AX_SWRESET_PRTE);
1015 if (ret < 0)
51bf2976 1016 goto out;
d0ffff8f 1017 }
2e55cc72
DB
1018
1019 msleep(150);
933a27d3
DH
1020 rx_ctl = asix_read_rx_ctl(dev);
1021 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
83e1b918
GG
1022 ret = asix_write_rx_ctl(dev, 0x0000);
1023 if (ret < 0)
51bf2976 1024 goto out;
2e55cc72 1025
933a27d3
DH
1026 rx_ctl = asix_read_rx_ctl(dev);
1027 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
1028
83e1b918
GG
1029 ret = asix_sw_reset(dev, AX_SWRESET_PRL);
1030 if (ret < 0)
51bf2976 1031 goto out;
2e55cc72 1032
2e55cc72 1033 msleep(150);
48b1be6a 1034
83e1b918
GG
1035 ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL);
1036 if (ret < 0)
51bf2976 1037 goto out;
2e55cc72 1038
48b1be6a 1039 msleep(150);
2e55cc72 1040
933a27d3
DH
1041 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
1042 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
2e55cc72
DB
1043 ADVERTISE_ALL | ADVERTISE_CSMA);
1044 mii_nway_restart(&dev->mii);
1045
83e1b918
GG
1046 ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT);
1047 if (ret < 0)
51bf2976 1048 goto out;
2e55cc72 1049
83e1b918 1050 ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
2e55cc72 1051 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
83e1b918
GG
1052 AX88772_IPG2_DEFAULT, 0, NULL);
1053 if (ret < 0) {
2e55cc72 1054 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
51bf2976 1055 goto out;
2e55cc72 1056 }
2e55cc72
DB
1057
1058 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
83e1b918
GG
1059 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1060 if (ret < 0)
51bf2976 1061 goto out;
2e55cc72 1062
933a27d3
DH
1063 rx_ctl = asix_read_rx_ctl(dev);
1064 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1065
1066 rx_ctl = asix_read_medium_status(dev);
1067 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1068
4ad1438f
GG
1069 return 0;
1070
1071out:
1072 return ret;
1073
1074}
1075
1076static const struct net_device_ops ax88772_netdev_ops = {
1077 .ndo_open = usbnet_open,
1078 .ndo_stop = usbnet_stop,
1079 .ndo_start_xmit = usbnet_start_xmit,
1080 .ndo_tx_timeout = usbnet_tx_timeout,
1081 .ndo_change_mtu = usbnet_change_mtu,
1082 .ndo_set_mac_address = asix_set_mac_address,
1083 .ndo_validate_addr = eth_validate_addr,
1084 .ndo_do_ioctl = asix_ioctl,
1085 .ndo_set_rx_mode = asix_set_multicast,
1086};
1087
1088static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
1089{
d3665188 1090 int ret, embd_phy;
4ad1438f
GG
1091 struct asix_data *data = (struct asix_data *)&dev->data;
1092 u8 buf[ETH_ALEN];
1093 u32 phyid;
1094
1095 data->eeprom_len = AX88772_EEPROM_LEN;
1096
1097 usbnet_get_endpoints(dev,intf);
1098
1099 /* Get the MAC address */
83e1b918
GG
1100 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1101 if (ret < 0) {
4ad1438f 1102 dbg("Failed to read MAC address: %d", ret);
83e1b918 1103 return ret;
4ad1438f
GG
1104 }
1105 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1106
1107 /* Initialize MII structure */
1108 dev->mii.dev = dev->net;
1109 dev->mii.mdio_read = asix_mdio_read;
1110 dev->mii.mdio_write = asix_mdio_write;
1111 dev->mii.phy_id_mask = 0x1f;
1112 dev->mii.reg_num_mask = 0x1f;
1113 dev->mii.phy_id = asix_get_phy_addr(dev);
1114
4ad1438f
GG
1115 dev->net->netdev_ops = &ax88772_netdev_ops;
1116 dev->net->ethtool_ops = &ax88772_ethtool_ops;
1117
d3665188
GG
1118 embd_phy = ((dev->mii.phy_id & 0x1f) == 0x10 ? 1 : 0);
1119
1120 /* Reset the PHY to normal operation mode */
1121 ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
1122 if (ret < 0) {
1123 dbg("Select PHY #1 failed: %d", ret);
1124 return ret;
1125 }
1126
1127 ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL);
83e1b918
GG
1128 if (ret < 0)
1129 return ret;
4ad1438f 1130
d3665188
GG
1131 msleep(150);
1132
1133 ret = asix_sw_reset(dev, AX_SWRESET_CLEAR);
1134 if (ret < 0)
1135 return ret;
1136
1137 msleep(150);
1138
1139 ret = asix_sw_reset(dev, embd_phy ? AX_SWRESET_IPRL : AX_SWRESET_PRTE);
1140
1141 /* Read PHYID register *AFTER* the PHY was reset properly */
1142 phyid = asix_get_phyid(dev);
1143 dbg("PHYID=0x%08x", phyid);
1144
2e55cc72
DB
1145 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1146 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1147 /* hard_mtu is still the default - the device does not support
1148 jumbo eth frames */
1149 dev->rx_urb_size = 2048;
1150 }
83e1b918 1151
2e55cc72 1152 return 0;
2e55cc72
DB
1153}
1154
bc689c97 1155static const struct ethtool_ops ax88178_ethtool_ops = {
933a27d3
DH
1156 .get_drvinfo = asix_get_drvinfo,
1157 .get_link = asix_get_link,
933a27d3
DH
1158 .get_msglevel = usbnet_get_msglevel,
1159 .set_msglevel = usbnet_set_msglevel,
1160 .get_wol = asix_get_wol,
1161 .set_wol = asix_set_wol,
1162 .get_eeprom_len = asix_get_eeprom_len,
1163 .get_eeprom = asix_get_eeprom,
c41286fd
AB
1164 .get_settings = usbnet_get_settings,
1165 .set_settings = usbnet_set_settings,
1166 .nway_reset = usbnet_nway_reset,
933a27d3
DH
1167};
1168
1169static int marvell_phy_init(struct usbnet *dev)
2e55cc72 1170{
933a27d3
DH
1171 struct asix_data *data = (struct asix_data *)&dev->data;
1172 u16 reg;
2e55cc72 1173
60b86755 1174 netdev_dbg(dev->net, "marvell_phy_init()\n");
2e55cc72 1175
933a27d3 1176 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
60b86755 1177 netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
2e55cc72 1178
933a27d3
DH
1179 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1180 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
2e55cc72 1181
933a27d3
DH
1182 if (data->ledmode) {
1183 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1184 MII_MARVELL_LED_CTRL);
60b86755 1185 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
2e55cc72 1186
933a27d3
DH
1187 reg &= 0xf8ff;
1188 reg |= (1 + 0x0100);
1189 asix_mdio_write(dev->net, dev->mii.phy_id,
1190 MII_MARVELL_LED_CTRL, reg);
2e55cc72 1191
933a27d3
DH
1192 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1193 MII_MARVELL_LED_CTRL);
60b86755 1194 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
933a27d3
DH
1195 reg &= 0xfc0f;
1196 }
2e55cc72 1197
933a27d3
DH
1198 return 0;
1199}
1200
610d885d
GG
1201static int rtl8211cl_phy_init(struct usbnet *dev)
1202{
1203 struct asix_data *data = (struct asix_data *)&dev->data;
1204
1205 netdev_dbg(dev->net, "rtl8211cl_phy_init()\n");
1206
1207 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0005);
1208 asix_mdio_write (dev->net, dev->mii.phy_id, 0x0c, 0);
1209 asix_mdio_write (dev->net, dev->mii.phy_id, 0x01,
1210 asix_mdio_read (dev->net, dev->mii.phy_id, 0x01) | 0x0080);
1211 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1212
1213 if (data->ledmode == 12) {
1214 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0x0002);
1215 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1a, 0x00cb);
1216 asix_mdio_write (dev->net, dev->mii.phy_id, 0x1f, 0);
1217 }
1218
1219 return 0;
1220}
1221
933a27d3
DH
1222static int marvell_led_status(struct usbnet *dev, u16 speed)
1223{
1224 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1225
60b86755 1226 netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
933a27d3
DH
1227
1228 /* Clear out the center LED bits - 0x03F0 */
1229 reg &= 0xfc0f;
1230
1231 switch (speed) {
1232 case SPEED_1000:
1233 reg |= 0x03e0;
1234 break;
1235 case SPEED_100:
1236 reg |= 0x03b0;
1237 break;
1238 default:
1239 reg |= 0x02f0;
2e55cc72
DB
1240 }
1241
60b86755 1242 netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
933a27d3
DH
1243 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1244
1245 return 0;
1246}
1247
610d885d
GG
1248static int ax88178_reset(struct usbnet *dev)
1249{
1250 struct asix_data *data = (struct asix_data *)&dev->data;
1251 int ret;
1252 __le16 eeprom;
1253 u8 status;
1254 int gpio0 = 0;
b2d3ad29 1255 u32 phyid;
610d885d
GG
1256
1257 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1258 dbg("GPIO Status: 0x%04x", status);
1259
1260 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1261 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1262 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1263
1264 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1265
1266 if (eeprom == cpu_to_le16(0xffff)) {
1267 data->phymode = PHY_MODE_MARVELL;
1268 data->ledmode = 0;
1269 gpio0 = 1;
1270 } else {
b2d3ad29 1271 data->phymode = le16_to_cpu(eeprom) & 0x7F;
610d885d
GG
1272 data->ledmode = le16_to_cpu(eeprom) >> 8;
1273 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
1274 }
1275 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
1276
b2d3ad29 1277 /* Power up external GigaPHY through AX88178 GPIO pin */
610d885d
GG
1278 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
1279 if ((le16_to_cpu(eeprom) >> 8) != 1) {
1280 asix_write_gpio(dev, 0x003c, 30);
1281 asix_write_gpio(dev, 0x001c, 300);
1282 asix_write_gpio(dev, 0x003c, 30);
1283 } else {
1284 dbg("gpio phymode == 1 path");
1285 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1286 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1287 }
1288
b2d3ad29
GG
1289 /* Read PHYID register *AFTER* powering up PHY */
1290 phyid = asix_get_phyid(dev);
1291 dbg("PHYID=0x%08x", phyid);
1292
1293 /* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */
1294 asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, 0, 0, 0, NULL);
1295
610d885d
GG
1296 asix_sw_reset(dev, 0);
1297 msleep(150);
1298
1299 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1300 msleep(150);
1301
1302 asix_write_rx_ctl(dev, 0);
1303
1304 if (data->phymode == PHY_MODE_MARVELL) {
1305 marvell_phy_init(dev);
1306 msleep(60);
1307 } else if (data->phymode == PHY_MODE_RTL8211CL)
1308 rtl8211cl_phy_init(dev);
1309
1310 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1311 BMCR_RESET | BMCR_ANENABLE);
1312 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1313 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1314 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1315 ADVERTISE_1000FULL);
1316
1317 mii_nway_restart(&dev->mii);
1318
83e1b918
GG
1319 ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT);
1320 if (ret < 0)
1321 return ret;
610d885d 1322
83e1b918
GG
1323 ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL);
1324 if (ret < 0)
1325 return ret;
610d885d
GG
1326
1327 return 0;
610d885d
GG
1328}
1329
933a27d3
DH
1330static int ax88178_link_reset(struct usbnet *dev)
1331{
1332 u16 mode;
8ae6daca 1333 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
933a27d3 1334 struct asix_data *data = (struct asix_data *)&dev->data;
8ae6daca 1335 u32 speed;
933a27d3 1336
60b86755 1337 netdev_dbg(dev->net, "ax88178_link_reset()\n");
933a27d3
DH
1338
1339 mii_check_media(&dev->mii, 1, 1);
1340 mii_ethtool_gset(&dev->mii, &ecmd);
1341 mode = AX88178_MEDIUM_DEFAULT;
8ae6daca 1342 speed = ethtool_cmd_speed(&ecmd);
933a27d3 1343
8ae6daca 1344 if (speed == SPEED_1000)
a7f75c0c 1345 mode |= AX_MEDIUM_GM;
8ae6daca 1346 else if (speed == SPEED_100)
933a27d3
DH
1347 mode |= AX_MEDIUM_PS;
1348 else
1349 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1350
a7f75c0c
PK
1351 mode |= AX_MEDIUM_ENCK;
1352
933a27d3
DH
1353 if (ecmd.duplex == DUPLEX_FULL)
1354 mode |= AX_MEDIUM_FD;
1355 else
1356 mode &= ~AX_MEDIUM_FD;
1357
8ae6daca
DD
1358 netdev_dbg(dev->net, "ax88178_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
1359 speed, ecmd.duplex, mode);
933a27d3
DH
1360
1361 asix_write_medium_mode(dev, mode);
1362
1363 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
8ae6daca 1364 marvell_led_status(dev, speed);
933a27d3
DH
1365
1366 return 0;
1367}
1368
1369static void ax88178_set_mfb(struct usbnet *dev)
1370{
1371 u16 mfb = AX_RX_CTL_MFB_16384;
1372 u16 rxctl;
1373 u16 medium;
1374 int old_rx_urb_size = dev->rx_urb_size;
1375
1376 if (dev->hard_mtu < 2048) {
1377 dev->rx_urb_size = 2048;
1378 mfb = AX_RX_CTL_MFB_2048;
1379 } else if (dev->hard_mtu < 4096) {
1380 dev->rx_urb_size = 4096;
1381 mfb = AX_RX_CTL_MFB_4096;
1382 } else if (dev->hard_mtu < 8192) {
1383 dev->rx_urb_size = 8192;
1384 mfb = AX_RX_CTL_MFB_8192;
1385 } else if (dev->hard_mtu < 16384) {
1386 dev->rx_urb_size = 16384;
1387 mfb = AX_RX_CTL_MFB_16384;
2e55cc72 1388 }
933a27d3
DH
1389
1390 rxctl = asix_read_rx_ctl(dev);
1391 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1392
1393 medium = asix_read_medium_status(dev);
1394 if (dev->net->mtu > 1500)
1395 medium |= AX_MEDIUM_JFE;
1396 else
1397 medium &= ~AX_MEDIUM_JFE;
1398 asix_write_medium_mode(dev, medium);
1399
1400 if (dev->rx_urb_size > old_rx_urb_size)
1401 usbnet_unlink_rx_urbs(dev);
2e55cc72
DB
1402}
1403
933a27d3 1404static int ax88178_change_mtu(struct net_device *net, int new_mtu)
2e55cc72 1405{
933a27d3
DH
1406 struct usbnet *dev = netdev_priv(net);
1407 int ll_mtu = new_mtu + net->hard_header_len + 4;
2e55cc72 1408
60b86755 1409 netdev_dbg(dev->net, "ax88178_change_mtu() new_mtu=%d\n", new_mtu);
2e55cc72 1410
933a27d3
DH
1411 if (new_mtu <= 0 || ll_mtu > 16384)
1412 return -EINVAL;
1413
1414 if ((ll_mtu % dev->maxpacket) == 0)
1415 return -EDOM;
1416
1417 net->mtu = new_mtu;
1418 dev->hard_mtu = net->mtu + net->hard_header_len;
1419 ax88178_set_mfb(dev);
1420
1421 return 0;
1422}
1423
1703338c
SH
1424static const struct net_device_ops ax88178_netdev_ops = {
1425 .ndo_open = usbnet_open,
1426 .ndo_stop = usbnet_stop,
1427 .ndo_start_xmit = usbnet_start_xmit,
1428 .ndo_tx_timeout = usbnet_tx_timeout,
7f29a3ba 1429 .ndo_set_mac_address = asix_set_mac_address,
1703338c 1430 .ndo_validate_addr = eth_validate_addr,
afc4b13d 1431 .ndo_set_rx_mode = asix_set_multicast,
1703338c
SH
1432 .ndo_do_ioctl = asix_ioctl,
1433 .ndo_change_mtu = ax88178_change_mtu,
1434};
1435
933a27d3
DH
1436static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1437{
933a27d3 1438 int ret;
51bf2976 1439 u8 buf[ETH_ALEN];
79de9efd
GG
1440 struct asix_data *data = (struct asix_data *)&dev->data;
1441
1442 data->eeprom_len = AX88772_EEPROM_LEN;
933a27d3
DH
1443
1444 usbnet_get_endpoints(dev,intf);
1445
933a27d3 1446 /* Get the MAC address */
83e1b918
GG
1447 ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
1448 if (ret < 0) {
933a27d3 1449 dbg("Failed to read MAC address: %d", ret);
83e1b918 1450 return ret;
2e55cc72 1451 }
933a27d3 1452 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
2e55cc72 1453
933a27d3
DH
1454 /* Initialize MII structure */
1455 dev->mii.dev = dev->net;
1456 dev->mii.mdio_read = asix_mdio_read;
1457 dev->mii.mdio_write = asix_mdio_write;
1458 dev->mii.phy_id_mask = 0x1f;
1459 dev->mii.reg_num_mask = 0xff;
1460 dev->mii.supports_gmii = 1;
933a27d3 1461 dev->mii.phy_id = asix_get_phy_addr(dev);
1703338c
SH
1462
1463 dev->net->netdev_ops = &ax88178_netdev_ops;
933a27d3 1464 dev->net->ethtool_ops = &ax88178_ethtool_ops;
2e55cc72 1465
b2d3ad29
GG
1466 /* Blink LEDS so users know driver saw dongle */
1467 asix_sw_reset(dev, 0);
1468 msleep(150);
2e55cc72 1469
b2d3ad29
GG
1470 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1471 msleep(150);
933a27d3
DH
1472
1473 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1474 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1475 /* hard_mtu is still the default - the device does not support
1476 jumbo eth frames */
1477 dev->rx_urb_size = 2048;
1478 }
933a27d3 1479
83e1b918 1480 return 0;
2e55cc72
DB
1481}
1482
1483static const struct driver_info ax8817x_info = {
1484 .description = "ASIX AX8817x USB 2.0 Ethernet",
48b1be6a
DH
1485 .bind = ax88172_bind,
1486 .status = asix_status,
2e55cc72
DB
1487 .link_reset = ax88172_link_reset,
1488 .reset = ax88172_link_reset,
37e8273c 1489 .flags = FLAG_ETHER | FLAG_LINK_INTR,
2e55cc72
DB
1490 .data = 0x00130103,
1491};
1492
1493static const struct driver_info dlink_dub_e100_info = {
1494 .description = "DLink DUB-E100 USB Ethernet",
48b1be6a
DH
1495 .bind = ax88172_bind,
1496 .status = asix_status,
2e55cc72
DB
1497 .link_reset = ax88172_link_reset,
1498 .reset = ax88172_link_reset,
37e8273c 1499 .flags = FLAG_ETHER | FLAG_LINK_INTR,
2e55cc72
DB
1500 .data = 0x009f9d9f,
1501};
1502
1503static const struct driver_info netgear_fa120_info = {
1504 .description = "Netgear FA-120 USB Ethernet",
48b1be6a
DH
1505 .bind = ax88172_bind,
1506 .status = asix_status,
2e55cc72
DB
1507 .link_reset = ax88172_link_reset,
1508 .reset = ax88172_link_reset,
37e8273c 1509 .flags = FLAG_ETHER | FLAG_LINK_INTR,
2e55cc72
DB
1510 .data = 0x00130103,
1511};
1512
1513static const struct driver_info hawking_uf200_info = {
1514 .description = "Hawking UF200 USB Ethernet",
48b1be6a
DH
1515 .bind = ax88172_bind,
1516 .status = asix_status,
2e55cc72
DB
1517 .link_reset = ax88172_link_reset,
1518 .reset = ax88172_link_reset,
37e8273c 1519 .flags = FLAG_ETHER | FLAG_LINK_INTR,
2e55cc72
DB
1520 .data = 0x001f1d1f,
1521};
1522
1523static const struct driver_info ax88772_info = {
1524 .description = "ASIX AX88772 USB 2.0 Ethernet",
1525 .bind = ax88772_bind,
48b1be6a 1526 .status = asix_status,
2e55cc72 1527 .link_reset = ax88772_link_reset,
4ad1438f 1528 .reset = ax88772_reset,
37e8273c 1529 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
933a27d3
DH
1530 .rx_fixup = asix_rx_fixup,
1531 .tx_fixup = asix_tx_fixup,
1532};
1533
1534static const struct driver_info ax88178_info = {
1535 .description = "ASIX AX88178 USB 2.0 Ethernet",
1536 .bind = ax88178_bind,
1537 .status = asix_status,
1538 .link_reset = ax88178_link_reset,
610d885d 1539 .reset = ax88178_reset,
37e8273c 1540 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
933a27d3
DH
1541 .rx_fixup = asix_rx_fixup,
1542 .tx_fixup = asix_tx_fixup,
2e55cc72
DB
1543};
1544
1545static const struct usb_device_id products [] = {
1546{
1547 // Linksys USB200M
1548 USB_DEVICE (0x077b, 0x2226),
1549 .driver_info = (unsigned long) &ax8817x_info,
1550}, {
1551 // Netgear FA120
1552 USB_DEVICE (0x0846, 0x1040),
1553 .driver_info = (unsigned long) &netgear_fa120_info,
1554}, {
1555 // DLink DUB-E100
1556 USB_DEVICE (0x2001, 0x1a00),
1557 .driver_info = (unsigned long) &dlink_dub_e100_info,
1558}, {
1559 // Intellinet, ST Lab USB Ethernet
1560 USB_DEVICE (0x0b95, 0x1720),
1561 .driver_info = (unsigned long) &ax8817x_info,
1562}, {
1563 // Hawking UF200, TrendNet TU2-ET100
1564 USB_DEVICE (0x07b8, 0x420a),
1565 .driver_info = (unsigned long) &hawking_uf200_info,
1566}, {
39c4b38c
DH
1567 // Billionton Systems, USB2AR
1568 USB_DEVICE (0x08dd, 0x90ff),
1569 .driver_info = (unsigned long) &ax8817x_info,
2e55cc72
DB
1570}, {
1571 // ATEN UC210T
1572 USB_DEVICE (0x0557, 0x2009),
1573 .driver_info = (unsigned long) &ax8817x_info,
1574}, {
1575 // Buffalo LUA-U2-KTX
1576 USB_DEVICE (0x0411, 0x003d),
1577 .driver_info = (unsigned long) &ax8817x_info,
ac7b77f1
MD
1578}, {
1579 // Buffalo LUA-U2-GT 10/100/1000
1580 USB_DEVICE (0x0411, 0x006e),
1581 .driver_info = (unsigned long) &ax88178_info,
2e55cc72
DB
1582}, {
1583 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1584 USB_DEVICE (0x6189, 0x182d),
1585 .driver_info = (unsigned long) &ax8817x_info,
1586}, {
1587 // corega FEther USB2-TX
1588 USB_DEVICE (0x07aa, 0x0017),
1589 .driver_info = (unsigned long) &ax8817x_info,
1590}, {
1591 // Surecom EP-1427X-2
1592 USB_DEVICE (0x1189, 0x0893),
1593 .driver_info = (unsigned long) &ax8817x_info,
1594}, {
1595 // goodway corp usb gwusb2e
1596 USB_DEVICE (0x1631, 0x6200),
1597 .driver_info = (unsigned long) &ax8817x_info,
39c4b38c
DH
1598}, {
1599 // JVC MP-PRX1 Port Replicator
1600 USB_DEVICE (0x04f1, 0x3008),
1601 .driver_info = (unsigned long) &ax8817x_info,
30885909
MV
1602}, {
1603 // ASIX AX88772B 10/100
1604 USB_DEVICE (0x0b95, 0x772b),
1605 .driver_info = (unsigned long) &ax88772_info,
2e55cc72
DB
1606}, {
1607 // ASIX AX88772 10/100
39c4b38c
DH
1608 USB_DEVICE (0x0b95, 0x7720),
1609 .driver_info = (unsigned long) &ax88772_info,
7327413c
EW
1610}, {
1611 // ASIX AX88178 10/100/1000
1612 USB_DEVICE (0x0b95, 0x1780),
933a27d3 1613 .driver_info = (unsigned long) &ax88178_info,
f4680d3d
AE
1614}, {
1615 // Logitec LAN-GTJ/U2A
1616 USB_DEVICE (0x0789, 0x0160),
1617 .driver_info = (unsigned long) &ax88178_info,
5e0f76c6
DH
1618}, {
1619 // Linksys USB200M Rev 2
1620 USB_DEVICE (0x13b1, 0x0018),
1621 .driver_info = (unsigned long) &ax88772_info,
5732ce84
DH
1622}, {
1623 // 0Q0 cable ethernet
1624 USB_DEVICE (0x1557, 0x7720),
1625 .driver_info = (unsigned long) &ax88772_info,
933a27d3
DH
1626}, {
1627 // DLink DUB-E100 H/W Ver B1
1628 USB_DEVICE (0x07d1, 0x3c05),
1629 .driver_info = (unsigned long) &ax88772_info,
b923e7fc
DH
1630}, {
1631 // DLink DUB-E100 H/W Ver B1 Alternate
1632 USB_DEVICE (0x2001, 0x3c05),
1633 .driver_info = (unsigned long) &ax88772_info,
933a27d3
DH
1634}, {
1635 // Linksys USB1000
1636 USB_DEVICE (0x1737, 0x0039),
1637 .driver_info = (unsigned long) &ax88178_info,
b29cf31d
YH
1638}, {
1639 // IO-DATA ETG-US2
1640 USB_DEVICE (0x04bb, 0x0930),
1641 .driver_info = (unsigned long) &ax88178_info,
2ed22bc2
DH
1642}, {
1643 // Belkin F5D5055
1644 USB_DEVICE(0x050d, 0x5055),
1645 .driver_info = (unsigned long) &ax88178_info,
3d60efb5
AN
1646}, {
1647 // Apple USB Ethernet Adapter
1648 USB_DEVICE(0x05ac, 0x1402),
1649 .driver_info = (unsigned long) &ax88772_info,
ccf95402
JC
1650}, {
1651 // Cables-to-Go USB Ethernet Adapter
1652 USB_DEVICE(0x0b95, 0x772a),
1653 .driver_info = (unsigned long) &ax88772_info,
fef7cc08
GKH
1654}, {
1655 // ABOCOM for pci
1656 USB_DEVICE(0x14ea, 0xab11),
1657 .driver_info = (unsigned long) &ax88178_info,
1658}, {
1659 // ASIX 88772a
1660 USB_DEVICE(0x0db0, 0xa877),
1661 .driver_info = (unsigned long) &ax88772_info,
e8303a3b
AJ
1662}, {
1663 // Asus USB Ethernet Adapter
1664 USB_DEVICE (0x0b95, 0x7e2b),
1665 .driver_info = (unsigned long) &ax88772_info,
2e55cc72
DB
1666},
1667 { }, // END
1668};
1669MODULE_DEVICE_TABLE(usb, products);
1670
1671static struct usb_driver asix_driver = {
83e1b918 1672 .name = DRIVER_NAME,
2e55cc72
DB
1673 .id_table = products,
1674 .probe = usbnet_probe,
1675 .suspend = usbnet_suspend,
1676 .resume = usbnet_resume,
1677 .disconnect = usbnet_disconnect,
a11a6544 1678 .supports_autosuspend = 1,
2e55cc72
DB
1679};
1680
d632eb1b 1681module_usb_driver(asix_driver);
2e55cc72
DB
1682
1683MODULE_AUTHOR("David Hollis");
4ad1438f 1684MODULE_VERSION(DRIVER_VERSION);
2e55cc72
DB
1685MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1686MODULE_LICENSE("GPL");
1687
This page took 0.911994 seconds and 5 git commands to generate.