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>
36 #include <linux/usb/usbnet.h>
37 #include <linux/slab.h>
38 #include <linux/if_vlan.h>
40 #define DRIVER_VERSION "22-Dec-2011"
41 #define DRIVER_NAME "asix"
43 /* ASIX AX8817X based USB 2.0 Ethernet Devices */
45 #define AX_CMD_SET_SW_MII 0x06
46 #define AX_CMD_READ_MII_REG 0x07
47 #define AX_CMD_WRITE_MII_REG 0x08
48 #define AX_CMD_SET_HW_MII 0x0a
49 #define AX_CMD_READ_EEPROM 0x0b
50 #define AX_CMD_WRITE_EEPROM 0x0c
51 #define AX_CMD_WRITE_ENABLE 0x0d
52 #define AX_CMD_WRITE_DISABLE 0x0e
53 #define AX_CMD_READ_RX_CTL 0x0f
54 #define AX_CMD_WRITE_RX_CTL 0x10
55 #define AX_CMD_READ_IPG012 0x11
56 #define AX_CMD_WRITE_IPG0 0x12
57 #define AX_CMD_WRITE_IPG1 0x13
58 #define AX_CMD_READ_NODE_ID 0x13
59 #define AX_CMD_WRITE_NODE_ID 0x14
60 #define AX_CMD_WRITE_IPG2 0x14
61 #define AX_CMD_WRITE_MULTI_FILTER 0x16
62 #define AX88172_CMD_READ_NODE_ID 0x17
63 #define AX_CMD_READ_PHY_ID 0x19
64 #define AX_CMD_READ_MEDIUM_STATUS 0x1a
65 #define AX_CMD_WRITE_MEDIUM_MODE 0x1b
66 #define AX_CMD_READ_MONITOR_MODE 0x1c
67 #define AX_CMD_WRITE_MONITOR_MODE 0x1d
68 #define AX_CMD_READ_GPIOS 0x1e
69 #define AX_CMD_WRITE_GPIOS 0x1f
70 #define AX_CMD_SW_RESET 0x20
71 #define AX_CMD_SW_PHY_STATUS 0x21
72 #define AX_CMD_SW_PHY_SELECT 0x22
74 #define AX_MONITOR_MODE 0x01
75 #define AX_MONITOR_LINK 0x02
76 #define AX_MONITOR_MAGIC 0x04
77 #define AX_MONITOR_HSFS 0x10
79 /* AX88172 Medium Status Register values */
80 #define AX88172_MEDIUM_FD 0x02
81 #define AX88172_MEDIUM_TX 0x04
82 #define AX88172_MEDIUM_FC 0x10
83 #define AX88172_MEDIUM_DEFAULT \
84 ( AX88172_MEDIUM_FD | AX88172_MEDIUM_TX | AX88172_MEDIUM_FC )
86 #define AX_MCAST_FILTER_SIZE 8
87 #define AX_MAX_MCAST 64
89 #define AX_SWRESET_CLEAR 0x00
90 #define AX_SWRESET_RR 0x01
91 #define AX_SWRESET_RT 0x02
92 #define AX_SWRESET_PRTE 0x04
93 #define AX_SWRESET_PRL 0x08
94 #define AX_SWRESET_BZ 0x10
95 #define AX_SWRESET_IPRL 0x20
96 #define AX_SWRESET_IPPD 0x40
98 #define AX88772_IPG0_DEFAULT 0x15
99 #define AX88772_IPG1_DEFAULT 0x0c
100 #define AX88772_IPG2_DEFAULT 0x12
102 /* AX88772 & AX88178 Medium Mode Register */
103 #define AX_MEDIUM_PF 0x0080
104 #define AX_MEDIUM_JFE 0x0040
105 #define AX_MEDIUM_TFC 0x0020
106 #define AX_MEDIUM_RFC 0x0010
107 #define AX_MEDIUM_ENCK 0x0008
108 #define AX_MEDIUM_AC 0x0004
109 #define AX_MEDIUM_FD 0x0002
110 #define AX_MEDIUM_GM 0x0001
111 #define AX_MEDIUM_SM 0x1000
112 #define AX_MEDIUM_SBP 0x0800
113 #define AX_MEDIUM_PS 0x0200
114 #define AX_MEDIUM_RE 0x0100
116 #define AX88178_MEDIUM_DEFAULT \
117 (AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
118 AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
121 #define AX88772_MEDIUM_DEFAULT \
122 (AX_MEDIUM_FD | AX_MEDIUM_RFC | \
123 AX_MEDIUM_TFC | AX_MEDIUM_PS | \
124 AX_MEDIUM_AC | AX_MEDIUM_RE)
126 /* AX88772 & AX88178 RX_CTL values */
127 #define AX_RX_CTL_SO 0x0080
128 #define AX_RX_CTL_AP 0x0020
129 #define AX_RX_CTL_AM 0x0010
130 #define AX_RX_CTL_AB 0x0008
131 #define AX_RX_CTL_SEP 0x0004
132 #define AX_RX_CTL_AMALL 0x0002
133 #define AX_RX_CTL_PRO 0x0001
134 #define AX_RX_CTL_MFB_2048 0x0000
135 #define AX_RX_CTL_MFB_4096 0x0100
136 #define AX_RX_CTL_MFB_8192 0x0200
137 #define AX_RX_CTL_MFB_16384 0x0300
139 #define AX_DEFAULT_RX_CTL (AX_RX_CTL_SO | AX_RX_CTL_AB)
141 /* GPIO 0 .. 2 toggles */
142 #define AX_GPIO_GPO0EN 0x01 /* GPIO0 Output enable */
143 #define AX_GPIO_GPO_0 0x02 /* GPIO0 Output value */
144 #define AX_GPIO_GPO1EN 0x04 /* GPIO1 Output enable */
145 #define AX_GPIO_GPO_1 0x08 /* GPIO1 Output value */
146 #define AX_GPIO_GPO2EN 0x10 /* GPIO2 Output enable */
147 #define AX_GPIO_GPO_2 0x20 /* GPIO2 Output value */
148 #define AX_GPIO_RESERVED 0x40 /* Reserved */
149 #define AX_GPIO_RSE 0x80 /* Reload serial EEPROM */
151 #define AX_EEPROM_MAGIC 0xdeadbeef
152 #define AX88172_EEPROM_LEN 0x40
153 #define AX88772_EEPROM_LEN 0xff
155 #define PHY_MODE_MARVELL 0x0000
156 #define MII_MARVELL_LED_CTRL 0x0018
157 #define MII_MARVELL_STATUS 0x001b
158 #define MII_MARVELL_CTRL 0x0014
160 #define MARVELL_LED_MANUAL 0x0019
162 #define MARVELL_STATUS_HWCFG 0x0004
164 #define MARVELL_CTRL_TXDELAY 0x0002
165 #define MARVELL_CTRL_RXDELAY 0x0080
167 #define PHY_MODE_RTL8211CL 0x000C
169 /* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
171 u8 multi_filter
[AX_MCAST_FILTER_SIZE
];
172 u8 mac_addr
[ETH_ALEN
];
178 struct ax88172_int_data
{
186 static int asix_read_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
187 u16 size
, void *data
)
192 netdev_dbg(dev
->net
, "asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
193 cmd
, value
, index
, size
);
195 buf
= kmalloc(size
, GFP_KERNEL
);
199 err
= usb_control_msg(
201 usb_rcvctrlpipe(dev
->udev
, 0),
203 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
208 USB_CTRL_GET_TIMEOUT
);
210 memcpy(data
, buf
, size
);
219 static int asix_write_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
220 u16 size
, void *data
)
225 netdev_dbg(dev
->net
, "asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
226 cmd
, value
, index
, size
);
229 buf
= kmemdup(data
, size
, GFP_KERNEL
);
234 err
= usb_control_msg(
236 usb_sndctrlpipe(dev
->udev
, 0),
238 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
243 USB_CTRL_SET_TIMEOUT
);
250 static void asix_async_cmd_callback(struct urb
*urb
)
252 struct usb_ctrlrequest
*req
= (struct usb_ctrlrequest
*)urb
->context
;
253 int status
= urb
->status
;
256 printk(KERN_DEBUG
"asix_async_cmd_callback() failed with %d",
264 asix_write_cmd_async(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
265 u16 size
, void *data
)
267 struct usb_ctrlrequest
*req
;
271 netdev_dbg(dev
->net
, "asix_write_cmd_async() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
272 cmd
, value
, index
, size
);
274 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
276 netdev_err(dev
->net
, "Error allocating URB in write_cmd_async!\n");
280 req
= kmalloc(sizeof(struct usb_ctrlrequest
), GFP_ATOMIC
);
282 netdev_err(dev
->net
, "Failed to allocate memory for control request\n");
287 req
->bRequestType
= USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
;
289 req
->wValue
= cpu_to_le16(value
);
290 req
->wIndex
= cpu_to_le16(index
);
291 req
->wLength
= cpu_to_le16(size
);
293 usb_fill_control_urb(urb
, dev
->udev
,
294 usb_sndctrlpipe(dev
->udev
, 0),
295 (void *)req
, data
, size
,
296 asix_async_cmd_callback
, req
);
298 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
300 netdev_err(dev
->net
, "Error submitting the control message: status=%d\n",
307 static int asix_rx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
)
311 while (offset
+ sizeof(u32
) < skb
->len
) {
312 struct sk_buff
*ax_skb
;
314 u32 header
= get_unaligned_le32(skb
->data
+ offset
);
316 offset
+= sizeof(u32
);
318 /* get the packet length */
319 size
= (u16
) (header
& 0x7ff);
320 if (size
!= ((~header
>> 16) & 0x07ff)) {
321 netdev_err(dev
->net
, "asix_rx_fixup() Bad Header Length\n");
325 if ((size
> dev
->net
->mtu
+ ETH_HLEN
+ VLAN_HLEN
) ||
326 (size
+ offset
> skb
->len
)) {
327 netdev_err(dev
->net
, "asix_rx_fixup() Bad RX Length %d\n",
331 ax_skb
= netdev_alloc_skb_ip_align(dev
->net
, size
);
335 skb_put(ax_skb
, size
);
336 memcpy(ax_skb
->data
, skb
->data
+ offset
, size
);
337 usbnet_skb_return(dev
, ax_skb
);
339 offset
+= (size
+ 1) & 0xfffe;
342 if (skb
->len
!= offset
) {
343 netdev_err(dev
->net
, "asix_rx_fixup() Bad SKB Length %d\n",
350 static struct sk_buff
*asix_tx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
,
354 int headroom
= skb_headroom(skb
);
355 int tailroom
= skb_tailroom(skb
);
357 u32 padbytes
= 0xffff0000;
359 padlen
= ((skb
->len
+ 4) & (dev
->maxpacket
- 1)) ? 0 : 4;
361 /* We need to push 4 bytes in front of frame (packet_len)
362 * and maybe add 4 bytes after the end (if padlen is 4)
364 * Avoid skb_copy_expand() expensive call, using following rules :
365 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
366 * is false (and if we have 4 bytes of headroom)
367 * - We are allowed to put 4 bytes at tail if skb_cloned()
368 * is false (and if we have 4 bytes of tailroom)
370 * TCP packets for example are cloned, but skb_header_release()
371 * was called in tcp stack, allowing us to use headroom for our needs.
373 if (!skb_header_cloned(skb
) &&
374 !(padlen
&& skb_cloned(skb
)) &&
375 headroom
+ tailroom
>= 4 + padlen
) {
376 /* following should not happen, but better be safe */
379 skb
->data
= memmove(skb
->head
+ 4, skb
->data
, skb
->len
);
380 skb_set_tail_pointer(skb
, skb
->len
);
383 struct sk_buff
*skb2
;
385 skb2
= skb_copy_expand(skb
, 4, padlen
, flags
);
386 dev_kfree_skb_any(skb
);
392 packet_len
= ((skb
->len
^ 0x0000ffff) << 16) + skb
->len
;
394 cpu_to_le32s(&packet_len
);
395 skb_copy_to_linear_data(skb
, &packet_len
, sizeof(packet_len
));
398 cpu_to_le32s(&padbytes
);
399 memcpy(skb_tail_pointer(skb
), &padbytes
, sizeof(padbytes
));
400 skb_put(skb
, sizeof(padbytes
));
405 static void asix_status(struct usbnet
*dev
, struct urb
*urb
)
407 struct ax88172_int_data
*event
;
410 if (urb
->actual_length
< 8)
413 event
= urb
->transfer_buffer
;
414 link
= event
->link
& 0x01;
415 if (netif_carrier_ok(dev
->net
) != link
) {
417 netif_carrier_on(dev
->net
);
418 usbnet_defer_kevent (dev
, EVENT_LINK_RESET
);
420 netif_carrier_off(dev
->net
);
421 netdev_dbg(dev
->net
, "Link Status is: %d\n", link
);
425 static inline int asix_set_sw_mii(struct usbnet
*dev
)
428 ret
= asix_write_cmd(dev
, AX_CMD_SET_SW_MII
, 0x0000, 0, 0, NULL
);
430 netdev_err(dev
->net
, "Failed to enable software MII access\n");
434 static inline int asix_set_hw_mii(struct usbnet
*dev
)
437 ret
= asix_write_cmd(dev
, AX_CMD_SET_HW_MII
, 0x0000, 0, 0, NULL
);
439 netdev_err(dev
->net
, "Failed to enable hardware MII access\n");
443 static inline int asix_get_phy_addr(struct usbnet
*dev
)
446 int ret
= asix_read_cmd(dev
, AX_CMD_READ_PHY_ID
, 0, 0, 2, buf
);
448 netdev_dbg(dev
->net
, "asix_get_phy_addr()\n");
451 netdev_err(dev
->net
, "Error reading PHYID register: %02x\n", ret
);
454 netdev_dbg(dev
->net
, "asix_get_phy_addr() returning 0x%04x\n",
462 static int asix_sw_reset(struct usbnet
*dev
, u8 flags
)
466 ret
= asix_write_cmd(dev
, AX_CMD_SW_RESET
, flags
, 0, 0, NULL
);
468 netdev_err(dev
->net
, "Failed to send software reset: %02x\n", ret
);
473 static u16
asix_read_rx_ctl(struct usbnet
*dev
)
476 int ret
= asix_read_cmd(dev
, AX_CMD_READ_RX_CTL
, 0, 0, 2, &v
);
479 netdev_err(dev
->net
, "Error reading RX_CTL register: %02x\n", ret
);
482 ret
= le16_to_cpu(v
);
487 static int asix_write_rx_ctl(struct usbnet
*dev
, u16 mode
)
491 netdev_dbg(dev
->net
, "asix_write_rx_ctl() - mode = 0x%04x\n", mode
);
492 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_RX_CTL
, mode
, 0, 0, NULL
);
494 netdev_err(dev
->net
, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
500 static u16
asix_read_medium_status(struct usbnet
*dev
)
503 int ret
= asix_read_cmd(dev
, AX_CMD_READ_MEDIUM_STATUS
, 0, 0, 2, &v
);
506 netdev_err(dev
->net
, "Error reading Medium Status register: %02x\n",
508 return ret
; /* TODO: callers not checking for error ret */
511 return le16_to_cpu(v
);
515 static int asix_write_medium_mode(struct usbnet
*dev
, u16 mode
)
519 netdev_dbg(dev
->net
, "asix_write_medium_mode() - mode = 0x%04x\n", mode
);
520 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_MEDIUM_MODE
, mode
, 0, 0, NULL
);
522 netdev_err(dev
->net
, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
528 static int asix_write_gpio(struct usbnet
*dev
, u16 value
, int sleep
)
532 netdev_dbg(dev
->net
, "asix_write_gpio() - value = 0x%04x\n", value
);
533 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_GPIOS
, value
, 0, 0, NULL
);
535 netdev_err(dev
->net
, "Failed to write GPIO value 0x%04x: %02x\n",
545 * AX88772 & AX88178 have a 16-bit RX_CTL value
547 static void asix_set_multicast(struct net_device
*net
)
549 struct usbnet
*dev
= netdev_priv(net
);
550 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
551 u16 rx_ctl
= AX_DEFAULT_RX_CTL
;
553 if (net
->flags
& IFF_PROMISC
) {
554 rx_ctl
|= AX_RX_CTL_PRO
;
555 } else if (net
->flags
& IFF_ALLMULTI
||
556 netdev_mc_count(net
) > AX_MAX_MCAST
) {
557 rx_ctl
|= AX_RX_CTL_AMALL
;
558 } else if (netdev_mc_empty(net
)) {
559 /* just broadcast and directed */
561 /* We use the 20 byte dev->data
562 * for our 8 byte filter buffer
563 * to avoid allocating memory that
564 * is tricky to free later */
565 struct netdev_hw_addr
*ha
;
568 memset(data
->multi_filter
, 0, AX_MCAST_FILTER_SIZE
);
570 /* Build the multicast hash filter. */
571 netdev_for_each_mc_addr(ha
, net
) {
572 crc_bits
= ether_crc(ETH_ALEN
, ha
->addr
) >> 26;
573 data
->multi_filter
[crc_bits
>> 3] |=
577 asix_write_cmd_async(dev
, AX_CMD_WRITE_MULTI_FILTER
, 0, 0,
578 AX_MCAST_FILTER_SIZE
, data
->multi_filter
);
580 rx_ctl
|= AX_RX_CTL_AM
;
583 asix_write_cmd_async(dev
, AX_CMD_WRITE_RX_CTL
, rx_ctl
, 0, 0, NULL
);
586 static int asix_mdio_read(struct net_device
*netdev
, int phy_id
, int loc
)
588 struct usbnet
*dev
= netdev_priv(netdev
);
591 mutex_lock(&dev
->phy_mutex
);
592 asix_set_sw_mii(dev
);
593 asix_read_cmd(dev
, AX_CMD_READ_MII_REG
, phy_id
,
594 (__u16
)loc
, 2, &res
);
595 asix_set_hw_mii(dev
);
596 mutex_unlock(&dev
->phy_mutex
);
598 netdev_dbg(dev
->net
, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
599 phy_id
, loc
, le16_to_cpu(res
));
601 return le16_to_cpu(res
);
605 asix_mdio_write(struct net_device
*netdev
, int phy_id
, int loc
, int val
)
607 struct usbnet
*dev
= netdev_priv(netdev
);
608 __le16 res
= cpu_to_le16(val
);
610 netdev_dbg(dev
->net
, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
612 mutex_lock(&dev
->phy_mutex
);
613 asix_set_sw_mii(dev
);
614 asix_write_cmd(dev
, AX_CMD_WRITE_MII_REG
, phy_id
, (__u16
)loc
, 2, &res
);
615 asix_set_hw_mii(dev
);
616 mutex_unlock(&dev
->phy_mutex
);
619 /* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
620 static u32
asix_get_phyid(struct usbnet
*dev
)
626 /* Poll for the rare case the FW or phy isn't ready yet. */
627 for (i
= 0; i
< 100; i
++) {
628 phy_reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_PHYSID1
);
629 if (phy_reg
!= 0 && phy_reg
!= 0xFFFF)
634 if (phy_reg
<= 0 || phy_reg
== 0xFFFF)
637 phy_id
= (phy_reg
& 0xffff) << 16;
639 phy_reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_PHYSID2
);
643 phy_id
|= (phy_reg
& 0xffff);
649 asix_get_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
651 struct usbnet
*dev
= netdev_priv(net
);
654 if (asix_read_cmd(dev
, AX_CMD_READ_MONITOR_MODE
, 0, 0, 1, &opt
) < 0) {
655 wolinfo
->supported
= 0;
656 wolinfo
->wolopts
= 0;
659 wolinfo
->supported
= WAKE_PHY
| WAKE_MAGIC
;
660 wolinfo
->wolopts
= 0;
661 if (opt
& AX_MONITOR_LINK
)
662 wolinfo
->wolopts
|= WAKE_PHY
;
663 if (opt
& AX_MONITOR_MAGIC
)
664 wolinfo
->wolopts
|= WAKE_MAGIC
;
668 asix_set_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
670 struct usbnet
*dev
= netdev_priv(net
);
673 if (wolinfo
->wolopts
& WAKE_PHY
)
674 opt
|= AX_MONITOR_LINK
;
675 if (wolinfo
->wolopts
& WAKE_MAGIC
)
676 opt
|= AX_MONITOR_MAGIC
;
678 if (asix_write_cmd(dev
, AX_CMD_WRITE_MONITOR_MODE
,
679 opt
, 0, 0, NULL
) < 0)
685 static int asix_get_eeprom_len(struct net_device
*net
)
687 struct usbnet
*dev
= netdev_priv(net
);
688 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
690 return data
->eeprom_len
;
693 static int asix_get_eeprom(struct net_device
*net
,
694 struct ethtool_eeprom
*eeprom
, u8
*data
)
696 struct usbnet
*dev
= netdev_priv(net
);
697 __le16
*ebuf
= (__le16
*)data
;
700 /* Crude hack to ensure that we don't overwrite memory
701 * if an odd length is supplied
706 eeprom
->magic
= AX_EEPROM_MAGIC
;
708 /* ax8817x returns 2 bytes from eeprom on read */
709 for (i
=0; i
< eeprom
->len
/ 2; i
++) {
710 if (asix_read_cmd(dev
, AX_CMD_READ_EEPROM
,
711 eeprom
->offset
+ i
, 0, 2, &ebuf
[i
]) < 0)
717 static void asix_get_drvinfo (struct net_device
*net
,
718 struct ethtool_drvinfo
*info
)
720 struct usbnet
*dev
= netdev_priv(net
);
721 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
723 /* Inherit standard device info */
724 usbnet_get_drvinfo(net
, info
);
725 strncpy (info
->driver
, DRIVER_NAME
, sizeof info
->driver
);
726 strncpy (info
->version
, DRIVER_VERSION
, sizeof info
->version
);
727 info
->eedump_len
= data
->eeprom_len
;
730 static u32
asix_get_link(struct net_device
*net
)
732 struct usbnet
*dev
= netdev_priv(net
);
734 return mii_link_ok(&dev
->mii
);
737 static int asix_ioctl (struct net_device
*net
, struct ifreq
*rq
, int cmd
)
739 struct usbnet
*dev
= netdev_priv(net
);
741 return generic_mii_ioctl(&dev
->mii
, if_mii(rq
), cmd
, NULL
);
744 static int asix_set_mac_address(struct net_device
*net
, void *p
)
746 struct usbnet
*dev
= netdev_priv(net
);
747 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
748 struct sockaddr
*addr
= p
;
750 if (netif_running(net
))
752 if (!is_valid_ether_addr(addr
->sa_data
))
753 return -EADDRNOTAVAIL
;
755 memcpy(net
->dev_addr
, addr
->sa_data
, ETH_ALEN
);
757 /* We use the 20 byte dev->data
758 * for our 6 byte mac buffer
759 * to avoid allocating memory that
760 * is tricky to free later */
761 memcpy(data
->mac_addr
, addr
->sa_data
, ETH_ALEN
);
762 asix_write_cmd_async(dev
, AX_CMD_WRITE_NODE_ID
, 0, 0, ETH_ALEN
,
768 /* We need to override some ethtool_ops so we require our
769 own structure so we don't interfere with other usbnet
770 devices that may be connected at the same time. */
771 static const struct ethtool_ops ax88172_ethtool_ops
= {
772 .get_drvinfo
= asix_get_drvinfo
,
773 .get_link
= asix_get_link
,
774 .get_msglevel
= usbnet_get_msglevel
,
775 .set_msglevel
= usbnet_set_msglevel
,
776 .get_wol
= asix_get_wol
,
777 .set_wol
= asix_set_wol
,
778 .get_eeprom_len
= asix_get_eeprom_len
,
779 .get_eeprom
= asix_get_eeprom
,
780 .get_settings
= usbnet_get_settings
,
781 .set_settings
= usbnet_set_settings
,
782 .nway_reset
= usbnet_nway_reset
,
785 static void ax88172_set_multicast(struct net_device
*net
)
787 struct usbnet
*dev
= netdev_priv(net
);
788 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
791 if (net
->flags
& IFF_PROMISC
) {
793 } else if (net
->flags
& IFF_ALLMULTI
||
794 netdev_mc_count(net
) > AX_MAX_MCAST
) {
796 } else if (netdev_mc_empty(net
)) {
797 /* just broadcast and directed */
799 /* We use the 20 byte dev->data
800 * for our 8 byte filter buffer
801 * to avoid allocating memory that
802 * is tricky to free later */
803 struct netdev_hw_addr
*ha
;
806 memset(data
->multi_filter
, 0, AX_MCAST_FILTER_SIZE
);
808 /* Build the multicast hash filter. */
809 netdev_for_each_mc_addr(ha
, net
) {
810 crc_bits
= ether_crc(ETH_ALEN
, ha
->addr
) >> 26;
811 data
->multi_filter
[crc_bits
>> 3] |=
815 asix_write_cmd_async(dev
, AX_CMD_WRITE_MULTI_FILTER
, 0, 0,
816 AX_MCAST_FILTER_SIZE
, data
->multi_filter
);
821 asix_write_cmd_async(dev
, AX_CMD_WRITE_RX_CTL
, rx_ctl
, 0, 0, NULL
);
824 static int ax88172_link_reset(struct usbnet
*dev
)
827 struct ethtool_cmd ecmd
= { .cmd
= ETHTOOL_GSET
};
829 mii_check_media(&dev
->mii
, 1, 1);
830 mii_ethtool_gset(&dev
->mii
, &ecmd
);
831 mode
= AX88172_MEDIUM_DEFAULT
;
833 if (ecmd
.duplex
!= DUPLEX_FULL
)
834 mode
|= ~AX88172_MEDIUM_FD
;
836 netdev_dbg(dev
->net
, "ax88172_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
837 ethtool_cmd_speed(&ecmd
), ecmd
.duplex
, mode
);
839 asix_write_medium_mode(dev
, mode
);
844 static const struct net_device_ops ax88172_netdev_ops
= {
845 .ndo_open
= usbnet_open
,
846 .ndo_stop
= usbnet_stop
,
847 .ndo_start_xmit
= usbnet_start_xmit
,
848 .ndo_tx_timeout
= usbnet_tx_timeout
,
849 .ndo_change_mtu
= usbnet_change_mtu
,
850 .ndo_set_mac_address
= eth_mac_addr
,
851 .ndo_validate_addr
= eth_validate_addr
,
852 .ndo_do_ioctl
= asix_ioctl
,
853 .ndo_set_rx_mode
= ax88172_set_multicast
,
856 static int ax88172_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
861 unsigned long gpio_bits
= dev
->driver_info
->data
;
862 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
864 data
->eeprom_len
= AX88172_EEPROM_LEN
;
866 usbnet_get_endpoints(dev
,intf
);
868 /* Toggle the GPIOs in a manufacturer/model specific way */
869 for (i
= 2; i
>= 0; i
--) {
870 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_GPIOS
,
871 (gpio_bits
>> (i
* 8)) & 0xff, 0, 0, NULL
);
877 ret
= asix_write_rx_ctl(dev
, 0x80);
881 /* Get the MAC address */
882 ret
= asix_read_cmd(dev
, AX88172_CMD_READ_NODE_ID
, 0, 0, ETH_ALEN
, buf
);
884 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret
);
887 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
889 /* Initialize MII structure */
890 dev
->mii
.dev
= dev
->net
;
891 dev
->mii
.mdio_read
= asix_mdio_read
;
892 dev
->mii
.mdio_write
= asix_mdio_write
;
893 dev
->mii
.phy_id_mask
= 0x3f;
894 dev
->mii
.reg_num_mask
= 0x1f;
895 dev
->mii
.phy_id
= asix_get_phy_addr(dev
);
897 dev
->net
->netdev_ops
= &ax88172_netdev_ops
;
898 dev
->net
->ethtool_ops
= &ax88172_ethtool_ops
;
899 dev
->net
->needed_headroom
= 4; /* cf asix_tx_fixup() */
900 dev
->net
->needed_tailroom
= 4; /* cf asix_tx_fixup() */
902 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_BMCR
, BMCR_RESET
);
903 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
,
904 ADVERTISE_ALL
| ADVERTISE_CSMA
| ADVERTISE_PAUSE_CAP
);
905 mii_nway_restart(&dev
->mii
);
913 static const struct ethtool_ops ax88772_ethtool_ops
= {
914 .get_drvinfo
= asix_get_drvinfo
,
915 .get_link
= asix_get_link
,
916 .get_msglevel
= usbnet_get_msglevel
,
917 .set_msglevel
= usbnet_set_msglevel
,
918 .get_wol
= asix_get_wol
,
919 .set_wol
= asix_set_wol
,
920 .get_eeprom_len
= asix_get_eeprom_len
,
921 .get_eeprom
= asix_get_eeprom
,
922 .get_settings
= usbnet_get_settings
,
923 .set_settings
= usbnet_set_settings
,
924 .nway_reset
= usbnet_nway_reset
,
927 static int ax88772_link_reset(struct usbnet
*dev
)
930 struct ethtool_cmd ecmd
= { .cmd
= ETHTOOL_GSET
};
932 mii_check_media(&dev
->mii
, 1, 1);
933 mii_ethtool_gset(&dev
->mii
, &ecmd
);
934 mode
= AX88772_MEDIUM_DEFAULT
;
936 if (ethtool_cmd_speed(&ecmd
) != SPEED_100
)
937 mode
&= ~AX_MEDIUM_PS
;
939 if (ecmd
.duplex
!= DUPLEX_FULL
)
940 mode
&= ~AX_MEDIUM_FD
;
942 netdev_dbg(dev
->net
, "ax88772_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
943 ethtool_cmd_speed(&ecmd
), ecmd
.duplex
, mode
);
945 asix_write_medium_mode(dev
, mode
);
950 static int ax88772_reset(struct usbnet
*dev
)
952 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
956 ret
= asix_write_gpio(dev
,
957 AX_GPIO_RSE
| AX_GPIO_GPO_2
| AX_GPIO_GPO2EN
, 5);
961 embd_phy
= ((asix_get_phy_addr(dev
) & 0x1f) == 0x10 ? 1 : 0);
963 ret
= asix_write_cmd(dev
, AX_CMD_SW_PHY_SELECT
, embd_phy
, 0, 0, NULL
);
965 dbg("Select PHY #1 failed: %d", ret
);
969 ret
= asix_sw_reset(dev
, AX_SWRESET_IPPD
| AX_SWRESET_PRL
);
975 ret
= asix_sw_reset(dev
, AX_SWRESET_CLEAR
);
982 ret
= asix_sw_reset(dev
, AX_SWRESET_IPRL
);
986 ret
= asix_sw_reset(dev
, AX_SWRESET_PRTE
);
992 rx_ctl
= asix_read_rx_ctl(dev
);
993 dbg("RX_CTL is 0x%04x after software reset", rx_ctl
);
994 ret
= asix_write_rx_ctl(dev
, 0x0000);
998 rx_ctl
= asix_read_rx_ctl(dev
);
999 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl
);
1001 ret
= asix_sw_reset(dev
, AX_SWRESET_PRL
);
1007 ret
= asix_sw_reset(dev
, AX_SWRESET_IPRL
| AX_SWRESET_PRL
);
1013 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_BMCR
, BMCR_RESET
);
1014 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
,
1015 ADVERTISE_ALL
| ADVERTISE_CSMA
);
1016 mii_nway_restart(&dev
->mii
);
1018 ret
= asix_write_medium_mode(dev
, AX88772_MEDIUM_DEFAULT
);
1022 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_IPG0
,
1023 AX88772_IPG0_DEFAULT
| AX88772_IPG1_DEFAULT
,
1024 AX88772_IPG2_DEFAULT
, 0, NULL
);
1026 dbg("Write IPG,IPG1,IPG2 failed: %d", ret
);
1030 /* Rewrite MAC address */
1031 memcpy(data
->mac_addr
, dev
->net
->dev_addr
, ETH_ALEN
);
1032 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_NODE_ID
, 0, 0, ETH_ALEN
,
1037 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
1038 ret
= asix_write_rx_ctl(dev
, AX_DEFAULT_RX_CTL
);
1042 rx_ctl
= asix_read_rx_ctl(dev
);
1043 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl
);
1045 rx_ctl
= asix_read_medium_status(dev
);
1046 dbg("Medium Status is 0x%04x after all initializations", rx_ctl
);
1055 static const struct net_device_ops ax88772_netdev_ops
= {
1056 .ndo_open
= usbnet_open
,
1057 .ndo_stop
= usbnet_stop
,
1058 .ndo_start_xmit
= usbnet_start_xmit
,
1059 .ndo_tx_timeout
= usbnet_tx_timeout
,
1060 .ndo_change_mtu
= usbnet_change_mtu
,
1061 .ndo_set_mac_address
= asix_set_mac_address
,
1062 .ndo_validate_addr
= eth_validate_addr
,
1063 .ndo_do_ioctl
= asix_ioctl
,
1064 .ndo_set_rx_mode
= asix_set_multicast
,
1067 static int ax88772_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
1070 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1074 data
->eeprom_len
= AX88772_EEPROM_LEN
;
1076 usbnet_get_endpoints(dev
,intf
);
1078 /* Get the MAC address */
1079 ret
= asix_read_cmd(dev
, AX_CMD_READ_NODE_ID
, 0, 0, ETH_ALEN
, buf
);
1081 dbg("Failed to read MAC address: %d", ret
);
1084 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
1086 /* Initialize MII structure */
1087 dev
->mii
.dev
= dev
->net
;
1088 dev
->mii
.mdio_read
= asix_mdio_read
;
1089 dev
->mii
.mdio_write
= asix_mdio_write
;
1090 dev
->mii
.phy_id_mask
= 0x1f;
1091 dev
->mii
.reg_num_mask
= 0x1f;
1092 dev
->mii
.phy_id
= asix_get_phy_addr(dev
);
1094 dev
->net
->netdev_ops
= &ax88772_netdev_ops
;
1095 dev
->net
->ethtool_ops
= &ax88772_ethtool_ops
;
1096 dev
->net
->needed_headroom
= 4; /* cf asix_tx_fixup() */
1097 dev
->net
->needed_tailroom
= 4; /* cf asix_tx_fixup() */
1099 embd_phy
= ((dev
->mii
.phy_id
& 0x1f) == 0x10 ? 1 : 0);
1101 /* Reset the PHY to normal operation mode */
1102 ret
= asix_write_cmd(dev
, AX_CMD_SW_PHY_SELECT
, embd_phy
, 0, 0, NULL
);
1104 dbg("Select PHY #1 failed: %d", ret
);
1108 ret
= asix_sw_reset(dev
, AX_SWRESET_IPPD
| AX_SWRESET_PRL
);
1114 ret
= asix_sw_reset(dev
, AX_SWRESET_CLEAR
);
1120 ret
= asix_sw_reset(dev
, embd_phy
? AX_SWRESET_IPRL
: AX_SWRESET_PRTE
);
1122 /* Read PHYID register *AFTER* the PHY was reset properly */
1123 phyid
= asix_get_phyid(dev
);
1124 dbg("PHYID=0x%08x", phyid
);
1126 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1127 if (dev
->driver_info
->flags
& FLAG_FRAMING_AX
) {
1128 /* hard_mtu is still the default - the device does not support
1130 dev
->rx_urb_size
= 2048;
1136 static const struct ethtool_ops ax88178_ethtool_ops
= {
1137 .get_drvinfo
= asix_get_drvinfo
,
1138 .get_link
= asix_get_link
,
1139 .get_msglevel
= usbnet_get_msglevel
,
1140 .set_msglevel
= usbnet_set_msglevel
,
1141 .get_wol
= asix_get_wol
,
1142 .set_wol
= asix_set_wol
,
1143 .get_eeprom_len
= asix_get_eeprom_len
,
1144 .get_eeprom
= asix_get_eeprom
,
1145 .get_settings
= usbnet_get_settings
,
1146 .set_settings
= usbnet_set_settings
,
1147 .nway_reset
= usbnet_nway_reset
,
1150 static int marvell_phy_init(struct usbnet
*dev
)
1152 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1155 netdev_dbg(dev
->net
, "marvell_phy_init()\n");
1157 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MII_MARVELL_STATUS
);
1158 netdev_dbg(dev
->net
, "MII_MARVELL_STATUS = 0x%04x\n", reg
);
1160 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_MARVELL_CTRL
,
1161 MARVELL_CTRL_RXDELAY
| MARVELL_CTRL_TXDELAY
);
1163 if (data
->ledmode
) {
1164 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
,
1165 MII_MARVELL_LED_CTRL
);
1166 netdev_dbg(dev
->net
, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg
);
1169 reg
|= (1 + 0x0100);
1170 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
,
1171 MII_MARVELL_LED_CTRL
, reg
);
1173 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
,
1174 MII_MARVELL_LED_CTRL
);
1175 netdev_dbg(dev
->net
, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg
);
1182 static int rtl8211cl_phy_init(struct usbnet
*dev
)
1184 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1186 netdev_dbg(dev
->net
, "rtl8211cl_phy_init()\n");
1188 asix_mdio_write (dev
->net
, dev
->mii
.phy_id
, 0x1f, 0x0005);
1189 asix_mdio_write (dev
->net
, dev
->mii
.phy_id
, 0x0c, 0);
1190 asix_mdio_write (dev
->net
, dev
->mii
.phy_id
, 0x01,
1191 asix_mdio_read (dev
->net
, dev
->mii
.phy_id
, 0x01) | 0x0080);
1192 asix_mdio_write (dev
->net
, dev
->mii
.phy_id
, 0x1f, 0);
1194 if (data
->ledmode
== 12) {
1195 asix_mdio_write (dev
->net
, dev
->mii
.phy_id
, 0x1f, 0x0002);
1196 asix_mdio_write (dev
->net
, dev
->mii
.phy_id
, 0x1a, 0x00cb);
1197 asix_mdio_write (dev
->net
, dev
->mii
.phy_id
, 0x1f, 0);
1203 static int marvell_led_status(struct usbnet
*dev
, u16 speed
)
1205 u16 reg
= asix_mdio_read(dev
->net
, dev
->mii
.phy_id
, MARVELL_LED_MANUAL
);
1207 netdev_dbg(dev
->net
, "marvell_led_status() read 0x%04x\n", reg
);
1209 /* Clear out the center LED bits - 0x03F0 */
1223 netdev_dbg(dev
->net
, "marvell_led_status() writing 0x%04x\n", reg
);
1224 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MARVELL_LED_MANUAL
, reg
);
1229 static int ax88178_reset(struct usbnet
*dev
)
1231 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1238 asix_read_cmd(dev
, AX_CMD_READ_GPIOS
, 0, 0, 1, &status
);
1239 dbg("GPIO Status: 0x%04x", status
);
1241 asix_write_cmd(dev
, AX_CMD_WRITE_ENABLE
, 0, 0, 0, NULL
);
1242 asix_read_cmd(dev
, AX_CMD_READ_EEPROM
, 0x0017, 0, 2, &eeprom
);
1243 asix_write_cmd(dev
, AX_CMD_WRITE_DISABLE
, 0, 0, 0, NULL
);
1245 dbg("EEPROM index 0x17 is 0x%04x", eeprom
);
1247 if (eeprom
== cpu_to_le16(0xffff)) {
1248 data
->phymode
= PHY_MODE_MARVELL
;
1252 data
->phymode
= le16_to_cpu(eeprom
) & 0x7F;
1253 data
->ledmode
= le16_to_cpu(eeprom
) >> 8;
1254 gpio0
= (le16_to_cpu(eeprom
) & 0x80) ? 0 : 1;
1256 dbg("GPIO0: %d, PhyMode: %d", gpio0
, data
->phymode
);
1258 /* Power up external GigaPHY through AX88178 GPIO pin */
1259 asix_write_gpio(dev
, AX_GPIO_RSE
| AX_GPIO_GPO_1
| AX_GPIO_GPO1EN
, 40);
1260 if ((le16_to_cpu(eeprom
) >> 8) != 1) {
1261 asix_write_gpio(dev
, 0x003c, 30);
1262 asix_write_gpio(dev
, 0x001c, 300);
1263 asix_write_gpio(dev
, 0x003c, 30);
1265 dbg("gpio phymode == 1 path");
1266 asix_write_gpio(dev
, AX_GPIO_GPO1EN
, 30);
1267 asix_write_gpio(dev
, AX_GPIO_GPO1EN
| AX_GPIO_GPO_1
, 30);
1270 /* Read PHYID register *AFTER* powering up PHY */
1271 phyid
= asix_get_phyid(dev
);
1272 dbg("PHYID=0x%08x", phyid
);
1274 /* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */
1275 asix_write_cmd(dev
, AX_CMD_SW_PHY_SELECT
, 0, 0, 0, NULL
);
1277 asix_sw_reset(dev
, 0);
1280 asix_sw_reset(dev
, AX_SWRESET_PRL
| AX_SWRESET_IPPD
);
1283 asix_write_rx_ctl(dev
, 0);
1285 if (data
->phymode
== PHY_MODE_MARVELL
) {
1286 marvell_phy_init(dev
);
1288 } else if (data
->phymode
== PHY_MODE_RTL8211CL
)
1289 rtl8211cl_phy_init(dev
);
1291 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_BMCR
,
1292 BMCR_RESET
| BMCR_ANENABLE
);
1293 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
,
1294 ADVERTISE_ALL
| ADVERTISE_CSMA
| ADVERTISE_PAUSE_CAP
);
1295 asix_mdio_write(dev
->net
, dev
->mii
.phy_id
, MII_CTRL1000
,
1296 ADVERTISE_1000FULL
);
1298 mii_nway_restart(&dev
->mii
);
1300 ret
= asix_write_medium_mode(dev
, AX88178_MEDIUM_DEFAULT
);
1304 /* Rewrite MAC address */
1305 memcpy(data
->mac_addr
, dev
->net
->dev_addr
, ETH_ALEN
);
1306 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_NODE_ID
, 0, 0, ETH_ALEN
,
1311 ret
= asix_write_rx_ctl(dev
, AX_DEFAULT_RX_CTL
);
1318 static int ax88178_link_reset(struct usbnet
*dev
)
1321 struct ethtool_cmd ecmd
= { .cmd
= ETHTOOL_GSET
};
1322 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1325 netdev_dbg(dev
->net
, "ax88178_link_reset()\n");
1327 mii_check_media(&dev
->mii
, 1, 1);
1328 mii_ethtool_gset(&dev
->mii
, &ecmd
);
1329 mode
= AX88178_MEDIUM_DEFAULT
;
1330 speed
= ethtool_cmd_speed(&ecmd
);
1332 if (speed
== SPEED_1000
)
1333 mode
|= AX_MEDIUM_GM
;
1334 else if (speed
== SPEED_100
)
1335 mode
|= AX_MEDIUM_PS
;
1337 mode
&= ~(AX_MEDIUM_PS
| AX_MEDIUM_GM
);
1339 mode
|= AX_MEDIUM_ENCK
;
1341 if (ecmd
.duplex
== DUPLEX_FULL
)
1342 mode
|= AX_MEDIUM_FD
;
1344 mode
&= ~AX_MEDIUM_FD
;
1346 netdev_dbg(dev
->net
, "ax88178_link_reset() speed: %u duplex: %d setting mode to 0x%04x\n",
1347 speed
, ecmd
.duplex
, mode
);
1349 asix_write_medium_mode(dev
, mode
);
1351 if (data
->phymode
== PHY_MODE_MARVELL
&& data
->ledmode
)
1352 marvell_led_status(dev
, speed
);
1357 static void ax88178_set_mfb(struct usbnet
*dev
)
1359 u16 mfb
= AX_RX_CTL_MFB_16384
;
1362 int old_rx_urb_size
= dev
->rx_urb_size
;
1364 if (dev
->hard_mtu
< 2048) {
1365 dev
->rx_urb_size
= 2048;
1366 mfb
= AX_RX_CTL_MFB_2048
;
1367 } else if (dev
->hard_mtu
< 4096) {
1368 dev
->rx_urb_size
= 4096;
1369 mfb
= AX_RX_CTL_MFB_4096
;
1370 } else if (dev
->hard_mtu
< 8192) {
1371 dev
->rx_urb_size
= 8192;
1372 mfb
= AX_RX_CTL_MFB_8192
;
1373 } else if (dev
->hard_mtu
< 16384) {
1374 dev
->rx_urb_size
= 16384;
1375 mfb
= AX_RX_CTL_MFB_16384
;
1378 rxctl
= asix_read_rx_ctl(dev
);
1379 asix_write_rx_ctl(dev
, (rxctl
& ~AX_RX_CTL_MFB_16384
) | mfb
);
1381 medium
= asix_read_medium_status(dev
);
1382 if (dev
->net
->mtu
> 1500)
1383 medium
|= AX_MEDIUM_JFE
;
1385 medium
&= ~AX_MEDIUM_JFE
;
1386 asix_write_medium_mode(dev
, medium
);
1388 if (dev
->rx_urb_size
> old_rx_urb_size
)
1389 usbnet_unlink_rx_urbs(dev
);
1392 static int ax88178_change_mtu(struct net_device
*net
, int new_mtu
)
1394 struct usbnet
*dev
= netdev_priv(net
);
1395 int ll_mtu
= new_mtu
+ net
->hard_header_len
+ 4;
1397 netdev_dbg(dev
->net
, "ax88178_change_mtu() new_mtu=%d\n", new_mtu
);
1399 if (new_mtu
<= 0 || ll_mtu
> 16384)
1402 if ((ll_mtu
% dev
->maxpacket
) == 0)
1406 dev
->hard_mtu
= net
->mtu
+ net
->hard_header_len
;
1407 ax88178_set_mfb(dev
);
1412 static const struct net_device_ops ax88178_netdev_ops
= {
1413 .ndo_open
= usbnet_open
,
1414 .ndo_stop
= usbnet_stop
,
1415 .ndo_start_xmit
= usbnet_start_xmit
,
1416 .ndo_tx_timeout
= usbnet_tx_timeout
,
1417 .ndo_set_mac_address
= asix_set_mac_address
,
1418 .ndo_validate_addr
= eth_validate_addr
,
1419 .ndo_set_rx_mode
= asix_set_multicast
,
1420 .ndo_do_ioctl
= asix_ioctl
,
1421 .ndo_change_mtu
= ax88178_change_mtu
,
1424 static int ax88178_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
1428 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
1430 data
->eeprom_len
= AX88772_EEPROM_LEN
;
1432 usbnet_get_endpoints(dev
,intf
);
1434 /* Get the MAC address */
1435 ret
= asix_read_cmd(dev
, AX_CMD_READ_NODE_ID
, 0, 0, ETH_ALEN
, buf
);
1437 dbg("Failed to read MAC address: %d", ret
);
1440 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
1442 /* Initialize MII structure */
1443 dev
->mii
.dev
= dev
->net
;
1444 dev
->mii
.mdio_read
= asix_mdio_read
;
1445 dev
->mii
.mdio_write
= asix_mdio_write
;
1446 dev
->mii
.phy_id_mask
= 0x1f;
1447 dev
->mii
.reg_num_mask
= 0xff;
1448 dev
->mii
.supports_gmii
= 1;
1449 dev
->mii
.phy_id
= asix_get_phy_addr(dev
);
1451 dev
->net
->netdev_ops
= &ax88178_netdev_ops
;
1452 dev
->net
->ethtool_ops
= &ax88178_ethtool_ops
;
1454 /* Blink LEDS so users know driver saw dongle */
1455 asix_sw_reset(dev
, 0);
1458 asix_sw_reset(dev
, AX_SWRESET_PRL
| AX_SWRESET_IPPD
);
1461 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1462 if (dev
->driver_info
->flags
& FLAG_FRAMING_AX
) {
1463 /* hard_mtu is still the default - the device does not support
1465 dev
->rx_urb_size
= 2048;
1471 static const struct driver_info ax8817x_info
= {
1472 .description
= "ASIX AX8817x USB 2.0 Ethernet",
1473 .bind
= ax88172_bind
,
1474 .status
= asix_status
,
1475 .link_reset
= ax88172_link_reset
,
1476 .reset
= ax88172_link_reset
,
1477 .flags
= FLAG_ETHER
| FLAG_LINK_INTR
,
1481 static const struct driver_info dlink_dub_e100_info
= {
1482 .description
= "DLink DUB-E100 USB Ethernet",
1483 .bind
= ax88172_bind
,
1484 .status
= asix_status
,
1485 .link_reset
= ax88172_link_reset
,
1486 .reset
= ax88172_link_reset
,
1487 .flags
= FLAG_ETHER
| FLAG_LINK_INTR
,
1491 static const struct driver_info netgear_fa120_info
= {
1492 .description
= "Netgear FA-120 USB Ethernet",
1493 .bind
= ax88172_bind
,
1494 .status
= asix_status
,
1495 .link_reset
= ax88172_link_reset
,
1496 .reset
= ax88172_link_reset
,
1497 .flags
= FLAG_ETHER
| FLAG_LINK_INTR
,
1501 static const struct driver_info hawking_uf200_info
= {
1502 .description
= "Hawking UF200 USB Ethernet",
1503 .bind
= ax88172_bind
,
1504 .status
= asix_status
,
1505 .link_reset
= ax88172_link_reset
,
1506 .reset
= ax88172_link_reset
,
1507 .flags
= FLAG_ETHER
| FLAG_LINK_INTR
,
1511 static const struct driver_info ax88772_info
= {
1512 .description
= "ASIX AX88772 USB 2.0 Ethernet",
1513 .bind
= ax88772_bind
,
1514 .status
= asix_status
,
1515 .link_reset
= ax88772_link_reset
,
1516 .reset
= ax88772_reset
,
1517 .flags
= FLAG_ETHER
| FLAG_FRAMING_AX
| FLAG_LINK_INTR
| FLAG_MULTI_PACKET
,
1518 .rx_fixup
= asix_rx_fixup
,
1519 .tx_fixup
= asix_tx_fixup
,
1522 static const struct driver_info ax88178_info
= {
1523 .description
= "ASIX AX88178 USB 2.0 Ethernet",
1524 .bind
= ax88178_bind
,
1525 .status
= asix_status
,
1526 .link_reset
= ax88178_link_reset
,
1527 .reset
= ax88178_reset
,
1528 .flags
= FLAG_ETHER
| FLAG_FRAMING_AX
| FLAG_LINK_INTR
,
1529 .rx_fixup
= asix_rx_fixup
,
1530 .tx_fixup
= asix_tx_fixup
,
1533 static const struct usb_device_id products
[] = {
1536 USB_DEVICE (0x077b, 0x2226),
1537 .driver_info
= (unsigned long) &ax8817x_info
,
1540 USB_DEVICE (0x0846, 0x1040),
1541 .driver_info
= (unsigned long) &netgear_fa120_info
,
1544 USB_DEVICE (0x2001, 0x1a00),
1545 .driver_info
= (unsigned long) &dlink_dub_e100_info
,
1547 // Intellinet, ST Lab USB Ethernet
1548 USB_DEVICE (0x0b95, 0x1720),
1549 .driver_info
= (unsigned long) &ax8817x_info
,
1551 // Hawking UF200, TrendNet TU2-ET100
1552 USB_DEVICE (0x07b8, 0x420a),
1553 .driver_info
= (unsigned long) &hawking_uf200_info
,
1555 // Billionton Systems, USB2AR
1556 USB_DEVICE (0x08dd, 0x90ff),
1557 .driver_info
= (unsigned long) &ax8817x_info
,
1560 USB_DEVICE (0x0557, 0x2009),
1561 .driver_info
= (unsigned long) &ax8817x_info
,
1563 // Buffalo LUA-U2-KTX
1564 USB_DEVICE (0x0411, 0x003d),
1565 .driver_info
= (unsigned long) &ax8817x_info
,
1567 // Buffalo LUA-U2-GT 10/100/1000
1568 USB_DEVICE (0x0411, 0x006e),
1569 .driver_info
= (unsigned long) &ax88178_info
,
1571 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1572 USB_DEVICE (0x6189, 0x182d),
1573 .driver_info
= (unsigned long) &ax8817x_info
,
1575 // Sitecom LN-031 "USB 2.0 10/100/1000 Ethernet adapter"
1576 USB_DEVICE (0x0df6, 0x0056),
1577 .driver_info
= (unsigned long) &ax88178_info
,
1579 // corega FEther USB2-TX
1580 USB_DEVICE (0x07aa, 0x0017),
1581 .driver_info
= (unsigned long) &ax8817x_info
,
1583 // Surecom EP-1427X-2
1584 USB_DEVICE (0x1189, 0x0893),
1585 .driver_info
= (unsigned long) &ax8817x_info
,
1587 // goodway corp usb gwusb2e
1588 USB_DEVICE (0x1631, 0x6200),
1589 .driver_info
= (unsigned long) &ax8817x_info
,
1591 // JVC MP-PRX1 Port Replicator
1592 USB_DEVICE (0x04f1, 0x3008),
1593 .driver_info
= (unsigned long) &ax8817x_info
,
1595 // ASIX AX88772B 10/100
1596 USB_DEVICE (0x0b95, 0x772b),
1597 .driver_info
= (unsigned long) &ax88772_info
,
1599 // ASIX AX88772 10/100
1600 USB_DEVICE (0x0b95, 0x7720),
1601 .driver_info
= (unsigned long) &ax88772_info
,
1603 // ASIX AX88178 10/100/1000
1604 USB_DEVICE (0x0b95, 0x1780),
1605 .driver_info
= (unsigned long) &ax88178_info
,
1607 // Logitec LAN-GTJ/U2A
1608 USB_DEVICE (0x0789, 0x0160),
1609 .driver_info
= (unsigned long) &ax88178_info
,
1611 // Linksys USB200M Rev 2
1612 USB_DEVICE (0x13b1, 0x0018),
1613 .driver_info
= (unsigned long) &ax88772_info
,
1615 // 0Q0 cable ethernet
1616 USB_DEVICE (0x1557, 0x7720),
1617 .driver_info
= (unsigned long) &ax88772_info
,
1619 // DLink DUB-E100 H/W Ver B1
1620 USB_DEVICE (0x07d1, 0x3c05),
1621 .driver_info
= (unsigned long) &ax88772_info
,
1623 // DLink DUB-E100 H/W Ver B1 Alternate
1624 USB_DEVICE (0x2001, 0x3c05),
1625 .driver_info
= (unsigned long) &ax88772_info
,
1628 USB_DEVICE (0x1737, 0x0039),
1629 .driver_info
= (unsigned long) &ax88178_info
,
1632 USB_DEVICE (0x04bb, 0x0930),
1633 .driver_info
= (unsigned long) &ax88178_info
,
1636 USB_DEVICE(0x050d, 0x5055),
1637 .driver_info
= (unsigned long) &ax88178_info
,
1639 // Apple USB Ethernet Adapter
1640 USB_DEVICE(0x05ac, 0x1402),
1641 .driver_info
= (unsigned long) &ax88772_info
,
1643 // Cables-to-Go USB Ethernet Adapter
1644 USB_DEVICE(0x0b95, 0x772a),
1645 .driver_info
= (unsigned long) &ax88772_info
,
1648 USB_DEVICE(0x14ea, 0xab11),
1649 .driver_info
= (unsigned long) &ax88178_info
,
1652 USB_DEVICE(0x0db0, 0xa877),
1653 .driver_info
= (unsigned long) &ax88772_info
,
1655 // Asus USB Ethernet Adapter
1656 USB_DEVICE (0x0b95, 0x7e2b),
1657 .driver_info
= (unsigned long) &ax88772_info
,
1661 MODULE_DEVICE_TABLE(usb
, products
);
1663 static struct usb_driver asix_driver
= {
1664 .name
= DRIVER_NAME
,
1665 .id_table
= products
,
1666 .probe
= usbnet_probe
,
1667 .suspend
= usbnet_suspend
,
1668 .resume
= usbnet_resume
,
1669 .disconnect
= usbnet_disconnect
,
1670 .supports_autosuspend
= 1,
1671 .disable_hub_initiated_lpm
= 1,
1674 module_usb_driver(asix_driver
);
1676 MODULE_AUTHOR("David Hollis");
1677 MODULE_VERSION(DRIVER_VERSION
);
1678 MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1679 MODULE_LICENSE("GPL");