2 * ASIX AX8817X based USB 2.0 Ethernet Devices
3 * Copyright (C) 2003-2005 David Hollis <dhollis@davehollis.com>
4 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
5 * Copyright (c) 2002-2003 TiVo Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 // #define DEBUG // error path messages, extra info
23 // #define VERBOSE // more; success messages
25 #include <linux/config.h>
26 #include <linux/module.h>
27 #include <linux/kmod.h>
28 #include <linux/sched.h>
29 #include <linux/init.h>
30 #include <linux/netdevice.h>
31 #include <linux/etherdevice.h>
32 #include <linux/ethtool.h>
33 #include <linux/workqueue.h>
34 #include <linux/mii.h>
35 #include <linux/usb.h>
36 #include <linux/crc32.h>
41 /* ASIX AX8817X based USB 2.0 Ethernet Devices */
43 #define AX_CMD_SET_SW_MII 0x06
44 #define AX_CMD_READ_MII_REG 0x07
45 #define AX_CMD_WRITE_MII_REG 0x08
46 #define AX_CMD_SET_HW_MII 0x0a
47 #define AX_CMD_READ_EEPROM 0x0b
48 #define AX_CMD_WRITE_EEPROM 0x0c
49 #define AX_CMD_WRITE_ENABLE 0x0d
50 #define AX_CMD_WRITE_DISABLE 0x0e
51 #define AX_CMD_WRITE_RX_CTL 0x10
52 #define AX_CMD_READ_IPG012 0x11
53 #define AX_CMD_WRITE_IPG0 0x12
54 #define AX_CMD_WRITE_IPG1 0x13
55 #define AX_CMD_WRITE_IPG2 0x14
56 #define AX_CMD_WRITE_MULTI_FILTER 0x16
57 #define AX_CMD_READ_NODE_ID 0x17
58 #define AX_CMD_READ_PHY_ID 0x19
59 #define AX_CMD_READ_MEDIUM_STATUS 0x1a
60 #define AX_CMD_WRITE_MEDIUM_MODE 0x1b
61 #define AX_CMD_READ_MONITOR_MODE 0x1c
62 #define AX_CMD_WRITE_MONITOR_MODE 0x1d
63 #define AX_CMD_WRITE_GPIOS 0x1f
64 #define AX_CMD_SW_RESET 0x20
65 #define AX_CMD_SW_PHY_STATUS 0x21
66 #define AX_CMD_SW_PHY_SELECT 0x22
67 #define AX88772_CMD_READ_NODE_ID 0x13
69 #define AX_MONITOR_MODE 0x01
70 #define AX_MONITOR_LINK 0x02
71 #define AX_MONITOR_MAGIC 0x04
72 #define AX_MONITOR_HSFS 0x10
74 /* AX88172 Medium Status Register values */
75 #define AX_MEDIUM_FULL_DUPLEX 0x02
76 #define AX_MEDIUM_TX_ABORT_ALLOW 0x04
77 #define AX_MEDIUM_FLOW_CONTROL_EN 0x10
79 #define AX_MCAST_FILTER_SIZE 8
80 #define AX_MAX_MCAST 64
82 #define AX_EEPROM_LEN 0x40
84 #define AX_SWRESET_CLEAR 0x00
85 #define AX_SWRESET_RR 0x01
86 #define AX_SWRESET_RT 0x02
87 #define AX_SWRESET_PRTE 0x04
88 #define AX_SWRESET_PRL 0x08
89 #define AX_SWRESET_BZ 0x10
90 #define AX_SWRESET_IPRL 0x20
91 #define AX_SWRESET_IPPD 0x40
93 #define AX88772_IPG0_DEFAULT 0x15
94 #define AX88772_IPG1_DEFAULT 0x0c
95 #define AX88772_IPG2_DEFAULT 0x12
97 #define AX88772_MEDIUM_FULL_DUPLEX 0x0002
98 #define AX88772_MEDIUM_RESERVED 0x0004
99 #define AX88772_MEDIUM_RX_FC_ENABLE 0x0010
100 #define AX88772_MEDIUM_TX_FC_ENABLE 0x0020
101 #define AX88772_MEDIUM_PAUSE_FORMAT 0x0080
102 #define AX88772_MEDIUM_RX_ENABLE 0x0100
103 #define AX88772_MEDIUM_100MB 0x0200
104 #define AX88772_MEDIUM_DEFAULT \
105 (AX88772_MEDIUM_FULL_DUPLEX | AX88772_MEDIUM_RX_FC_ENABLE | \
106 AX88772_MEDIUM_TX_FC_ENABLE | AX88772_MEDIUM_100MB | \
107 AX88772_MEDIUM_RESERVED | AX88772_MEDIUM_RX_ENABLE )
109 #define AX_EEPROM_MAGIC 0xdeadbeef
111 /* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
112 struct ax8817x_data
{
113 u8 multi_filter
[AX_MCAST_FILTER_SIZE
];
116 struct ax88172_int_data
{
122 } __attribute__ ((packed
));
124 static int ax8817x_read_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
125 u16 size
, void *data
)
127 return usb_control_msg(
129 usb_rcvctrlpipe(dev
->udev
, 0),
131 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
136 USB_CTRL_GET_TIMEOUT
);
139 static int ax8817x_write_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
140 u16 size
, void *data
)
142 return usb_control_msg(
144 usb_sndctrlpipe(dev
->udev
, 0),
146 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
151 USB_CTRL_SET_TIMEOUT
);
154 static void ax8817x_async_cmd_callback(struct urb
*urb
, struct pt_regs
*regs
)
156 struct usb_ctrlrequest
*req
= (struct usb_ctrlrequest
*)urb
->context
;
159 printk(KERN_DEBUG
"ax8817x_async_cmd_callback() failed with %d",
166 static void ax8817x_status(struct usbnet
*dev
, struct urb
*urb
)
168 struct ax88172_int_data
*event
;
171 if (urb
->actual_length
< 8)
174 event
= urb
->transfer_buffer
;
175 link
= event
->link
& 0x01;
176 if (netif_carrier_ok(dev
->net
) != link
) {
178 netif_carrier_on(dev
->net
);
179 usbnet_defer_kevent (dev
, EVENT_LINK_RESET
);
181 netif_carrier_off(dev
->net
);
182 devdbg(dev
, "ax8817x - Link Status is: %d", link
);
187 ax8817x_write_cmd_async(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
188 u16 size
, void *data
)
190 struct usb_ctrlrequest
*req
;
194 if ((urb
= usb_alloc_urb(0, GFP_ATOMIC
)) == NULL
) {
195 devdbg(dev
, "Error allocating URB in write_cmd_async!");
199 if ((req
= kmalloc(sizeof(struct usb_ctrlrequest
), GFP_ATOMIC
)) == NULL
) {
200 deverr(dev
, "Failed to allocate memory for control request");
205 req
->bRequestType
= USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
;
207 req
->wValue
= cpu_to_le16(value
);
208 req
->wIndex
= cpu_to_le16(index
);
209 req
->wLength
= cpu_to_le16(size
);
211 usb_fill_control_urb(urb
, dev
->udev
,
212 usb_sndctrlpipe(dev
->udev
, 0),
213 (void *)req
, data
, size
,
214 ax8817x_async_cmd_callback
, req
);
216 if((status
= usb_submit_urb(urb
, GFP_ATOMIC
)) < 0) {
217 deverr(dev
, "Error submitting the control message: status=%d",
224 static void ax8817x_set_multicast(struct net_device
*net
)
226 struct usbnet
*dev
= netdev_priv(net
);
227 struct ax8817x_data
*data
= (struct ax8817x_data
*)&dev
->data
;
230 if (net
->flags
& IFF_PROMISC
) {
232 } else if (net
->flags
& IFF_ALLMULTI
233 || net
->mc_count
> AX_MAX_MCAST
) {
235 } else if (net
->mc_count
== 0) {
236 /* just broadcast and directed */
238 /* We use the 20 byte dev->data
239 * for our 8 byte filter buffer
240 * to avoid allocating memory that
241 * is tricky to free later */
242 struct dev_mc_list
*mc_list
= net
->mc_list
;
246 memset(data
->multi_filter
, 0, AX_MCAST_FILTER_SIZE
);
248 /* Build the multicast hash filter. */
249 for (i
= 0; i
< net
->mc_count
; i
++) {
252 mc_list
->dmi_addr
) >> 26;
253 data
->multi_filter
[crc_bits
>> 3] |=
255 mc_list
= mc_list
->next
;
258 ax8817x_write_cmd_async(dev
, AX_CMD_WRITE_MULTI_FILTER
, 0, 0,
259 AX_MCAST_FILTER_SIZE
, data
->multi_filter
);
264 ax8817x_write_cmd_async(dev
, AX_CMD_WRITE_RX_CTL
, rx_ctl
, 0, 0, NULL
);
267 static int ax8817x_mdio_read(struct net_device
*netdev
, int phy_id
, int loc
)
269 struct usbnet
*dev
= netdev_priv(netdev
);
273 ax8817x_write_cmd(dev
, AX_CMD_SET_SW_MII
, 0, 0, 0, &buf
);
274 ax8817x_read_cmd(dev
, AX_CMD_READ_MII_REG
, phy_id
,
275 (__u16
)loc
, 2, (u16
*)&res
);
276 ax8817x_write_cmd(dev
, AX_CMD_SET_HW_MII
, 0, 0, 0, &buf
);
281 /* same as above, but converts resulting value to cpu byte order */
282 static int ax8817x_mdio_read_le(struct net_device
*netdev
, int phy_id
, int loc
)
284 return le16_to_cpu(ax8817x_mdio_read(netdev
,phy_id
, loc
));
288 ax8817x_mdio_write(struct net_device
*netdev
, int phy_id
, int loc
, int val
)
290 struct usbnet
*dev
= netdev_priv(netdev
);
294 ax8817x_write_cmd(dev
, AX_CMD_SET_SW_MII
, 0, 0, 0, &buf
);
295 ax8817x_write_cmd(dev
, AX_CMD_WRITE_MII_REG
, phy_id
,
296 (__u16
)loc
, 2, (u16
*)&res
);
297 ax8817x_write_cmd(dev
, AX_CMD_SET_HW_MII
, 0, 0, 0, &buf
);
300 /* same as above, but converts new value to le16 byte order before writing */
302 ax8817x_mdio_write_le(struct net_device
*netdev
, int phy_id
, int loc
, int val
)
304 ax8817x_mdio_write( netdev
, phy_id
, loc
, cpu_to_le16(val
) );
307 static int ax88172_link_reset(struct usbnet
*dev
)
314 mode
= AX_MEDIUM_TX_ABORT_ALLOW
| AX_MEDIUM_FLOW_CONTROL_EN
;
315 lpa
= ax8817x_mdio_read_le(dev
->net
, dev
->mii
.phy_id
, MII_LPA
);
316 adv
= ax8817x_mdio_read_le(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
);
317 res
= mii_nway_result(lpa
|adv
);
318 if (res
& LPA_DUPLEX
)
319 mode
|= AX_MEDIUM_FULL_DUPLEX
;
320 ax8817x_write_cmd(dev
, AX_CMD_WRITE_MEDIUM_MODE
, mode
, 0, 0, NULL
);
326 ax8817x_get_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
328 struct usbnet
*dev
= netdev_priv(net
);
331 if (ax8817x_read_cmd(dev
, AX_CMD_READ_MONITOR_MODE
, 0, 0, 1, &opt
) < 0) {
332 wolinfo
->supported
= 0;
333 wolinfo
->wolopts
= 0;
336 wolinfo
->supported
= WAKE_PHY
| WAKE_MAGIC
;
337 wolinfo
->wolopts
= 0;
338 if (opt
& AX_MONITOR_MODE
) {
339 if (opt
& AX_MONITOR_LINK
)
340 wolinfo
->wolopts
|= WAKE_PHY
;
341 if (opt
& AX_MONITOR_MAGIC
)
342 wolinfo
->wolopts
|= WAKE_MAGIC
;
347 ax8817x_set_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
349 struct usbnet
*dev
= netdev_priv(net
);
353 if (wolinfo
->wolopts
& WAKE_PHY
)
354 opt
|= AX_MONITOR_LINK
;
355 if (wolinfo
->wolopts
& WAKE_MAGIC
)
356 opt
|= AX_MONITOR_MAGIC
;
358 opt
|= AX_MONITOR_MODE
;
360 if (ax8817x_write_cmd(dev
, AX_CMD_WRITE_MONITOR_MODE
,
361 opt
, 0, 0, &buf
) < 0)
367 static int ax8817x_get_eeprom_len(struct net_device
*net
)
369 return AX_EEPROM_LEN
;
372 static int ax8817x_get_eeprom(struct net_device
*net
,
373 struct ethtool_eeprom
*eeprom
, u8
*data
)
375 struct usbnet
*dev
= netdev_priv(net
);
376 u16
*ebuf
= (u16
*)data
;
379 /* Crude hack to ensure that we don't overwrite memory
380 * if an odd length is supplied
385 eeprom
->magic
= AX_EEPROM_MAGIC
;
387 /* ax8817x returns 2 bytes from eeprom on read */
388 for (i
=0; i
< eeprom
->len
/ 2; i
++) {
389 if (ax8817x_read_cmd(dev
, AX_CMD_READ_EEPROM
,
390 eeprom
->offset
+ i
, 0, 2, &ebuf
[i
]) < 0)
396 static void ax8817x_get_drvinfo (struct net_device
*net
,
397 struct ethtool_drvinfo
*info
)
399 /* Inherit standard device info */
400 usbnet_get_drvinfo(net
, info
);
401 info
->eedump_len
= 0x3e;
404 static int ax8817x_get_settings(struct net_device
*net
, struct ethtool_cmd
*cmd
)
406 struct usbnet
*dev
= netdev_priv(net
);
408 return mii_ethtool_gset(&dev
->mii
,cmd
);
411 static int ax8817x_set_settings(struct net_device
*net
, struct ethtool_cmd
*cmd
)
413 struct usbnet
*dev
= netdev_priv(net
);
415 return mii_ethtool_sset(&dev
->mii
,cmd
);
418 /* We need to override some ethtool_ops so we require our
419 own structure so we don't interfere with other usbnet
420 devices that may be connected at the same time. */
421 static struct ethtool_ops ax8817x_ethtool_ops
= {
422 .get_drvinfo
= ax8817x_get_drvinfo
,
423 .get_link
= ethtool_op_get_link
,
424 .get_msglevel
= usbnet_get_msglevel
,
425 .set_msglevel
= usbnet_set_msglevel
,
426 .get_wol
= ax8817x_get_wol
,
427 .set_wol
= ax8817x_set_wol
,
428 .get_eeprom_len
= ax8817x_get_eeprom_len
,
429 .get_eeprom
= ax8817x_get_eeprom
,
430 .get_settings
= ax8817x_get_settings
,
431 .set_settings
= ax8817x_set_settings
,
434 static int ax8817x_ioctl (struct net_device
*net
, struct ifreq
*rq
, int cmd
)
436 struct usbnet
*dev
= netdev_priv(net
);
438 return generic_mii_ioctl(&dev
->mii
, if_mii(rq
), cmd
, NULL
);
441 static int ax8817x_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
446 unsigned long gpio_bits
= dev
->driver_info
->data
;
448 usbnet_get_endpoints(dev
,intf
);
450 buf
= kmalloc(ETH_ALEN
, GFP_KERNEL
);
456 /* Toggle the GPIOs in a manufacturer/model specific way */
457 for (i
= 2; i
>= 0; i
--) {
458 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_WRITE_GPIOS
,
459 (gpio_bits
>> (i
* 8)) & 0xff, 0, 0,
465 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_WRITE_RX_CTL
,
466 0x80, 0, 0, buf
)) < 0) {
467 dbg("send AX_CMD_WRITE_RX_CTL failed: %d", ret
);
471 /* Get the MAC address */
472 memset(buf
, 0, ETH_ALEN
);
473 if ((ret
= ax8817x_read_cmd(dev
, AX_CMD_READ_NODE_ID
,
474 0, 0, 6, buf
)) < 0) {
475 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret
);
478 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
481 if ((ret
= ax8817x_read_cmd(dev
, AX_CMD_READ_PHY_ID
,
482 0, 0, 2, buf
)) < 0) {
483 dbg("error on read AX_CMD_READ_PHY_ID: %02x", ret
);
485 } else if (ret
< 2) {
486 /* this should always return 2 bytes */
487 dbg("AX_CMD_READ_PHY_ID returned less than 2 bytes: ret=%02x",
493 /* Initialize MII structure */
494 dev
->mii
.dev
= dev
->net
;
495 dev
->mii
.mdio_read
= ax8817x_mdio_read
;
496 dev
->mii
.mdio_write
= ax8817x_mdio_write
;
497 dev
->mii
.phy_id_mask
= 0x3f;
498 dev
->mii
.reg_num_mask
= 0x1f;
499 dev
->mii
.phy_id
= *((u8
*)buf
+ 1);
500 dev
->net
->do_ioctl
= ax8817x_ioctl
;
502 dev
->net
->set_multicast_list
= ax8817x_set_multicast
;
503 dev
->net
->ethtool_ops
= &ax8817x_ethtool_ops
;
505 ax8817x_mdio_write_le(dev
->net
, dev
->mii
.phy_id
, MII_BMCR
, BMCR_RESET
);
506 ax8817x_mdio_write_le(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
,
507 ADVERTISE_ALL
| ADVERTISE_CSMA
| ADVERTISE_PAUSE_CAP
);
508 mii_nway_restart(&dev
->mii
);
517 static struct ethtool_ops ax88772_ethtool_ops
= {
518 .get_drvinfo
= ax8817x_get_drvinfo
,
519 .get_link
= ethtool_op_get_link
,
520 .get_msglevel
= usbnet_get_msglevel
,
521 .set_msglevel
= usbnet_set_msglevel
,
522 .get_wol
= ax8817x_get_wol
,
523 .set_wol
= ax8817x_set_wol
,
524 .get_eeprom_len
= ax8817x_get_eeprom_len
,
525 .get_eeprom
= ax8817x_get_eeprom
,
526 .get_settings
= ax8817x_get_settings
,
527 .set_settings
= ax8817x_set_settings
,
530 static int ax88772_bind(struct usbnet
*dev
, struct usb_interface
*intf
)
535 usbnet_get_endpoints(dev
,intf
);
537 buf
= kmalloc(6, GFP_KERNEL
);
539 dbg ("Cannot allocate memory for buffer");
544 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_WRITE_GPIOS
,
545 0x00B0, 0, 0, buf
)) < 0)
549 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_SW_PHY_SELECT
,
550 0x0001, 0, 0, buf
)) < 0) {
551 dbg("Select PHY #1 failed: %d", ret
);
555 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_SW_RESET
, AX_SWRESET_IPPD
,
557 dbg("Failed to power down internal PHY: %d", ret
);
562 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_SW_RESET
, AX_SWRESET_CLEAR
,
564 dbg("Failed to perform software reset: %d", ret
);
569 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_SW_RESET
,
570 AX_SWRESET_IPRL
| AX_SWRESET_PRL
,
572 dbg("Failed to set Internal/External PHY reset control: %d",
578 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_WRITE_RX_CTL
,
579 0x0000, 0, 0, buf
)) < 0) {
580 dbg("Failed to reset RX_CTL: %d", ret
);
584 /* Get the MAC address */
585 memset(buf
, 0, ETH_ALEN
);
586 if ((ret
= ax8817x_read_cmd(dev
, AX88772_CMD_READ_NODE_ID
,
587 0, 0, ETH_ALEN
, buf
)) < 0) {
588 dbg("Failed to read MAC address: %d", ret
);
591 memcpy(dev
->net
->dev_addr
, buf
, ETH_ALEN
);
593 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_SET_SW_MII
,
594 0, 0, 0, buf
)) < 0) {
595 dbg("Enabling software MII failed: %d", ret
);
599 if (((ret
= ax8817x_read_cmd(dev
, AX_CMD_READ_MII_REG
,
600 0x0010, 2, 2, buf
)) < 0)
601 || (*((u16
*)buf
) != 0x003b)) {
602 dbg("Read PHY register 2 must be 0x3b00: %d", ret
);
606 /* Initialize MII structure */
607 dev
->mii
.dev
= dev
->net
;
608 dev
->mii
.mdio_read
= ax8817x_mdio_read
;
609 dev
->mii
.mdio_write
= ax8817x_mdio_write
;
610 dev
->mii
.phy_id_mask
= 0xff;
611 dev
->mii
.reg_num_mask
= 0xff;
612 dev
->net
->do_ioctl
= ax8817x_ioctl
;
615 if ((ret
= ax8817x_read_cmd(dev
, AX_CMD_READ_PHY_ID
,
616 0, 0, 2, buf
)) < 0) {
617 dbg("Error reading PHY ID: %02x", ret
);
619 } else if (ret
< 2) {
620 /* this should always return 2 bytes */
621 dbg("AX_CMD_READ_PHY_ID returned less than 2 bytes: ret=%02x",
626 dev
->mii
.phy_id
= *((u8
*)buf
+ 1);
628 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_SW_RESET
, AX_SWRESET_PRL
,
630 dbg("Set external PHY reset pin level: %d", ret
);
634 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_SW_RESET
,
635 AX_SWRESET_IPRL
| AX_SWRESET_PRL
,
637 dbg("Set Internal/External PHY reset control: %d", ret
);
643 dev
->net
->set_multicast_list
= ax8817x_set_multicast
;
644 dev
->net
->ethtool_ops
= &ax88772_ethtool_ops
;
646 ax8817x_mdio_write_le(dev
->net
, dev
->mii
.phy_id
, MII_BMCR
, BMCR_RESET
);
647 ax8817x_mdio_write_le(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
,
648 ADVERTISE_ALL
| ADVERTISE_CSMA
);
649 mii_nway_restart(&dev
->mii
);
651 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_WRITE_MEDIUM_MODE
,
652 AX88772_MEDIUM_DEFAULT
, 0, 0, buf
)) < 0) {
653 dbg("Write medium mode register: %d", ret
);
657 if ((ret
= ax8817x_write_cmd(dev
, AX_CMD_WRITE_IPG0
,
658 AX88772_IPG0_DEFAULT
| AX88772_IPG1_DEFAULT
,
659 AX88772_IPG2_DEFAULT
, 0, buf
)) < 0) {
660 dbg("Write IPG,IPG1,IPG2 failed: %d", ret
);
664 ax8817x_write_cmd(dev
, AX_CMD_SET_HW_MII
, 0, 0, 0, &buf
)) < 0) {
665 dbg("Failed to set hardware MII: %02x", ret
);
669 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
671 ax8817x_write_cmd(dev
, AX_CMD_WRITE_RX_CTL
, 0x0088, 0, 0,
673 dbg("Reset RX_CTL failed: %d", ret
);
679 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
680 if (dev
->driver_info
->flags
& FLAG_FRAMING_AX
) {
681 /* hard_mtu is still the default - the device does not support
683 dev
->rx_urb_size
= 2048;
694 static int ax88772_rx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
)
699 struct sk_buff
*ax_skb
;
702 head
= (u8
*) skb
->data
;
703 memcpy(&header
, head
, sizeof(header
));
704 le32_to_cpus(&header
);
705 packet
= head
+ sizeof(header
);
709 while (skb
->len
> 0) {
710 if ((short)(header
& 0x0000ffff) !=
711 ~((short)((header
& 0xffff0000) >> 16))) {
712 devdbg(dev
,"header length data is error");
714 /* get the packet length */
715 size
= (u16
) (header
& 0x0000ffff);
717 if ((skb
->len
) - ((size
+ 1) & 0xfffe) == 0)
719 if (size
> ETH_FRAME_LEN
) {
720 devdbg(dev
,"invalid rx length %d", size
);
723 ax_skb
= skb_clone(skb
, GFP_ATOMIC
);
726 ax_skb
->data
= packet
;
727 ax_skb
->tail
= packet
+ size
;
728 usbnet_skb_return(dev
, ax_skb
);
733 skb_pull(skb
, (size
+ 1) & 0xfffe);
738 head
= (u8
*) skb
->data
;
739 memcpy(&header
, head
, sizeof(header
));
740 le32_to_cpus(&header
);
741 packet
= head
+ sizeof(header
);
746 devdbg(dev
,"invalid rx length %d", skb
->len
);
752 static struct sk_buff
*ax88772_tx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
,
756 int headroom
= skb_headroom(skb
);
757 int tailroom
= skb_tailroom(skb
);
759 u32 padbytes
= 0xffff0000;
761 padlen
= ((skb
->len
+ 4) % 512) ? 0 : 4;
763 if ((!skb_cloned(skb
))
764 && ((headroom
+ tailroom
) >= (4 + padlen
))) {
765 if ((headroom
< 4) || (tailroom
< padlen
)) {
766 skb
->data
= memmove(skb
->head
+ 4, skb
->data
, skb
->len
);
767 skb
->tail
= skb
->data
+ skb
->len
;
770 struct sk_buff
*skb2
;
771 skb2
= skb_copy_expand(skb
, 4, padlen
, flags
);
772 dev_kfree_skb_any(skb
);
779 packet_len
= (((skb
->len
- 4) ^ 0x0000ffff) << 16) + (skb
->len
- 4);
780 memcpy(skb
->data
, &packet_len
, sizeof(packet_len
));
782 if ((skb
->len
% 512) == 0) {
783 memcpy( skb
->tail
, &padbytes
, sizeof(padbytes
));
784 skb_put(skb
, sizeof(padbytes
));
789 static int ax88772_link_reset(struct usbnet
*dev
)
796 mode
= AX88772_MEDIUM_DEFAULT
;
797 lpa
= ax8817x_mdio_read_le(dev
->net
, dev
->mii
.phy_id
, MII_LPA
);
798 adv
= ax8817x_mdio_read_le(dev
->net
, dev
->mii
.phy_id
, MII_ADVERTISE
);
799 res
= mii_nway_result(lpa
|adv
);
801 if ((res
& LPA_DUPLEX
) == 0)
802 mode
&= ~AX88772_MEDIUM_FULL_DUPLEX
;
803 if ((res
& LPA_100
) == 0)
804 mode
&= ~AX88772_MEDIUM_100MB
;
805 ax8817x_write_cmd(dev
, AX_CMD_WRITE_MEDIUM_MODE
, mode
, 0, 0, NULL
);
810 static const struct driver_info ax8817x_info
= {
811 .description
= "ASIX AX8817x USB 2.0 Ethernet",
812 .bind
= ax8817x_bind
,
813 .status
= ax8817x_status
,
814 .link_reset
= ax88172_link_reset
,
815 .reset
= ax88172_link_reset
,
820 static const struct driver_info dlink_dub_e100_info
= {
821 .description
= "DLink DUB-E100 USB Ethernet",
822 .bind
= ax8817x_bind
,
823 .status
= ax8817x_status
,
824 .link_reset
= ax88172_link_reset
,
825 .reset
= ax88172_link_reset
,
830 static const struct driver_info netgear_fa120_info
= {
831 .description
= "Netgear FA-120 USB Ethernet",
832 .bind
= ax8817x_bind
,
833 .status
= ax8817x_status
,
834 .link_reset
= ax88172_link_reset
,
835 .reset
= ax88172_link_reset
,
840 static const struct driver_info hawking_uf200_info
= {
841 .description
= "Hawking UF200 USB Ethernet",
842 .bind
= ax8817x_bind
,
843 .status
= ax8817x_status
,
844 .link_reset
= ax88172_link_reset
,
845 .reset
= ax88172_link_reset
,
850 static const struct driver_info ax88772_info
= {
851 .description
= "ASIX AX88772 USB 2.0 Ethernet",
852 .bind
= ax88772_bind
,
853 .status
= ax8817x_status
,
854 .link_reset
= ax88772_link_reset
,
855 .reset
= ax88772_link_reset
,
856 .flags
= FLAG_ETHER
| FLAG_FRAMING_AX
,
857 .rx_fixup
= ax88772_rx_fixup
,
858 .tx_fixup
= ax88772_tx_fixup
,
862 static const struct usb_device_id products
[] = {
865 USB_DEVICE (0x077b, 0x2226),
866 .driver_info
= (unsigned long) &ax8817x_info
,
869 USB_DEVICE (0x0846, 0x1040),
870 .driver_info
= (unsigned long) &netgear_fa120_info
,
873 USB_DEVICE (0x2001, 0x1a00),
874 .driver_info
= (unsigned long) &dlink_dub_e100_info
,
876 // Intellinet, ST Lab USB Ethernet
877 USB_DEVICE (0x0b95, 0x1720),
878 .driver_info
= (unsigned long) &ax8817x_info
,
880 // Hawking UF200, TrendNet TU2-ET100
881 USB_DEVICE (0x07b8, 0x420a),
882 .driver_info
= (unsigned long) &hawking_uf200_info
,
884 // Billionton Systems, USB2AR
885 USB_DEVICE (0x08dd, 0x90ff),
886 .driver_info
= (unsigned long) &ax8817x_info
,
889 USB_DEVICE (0x0557, 0x2009),
890 .driver_info
= (unsigned long) &ax8817x_info
,
892 // Buffalo LUA-U2-KTX
893 USB_DEVICE (0x0411, 0x003d),
894 .driver_info
= (unsigned long) &ax8817x_info
,
896 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
897 USB_DEVICE (0x6189, 0x182d),
898 .driver_info
= (unsigned long) &ax8817x_info
,
900 // corega FEther USB2-TX
901 USB_DEVICE (0x07aa, 0x0017),
902 .driver_info
= (unsigned long) &ax8817x_info
,
904 // Surecom EP-1427X-2
905 USB_DEVICE (0x1189, 0x0893),
906 .driver_info
= (unsigned long) &ax8817x_info
,
908 // goodway corp usb gwusb2e
909 USB_DEVICE (0x1631, 0x6200),
910 .driver_info
= (unsigned long) &ax8817x_info
,
912 // ASIX AX88772 10/100
913 USB_DEVICE (0x0b95, 0x7720),
914 .driver_info
= (unsigned long) &ax88772_info
,
916 // Linksys USB200M Rev 2
917 USB_DEVICE (0x13b1, 0x0018),
918 .driver_info
= (unsigned long) &ax88772_info
,
920 // 0Q0 cable ethernet
921 USB_DEVICE (0x1557, 0x7720),
922 .driver_info
= (unsigned long) &ax88772_info
,
926 MODULE_DEVICE_TABLE(usb
, products
);
928 static struct usb_driver asix_driver
= {
930 .id_table
= products
,
931 .probe
= usbnet_probe
,
932 .suspend
= usbnet_suspend
,
933 .resume
= usbnet_resume
,
934 .disconnect
= usbnet_disconnect
,
937 static int __init
asix_init(void)
939 return usb_register(&asix_driver
);
941 module_init(asix_init
);
943 static void __exit
asix_exit(void)
945 usb_deregister(&asix_driver
);
947 module_exit(asix_exit
);
949 MODULE_AUTHOR("David Hollis");
950 MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
951 MODULE_LICENSE("GPL");