2 * ASIX AX8817X based USB 2.0 Ethernet Devices
3 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
4 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
5 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
6 * Copyright (c) 2002-2003 TiVo Inc.
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.
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.
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
23 // #define DEBUG // error path messages, extra info
24 // #define VERBOSE // more; success messages
26 #include <linux/module.h>
27 #include <linux/kmod.h>
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>
39 #define DRIVER_VERSION "14-Jun-2006"
40 static const char driver_name
[] = "asix";
42 /* ASIX AX8817X based USB 2.0 Ethernet Devices */
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
52 #define AX_CMD_READ_RX_CTL 0x0f
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
57 #define AX_CMD_READ_NODE_ID 0x13
58 #define AX_CMD_WRITE_IPG2 0x14
59 #define AX_CMD_WRITE_MULTI_FILTER 0x16
60 #define AX88172_CMD_READ_NODE_ID 0x17
61 #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
66 #define AX_CMD_READ_GPIOS 0x1e
67 #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
72 #define AX_MONITOR_MODE 0x01
73 #define AX_MONITOR_LINK 0x02
74 #define AX_MONITOR_MAGIC 0x04
75 #define AX_MONITOR_HSFS 0x10
77 /* AX88172 Medium Status Register values */
78 #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 )
84 #define AX_MCAST_FILTER_SIZE 8
85 #define AX_MAX_MCAST 64
87 #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
96 #define AX88772_IPG0_DEFAULT 0x15
97 #define AX88772_IPG1_DEFAULT 0x0c
98 #define AX88772_IPG2_DEFAULT 0x12
100 /* 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
114 #define AX88178_MEDIUM_DEFAULT \
115 (AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
116 AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
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 )
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
137 #define AX_DEFAULT_RX_CTL \
138 (AX_RX_CTL_SO | AX_RX_CTL_AB )
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 */
150 #define AX_EEPROM_MAGIC 0xdeadbeef
151 #define AX88172_EEPROM_LEN 0x40
152 #define AX88772_EEPROM_LEN 0xff
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
159 #define MARVELL_LED_MANUAL 0x0019
161 #define MARVELL_STATUS_HWCFG 0x0004
163 #define MARVELL_CTRL_TXDELAY 0x0002
164 #define MARVELL_CTRL_RXDELAY 0x0080
166 /* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
168 u8 multi_filter
[AX_MCAST_FILTER_SIZE
];
174 struct ax88172_int_data
{
180 } __attribute__ ((packed
));
182 static int asix_read_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
183 u16 size
, void *data
)
188 devdbg(dev
,"asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
189 cmd
, value
, index
, size
);
191 buf
= kmalloc(size
, GFP_KERNEL
);
195 err
= usb_control_msg(
197 usb_rcvctrlpipe(dev
->udev
, 0),
199 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
204 USB_CTRL_GET_TIMEOUT
);
206 memcpy(data
, buf
, size
);
215 static int asix_write_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
216 u16 size
, void *data
)
221 devdbg(dev
,"asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
222 cmd
, value
, index
, size
);
225 buf
= kmalloc(size
, GFP_KERNEL
);
228 memcpy(buf
, data
, size
);
231 err
= usb_control_msg(
233 usb_sndctrlpipe(dev
->udev
, 0),
235 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
240 USB_CTRL_SET_TIMEOUT
);
247 static void asix_async_cmd_callback(struct urb
*urb
)
249 struct usb_ctrlrequest
*req
= (struct usb_ctrlrequest
*)urb
->context
;
252 printk(KERN_DEBUG
"asix_async_cmd_callback() failed with %d",
260 asix_write_cmd_async(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
261 u16 size
, void *data
)
263 struct usb_ctrlrequest
*req
;
267 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!");
274 if ((req
= kmalloc(sizeof(struct usb_ctrlrequest
), GFP_ATOMIC
)) == NULL
) {
275 deverr(dev
, "Failed to allocate memory for control request");
280 req
->bRequestType
= USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
;
282 req
->wValue
= cpu_to_le16(value
);
283 req
->wIndex
= cpu_to_le16(index
);
284 req
->wLength
= cpu_to_le16(size
);
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
);
291 if((status
= usb_submit_urb(urb
, GFP_ATOMIC
)) < 0) {
292 deverr(dev
, "Error submitting the control message: status=%d",
299 static int asix_rx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
)
304 struct sk_buff
*ax_skb
;
307 head
= (u8
*) skb
->data
;
308 memcpy(&header
, head
, sizeof(header
));
309 le32_to_cpus(&header
);
310 packet
= head
+ sizeof(header
);
314 while (skb
->len
> 0) {
315 if ((short)(header
& 0x0000ffff) !=
316 ~((short)((header
& 0xffff0000) >> 16))) {
317 deverr(dev
,"asix_rx_fixup() Bad Header Length");
319 /* get the packet length */
320 size
= (u16
) (header
& 0x0000ffff);
322 if ((skb
->len
) - ((size
+ 1) & 0xfffe) == 0)
324 if (size
> ETH_FRAME_LEN
) {
325 deverr(dev
,"asix_rx_fixup() Bad RX Length %d", size
);
328 ax_skb
= skb_clone(skb
, GFP_ATOMIC
);
331 ax_skb
->data
= packet
;
332 skb_set_tail_pointer(ax_skb
, size
);
333 usbnet_skb_return(dev
, ax_skb
);
338 skb_pull(skb
, (size
+ 1) & 0xfffe);
343 head
= (u8
*) skb
->data
;
344 memcpy(&header
, head
, sizeof(header
));
345 le32_to_cpus(&header
);
346 packet
= head
+ sizeof(header
);
351 deverr(dev
,"asix_rx_fixup() Bad SKB Length %d", skb
->len
);
357 static struct sk_buff
*asix_tx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
,
361 int headroom
= skb_headroom(skb
);
362 int tailroom
= skb_tailroom(skb
);
364 u32 padbytes
= 0xffff0000;
366 padlen
= ((skb
->len
+ 4) % 512) ? 0 : 4;
368 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
);
372 skb_set_tail_pointer(skb
, skb
->len
);
375 struct sk_buff
*skb2
;
376 skb2
= skb_copy_expand(skb
, 4, padlen
, flags
);
377 dev_kfree_skb_any(skb
);
384 packet_len
= (((skb
->len
- 4) ^ 0x0000ffff) << 16) + (skb
->len
- 4);
385 cpu_to_le32s(&packet_len
);
386 skb_copy_to_linear_data(skb
, &packet_len
, sizeof(packet_len
));
388 if ((skb
->len
% 512) == 0) {
389 cpu_to_le32s(&padbytes
);
390 memcpy(skb_tail_pointer(skb
), &padbytes
, sizeof(padbytes
));
391 skb_put(skb
, sizeof(padbytes
));
396 static void asix_status(struct usbnet
*dev
, struct urb
*urb
)
398 struct ax88172_int_data
*event
;
401 if (urb
->actual_length
< 8)
404 event
= urb
->transfer_buffer
;
405 link
= event
->link
& 0x01;
406 if (netif_carrier_ok(dev
->net
) != link
) {
408 netif_carrier_on(dev
->net
);
409 usbnet_defer_kevent (dev
, EVENT_LINK_RESET
);
411 netif_carrier_off(dev
->net
);
412 devdbg(dev
, "Link Status is: %d", link
);
416 static inline int asix_set_sw_mii(struct usbnet
*dev
)
419 ret
= asix_write_cmd(dev
, AX_CMD_SET_SW_MII
, 0x0000, 0, 0, NULL
);
421 deverr(dev
, "Failed to enable software MII access");
425 static inline int asix_set_hw_mii(struct usbnet
*dev
)
428 ret
= asix_write_cmd(dev
, AX_CMD_SET_HW_MII
, 0x0000, 0, 0, NULL
);
430 deverr(dev
, "Failed to enable hardware MII access");
434 static inline int asix_get_phy_addr(struct usbnet
*dev
)
437 int ret
= asix_read_cmd(dev
, AX_CMD_READ_PHY_ID
, 0, 0, 2, buf
);
439 devdbg(dev
, "asix_get_phy_addr()");
442 deverr(dev
, "Error reading PHYID register: %02x", ret
);
445 devdbg(dev
, "asix_get_phy_addr() returning 0x%04x", *((__le16
*)buf
));
452 static int asix_sw_reset(struct usbnet
*dev
, u8 flags
)
456 ret
= asix_write_cmd(dev
, AX_CMD_SW_RESET
, flags
, 0, 0, NULL
);
458 deverr(dev
,"Failed to send software reset: %02x", ret
);
463 static u16
asix_read_rx_ctl(struct usbnet
*dev
)
466 int ret
= asix_read_cmd(dev
, AX_CMD_READ_RX_CTL
, 0, 0, 2, &v
);
469 deverr(dev
, "Error reading RX_CTL register: %02x", ret
);
472 ret
= le16_to_cpu(v
);
477 static int asix_write_rx_ctl(struct usbnet
*dev
, u16 mode
)
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
);
484 deverr(dev
, "Failed to write RX_CTL mode to 0x%04x: %02x",
490 static u16
asix_read_medium_status(struct usbnet
*dev
)
493 int ret
= asix_read_cmd(dev
, AX_CMD_READ_MEDIUM_STATUS
, 0, 0, 2, &v
);
496 deverr(dev
, "Error reading Medium Status register: %02x", ret
);
499 ret
= le16_to_cpu(v
);
504 static int asix_write_medium_mode(struct usbnet
*dev
, u16 mode
)
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
);
511 deverr(dev
, "Failed to write Medium Mode mode to 0x%04x: %02x",
517 static int asix_write_gpio(struct usbnet
*dev
, u16 value
, int sleep
)
521 devdbg(dev
,"asix_write_gpio() - value = 0x%04x", value
);
522 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_GPIOS
, value
, 0, 0, NULL
);
524 deverr(dev
, "Failed to write GPIO value 0x%04x: %02x",
534 * AX88772 & AX88178 have a 16-bit RX_CTL value
536 static void asix_set_multicast(struct net_device
*net
)
538 struct usbnet
*dev
= netdev_priv(net
);
539 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
540 u16 rx_ctl
= AX_DEFAULT_RX_CTL
;
542 if (net
->flags
& IFF_PROMISC
) {
543 rx_ctl
|= AX_RX_CTL_PRO
;
544 } else if (net
->flags
& IFF_ALLMULTI
545 || net
->mc_count
> AX_MAX_MCAST
) {
546 rx_ctl
|= AX_RX_CTL_AMALL
;
547 } else if (net
->mc_count
== 0) {
548 /* just broadcast and directed */
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
;
558 memset(data
->multi_filter
, 0, AX_MCAST_FILTER_SIZE
);
560 /* Build the multicast hash filter. */
561 for (i
= 0; i
< net
->mc_count
; i
++) {
564 mc_list
->dmi_addr
) >> 26;
565 data
->multi_filter
[crc_bits
>> 3] |=
567 mc_list
= mc_list
->next
;
570 asix_write_cmd_async(dev
, AX_CMD_WRITE_MULTI_FILTER
, 0, 0,
571 AX_MCAST_FILTER_SIZE
, data
->multi_filter
);
573 rx_ctl
|= AX_RX_CTL_AM
;
576 asix_write_cmd_async(dev
, AX_CMD_WRITE_RX_CTL
, rx_ctl
, 0, 0, NULL
);
579 static int asix_mdio_read(struct net_device
*netdev
, int phy_id
, int loc
)
581 struct usbnet
*dev
= netdev_priv(netdev
);
584 mutex_lock(&dev
->phy_mutex
);
585 asix_set_sw_mii(dev
);
586 asix_read_cmd(dev
, AX_CMD_READ_MII_REG
, phy_id
,
587 (__u16
)loc
, 2, &res
);
588 asix_set_hw_mii(dev
);
589 mutex_unlock(&dev
->phy_mutex
);
591 devdbg(dev
, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x", phy_id
, loc
, le16_to_cpu(res
));
593 return le16_to_cpu(res
);
597 asix_mdio_write(struct net_device
*netdev
, int phy_id
, int loc
, int val
)
599 struct usbnet
*dev
= netdev_priv(netdev
);
600 __le16 res
= cpu_to_le16(val
);
602 devdbg(dev
, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x", phy_id
, loc
, val
);
603 mutex_lock(&dev
->phy_mutex
);
604 asix_set_sw_mii(dev
);
605 asix_write_cmd(dev
, AX_CMD_WRITE_MII_REG
, phy_id
, (__u16
)loc
, 2, &res
);
606 asix_set_hw_mii(dev
);
607 mutex_unlock(&dev
->phy_mutex
);
610 /* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
611 static u32
asix_get_phyid(struct usbnet
*dev
)
616 phy_reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_PHYSID1
);
620 phy_id
= (phy_reg
& 0xffff) << 16;
622 phy_reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_PHYSID2
);
626 phy_id
|= (phy_reg
& 0xffff);
632 asix_get_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
634 struct usbnet
*dev
= netdev_priv(net
);
637 if (asix_read_cmd(dev
, AX_CMD_READ_MONITOR_MODE
, 0, 0, 1, &opt
) < 0) {
638 wolinfo
->supported
= 0;
639 wolinfo
->wolopts
= 0;
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
;
653 asix_set_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
655 struct usbnet
*dev
= netdev_priv(net
);
658 if (wolinfo
->wolopts
& WAKE_PHY
)
659 opt
|= AX_MONITOR_LINK
;
660 if (wolinfo
->wolopts
& WAKE_MAGIC
)
661 opt
|= AX_MONITOR_MAGIC
;
663 opt
|= AX_MONITOR_MODE
;
665 if (asix_write_cmd(dev
, AX_CMD_WRITE_MONITOR_MODE
,
666 opt
, 0, 0, NULL
) < 0)
672 static int asix_get_eeprom_len(struct net_device
*net
)
674 struct usbnet
*dev
= netdev_priv(net
);
675 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
677 return data
->eeprom_len
;
680 static int asix_get_eeprom(struct net_device
*net
,
681 struct ethtool_eeprom
*eeprom
, u8
*data
)
683 struct usbnet
*dev
= netdev_priv(net
);
684 __le16
*ebuf
= (__le16
*)data
;
687 /* Crude hack to ensure that we don't overwrite memory
688 * if an odd length is supplied
693 eeprom
->magic
= AX_EEPROM_MAGIC
;
695 /* ax8817x returns 2 bytes from eeprom on read */
696 for (i
=0; i
< eeprom
->len
/ 2; i
++) {
697 if (asix_read_cmd(dev
, AX_CMD_READ_EEPROM
,
698 eeprom
->offset
+ i
, 0, 2, &ebuf
[i
]) < 0)
704 static void asix_get_drvinfo (struct net_device
*net
,
705 struct ethtool_drvinfo
*info
)
707 struct usbnet
*dev
= netdev_priv(net
);
708 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
710 /* Inherit standard device info */
711 usbnet_get_drvinfo(net
, info
);
712 strncpy (info
->driver
, driver_name
, sizeof info
->driver
);
713 strncpy (info
->version
, DRIVER_VERSION
, sizeof info
->version
);
714 info
->eedump_len
= data
->eeprom_len
;
717 static u32
asix_get_link(struct net_device
*net
)
719 struct usbnet
*dev
= netdev_priv(net
);
721 return mii_link_ok(&dev
->mii
);
724 static int asix_ioctl (struct net_device
*net
, struct ifreq
*rq
, int cmd
)
726 struct usbnet
*dev
= netdev_priv(net
);
728 return generic_mii_ioctl(&dev
->mii
, if_mii(rq
), cmd
, NULL
);
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. */
734 static struct ethtool_ops ax88172_ethtool_ops
= {
735 .get_drvinfo
= asix_get_drvinfo
,
736 .get_link
= asix_get_link
,
737 .get_msglevel
= usbnet_get_msglevel
,
738 .set_msglevel
= usbnet_set_msglevel
,
739 .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
,
743 .get_settings
= usbnet_get_settings
,
744 .set_settings
= usbnet_set_settings
,
745 .nway_reset
= usbnet_nway_reset
,
748 static void ax88172_set_multicast(struct net_device
*net
)
750 struct usbnet
*dev
= netdev_priv(net
);
751 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
754 if (net
->flags
& IFF_PROMISC
) {
756 } else if (net
->flags
& IFF_ALLMULTI
757 || net
->mc_count
> AX_MAX_MCAST
) {
759 } else if (net
->mc_count
== 0) {
760 /* just broadcast and directed */
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
;
770 memset(data
->multi_filter
, 0, AX_MCAST_FILTER_SIZE
);
772 /* Build the multicast hash filter. */
773 for (i
= 0; i
< net
->mc_count
; i
++) {
776 mc_list
->dmi_addr
) >> 26;
777 data
->multi_filter
[crc_bits
>> 3] |=
779 mc_list
= mc_list
->next
;
782 asix_write_cmd_async(dev
, AX_CMD_WRITE_MULTI_FILTER
, 0, 0,
783 AX_MCAST_FILTER_SIZE
, data
->multi_filter
);
788 asix_write_cmd_async(dev
, AX_CMD_WRITE_RX_CTL
, rx_ctl
, 0, 0, NULL
);
791 static int ax88172_link_reset(struct usbnet
*dev
)
794 struct ethtool_cmd ecmd
;
796 mii_check_media(&dev
->mii
, 1, 1);
797 mii_ethtool_gset(&dev
->mii
, &ecmd
);
798 mode
= AX88172_MEDIUM_DEFAULT
;
800 if (ecmd
.duplex
!= DUPLEX_FULL
)
801 mode
|= ~AX88172_MEDIUM_FD
;
803 devdbg(dev
, "ax88172_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd
.speed
, ecmd
.duplex
, mode
);
805 asix_write_medium_mode(dev
, mode
);
810 static int ax88172_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
815 unsigned long gpio_bits
= dev
->driver_info
->data
;
816 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
818 data
->eeprom_len
= AX88172_EEPROM_LEN
;
820 usbnet_get_endpoints(dev
,intf
);
822 /* Toggle the GPIOs in a manufacturer/model specific way */
823 for (i
= 2; i
>= 0; i
--) {
824 if ((ret
= asix_write_cmd(dev
, AX_CMD_WRITE_GPIOS
,
825 (gpio_bits
>> (i
* 8)) & 0xff, 0, 0,
831 if ((ret
= asix_write_rx_ctl(dev
, 0x80)) < 0)
834 /* Get the MAC address */
835 if ((ret
= asix_read_cmd(dev
, AX88172_CMD_READ_NODE_ID
,
836 0, 0, ETH_ALEN
, buf
)) < 0) {
837 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret
);
840 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
842 /* Initialize MII structure */
843 dev
->mii
.dev
= dev
->net
;
844 dev
->mii
.mdio_read
= asix_mdio_read
;
845 dev
->mii
.mdio_write
= asix_mdio_write
;
846 dev
->mii
.phy_id_mask
= 0x3f;
847 dev
->mii
.reg_num_mask
= 0x1f;
848 dev
->mii
.phy_id
= asix_get_phy_addr(dev
);
849 dev
->net
->do_ioctl
= asix_ioctl
;
851 dev
->net
->set_multicast_list
= ax88172_set_multicast
;
852 dev
->net
->ethtool_ops
= &ax88172_ethtool_ops
;
854 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
,
856 ADVERTISE_ALL
| ADVERTISE_CSMA
| ADVERTISE_PAUSE_CAP
);
857 mii_nway_restart(&dev
->mii
);
865 static struct ethtool_ops ax88772_ethtool_ops
= {
866 .get_drvinfo
= asix_get_drvinfo
,
867 .get_link
= asix_get_link
,
868 .get_msglevel
= usbnet_get_msglevel
,
869 .set_msglevel
= usbnet_set_msglevel
,
870 .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
,
874 .get_settings
= usbnet_get_settings
,
875 .set_settings
= usbnet_set_settings
,
876 .nway_reset
= usbnet_nway_reset
,
879 static int ax88772_link_reset(struct usbnet
*dev
)
882 struct ethtool_cmd ecmd
;
884 mii_check_media(&dev
->mii
, 1, 1);
885 mii_ethtool_gset(&dev
->mii
, &ecmd
);
886 mode
= AX88772_MEDIUM_DEFAULT
;
888 if (ecmd
.speed
!= SPEED_100
)
889 mode
&= ~AX_MEDIUM_PS
;
891 if (ecmd
.duplex
!= DUPLEX_FULL
)
892 mode
&= ~AX_MEDIUM_FD
;
894 devdbg(dev
, "ax88772_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd
.speed
, ecmd
.duplex
, mode
);
896 asix_write_medium_mode(dev
, mode
);
901 static int ax88772_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
905 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
909 data
->eeprom_len
= AX88772_EEPROM_LEN
;
911 usbnet_get_endpoints(dev
,intf
);
913 if ((ret
= asix_write_gpio(dev
,
914 AX_GPIO_RSE
| AX_GPIO_GPO_2
| AX_GPIO_GPO2EN
, 5)) < 0)
917 /* 0x10 is the phy id of the embedded 10/100 ethernet phy */
918 embd_phy
= ((asix_get_phy_addr(dev
) & 0x1f) == 0x10 ? 1 : 0);
919 if ((ret
= asix_write_cmd(dev
, AX_CMD_SW_PHY_SELECT
,
920 embd_phy
, 0, 0, NULL
)) < 0) {
921 dbg("Select PHY #1 failed: %d", ret
);
925 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_IPPD
| AX_SWRESET_PRL
)) < 0)
929 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_CLEAR
)) < 0)
934 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_IPRL
)) < 0)
938 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_PRTE
)) < 0)
943 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)
948 rx_ctl
= asix_read_rx_ctl(dev
);
949 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl
);
951 /* Get the MAC address */
952 if ((ret
= asix_read_cmd(dev
, AX_CMD_READ_NODE_ID
,
953 0, 0, ETH_ALEN
, buf
)) < 0) {
954 dbg("Failed to read MAC address: %d", ret
);
957 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
959 /* Initialize MII structure */
960 dev
->mii
.dev
= dev
->net
;
961 dev
->mii
.mdio_read
= asix_mdio_read
;
962 dev
->mii
.mdio_write
= asix_mdio_write
;
963 dev
->mii
.phy_id_mask
= 0x1f;
964 dev
->mii
.reg_num_mask
= 0x1f;
965 dev
->net
->do_ioctl
= asix_ioctl
;
966 dev
->mii
.phy_id
= asix_get_phy_addr(dev
);
968 phyid
= asix_get_phyid(dev
);
969 dbg("PHYID=0x%08x", phyid
);
971 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_PRL
)) < 0)
976 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_IPRL
| AX_SWRESET_PRL
)) < 0)
981 dev
->net
->set_multicast_list
= asix_set_multicast
;
982 dev
->net
->ethtool_ops
= &ax88772_ethtool_ops
;
984 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
,
986 ADVERTISE_ALL
| ADVERTISE_CSMA
);
987 mii_nway_restart(&dev
->mii
);
989 if ((ret
= asix_write_medium_mode(dev
, AX88772_MEDIUM_DEFAULT
)) < 0)
992 if ((ret
= asix_write_cmd(dev
, AX_CMD_WRITE_IPG0
,
993 AX88772_IPG0_DEFAULT
| AX88772_IPG1_DEFAULT
,
994 AX88772_IPG2_DEFAULT
, 0, NULL
)) < 0) {
995 dbg("Write IPG,IPG1,IPG2 failed: %d", ret
);
999 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
1000 if ((ret
= asix_write_rx_ctl(dev
, AX_DEFAULT_RX_CTL
)) < 0)
1003 rx_ctl
= asix_read_rx_ctl(dev
);
1004 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl
);
1006 rx_ctl
= asix_read_medium_status(dev
);
1007 dbg("Medium Status is 0x%04x after all initializations", rx_ctl
);
1009 /* 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
1013 dev
->rx_urb_size
= 2048;
1021 static struct ethtool_ops ax88178_ethtool_ops
= {
1022 .get_drvinfo
= asix_get_drvinfo
,
1023 .get_link
= asix_get_link
,
1024 .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
,
1030 .get_settings
= usbnet_get_settings
,
1031 .set_settings
= usbnet_set_settings
,
1032 .nway_reset
= usbnet_nway_reset
,
1035 static int marvell_phy_init(struct usbnet
*dev
)
1037 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1040 devdbg(dev
,"marvell_phy_init()");
1042 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_MARVELL_STATUS
);
1043 devdbg(dev
,"MII_MARVELL_STATUS = 0x%04x", reg
);
1045 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_MARVELL_CTRL
,
1046 MARVELL_CTRL_RXDELAY
| MARVELL_CTRL_TXDELAY
);
1048 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
);
1054 reg
|= (1 + 0x0100);
1055 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
,
1056 MII_MARVELL_LED_CTRL
, reg
);
1058 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
);
1067 static int marvell_led_status(struct usbnet
*dev
, u16 speed
)
1069 u16 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MARVELL_LED_MANUAL
);
1071 devdbg(dev
, "marvell_led_status() read 0x%04x", reg
);
1073 /* Clear out the center LED bits - 0x03F0 */
1087 devdbg(dev
, "marvell_led_status() writing 0x%04x", reg
);
1088 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MARVELL_LED_MANUAL
, reg
);
1093 static int ax88178_link_reset(struct usbnet
*dev
)
1096 struct ethtool_cmd ecmd
;
1097 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1099 devdbg(dev
,"ax88178_link_reset()");
1101 mii_check_media(&dev
->mii
, 1, 1);
1102 mii_ethtool_gset(&dev
->mii
, &ecmd
);
1103 mode
= AX88178_MEDIUM_DEFAULT
;
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
;
1110 mode
&= ~(AX_MEDIUM_PS
| AX_MEDIUM_GM
);
1112 if (ecmd
.duplex
== DUPLEX_FULL
)
1113 mode
|= AX_MEDIUM_FD
;
1115 mode
&= ~AX_MEDIUM_FD
;
1117 devdbg(dev
, "ax88178_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd
.speed
, ecmd
.duplex
, mode
);
1119 asix_write_medium_mode(dev
, mode
);
1121 if (data
->phymode
== PHY_MODE_MARVELL
&& data
->ledmode
)
1122 marvell_led_status(dev
, ecmd
.speed
);
1127 static void ax88178_set_mfb(struct usbnet
*dev
)
1129 u16 mfb
= AX_RX_CTL_MFB_16384
;
1132 int old_rx_urb_size
= dev
->rx_urb_size
;
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
;
1148 rxctl
= asix_read_rx_ctl(dev
);
1149 asix_write_rx_ctl(dev
, (rxctl
& ~AX_RX_CTL_MFB_16384
) | mfb
);
1151 medium
= asix_read_medium_status(dev
);
1152 if (dev
->net
->mtu
> 1500)
1153 medium
|= AX_MEDIUM_JFE
;
1155 medium
&= ~AX_MEDIUM_JFE
;
1156 asix_write_medium_mode(dev
, medium
);
1158 if (dev
->rx_urb_size
> old_rx_urb_size
)
1159 usbnet_unlink_rx_urbs(dev
);
1162 static int ax88178_change_mtu(struct net_device
*net
, int new_mtu
)
1164 struct usbnet
*dev
= netdev_priv(net
);
1165 int ll_mtu
= new_mtu
+ net
->hard_header_len
+ 4;
1167 devdbg(dev
, "ax88178_change_mtu() new_mtu=%d", new_mtu
);
1169 if (new_mtu
<= 0 || ll_mtu
> 16384)
1172 if ((ll_mtu
% dev
->maxpacket
) == 0)
1176 dev
->hard_mtu
= net
->mtu
+ net
->hard_header_len
;
1177 ax88178_set_mfb(dev
);
1182 static int ax88178_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
1184 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1192 usbnet_get_endpoints(dev
,intf
);
1194 asix_read_cmd(dev
, AX_CMD_READ_GPIOS
, 0, 0, 1, &status
);
1195 dbg("GPIO Status: 0x%04x", status
);
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
);
1201 dbg("EEPROM index 0x17 is 0x%04x", eeprom
);
1203 if (eeprom
== cpu_to_le16(0xffff)) {
1204 data
->phymode
= PHY_MODE_MARVELL
;
1208 data
->phymode
= le16_to_cpu(eeprom
) & 7;
1209 data
->ledmode
= le16_to_cpu(eeprom
) >> 8;
1210 gpio0
= (le16_to_cpu(eeprom
) & 0x80) ? 0 : 1;
1212 dbg("GPIO0: %d, PhyMode: %d", gpio0
, data
->phymode
);
1214 asix_write_gpio(dev
, AX_GPIO_RSE
| AX_GPIO_GPO_1
| AX_GPIO_GPO1EN
, 40);
1215 if ((le16_to_cpu(eeprom
) >> 8) != 1) {
1216 asix_write_gpio(dev
, 0x003c, 30);
1217 asix_write_gpio(dev
, 0x001c, 300);
1218 asix_write_gpio(dev
, 0x003c, 30);
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);
1225 asix_sw_reset(dev
, 0);
1228 asix_sw_reset(dev
, AX_SWRESET_PRL
| AX_SWRESET_IPPD
);
1231 asix_write_rx_ctl(dev
, 0);
1233 /* Get the MAC address */
1234 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
);
1239 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
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
;
1254 phyid
= asix_get_phyid(dev
);
1255 dbg("PHYID=0x%08x", phyid
);
1257 if (data
->phymode
== PHY_MODE_MARVELL
) {
1258 marvell_phy_init(dev
);
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
);
1269 mii_nway_restart(&dev
->mii
);
1271 if ((ret
= asix_write_medium_mode(dev
, AX88178_MEDIUM_DEFAULT
)) < 0)
1274 if ((ret
= asix_write_rx_ctl(dev
, AX_DEFAULT_RX_CTL
)) < 0)
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
1281 dev
->rx_urb_size
= 2048;
1289 static const struct driver_info ax8817x_info
= {
1290 .description
= "ASIX AX8817x USB 2.0 Ethernet",
1291 .bind
= ax88172_bind
,
1292 .status
= asix_status
,
1293 .link_reset
= ax88172_link_reset
,
1294 .reset
= ax88172_link_reset
,
1295 .flags
= FLAG_ETHER
,
1299 static const struct driver_info dlink_dub_e100_info
= {
1300 .description
= "DLink DUB-E100 USB Ethernet",
1301 .bind
= ax88172_bind
,
1302 .status
= asix_status
,
1303 .link_reset
= ax88172_link_reset
,
1304 .reset
= ax88172_link_reset
,
1305 .flags
= FLAG_ETHER
,
1309 static const struct driver_info netgear_fa120_info
= {
1310 .description
= "Netgear FA-120 USB Ethernet",
1311 .bind
= ax88172_bind
,
1312 .status
= asix_status
,
1313 .link_reset
= ax88172_link_reset
,
1314 .reset
= ax88172_link_reset
,
1315 .flags
= FLAG_ETHER
,
1319 static const struct driver_info hawking_uf200_info
= {
1320 .description
= "Hawking UF200 USB Ethernet",
1321 .bind
= ax88172_bind
,
1322 .status
= asix_status
,
1323 .link_reset
= ax88172_link_reset
,
1324 .reset
= ax88172_link_reset
,
1325 .flags
= FLAG_ETHER
,
1329 static const struct driver_info ax88772_info
= {
1330 .description
= "ASIX AX88772 USB 2.0 Ethernet",
1331 .bind
= ax88772_bind
,
1332 .status
= asix_status
,
1333 .link_reset
= ax88772_link_reset
,
1334 .reset
= ax88772_link_reset
,
1335 .flags
= FLAG_ETHER
| FLAG_FRAMING_AX
,
1336 .rx_fixup
= asix_rx_fixup
,
1337 .tx_fixup
= asix_tx_fixup
,
1340 static 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
,
1351 static const struct usb_device_id products
[] = {
1354 USB_DEVICE (0x077b, 0x2226),
1355 .driver_info
= (unsigned long) &ax8817x_info
,
1358 USB_DEVICE (0x0846, 0x1040),
1359 .driver_info
= (unsigned long) &netgear_fa120_info
,
1362 USB_DEVICE (0x2001, 0x1a00),
1363 .driver_info
= (unsigned long) &dlink_dub_e100_info
,
1365 // Intellinet, ST Lab USB Ethernet
1366 USB_DEVICE (0x0b95, 0x1720),
1367 .driver_info
= (unsigned long) &ax8817x_info
,
1369 // Hawking UF200, TrendNet TU2-ET100
1370 USB_DEVICE (0x07b8, 0x420a),
1371 .driver_info
= (unsigned long) &hawking_uf200_info
,
1373 // Billionton Systems, USB2AR
1374 USB_DEVICE (0x08dd, 0x90ff),
1375 .driver_info
= (unsigned long) &ax8817x_info
,
1378 USB_DEVICE (0x0557, 0x2009),
1379 .driver_info
= (unsigned long) &ax8817x_info
,
1381 // Buffalo LUA-U2-KTX
1382 USB_DEVICE (0x0411, 0x003d),
1383 .driver_info
= (unsigned long) &ax8817x_info
,
1385 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1386 USB_DEVICE (0x6189, 0x182d),
1387 .driver_info
= (unsigned long) &ax8817x_info
,
1389 // corega FEther USB2-TX
1390 USB_DEVICE (0x07aa, 0x0017),
1391 .driver_info
= (unsigned long) &ax8817x_info
,
1393 // Surecom EP-1427X-2
1394 USB_DEVICE (0x1189, 0x0893),
1395 .driver_info
= (unsigned long) &ax8817x_info
,
1397 // goodway corp usb gwusb2e
1398 USB_DEVICE (0x1631, 0x6200),
1399 .driver_info
= (unsigned long) &ax8817x_info
,
1401 // JVC MP-PRX1 Port Replicator
1402 USB_DEVICE (0x04f1, 0x3008),
1403 .driver_info
= (unsigned long) &ax8817x_info
,
1405 // ASIX AX88772 10/100
1406 USB_DEVICE (0x0b95, 0x7720),
1407 .driver_info
= (unsigned long) &ax88772_info
,
1409 // ASIX AX88178 10/100/1000
1410 USB_DEVICE (0x0b95, 0x1780),
1411 .driver_info
= (unsigned long) &ax88178_info
,
1413 // Linksys USB200M Rev 2
1414 USB_DEVICE (0x13b1, 0x0018),
1415 .driver_info
= (unsigned long) &ax88772_info
,
1417 // 0Q0 cable ethernet
1418 USB_DEVICE (0x1557, 0x7720),
1419 .driver_info
= (unsigned long) &ax88772_info
,
1421 // DLink DUB-E100 H/W Ver B1
1422 USB_DEVICE (0x07d1, 0x3c05),
1423 .driver_info
= (unsigned long) &ax88772_info
,
1425 // DLink DUB-E100 H/W Ver B1 Alternate
1426 USB_DEVICE (0x2001, 0x3c05),
1427 .driver_info
= (unsigned long) &ax88772_info
,
1430 USB_DEVICE (0x1737, 0x0039),
1431 .driver_info
= (unsigned long) &ax88178_info
,
1434 USB_DEVICE (0x04bb, 0x0930),
1435 .driver_info
= (unsigned long) &ax88178_info
,
1438 USB_DEVICE(0x050d, 0x5055),
1439 .driver_info
= (unsigned long) &ax88178_info
,
1443 MODULE_DEVICE_TABLE(usb
, products
);
1445 static struct usb_driver asix_driver
= {
1447 .id_table
= products
,
1448 .probe
= usbnet_probe
,
1449 .suspend
= usbnet_suspend
,
1450 .resume
= usbnet_resume
,
1451 .disconnect
= usbnet_disconnect
,
1452 .supports_autosuspend
= 1,
1455 static int __init
asix_init(void)
1457 return usb_register(&asix_driver
);
1459 module_init(asix_init
);
1461 static void __exit
asix_exit(void)
1463 usb_deregister(&asix_driver
);
1465 module_exit(asix_exit
);
1467 MODULE_AUTHOR("David Hollis");
1468 MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1469 MODULE_LICENSE("GPL");