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
)
185 devdbg(dev
,"asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
186 cmd
, value
, index
, size
);
187 return usb_control_msg(
189 usb_rcvctrlpipe(dev
->udev
, 0),
191 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
196 USB_CTRL_GET_TIMEOUT
);
199 static int asix_write_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
200 u16 size
, void *data
)
202 devdbg(dev
,"asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
203 cmd
, value
, index
, size
);
204 return usb_control_msg(
206 usb_sndctrlpipe(dev
->udev
, 0),
208 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
213 USB_CTRL_SET_TIMEOUT
);
216 static void asix_async_cmd_callback(struct urb
*urb
)
218 struct usb_ctrlrequest
*req
= (struct usb_ctrlrequest
*)urb
->context
;
221 printk(KERN_DEBUG
"asix_async_cmd_callback() failed with %d",
229 asix_write_cmd_async(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
230 u16 size
, void *data
)
232 struct usb_ctrlrequest
*req
;
236 devdbg(dev
,"asix_write_cmd_async() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
237 cmd
, value
, index
, size
);
238 if ((urb
= usb_alloc_urb(0, GFP_ATOMIC
)) == NULL
) {
239 deverr(dev
, "Error allocating URB in write_cmd_async!");
243 if ((req
= kmalloc(sizeof(struct usb_ctrlrequest
), GFP_ATOMIC
)) == NULL
) {
244 deverr(dev
, "Failed to allocate memory for control request");
249 req
->bRequestType
= USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
;
251 req
->wValue
= cpu_to_le16(value
);
252 req
->wIndex
= cpu_to_le16(index
);
253 req
->wLength
= cpu_to_le16(size
);
255 usb_fill_control_urb(urb
, dev
->udev
,
256 usb_sndctrlpipe(dev
->udev
, 0),
257 (void *)req
, data
, size
,
258 asix_async_cmd_callback
, req
);
260 if((status
= usb_submit_urb(urb
, GFP_ATOMIC
)) < 0) {
261 deverr(dev
, "Error submitting the control message: status=%d",
268 static int asix_rx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
)
273 struct sk_buff
*ax_skb
;
276 head
= (u8
*) skb
->data
;
277 memcpy(&header
, head
, sizeof(header
));
278 le32_to_cpus(&header
);
279 packet
= head
+ sizeof(header
);
283 while (skb
->len
> 0) {
284 if ((short)(header
& 0x0000ffff) !=
285 ~((short)((header
& 0xffff0000) >> 16))) {
286 deverr(dev
,"asix_rx_fixup() Bad Header Length");
288 /* get the packet length */
289 size
= (u16
) (header
& 0x0000ffff);
291 if ((skb
->len
) - ((size
+ 1) & 0xfffe) == 0)
293 if (size
> ETH_FRAME_LEN
) {
294 deverr(dev
,"asix_rx_fixup() Bad RX Length %d", size
);
297 ax_skb
= skb_clone(skb
, GFP_ATOMIC
);
300 ax_skb
->data
= packet
;
301 skb_set_tail_pointer(ax_skb
, size
);
302 usbnet_skb_return(dev
, ax_skb
);
307 skb_pull(skb
, (size
+ 1) & 0xfffe);
312 head
= (u8
*) skb
->data
;
313 memcpy(&header
, head
, sizeof(header
));
314 le32_to_cpus(&header
);
315 packet
= head
+ sizeof(header
);
320 deverr(dev
,"asix_rx_fixup() Bad SKB Length %d", skb
->len
);
326 static struct sk_buff
*asix_tx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
,
330 int headroom
= skb_headroom(skb
);
331 int tailroom
= skb_tailroom(skb
);
333 u32 padbytes
= 0xffff0000;
335 padlen
= ((skb
->len
+ 4) % 512) ? 0 : 4;
337 if ((!skb_cloned(skb
))
338 && ((headroom
+ tailroom
) >= (4 + padlen
))) {
339 if ((headroom
< 4) || (tailroom
< padlen
)) {
340 skb
->data
= memmove(skb
->head
+ 4, skb
->data
, skb
->len
);
341 skb_set_tail_pointer(skb
, skb
->len
);
344 struct sk_buff
*skb2
;
345 skb2
= skb_copy_expand(skb
, 4, padlen
, flags
);
346 dev_kfree_skb_any(skb
);
353 packet_len
= (((skb
->len
- 4) ^ 0x0000ffff) << 16) + (skb
->len
- 4);
354 cpu_to_le32s(&packet_len
);
355 skb_copy_to_linear_data(skb
, &packet_len
, sizeof(packet_len
));
357 if ((skb
->len
% 512) == 0) {
358 cpu_to_le32s(&padbytes
);
359 memcpy(skb_tail_pointer(skb
), &padbytes
, sizeof(padbytes
));
360 skb_put(skb
, sizeof(padbytes
));
365 static void asix_status(struct usbnet
*dev
, struct urb
*urb
)
367 struct ax88172_int_data
*event
;
370 if (urb
->actual_length
< 8)
373 event
= urb
->transfer_buffer
;
374 link
= event
->link
& 0x01;
375 if (netif_carrier_ok(dev
->net
) != link
) {
377 netif_carrier_on(dev
->net
);
378 usbnet_defer_kevent (dev
, EVENT_LINK_RESET
);
380 netif_carrier_off(dev
->net
);
381 devdbg(dev
, "Link Status is: %d", link
);
385 static inline int asix_set_sw_mii(struct usbnet
*dev
)
388 ret
= asix_write_cmd(dev
, AX_CMD_SET_SW_MII
, 0x0000, 0, 0, NULL
);
390 deverr(dev
, "Failed to enable software MII access");
394 static inline int asix_set_hw_mii(struct usbnet
*dev
)
397 ret
= asix_write_cmd(dev
, AX_CMD_SET_HW_MII
, 0x0000, 0, 0, NULL
);
399 deverr(dev
, "Failed to enable hardware MII access");
403 static inline int asix_get_phy_addr(struct usbnet
*dev
)
408 devdbg(dev
, "asix_get_phy_addr()");
410 buf
= kmalloc(2, GFP_KERNEL
);
414 if ((ret
= asix_read_cmd(dev
, AX_CMD_READ_PHY_ID
,
415 0, 0, 2, buf
)) < 2) {
416 deverr(dev
, "Error reading PHYID register: %02x", ret
);
419 devdbg(dev
, "asix_get_phy_addr() returning 0x%04x", *((u16
*)buf
));
420 ret
= *((u8
*)buf
+ 1);
427 static int asix_sw_reset(struct usbnet
*dev
, u8 flags
)
431 ret
= asix_write_cmd(dev
, AX_CMD_SW_RESET
, flags
, 0, 0, NULL
);
433 deverr(dev
,"Failed to send software reset: %02x", ret
);
438 static u16
asix_read_rx_ctl(struct usbnet
*dev
)
443 buf
= kmalloc(2, GFP_KERNEL
);
447 if ((ret
= asix_read_cmd(dev
, AX_CMD_READ_RX_CTL
,
448 0, 0, 2, buf
)) < 2) {
449 deverr(dev
, "Error reading RX_CTL register: %02x", ret
);
452 ret
= le16_to_cpu(*((u16
*)buf
));
459 static int asix_write_rx_ctl(struct usbnet
*dev
, u16 mode
)
463 devdbg(dev
,"asix_write_rx_ctl() - mode = 0x%04x", mode
);
464 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_RX_CTL
, mode
, 0, 0, NULL
);
466 deverr(dev
, "Failed to write RX_CTL mode to 0x%04x: %02x",
472 static u16
asix_read_medium_status(struct usbnet
*dev
)
477 buf
= kmalloc(2, GFP_KERNEL
);
481 if ((ret
= asix_read_cmd(dev
, AX_CMD_READ_MEDIUM_STATUS
,
482 0, 0, 2, buf
)) < 2) {
483 deverr(dev
, "Error reading Medium Status register: %02x", ret
);
486 ret
= le16_to_cpu(*((u16
*)buf
));
493 static int asix_write_medium_mode(struct usbnet
*dev
, u16 mode
)
497 devdbg(dev
,"asix_write_medium_mode() - mode = 0x%04x", mode
);
498 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_MEDIUM_MODE
, mode
, 0, 0, NULL
);
500 deverr(dev
, "Failed to write Medium Mode mode to 0x%04x: %02x",
506 static int asix_write_gpio(struct usbnet
*dev
, u16 value
, int sleep
)
510 devdbg(dev
,"asix_write_gpio() - value = 0x%04x", value
);
511 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_GPIOS
, value
, 0, 0, NULL
);
513 deverr(dev
, "Failed to write GPIO value 0x%04x: %02x",
523 * AX88772 & AX88178 have a 16-bit RX_CTL value
525 static void asix_set_multicast(struct net_device
*net
)
527 struct usbnet
*dev
= netdev_priv(net
);
528 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
529 u16 rx_ctl
= AX_DEFAULT_RX_CTL
;
531 if (net
->flags
& IFF_PROMISC
) {
532 rx_ctl
|= AX_RX_CTL_PRO
;
533 } else if (net
->flags
& IFF_ALLMULTI
534 || net
->mc_count
> AX_MAX_MCAST
) {
535 rx_ctl
|= AX_RX_CTL_AMALL
;
536 } else if (net
->mc_count
== 0) {
537 /* just broadcast and directed */
539 /* We use the 20 byte dev->data
540 * for our 8 byte filter buffer
541 * to avoid allocating memory that
542 * is tricky to free later */
543 struct dev_mc_list
*mc_list
= net
->mc_list
;
547 memset(data
->multi_filter
, 0, AX_MCAST_FILTER_SIZE
);
549 /* Build the multicast hash filter. */
550 for (i
= 0; i
< net
->mc_count
; i
++) {
553 mc_list
->dmi_addr
) >> 26;
554 data
->multi_filter
[crc_bits
>> 3] |=
556 mc_list
= mc_list
->next
;
559 asix_write_cmd_async(dev
, AX_CMD_WRITE_MULTI_FILTER
, 0, 0,
560 AX_MCAST_FILTER_SIZE
, data
->multi_filter
);
562 rx_ctl
|= AX_RX_CTL_AM
;
565 asix_write_cmd_async(dev
, AX_CMD_WRITE_RX_CTL
, rx_ctl
, 0, 0, NULL
);
568 static int asix_mdio_read(struct net_device
*netdev
, int phy_id
, int loc
)
570 struct usbnet
*dev
= netdev_priv(netdev
);
573 mutex_lock(&dev
->phy_mutex
);
574 asix_set_sw_mii(dev
);
575 asix_read_cmd(dev
, AX_CMD_READ_MII_REG
, phy_id
,
576 (__u16
)loc
, 2, (u16
*)&res
);
577 asix_set_hw_mii(dev
);
578 mutex_unlock(&dev
->phy_mutex
);
580 devdbg(dev
, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x", phy_id
, loc
, le16_to_cpu(res
& 0xffff));
582 return le16_to_cpu(res
& 0xffff);
586 asix_mdio_write(struct net_device
*netdev
, int phy_id
, int loc
, int val
)
588 struct usbnet
*dev
= netdev_priv(netdev
);
589 u16 res
= cpu_to_le16(val
);
591 devdbg(dev
, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x", phy_id
, loc
, val
);
592 mutex_lock(&dev
->phy_mutex
);
593 asix_set_sw_mii(dev
);
594 asix_write_cmd(dev
, AX_CMD_WRITE_MII_REG
, phy_id
,
595 (__u16
)loc
, 2, (u16
*)&res
);
596 asix_set_hw_mii(dev
);
597 mutex_unlock(&dev
->phy_mutex
);
600 /* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
601 static u32
asix_get_phyid(struct usbnet
*dev
)
606 phy_reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_PHYSID1
);
610 phy_id
= (phy_reg
& 0xffff) << 16;
612 phy_reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_PHYSID2
);
616 phy_id
|= (phy_reg
& 0xffff);
622 asix_get_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
624 struct usbnet
*dev
= netdev_priv(net
);
627 if (asix_read_cmd(dev
, AX_CMD_READ_MONITOR_MODE
, 0, 0, 1, &opt
) < 0) {
628 wolinfo
->supported
= 0;
629 wolinfo
->wolopts
= 0;
632 wolinfo
->supported
= WAKE_PHY
| WAKE_MAGIC
;
633 wolinfo
->wolopts
= 0;
634 if (opt
& AX_MONITOR_MODE
) {
635 if (opt
& AX_MONITOR_LINK
)
636 wolinfo
->wolopts
|= WAKE_PHY
;
637 if (opt
& AX_MONITOR_MAGIC
)
638 wolinfo
->wolopts
|= WAKE_MAGIC
;
643 asix_set_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
645 struct usbnet
*dev
= netdev_priv(net
);
649 if (wolinfo
->wolopts
& WAKE_PHY
)
650 opt
|= AX_MONITOR_LINK
;
651 if (wolinfo
->wolopts
& WAKE_MAGIC
)
652 opt
|= AX_MONITOR_MAGIC
;
654 opt
|= AX_MONITOR_MODE
;
656 if (asix_write_cmd(dev
, AX_CMD_WRITE_MONITOR_MODE
,
657 opt
, 0, 0, &buf
) < 0)
663 static int asix_get_eeprom_len(struct net_device
*net
)
665 struct usbnet
*dev
= netdev_priv(net
);
666 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
668 return data
->eeprom_len
;
671 static int asix_get_eeprom(struct net_device
*net
,
672 struct ethtool_eeprom
*eeprom
, u8
*data
)
674 struct usbnet
*dev
= netdev_priv(net
);
675 u16
*ebuf
= (u16
*)data
;
678 /* Crude hack to ensure that we don't overwrite memory
679 * if an odd length is supplied
684 eeprom
->magic
= AX_EEPROM_MAGIC
;
686 /* ax8817x returns 2 bytes from eeprom on read */
687 for (i
=0; i
< eeprom
->len
/ 2; i
++) {
688 if (asix_read_cmd(dev
, AX_CMD_READ_EEPROM
,
689 eeprom
->offset
+ i
, 0, 2, &ebuf
[i
]) < 0)
695 static void asix_get_drvinfo (struct net_device
*net
,
696 struct ethtool_drvinfo
*info
)
698 struct usbnet
*dev
= netdev_priv(net
);
699 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
701 /* Inherit standard device info */
702 usbnet_get_drvinfo(net
, info
);
703 strncpy (info
->driver
, driver_name
, sizeof info
->driver
);
704 strncpy (info
->version
, DRIVER_VERSION
, sizeof info
->version
);
705 info
->eedump_len
= data
->eeprom_len
;
708 static u32
asix_get_link(struct net_device
*net
)
710 struct usbnet
*dev
= netdev_priv(net
);
712 return mii_link_ok(&dev
->mii
);
715 static int asix_ioctl (struct net_device
*net
, struct ifreq
*rq
, int cmd
)
717 struct usbnet
*dev
= netdev_priv(net
);
719 return generic_mii_ioctl(&dev
->mii
, if_mii(rq
), cmd
, NULL
);
722 /* We need to override some ethtool_ops so we require our
723 own structure so we don't interfere with other usbnet
724 devices that may be connected at the same time. */
725 static struct ethtool_ops ax88172_ethtool_ops
= {
726 .get_drvinfo
= asix_get_drvinfo
,
727 .get_link
= asix_get_link
,
728 .get_msglevel
= usbnet_get_msglevel
,
729 .set_msglevel
= usbnet_set_msglevel
,
730 .get_wol
= asix_get_wol
,
731 .set_wol
= asix_set_wol
,
732 .get_eeprom_len
= asix_get_eeprom_len
,
733 .get_eeprom
= asix_get_eeprom
,
734 .get_settings
= usbnet_get_settings
,
735 .set_settings
= usbnet_set_settings
,
736 .nway_reset
= usbnet_nway_reset
,
739 static void ax88172_set_multicast(struct net_device
*net
)
741 struct usbnet
*dev
= netdev_priv(net
);
742 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
745 if (net
->flags
& IFF_PROMISC
) {
747 } else if (net
->flags
& IFF_ALLMULTI
748 || net
->mc_count
> AX_MAX_MCAST
) {
750 } else if (net
->mc_count
== 0) {
751 /* just broadcast and directed */
753 /* We use the 20 byte dev->data
754 * for our 8 byte filter buffer
755 * to avoid allocating memory that
756 * is tricky to free later */
757 struct dev_mc_list
*mc_list
= net
->mc_list
;
761 memset(data
->multi_filter
, 0, AX_MCAST_FILTER_SIZE
);
763 /* Build the multicast hash filter. */
764 for (i
= 0; i
< net
->mc_count
; i
++) {
767 mc_list
->dmi_addr
) >> 26;
768 data
->multi_filter
[crc_bits
>> 3] |=
770 mc_list
= mc_list
->next
;
773 asix_write_cmd_async(dev
, AX_CMD_WRITE_MULTI_FILTER
, 0, 0,
774 AX_MCAST_FILTER_SIZE
, data
->multi_filter
);
779 asix_write_cmd_async(dev
, AX_CMD_WRITE_RX_CTL
, rx_ctl
, 0, 0, NULL
);
782 static int ax88172_link_reset(struct usbnet
*dev
)
785 struct ethtool_cmd ecmd
;
787 mii_check_media(&dev
->mii
, 1, 1);
788 mii_ethtool_gset(&dev
->mii
, &ecmd
);
789 mode
= AX88172_MEDIUM_DEFAULT
;
791 if (ecmd
.duplex
!= DUPLEX_FULL
)
792 mode
|= ~AX88172_MEDIUM_FD
;
794 devdbg(dev
, "ax88172_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd
.speed
, ecmd
.duplex
, mode
);
796 asix_write_medium_mode(dev
, mode
);
801 static int ax88172_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
806 unsigned long gpio_bits
= dev
->driver_info
->data
;
807 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
809 data
->eeprom_len
= AX88172_EEPROM_LEN
;
811 usbnet_get_endpoints(dev
,intf
);
813 buf
= kmalloc(ETH_ALEN
, GFP_KERNEL
);
819 /* Toggle the GPIOs in a manufacturer/model specific way */
820 for (i
= 2; i
>= 0; i
--) {
821 if ((ret
= asix_write_cmd(dev
, AX_CMD_WRITE_GPIOS
,
822 (gpio_bits
>> (i
* 8)) & 0xff, 0, 0,
828 if ((ret
= asix_write_rx_ctl(dev
, 0x80)) < 0)
831 /* Get the MAC address */
832 memset(buf
, 0, ETH_ALEN
);
833 if ((ret
= asix_read_cmd(dev
, AX88172_CMD_READ_NODE_ID
,
834 0, 0, 6, buf
)) < 0) {
835 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret
);
838 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
840 /* Initialize MII structure */
841 dev
->mii
.dev
= dev
->net
;
842 dev
->mii
.mdio_read
= asix_mdio_read
;
843 dev
->mii
.mdio_write
= asix_mdio_write
;
844 dev
->mii
.phy_id_mask
= 0x3f;
845 dev
->mii
.reg_num_mask
= 0x1f;
846 dev
->mii
.phy_id
= asix_get_phy_addr(dev
);
847 dev
->net
->do_ioctl
= asix_ioctl
;
849 dev
->net
->set_multicast_list
= ax88172_set_multicast
;
850 dev
->net
->ethtool_ops
= &ax88172_ethtool_ops
;
852 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_BMCR
, BMCR_RESET
);
853 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
,
854 ADVERTISE_ALL
| ADVERTISE_CSMA
| ADVERTISE_PAUSE_CAP
);
855 mii_nway_restart(&dev
->mii
);
864 static struct ethtool_ops ax88772_ethtool_ops
= {
865 .get_drvinfo
= asix_get_drvinfo
,
866 .get_link
= asix_get_link
,
867 .get_msglevel
= usbnet_get_msglevel
,
868 .set_msglevel
= usbnet_set_msglevel
,
869 .get_wol
= asix_get_wol
,
870 .set_wol
= asix_set_wol
,
871 .get_eeprom_len
= asix_get_eeprom_len
,
872 .get_eeprom
= asix_get_eeprom
,
873 .get_settings
= usbnet_get_settings
,
874 .set_settings
= usbnet_set_settings
,
875 .nway_reset
= usbnet_nway_reset
,
878 static int ax88772_link_reset(struct usbnet
*dev
)
881 struct ethtool_cmd ecmd
;
883 mii_check_media(&dev
->mii
, 1, 1);
884 mii_ethtool_gset(&dev
->mii
, &ecmd
);
885 mode
= AX88772_MEDIUM_DEFAULT
;
887 if (ecmd
.speed
!= SPEED_100
)
888 mode
&= ~AX_MEDIUM_PS
;
890 if (ecmd
.duplex
!= DUPLEX_FULL
)
891 mode
&= ~AX_MEDIUM_FD
;
893 devdbg(dev
, "ax88772_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd
.speed
, ecmd
.duplex
, mode
);
895 asix_write_medium_mode(dev
, mode
);
900 static int ax88772_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
905 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
908 data
->eeprom_len
= AX88772_EEPROM_LEN
;
910 usbnet_get_endpoints(dev
,intf
);
912 buf
= kmalloc(6, GFP_KERNEL
);
914 dbg ("Cannot allocate memory for buffer");
919 if ((ret
= asix_write_gpio(dev
,
920 AX_GPIO_RSE
| AX_GPIO_GPO_2
| AX_GPIO_GPO2EN
, 5)) < 0)
923 /* 0x10 is the phy id of the embedded 10/100 ethernet phy */
924 embd_phy
= ((asix_get_phy_addr(dev
) & 0x1f) == 0x10 ? 1 : 0);
925 if ((ret
= asix_write_cmd(dev
, AX_CMD_SW_PHY_SELECT
,
926 embd_phy
, 0, 0, buf
)) < 0) {
927 dbg("Select PHY #1 failed: %d", ret
);
931 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_IPPD
| AX_SWRESET_PRL
)) < 0)
935 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_CLEAR
)) < 0)
940 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_IPRL
)) < 0)
944 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_PRTE
)) < 0)
949 rx_ctl
= asix_read_rx_ctl(dev
);
950 dbg("RX_CTL is 0x%04x after software reset", rx_ctl
);
951 if ((ret
= asix_write_rx_ctl(dev
, 0x0000)) < 0)
954 rx_ctl
= asix_read_rx_ctl(dev
);
955 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl
);
957 /* Get the MAC address */
958 memset(buf
, 0, ETH_ALEN
);
959 if ((ret
= asix_read_cmd(dev
, AX_CMD_READ_NODE_ID
,
960 0, 0, ETH_ALEN
, buf
)) < 0) {
961 dbg("Failed to read MAC address: %d", ret
);
964 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
966 /* Initialize MII structure */
967 dev
->mii
.dev
= dev
->net
;
968 dev
->mii
.mdio_read
= asix_mdio_read
;
969 dev
->mii
.mdio_write
= asix_mdio_write
;
970 dev
->mii
.phy_id_mask
= 0x1f;
971 dev
->mii
.reg_num_mask
= 0x1f;
972 dev
->net
->do_ioctl
= asix_ioctl
;
973 dev
->mii
.phy_id
= asix_get_phy_addr(dev
);
975 phyid
= asix_get_phyid(dev
);
976 dbg("PHYID=0x%08x", phyid
);
978 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_PRL
)) < 0)
983 if ((ret
= asix_sw_reset(dev
, AX_SWRESET_IPRL
| AX_SWRESET_PRL
)) < 0)
988 dev
->net
->set_multicast_list
= asix_set_multicast
;
989 dev
->net
->ethtool_ops
= &ax88772_ethtool_ops
;
991 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_BMCR
, BMCR_RESET
);
992 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
,
993 ADVERTISE_ALL
| ADVERTISE_CSMA
);
994 mii_nway_restart(&dev
->mii
);
996 if ((ret
= asix_write_medium_mode(dev
, AX88772_MEDIUM_DEFAULT
)) < 0)
999 if ((ret
= asix_write_cmd(dev
, AX_CMD_WRITE_IPG0
,
1000 AX88772_IPG0_DEFAULT
| AX88772_IPG1_DEFAULT
,
1001 AX88772_IPG2_DEFAULT
, 0, buf
)) < 0) {
1002 dbg("Write IPG,IPG1,IPG2 failed: %d", ret
);
1006 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
1007 if ((ret
= asix_write_rx_ctl(dev
, AX_DEFAULT_RX_CTL
)) < 0)
1010 rx_ctl
= asix_read_rx_ctl(dev
);
1011 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl
);
1013 rx_ctl
= asix_read_medium_status(dev
);
1014 dbg("Medium Status is 0x%04x after all initializations", rx_ctl
);
1018 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1019 if (dev
->driver_info
->flags
& FLAG_FRAMING_AX
) {
1020 /* hard_mtu is still the default - the device does not support
1022 dev
->rx_urb_size
= 2048;
1033 static struct ethtool_ops ax88178_ethtool_ops
= {
1034 .get_drvinfo
= asix_get_drvinfo
,
1035 .get_link
= asix_get_link
,
1036 .get_msglevel
= usbnet_get_msglevel
,
1037 .set_msglevel
= usbnet_set_msglevel
,
1038 .get_wol
= asix_get_wol
,
1039 .set_wol
= asix_set_wol
,
1040 .get_eeprom_len
= asix_get_eeprom_len
,
1041 .get_eeprom
= asix_get_eeprom
,
1042 .get_settings
= usbnet_get_settings
,
1043 .set_settings
= usbnet_set_settings
,
1044 .nway_reset
= usbnet_nway_reset
,
1047 static int marvell_phy_init(struct usbnet
*dev
)
1049 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1052 devdbg(dev
,"marvell_phy_init()");
1054 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_MARVELL_STATUS
);
1055 devdbg(dev
,"MII_MARVELL_STATUS = 0x%04x", reg
);
1057 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_MARVELL_CTRL
,
1058 MARVELL_CTRL_RXDELAY
| MARVELL_CTRL_TXDELAY
);
1060 if (data
->ledmode
) {
1061 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
,
1062 MII_MARVELL_LED_CTRL
);
1063 devdbg(dev
,"MII_MARVELL_LED_CTRL (1) = 0x%04x", reg
);
1066 reg
|= (1 + 0x0100);
1067 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
,
1068 MII_MARVELL_LED_CTRL
, reg
);
1070 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
,
1071 MII_MARVELL_LED_CTRL
);
1072 devdbg(dev
,"MII_MARVELL_LED_CTRL (2) = 0x%04x", reg
);
1079 static int marvell_led_status(struct usbnet
*dev
, u16 speed
)
1081 u16 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MARVELL_LED_MANUAL
);
1083 devdbg(dev
, "marvell_led_status() read 0x%04x", reg
);
1085 /* Clear out the center LED bits - 0x03F0 */
1099 devdbg(dev
, "marvell_led_status() writing 0x%04x", reg
);
1100 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MARVELL_LED_MANUAL
, reg
);
1105 static int ax88178_link_reset(struct usbnet
*dev
)
1108 struct ethtool_cmd ecmd
;
1109 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1111 devdbg(dev
,"ax88178_link_reset()");
1113 mii_check_media(&dev
->mii
, 1, 1);
1114 mii_ethtool_gset(&dev
->mii
, &ecmd
);
1115 mode
= AX88178_MEDIUM_DEFAULT
;
1117 if (ecmd
.speed
== SPEED_1000
)
1118 mode
|= AX_MEDIUM_GM
| AX_MEDIUM_ENCK
;
1119 else if (ecmd
.speed
== SPEED_100
)
1120 mode
|= AX_MEDIUM_PS
;
1122 mode
&= ~(AX_MEDIUM_PS
| AX_MEDIUM_GM
);
1124 if (ecmd
.duplex
== DUPLEX_FULL
)
1125 mode
|= AX_MEDIUM_FD
;
1127 mode
&= ~AX_MEDIUM_FD
;
1129 devdbg(dev
, "ax88178_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd
.speed
, ecmd
.duplex
, mode
);
1131 asix_write_medium_mode(dev
, mode
);
1133 if (data
->phymode
== PHY_MODE_MARVELL
&& data
->ledmode
)
1134 marvell_led_status(dev
, ecmd
.speed
);
1139 static void ax88178_set_mfb(struct usbnet
*dev
)
1141 u16 mfb
= AX_RX_CTL_MFB_16384
;
1144 int old_rx_urb_size
= dev
->rx_urb_size
;
1146 if (dev
->hard_mtu
< 2048) {
1147 dev
->rx_urb_size
= 2048;
1148 mfb
= AX_RX_CTL_MFB_2048
;
1149 } else if (dev
->hard_mtu
< 4096) {
1150 dev
->rx_urb_size
= 4096;
1151 mfb
= AX_RX_CTL_MFB_4096
;
1152 } else if (dev
->hard_mtu
< 8192) {
1153 dev
->rx_urb_size
= 8192;
1154 mfb
= AX_RX_CTL_MFB_8192
;
1155 } else if (dev
->hard_mtu
< 16384) {
1156 dev
->rx_urb_size
= 16384;
1157 mfb
= AX_RX_CTL_MFB_16384
;
1160 rxctl
= asix_read_rx_ctl(dev
);
1161 asix_write_rx_ctl(dev
, (rxctl
& ~AX_RX_CTL_MFB_16384
) | mfb
);
1163 medium
= asix_read_medium_status(dev
);
1164 if (dev
->net
->mtu
> 1500)
1165 medium
|= AX_MEDIUM_JFE
;
1167 medium
&= ~AX_MEDIUM_JFE
;
1168 asix_write_medium_mode(dev
, medium
);
1170 if (dev
->rx_urb_size
> old_rx_urb_size
)
1171 usbnet_unlink_rx_urbs(dev
);
1174 static int ax88178_change_mtu(struct net_device
*net
, int new_mtu
)
1176 struct usbnet
*dev
= netdev_priv(net
);
1177 int ll_mtu
= new_mtu
+ net
->hard_header_len
+ 4;
1179 devdbg(dev
, "ax88178_change_mtu() new_mtu=%d", new_mtu
);
1181 if (new_mtu
<= 0 || ll_mtu
> 16384)
1184 if ((ll_mtu
% dev
->maxpacket
) == 0)
1188 dev
->hard_mtu
= net
->mtu
+ net
->hard_header_len
;
1189 ax88178_set_mfb(dev
);
1194 static int ax88178_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
1196 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1203 usbnet_get_endpoints(dev
,intf
);
1205 buf
= kmalloc(6, GFP_KERNEL
);
1207 dbg ("Cannot allocate memory for buffer");
1213 asix_read_cmd(dev
, AX_CMD_READ_GPIOS
, 0, 0, 1, &eeprom
);
1214 dbg("GPIO Status: 0x%04x", eeprom
);
1216 asix_write_cmd(dev
, AX_CMD_WRITE_ENABLE
, 0, 0, 0, NULL
);
1217 asix_read_cmd(dev
, AX_CMD_READ_EEPROM
, 0x0017, 0, 2, &eeprom
);
1218 asix_write_cmd(dev
, AX_CMD_WRITE_DISABLE
, 0, 0, 0, NULL
);
1220 dbg("EEPROM index 0x17 is 0x%04x", eeprom
);
1222 if (eeprom
== 0xffff) {
1223 data
->phymode
= PHY_MODE_MARVELL
;
1227 data
->phymode
= eeprom
& 7;
1228 data
->ledmode
= eeprom
>> 8;
1229 gpio0
= (eeprom
& 0x80) ? 0 : 1;
1231 dbg("GPIO0: %d, PhyMode: %d", gpio0
, data
->phymode
);
1233 asix_write_gpio(dev
, AX_GPIO_RSE
| AX_GPIO_GPO_1
| AX_GPIO_GPO1EN
, 40);
1234 if ((eeprom
>> 8) != 1) {
1235 asix_write_gpio(dev
, 0x003c, 30);
1236 asix_write_gpio(dev
, 0x001c, 300);
1237 asix_write_gpio(dev
, 0x003c, 30);
1239 dbg("gpio phymode == 1 path");
1240 asix_write_gpio(dev
, AX_GPIO_GPO1EN
, 30);
1241 asix_write_gpio(dev
, AX_GPIO_GPO1EN
| AX_GPIO_GPO_1
, 30);
1244 asix_sw_reset(dev
, 0);
1247 asix_sw_reset(dev
, AX_SWRESET_PRL
| AX_SWRESET_IPPD
);
1250 asix_write_rx_ctl(dev
, 0);
1252 /* Get the MAC address */
1253 memset(buf
, 0, ETH_ALEN
);
1254 if ((ret
= asix_read_cmd(dev
, AX_CMD_READ_NODE_ID
,
1255 0, 0, ETH_ALEN
, buf
)) < 0) {
1256 dbg("Failed to read MAC address: %d", ret
);
1259 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
1261 /* Initialize MII structure */
1262 dev
->mii
.dev
= dev
->net
;
1263 dev
->mii
.mdio_read
= asix_mdio_read
;
1264 dev
->mii
.mdio_write
= asix_mdio_write
;
1265 dev
->mii
.phy_id_mask
= 0x1f;
1266 dev
->mii
.reg_num_mask
= 0xff;
1267 dev
->mii
.supports_gmii
= 1;
1268 dev
->net
->do_ioctl
= asix_ioctl
;
1269 dev
->mii
.phy_id
= asix_get_phy_addr(dev
);
1270 dev
->net
->set_multicast_list
= asix_set_multicast
;
1271 dev
->net
->ethtool_ops
= &ax88178_ethtool_ops
;
1272 dev
->net
->change_mtu
= &ax88178_change_mtu
;
1274 phyid
= asix_get_phyid(dev
);
1275 dbg("PHYID=0x%08x", phyid
);
1277 if (data
->phymode
== PHY_MODE_MARVELL
) {
1278 marvell_phy_init(dev
);
1282 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_BMCR
,
1283 BMCR_RESET
| BMCR_ANENABLE
);
1284 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
,
1285 ADVERTISE_ALL
| ADVERTISE_CSMA
| ADVERTISE_PAUSE_CAP
);
1286 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_CTRL1000
,
1287 ADVERTISE_1000FULL
);
1289 mii_nway_restart(&dev
->mii
);
1291 if ((ret
= asix_write_medium_mode(dev
, AX88178_MEDIUM_DEFAULT
)) < 0)
1294 if ((ret
= asix_write_rx_ctl(dev
, AX_DEFAULT_RX_CTL
)) < 0)
1299 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1300 if (dev
->driver_info
->flags
& FLAG_FRAMING_AX
) {
1301 /* hard_mtu is still the default - the device does not support
1303 dev
->rx_urb_size
= 2048;
1314 static const struct driver_info ax8817x_info
= {
1315 .description
= "ASIX AX8817x USB 2.0 Ethernet",
1316 .bind
= ax88172_bind
,
1317 .status
= asix_status
,
1318 .link_reset
= ax88172_link_reset
,
1319 .reset
= ax88172_link_reset
,
1320 .flags
= FLAG_ETHER
,
1324 static const struct driver_info dlink_dub_e100_info
= {
1325 .description
= "DLink DUB-E100 USB Ethernet",
1326 .bind
= ax88172_bind
,
1327 .status
= asix_status
,
1328 .link_reset
= ax88172_link_reset
,
1329 .reset
= ax88172_link_reset
,
1330 .flags
= FLAG_ETHER
,
1334 static const struct driver_info netgear_fa120_info
= {
1335 .description
= "Netgear FA-120 USB Ethernet",
1336 .bind
= ax88172_bind
,
1337 .status
= asix_status
,
1338 .link_reset
= ax88172_link_reset
,
1339 .reset
= ax88172_link_reset
,
1340 .flags
= FLAG_ETHER
,
1344 static const struct driver_info hawking_uf200_info
= {
1345 .description
= "Hawking UF200 USB Ethernet",
1346 .bind
= ax88172_bind
,
1347 .status
= asix_status
,
1348 .link_reset
= ax88172_link_reset
,
1349 .reset
= ax88172_link_reset
,
1350 .flags
= FLAG_ETHER
,
1354 static const struct driver_info ax88772_info
= {
1355 .description
= "ASIX AX88772 USB 2.0 Ethernet",
1356 .bind
= ax88772_bind
,
1357 .status
= asix_status
,
1358 .link_reset
= ax88772_link_reset
,
1359 .reset
= ax88772_link_reset
,
1360 .flags
= FLAG_ETHER
| FLAG_FRAMING_AX
,
1361 .rx_fixup
= asix_rx_fixup
,
1362 .tx_fixup
= asix_tx_fixup
,
1365 static const struct driver_info ax88178_info
= {
1366 .description
= "ASIX AX88178 USB 2.0 Ethernet",
1367 .bind
= ax88178_bind
,
1368 .status
= asix_status
,
1369 .link_reset
= ax88178_link_reset
,
1370 .reset
= ax88178_link_reset
,
1371 .flags
= FLAG_ETHER
| FLAG_FRAMING_AX
,
1372 .rx_fixup
= asix_rx_fixup
,
1373 .tx_fixup
= asix_tx_fixup
,
1376 static const struct usb_device_id products
[] = {
1379 USB_DEVICE (0x077b, 0x2226),
1380 .driver_info
= (unsigned long) &ax8817x_info
,
1383 USB_DEVICE (0x0846, 0x1040),
1384 .driver_info
= (unsigned long) &netgear_fa120_info
,
1387 USB_DEVICE (0x2001, 0x1a00),
1388 .driver_info
= (unsigned long) &dlink_dub_e100_info
,
1390 // Intellinet, ST Lab USB Ethernet
1391 USB_DEVICE (0x0b95, 0x1720),
1392 .driver_info
= (unsigned long) &ax8817x_info
,
1394 // Hawking UF200, TrendNet TU2-ET100
1395 USB_DEVICE (0x07b8, 0x420a),
1396 .driver_info
= (unsigned long) &hawking_uf200_info
,
1398 // Billionton Systems, USB2AR
1399 USB_DEVICE (0x08dd, 0x90ff),
1400 .driver_info
= (unsigned long) &ax8817x_info
,
1403 USB_DEVICE (0x0557, 0x2009),
1404 .driver_info
= (unsigned long) &ax8817x_info
,
1406 // Buffalo LUA-U2-KTX
1407 USB_DEVICE (0x0411, 0x003d),
1408 .driver_info
= (unsigned long) &ax8817x_info
,
1410 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1411 USB_DEVICE (0x6189, 0x182d),
1412 .driver_info
= (unsigned long) &ax8817x_info
,
1414 // corega FEther USB2-TX
1415 USB_DEVICE (0x07aa, 0x0017),
1416 .driver_info
= (unsigned long) &ax8817x_info
,
1418 // Surecom EP-1427X-2
1419 USB_DEVICE (0x1189, 0x0893),
1420 .driver_info
= (unsigned long) &ax8817x_info
,
1422 // goodway corp usb gwusb2e
1423 USB_DEVICE (0x1631, 0x6200),
1424 .driver_info
= (unsigned long) &ax8817x_info
,
1426 // JVC MP-PRX1 Port Replicator
1427 USB_DEVICE (0x04f1, 0x3008),
1428 .driver_info
= (unsigned long) &ax8817x_info
,
1430 // ASIX AX88772 10/100
1431 USB_DEVICE (0x0b95, 0x7720),
1432 .driver_info
= (unsigned long) &ax88772_info
,
1434 // ASIX AX88178 10/100/1000
1435 USB_DEVICE (0x0b95, 0x1780),
1436 .driver_info
= (unsigned long) &ax88178_info
,
1438 // Linksys USB200M Rev 2
1439 USB_DEVICE (0x13b1, 0x0018),
1440 .driver_info
= (unsigned long) &ax88772_info
,
1442 // 0Q0 cable ethernet
1443 USB_DEVICE (0x1557, 0x7720),
1444 .driver_info
= (unsigned long) &ax88772_info
,
1446 // DLink DUB-E100 H/W Ver B1
1447 USB_DEVICE (0x07d1, 0x3c05),
1448 .driver_info
= (unsigned long) &ax88772_info
,
1450 // DLink DUB-E100 H/W Ver B1 Alternate
1451 USB_DEVICE (0x2001, 0x3c05),
1452 .driver_info
= (unsigned long) &ax88772_info
,
1455 USB_DEVICE (0x1737, 0x0039),
1456 .driver_info
= (unsigned long) &ax88178_info
,
1459 USB_DEVICE (0x04bb, 0x0930),
1460 .driver_info
= (unsigned long) &ax88178_info
,
1463 USB_DEVICE(0x050d, 0x5055),
1464 .driver_info
= (unsigned long) &ax88178_info
,
1468 MODULE_DEVICE_TABLE(usb
, products
);
1470 static struct usb_driver asix_driver
= {
1472 .id_table
= products
,
1473 .probe
= usbnet_probe
,
1474 .suspend
= usbnet_suspend
,
1475 .resume
= usbnet_resume
,
1476 .disconnect
= usbnet_disconnect
,
1477 .supports_autosuspend
= 1,
1480 static int __init
asix_init(void)
1482 return usb_register(&asix_driver
);
1484 module_init(asix_init
);
1486 static void __exit
asix_exit(void)
1488 usb_deregister(&asix_driver
);
1490 module_exit(asix_exit
);
1492 MODULE_AUTHOR("David Hollis");
1493 MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1494 MODULE_LICENSE("GPL");