]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/usb/asix.c
Merge commit 'v2.6.29' into timers/core
[mirror_ubuntu-jammy-kernel.git] / drivers / net / usb / asix.c
CommitLineData
2e55cc72
DB
1/*
2 * ASIX AX8817X based USB 2.0 Ethernet Devices
933a27d3 3 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
2e55cc72 4 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
933a27d3 5 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
2e55cc72
DB
6 * Copyright (c) 2002-2003 TiVo Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23// #define DEBUG // error path messages, extra info
24// #define VERBOSE // more; success messages
25
2e55cc72
DB
26#include <linux/module.h>
27#include <linux/kmod.h>
2e55cc72
DB
28#include <linux/init.h>
29#include <linux/netdevice.h>
30#include <linux/etherdevice.h>
31#include <linux/ethtool.h>
32#include <linux/workqueue.h>
33#include <linux/mii.h>
34#include <linux/usb.h>
35#include <linux/crc32.h>
3692e94f 36#include <linux/usb/usbnet.h>
2e55cc72 37
933a27d3
DH
38#define DRIVER_VERSION "14-Jun-2006"
39static const char driver_name [] = "asix";
40
2e55cc72
DB
41/* ASIX AX8817X based USB 2.0 Ethernet Devices */
42
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
933a27d3 51#define AX_CMD_READ_RX_CTL 0x0f
2e55cc72
DB
52#define AX_CMD_WRITE_RX_CTL 0x10
53#define AX_CMD_READ_IPG012 0x11
54#define AX_CMD_WRITE_IPG0 0x12
55#define AX_CMD_WRITE_IPG1 0x13
933a27d3 56#define AX_CMD_READ_NODE_ID 0x13
2e55cc72
DB
57#define AX_CMD_WRITE_IPG2 0x14
58#define AX_CMD_WRITE_MULTI_FILTER 0x16
933a27d3 59#define AX88172_CMD_READ_NODE_ID 0x17
2e55cc72
DB
60#define AX_CMD_READ_PHY_ID 0x19
61#define AX_CMD_READ_MEDIUM_STATUS 0x1a
62#define AX_CMD_WRITE_MEDIUM_MODE 0x1b
63#define AX_CMD_READ_MONITOR_MODE 0x1c
64#define AX_CMD_WRITE_MONITOR_MODE 0x1d
933a27d3 65#define AX_CMD_READ_GPIOS 0x1e
2e55cc72
DB
66#define AX_CMD_WRITE_GPIOS 0x1f
67#define AX_CMD_SW_RESET 0x20
68#define AX_CMD_SW_PHY_STATUS 0x21
69#define AX_CMD_SW_PHY_SELECT 0x22
2e55cc72
DB
70
71#define AX_MONITOR_MODE 0x01
72#define AX_MONITOR_LINK 0x02
73#define AX_MONITOR_MAGIC 0x04
74#define AX_MONITOR_HSFS 0x10
75
76/* AX88172 Medium Status Register values */
933a27d3
DH
77#define AX88172_MEDIUM_FD 0x02
78#define AX88172_MEDIUM_TX 0x04
79#define AX88172_MEDIUM_FC 0x10
80#define AX88172_MEDIUM_DEFAULT \
81 ( AX88172_MEDIUM_FD | AX88172_MEDIUM_TX | AX88172_MEDIUM_FC )
2e55cc72
DB
82
83#define AX_MCAST_FILTER_SIZE 8
84#define AX_MAX_MCAST 64
85
2e55cc72
DB
86#define AX_SWRESET_CLEAR 0x00
87#define AX_SWRESET_RR 0x01
88#define AX_SWRESET_RT 0x02
89#define AX_SWRESET_PRTE 0x04
90#define AX_SWRESET_PRL 0x08
91#define AX_SWRESET_BZ 0x10
92#define AX_SWRESET_IPRL 0x20
93#define AX_SWRESET_IPPD 0x40
94
95#define AX88772_IPG0_DEFAULT 0x15
96#define AX88772_IPG1_DEFAULT 0x0c
97#define AX88772_IPG2_DEFAULT 0x12
98
933a27d3
DH
99/* AX88772 & AX88178 Medium Mode Register */
100#define AX_MEDIUM_PF 0x0080
101#define AX_MEDIUM_JFE 0x0040
102#define AX_MEDIUM_TFC 0x0020
103#define AX_MEDIUM_RFC 0x0010
104#define AX_MEDIUM_ENCK 0x0008
105#define AX_MEDIUM_AC 0x0004
106#define AX_MEDIUM_FD 0x0002
107#define AX_MEDIUM_GM 0x0001
108#define AX_MEDIUM_SM 0x1000
109#define AX_MEDIUM_SBP 0x0800
110#define AX_MEDIUM_PS 0x0200
111#define AX_MEDIUM_RE 0x0100
112
113#define AX88178_MEDIUM_DEFAULT \
114 (AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
115 AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
116 AX_MEDIUM_RE )
2e55cc72 117
933a27d3
DH
118#define AX88772_MEDIUM_DEFAULT \
119 (AX_MEDIUM_FD | AX_MEDIUM_RFC | \
120 AX_MEDIUM_TFC | AX_MEDIUM_PS | \
121 AX_MEDIUM_AC | AX_MEDIUM_RE )
122
123/* AX88772 & AX88178 RX_CTL values */
124#define AX_RX_CTL_SO 0x0080
125#define AX_RX_CTL_AP 0x0020
126#define AX_RX_CTL_AM 0x0010
127#define AX_RX_CTL_AB 0x0008
128#define AX_RX_CTL_SEP 0x0004
129#define AX_RX_CTL_AMALL 0x0002
130#define AX_RX_CTL_PRO 0x0001
131#define AX_RX_CTL_MFB_2048 0x0000
132#define AX_RX_CTL_MFB_4096 0x0100
133#define AX_RX_CTL_MFB_8192 0x0200
134#define AX_RX_CTL_MFB_16384 0x0300
135
136#define AX_DEFAULT_RX_CTL \
137 (AX_RX_CTL_SO | AX_RX_CTL_AB )
138
139/* GPIO 0 .. 2 toggles */
140#define AX_GPIO_GPO0EN 0x01 /* GPIO0 Output enable */
141#define AX_GPIO_GPO_0 0x02 /* GPIO0 Output value */
142#define AX_GPIO_GPO1EN 0x04 /* GPIO1 Output enable */
143#define AX_GPIO_GPO_1 0x08 /* GPIO1 Output value */
144#define AX_GPIO_GPO2EN 0x10 /* GPIO2 Output enable */
145#define AX_GPIO_GPO_2 0x20 /* GPIO2 Output value */
146#define AX_GPIO_RESERVED 0x40 /* Reserved */
147#define AX_GPIO_RSE 0x80 /* Reload serial EEPROM */
148
149#define AX_EEPROM_MAGIC 0xdeadbeef
150#define AX88172_EEPROM_LEN 0x40
151#define AX88772_EEPROM_LEN 0xff
152
153#define PHY_MODE_MARVELL 0x0000
154#define MII_MARVELL_LED_CTRL 0x0018
155#define MII_MARVELL_STATUS 0x001b
156#define MII_MARVELL_CTRL 0x0014
157
158#define MARVELL_LED_MANUAL 0x0019
159
160#define MARVELL_STATUS_HWCFG 0x0004
161
162#define MARVELL_CTRL_TXDELAY 0x0002
163#define MARVELL_CTRL_RXDELAY 0x0080
2e55cc72
DB
164
165/* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
48b1be6a 166struct asix_data {
2e55cc72 167 u8 multi_filter[AX_MCAST_FILTER_SIZE];
933a27d3
DH
168 u8 phymode;
169 u8 ledmode;
170 u8 eeprom_len;
2e55cc72
DB
171};
172
173struct ax88172_int_data {
51bf2976 174 __le16 res1;
2e55cc72 175 u8 link;
51bf2976 176 __le16 res2;
2e55cc72 177 u8 status;
51bf2976 178 __le16 res3;
2e55cc72
DB
179} __attribute__ ((packed));
180
48b1be6a 181static int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
2e55cc72
DB
182 u16 size, void *data)
183{
51bf2976
AV
184 void *buf;
185 int err = -ENOMEM;
186
933a27d3
DH
187 devdbg(dev,"asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
188 cmd, value, index, size);
51bf2976
AV
189
190 buf = kmalloc(size, GFP_KERNEL);
191 if (!buf)
192 goto out;
193
194 err = usb_control_msg(
2e55cc72
DB
195 dev->udev,
196 usb_rcvctrlpipe(dev->udev, 0),
197 cmd,
198 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
199 value,
200 index,
51bf2976 201 buf,
2e55cc72
DB
202 size,
203 USB_CTRL_GET_TIMEOUT);
94d43363 204 if (err == size)
51bf2976 205 memcpy(data, buf, size);
94d43363
RD
206 else if (err >= 0)
207 err = -EINVAL;
51bf2976
AV
208 kfree(buf);
209
210out:
211 return err;
2e55cc72
DB
212}
213
48b1be6a 214static int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
2e55cc72
DB
215 u16 size, void *data)
216{
51bf2976
AV
217 void *buf = NULL;
218 int err = -ENOMEM;
219
933a27d3
DH
220 devdbg(dev,"asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
221 cmd, value, index, size);
51bf2976
AV
222
223 if (data) {
224 buf = kmalloc(size, GFP_KERNEL);
225 if (!buf)
226 goto out;
227 memcpy(buf, data, size);
228 }
229
230 err = usb_control_msg(
2e55cc72
DB
231 dev->udev,
232 usb_sndctrlpipe(dev->udev, 0),
233 cmd,
234 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
235 value,
236 index,
51bf2976 237 buf,
2e55cc72
DB
238 size,
239 USB_CTRL_SET_TIMEOUT);
51bf2976
AV
240 kfree(buf);
241
242out:
243 return err;
2e55cc72
DB
244}
245
7d12e780 246static void asix_async_cmd_callback(struct urb *urb)
2e55cc72
DB
247{
248 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
c94cb314 249 int status = urb->status;
2e55cc72 250
c94cb314 251 if (status < 0)
48b1be6a 252 printk(KERN_DEBUG "asix_async_cmd_callback() failed with %d",
c94cb314 253 status);
2e55cc72
DB
254
255 kfree(req);
256 usb_free_urb(urb);
257}
258
933a27d3
DH
259static void
260asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
261 u16 size, void *data)
262{
263 struct usb_ctrlrequest *req;
264 int status;
265 struct urb *urb;
266
267 devdbg(dev,"asix_write_cmd_async() cmd=0x%02x value=0x%04x index=0x%04x size=%d",
268 cmd, value, index, size);
269 if ((urb = usb_alloc_urb(0, GFP_ATOMIC)) == NULL) {
270 deverr(dev, "Error allocating URB in write_cmd_async!");
271 return;
272 }
273
274 if ((req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC)) == NULL) {
275 deverr(dev, "Failed to allocate memory for control request");
276 usb_free_urb(urb);
277 return;
278 }
279
280 req->bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
281 req->bRequest = cmd;
9aa742ef
ON
282 req->wValue = cpu_to_le16(value);
283 req->wIndex = cpu_to_le16(index);
284 req->wLength = cpu_to_le16(size);
933a27d3
DH
285
286 usb_fill_control_urb(urb, dev->udev,
287 usb_sndctrlpipe(dev->udev, 0),
288 (void *)req, data, size,
289 asix_async_cmd_callback, req);
290
291 if((status = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
292 deverr(dev, "Error submitting the control message: status=%d",
293 status);
294 kfree(req);
295 usb_free_urb(urb);
296 }
297}
298
299static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
300{
301 u8 *head;
302 u32 header;
303 char *packet;
304 struct sk_buff *ax_skb;
305 u16 size;
306
307 head = (u8 *) skb->data;
308 memcpy(&header, head, sizeof(header));
309 le32_to_cpus(&header);
310 packet = head + sizeof(header);
311
312 skb_pull(skb, 4);
313
314 while (skb->len > 0) {
315 if ((short)(header & 0x0000ffff) !=
316 ~((short)((header & 0xffff0000) >> 16))) {
317 deverr(dev,"asix_rx_fixup() Bad Header Length");
318 }
319 /* get the packet length */
320 size = (u16) (header & 0x0000ffff);
321
322 if ((skb->len) - ((size + 1) & 0xfffe) == 0)
323 return 2;
324 if (size > ETH_FRAME_LEN) {
325 deverr(dev,"asix_rx_fixup() Bad RX Length %d", size);
326 return 0;
327 }
328 ax_skb = skb_clone(skb, GFP_ATOMIC);
329 if (ax_skb) {
330 ax_skb->len = size;
331 ax_skb->data = packet;
27a884dc 332 skb_set_tail_pointer(ax_skb, size);
933a27d3
DH
333 usbnet_skb_return(dev, ax_skb);
334 } else {
335 return 0;
336 }
337
338 skb_pull(skb, (size + 1) & 0xfffe);
339
340 if (skb->len == 0)
341 break;
342
343 head = (u8 *) skb->data;
344 memcpy(&header, head, sizeof(header));
345 le32_to_cpus(&header);
346 packet = head + sizeof(header);
347 skb_pull(skb, 4);
348 }
349
350 if (skb->len < 0) {
351 deverr(dev,"asix_rx_fixup() Bad SKB Length %d", skb->len);
352 return 0;
353 }
354 return 1;
355}
356
357static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
358 gfp_t flags)
359{
360 int padlen;
361 int headroom = skb_headroom(skb);
362 int tailroom = skb_tailroom(skb);
363 u32 packet_len;
364 u32 padbytes = 0xffff0000;
365
366 padlen = ((skb->len + 4) % 512) ? 0 : 4;
367
368 if ((!skb_cloned(skb))
369 && ((headroom + tailroom) >= (4 + padlen))) {
370 if ((headroom < 4) || (tailroom < padlen)) {
371 skb->data = memmove(skb->head + 4, skb->data, skb->len);
27a884dc 372 skb_set_tail_pointer(skb, skb->len);
933a27d3
DH
373 }
374 } else {
375 struct sk_buff *skb2;
376 skb2 = skb_copy_expand(skb, 4, padlen, flags);
377 dev_kfree_skb_any(skb);
378 skb = skb2;
379 if (!skb)
380 return NULL;
381 }
382
383 skb_push(skb, 4);
384 packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4);
57e4f041 385 cpu_to_le32s(&packet_len);
27d7ff46 386 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
933a27d3
DH
387
388 if ((skb->len % 512) == 0) {
57e4f041 389 cpu_to_le32s(&padbytes);
27a884dc 390 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
933a27d3
DH
391 skb_put(skb, sizeof(padbytes));
392 }
393 return skb;
394}
395
396static void asix_status(struct usbnet *dev, struct urb *urb)
397{
398 struct ax88172_int_data *event;
399 int link;
400
401 if (urb->actual_length < 8)
402 return;
403
404 event = urb->transfer_buffer;
405 link = event->link & 0x01;
406 if (netif_carrier_ok(dev->net) != link) {
407 if (link) {
408 netif_carrier_on(dev->net);
409 usbnet_defer_kevent (dev, EVENT_LINK_RESET );
410 } else
411 netif_carrier_off(dev->net);
412 devdbg(dev, "Link Status is: %d", link);
413 }
414}
415
48b1be6a
DH
416static inline int asix_set_sw_mii(struct usbnet *dev)
417{
418 int ret;
419 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
420 if (ret < 0)
933a27d3 421 deverr(dev, "Failed to enable software MII access");
48b1be6a
DH
422 return ret;
423}
424
425static inline int asix_set_hw_mii(struct usbnet *dev)
426{
427 int ret;
428 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
429 if (ret < 0)
933a27d3 430 deverr(dev, "Failed to enable hardware MII access");
48b1be6a
DH
431 return ret;
432}
433
933a27d3 434static inline int asix_get_phy_addr(struct usbnet *dev)
48b1be6a 435{
51bf2976
AV
436 u8 buf[2];
437 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
48b1be6a 438
933a27d3
DH
439 devdbg(dev, "asix_get_phy_addr()");
440
51bf2976 441 if (ret < 0) {
933a27d3 442 deverr(dev, "Error reading PHYID register: %02x", ret);
51bf2976 443 goto out;
48b1be6a 444 }
51bf2976
AV
445 devdbg(dev, "asix_get_phy_addr() returning 0x%04x", *((__le16 *)buf));
446 ret = buf[1];
447
448out:
48b1be6a
DH
449 return ret;
450}
451
452static int asix_sw_reset(struct usbnet *dev, u8 flags)
453{
454 int ret;
455
456 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
457 if (ret < 0)
933a27d3
DH
458 deverr(dev,"Failed to send software reset: %02x", ret);
459
460 return ret;
461}
48b1be6a 462
933a27d3
DH
463static u16 asix_read_rx_ctl(struct usbnet *dev)
464{
51bf2976
AV
465 __le16 v;
466 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
933a27d3 467
51bf2976 468 if (ret < 0) {
933a27d3 469 deverr(dev, "Error reading RX_CTL register: %02x", ret);
51bf2976 470 goto out;
933a27d3 471 }
51bf2976
AV
472 ret = le16_to_cpu(v);
473out:
48b1be6a
DH
474 return ret;
475}
476
477static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
478{
479 int ret;
480
933a27d3 481 devdbg(dev,"asix_write_rx_ctl() - mode = 0x%04x", mode);
48b1be6a
DH
482 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
483 if (ret < 0)
933a27d3
DH
484 deverr(dev, "Failed to write RX_CTL mode to 0x%04x: %02x",
485 mode, ret);
48b1be6a
DH
486
487 return ret;
488}
489
933a27d3 490static u16 asix_read_medium_status(struct usbnet *dev)
2e55cc72 491{
51bf2976
AV
492 __le16 v;
493 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
2e55cc72 494
51bf2976 495 if (ret < 0) {
933a27d3 496 deverr(dev, "Error reading Medium Status register: %02x", ret);
51bf2976 497 goto out;
2e55cc72 498 }
51bf2976
AV
499 ret = le16_to_cpu(v);
500out:
933a27d3 501 return ret;
2e55cc72
DB
502}
503
933a27d3 504static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
2e55cc72 505{
933a27d3 506 int ret;
2e55cc72 507
933a27d3
DH
508 devdbg(dev,"asix_write_medium_mode() - mode = 0x%04x", mode);
509 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
510 if (ret < 0)
511 deverr(dev, "Failed to write Medium Mode mode to 0x%04x: %02x",
512 mode, ret);
2e55cc72 513
933a27d3
DH
514 return ret;
515}
2e55cc72 516
933a27d3
DH
517static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
518{
519 int ret;
2e55cc72 520
933a27d3
DH
521 devdbg(dev,"asix_write_gpio() - value = 0x%04x", value);
522 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
523 if (ret < 0)
524 deverr(dev, "Failed to write GPIO value 0x%04x: %02x",
525 value, ret);
2e55cc72 526
933a27d3
DH
527 if (sleep)
528 msleep(sleep);
529
530 return ret;
2e55cc72
DB
531}
532
933a27d3
DH
533/*
534 * AX88772 & AX88178 have a 16-bit RX_CTL value
535 */
48b1be6a 536static void asix_set_multicast(struct net_device *net)
2e55cc72
DB
537{
538 struct usbnet *dev = netdev_priv(net);
48b1be6a 539 struct asix_data *data = (struct asix_data *)&dev->data;
933a27d3 540 u16 rx_ctl = AX_DEFAULT_RX_CTL;
2e55cc72
DB
541
542 if (net->flags & IFF_PROMISC) {
933a27d3 543 rx_ctl |= AX_RX_CTL_PRO;
2e55cc72
DB
544 } else if (net->flags & IFF_ALLMULTI
545 || net->mc_count > AX_MAX_MCAST) {
933a27d3 546 rx_ctl |= AX_RX_CTL_AMALL;
2e55cc72
DB
547 } else if (net->mc_count == 0) {
548 /* just broadcast and directed */
549 } else {
550 /* We use the 20 byte dev->data
551 * for our 8 byte filter buffer
552 * to avoid allocating memory that
553 * is tricky to free later */
554 struct dev_mc_list *mc_list = net->mc_list;
555 u32 crc_bits;
556 int i;
557
558 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
559
560 /* Build the multicast hash filter. */
561 for (i = 0; i < net->mc_count; i++) {
562 crc_bits =
563 ether_crc(ETH_ALEN,
564 mc_list->dmi_addr) >> 26;
565 data->multi_filter[crc_bits >> 3] |=
566 1 << (crc_bits & 7);
567 mc_list = mc_list->next;
568 }
569
48b1be6a 570 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
2e55cc72
DB
571 AX_MCAST_FILTER_SIZE, data->multi_filter);
572
933a27d3 573 rx_ctl |= AX_RX_CTL_AM;
2e55cc72
DB
574 }
575
48b1be6a 576 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
2e55cc72
DB
577}
578
48b1be6a 579static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
2e55cc72
DB
580{
581 struct usbnet *dev = netdev_priv(netdev);
51bf2976 582 __le16 res;
2e55cc72 583
a9fc6338 584 mutex_lock(&dev->phy_mutex);
48b1be6a
DH
585 asix_set_sw_mii(dev);
586 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
51bf2976 587 (__u16)loc, 2, &res);
48b1be6a 588 asix_set_hw_mii(dev);
a9fc6338 589 mutex_unlock(&dev->phy_mutex);
2e55cc72 590
51bf2976 591 devdbg(dev, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x", phy_id, loc, le16_to_cpu(res));
2e55cc72 592
51bf2976 593 return le16_to_cpu(res);
2e55cc72
DB
594}
595
596static void
48b1be6a 597asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
2e55cc72
DB
598{
599 struct usbnet *dev = netdev_priv(netdev);
51bf2976 600 __le16 res = cpu_to_le16(val);
2e55cc72 601
933a27d3 602 devdbg(dev, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x", phy_id, loc, val);
a9fc6338 603 mutex_lock(&dev->phy_mutex);
48b1be6a 604 asix_set_sw_mii(dev);
51bf2976 605 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
48b1be6a 606 asix_set_hw_mii(dev);
a9fc6338 607 mutex_unlock(&dev->phy_mutex);
2e55cc72
DB
608}
609
933a27d3
DH
610/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
611static u32 asix_get_phyid(struct usbnet *dev)
2e55cc72 612{
933a27d3
DH
613 int phy_reg;
614 u32 phy_id;
2e55cc72 615
933a27d3
DH
616 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
617 if (phy_reg < 0)
618 return 0;
2e55cc72 619
933a27d3 620 phy_id = (phy_reg & 0xffff) << 16;
2e55cc72 621
933a27d3
DH
622 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
623 if (phy_reg < 0)
624 return 0;
625
626 phy_id |= (phy_reg & 0xffff);
627
628 return phy_id;
2e55cc72
DB
629}
630
631static void
48b1be6a 632asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
2e55cc72
DB
633{
634 struct usbnet *dev = netdev_priv(net);
635 u8 opt;
636
48b1be6a 637 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
2e55cc72
DB
638 wolinfo->supported = 0;
639 wolinfo->wolopts = 0;
640 return;
641 }
642 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
643 wolinfo->wolopts = 0;
644 if (opt & AX_MONITOR_MODE) {
645 if (opt & AX_MONITOR_LINK)
646 wolinfo->wolopts |= WAKE_PHY;
647 if (opt & AX_MONITOR_MAGIC)
648 wolinfo->wolopts |= WAKE_MAGIC;
649 }
650}
651
652static int
48b1be6a 653asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
2e55cc72
DB
654{
655 struct usbnet *dev = netdev_priv(net);
656 u8 opt = 0;
2e55cc72
DB
657
658 if (wolinfo->wolopts & WAKE_PHY)
659 opt |= AX_MONITOR_LINK;
660 if (wolinfo->wolopts & WAKE_MAGIC)
661 opt |= AX_MONITOR_MAGIC;
662 if (opt != 0)
663 opt |= AX_MONITOR_MODE;
664
48b1be6a 665 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
51bf2976 666 opt, 0, 0, NULL) < 0)
2e55cc72
DB
667 return -EINVAL;
668
669 return 0;
670}
671
48b1be6a 672static int asix_get_eeprom_len(struct net_device *net)
2e55cc72 673{
933a27d3
DH
674 struct usbnet *dev = netdev_priv(net);
675 struct asix_data *data = (struct asix_data *)&dev->data;
676
677 return data->eeprom_len;
2e55cc72
DB
678}
679
48b1be6a 680static int asix_get_eeprom(struct net_device *net,
2e55cc72
DB
681 struct ethtool_eeprom *eeprom, u8 *data)
682{
683 struct usbnet *dev = netdev_priv(net);
51bf2976 684 __le16 *ebuf = (__le16 *)data;
2e55cc72
DB
685 int i;
686
687 /* Crude hack to ensure that we don't overwrite memory
688 * if an odd length is supplied
689 */
690 if (eeprom->len % 2)
691 return -EINVAL;
692
693 eeprom->magic = AX_EEPROM_MAGIC;
694
695 /* ax8817x returns 2 bytes from eeprom on read */
696 for (i=0; i < eeprom->len / 2; i++) {
48b1be6a 697 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
2e55cc72
DB
698 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
699 return -EINVAL;
700 }
701 return 0;
702}
703
48b1be6a 704static void asix_get_drvinfo (struct net_device *net,
2e55cc72
DB
705 struct ethtool_drvinfo *info)
706{
933a27d3
DH
707 struct usbnet *dev = netdev_priv(net);
708 struct asix_data *data = (struct asix_data *)&dev->data;
709
2e55cc72
DB
710 /* Inherit standard device info */
711 usbnet_get_drvinfo(net, info);
933a27d3
DH
712 strncpy (info->driver, driver_name, sizeof info->driver);
713 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
714 info->eedump_len = data->eeprom_len;
2e55cc72
DB
715}
716
933a27d3
DH
717static u32 asix_get_link(struct net_device *net)
718{
719 struct usbnet *dev = netdev_priv(net);
720
721 return mii_link_ok(&dev->mii);
722}
723
724static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
725{
726 struct usbnet *dev = netdev_priv(net);
727
728 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
729}
730
731/* We need to override some ethtool_ops so we require our
732 own structure so we don't interfere with other usbnet
733 devices that may be connected at the same time. */
734static struct ethtool_ops ax88172_ethtool_ops = {
735 .get_drvinfo = asix_get_drvinfo,
736 .get_link = asix_get_link,
933a27d3 737 .get_msglevel = usbnet_get_msglevel,
2e55cc72 738 .set_msglevel = usbnet_set_msglevel,
48b1be6a
DH
739 .get_wol = asix_get_wol,
740 .set_wol = asix_set_wol,
741 .get_eeprom_len = asix_get_eeprom_len,
742 .get_eeprom = asix_get_eeprom,
c41286fd
AB
743 .get_settings = usbnet_get_settings,
744 .set_settings = usbnet_set_settings,
745 .nway_reset = usbnet_nway_reset,
2e55cc72
DB
746};
747
933a27d3 748static void ax88172_set_multicast(struct net_device *net)
2e55cc72
DB
749{
750 struct usbnet *dev = netdev_priv(net);
933a27d3
DH
751 struct asix_data *data = (struct asix_data *)&dev->data;
752 u8 rx_ctl = 0x8c;
2e55cc72 753
933a27d3
DH
754 if (net->flags & IFF_PROMISC) {
755 rx_ctl |= 0x01;
756 } else if (net->flags & IFF_ALLMULTI
757 || net->mc_count > AX_MAX_MCAST) {
758 rx_ctl |= 0x02;
759 } else if (net->mc_count == 0) {
760 /* just broadcast and directed */
761 } else {
762 /* We use the 20 byte dev->data
763 * for our 8 byte filter buffer
764 * to avoid allocating memory that
765 * is tricky to free later */
766 struct dev_mc_list *mc_list = net->mc_list;
767 u32 crc_bits;
768 int i;
769
770 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
771
772 /* Build the multicast hash filter. */
773 for (i = 0; i < net->mc_count; i++) {
774 crc_bits =
775 ether_crc(ETH_ALEN,
776 mc_list->dmi_addr) >> 26;
777 data->multi_filter[crc_bits >> 3] |=
778 1 << (crc_bits & 7);
779 mc_list = mc_list->next;
780 }
781
782 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
783 AX_MCAST_FILTER_SIZE, data->multi_filter);
784
785 rx_ctl |= 0x10;
786 }
787
788 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
789}
790
791static int ax88172_link_reset(struct usbnet *dev)
792{
793 u8 mode;
794 struct ethtool_cmd ecmd;
795
796 mii_check_media(&dev->mii, 1, 1);
797 mii_ethtool_gset(&dev->mii, &ecmd);
798 mode = AX88172_MEDIUM_DEFAULT;
799
800 if (ecmd.duplex != DUPLEX_FULL)
801 mode |= ~AX88172_MEDIUM_FD;
802
803 devdbg(dev, "ax88172_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd.speed, ecmd.duplex, mode);
804
805 asix_write_medium_mode(dev, mode);
806
807 return 0;
2e55cc72
DB
808}
809
48b1be6a 810static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
2e55cc72
DB
811{
812 int ret = 0;
51bf2976 813 u8 buf[ETH_ALEN];
2e55cc72
DB
814 int i;
815 unsigned long gpio_bits = dev->driver_info->data;
933a27d3
DH
816 struct asix_data *data = (struct asix_data *)&dev->data;
817
818 data->eeprom_len = AX88172_EEPROM_LEN;
2e55cc72
DB
819
820 usbnet_get_endpoints(dev,intf);
821
2e55cc72
DB
822 /* Toggle the GPIOs in a manufacturer/model specific way */
823 for (i = 2; i >= 0; i--) {
48b1be6a 824 if ((ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
2e55cc72 825 (gpio_bits >> (i * 8)) & 0xff, 0, 0,
51bf2976
AV
826 NULL)) < 0)
827 goto out;
2e55cc72
DB
828 msleep(5);
829 }
830
933a27d3 831 if ((ret = asix_write_rx_ctl(dev, 0x80)) < 0)
51bf2976 832 goto out;
2e55cc72
DB
833
834 /* Get the MAC address */
933a27d3 835 if ((ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID,
51bf2976 836 0, 0, ETH_ALEN, buf)) < 0) {
2e55cc72 837 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
51bf2976 838 goto out;
2e55cc72
DB
839 }
840 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
841
2e55cc72
DB
842 /* Initialize MII structure */
843 dev->mii.dev = dev->net;
48b1be6a
DH
844 dev->mii.mdio_read = asix_mdio_read;
845 dev->mii.mdio_write = asix_mdio_write;
2e55cc72
DB
846 dev->mii.phy_id_mask = 0x3f;
847 dev->mii.reg_num_mask = 0x1f;
933a27d3 848 dev->mii.phy_id = asix_get_phy_addr(dev);
48b1be6a 849 dev->net->do_ioctl = asix_ioctl;
2e55cc72 850
933a27d3 851 dev->net->set_multicast_list = ax88172_set_multicast;
48b1be6a 852 dev->net->ethtool_ops = &ax88172_ethtool_ops;
2e55cc72 853
933a27d3
DH
854 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
855 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
2e55cc72
DB
856 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
857 mii_nway_restart(&dev->mii);
858
859 return 0;
51bf2976
AV
860
861out:
2e55cc72
DB
862 return ret;
863}
864
865static struct ethtool_ops ax88772_ethtool_ops = {
48b1be6a 866 .get_drvinfo = asix_get_drvinfo,
933a27d3 867 .get_link = asix_get_link,
2e55cc72
DB
868 .get_msglevel = usbnet_get_msglevel,
869 .set_msglevel = usbnet_set_msglevel,
48b1be6a
DH
870 .get_wol = asix_get_wol,
871 .set_wol = asix_set_wol,
872 .get_eeprom_len = asix_get_eeprom_len,
873 .get_eeprom = asix_get_eeprom,
c41286fd
AB
874 .get_settings = usbnet_get_settings,
875 .set_settings = usbnet_set_settings,
876 .nway_reset = usbnet_nway_reset,
2e55cc72
DB
877};
878
933a27d3
DH
879static int ax88772_link_reset(struct usbnet *dev)
880{
881 u16 mode;
882 struct ethtool_cmd ecmd;
883
884 mii_check_media(&dev->mii, 1, 1);
885 mii_ethtool_gset(&dev->mii, &ecmd);
886 mode = AX88772_MEDIUM_DEFAULT;
887
888 if (ecmd.speed != SPEED_100)
889 mode &= ~AX_MEDIUM_PS;
890
891 if (ecmd.duplex != DUPLEX_FULL)
892 mode &= ~AX_MEDIUM_FD;
893
894 devdbg(dev, "ax88772_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd.speed, ecmd.duplex, mode);
895
896 asix_write_medium_mode(dev, mode);
897
898 return 0;
899}
900
2e55cc72
DB
901static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
902{
d0ffff8f 903 int ret, embd_phy;
933a27d3
DH
904 u16 rx_ctl;
905 struct asix_data *data = (struct asix_data *)&dev->data;
51bf2976 906 u8 buf[ETH_ALEN];
933a27d3
DH
907 u32 phyid;
908
909 data->eeprom_len = AX88772_EEPROM_LEN;
2e55cc72
DB
910
911 usbnet_get_endpoints(dev,intf);
912
933a27d3
DH
913 if ((ret = asix_write_gpio(dev,
914 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5)) < 0)
51bf2976 915 goto out;
2e55cc72 916
d0ffff8f
AS
917 /* 0x10 is the phy id of the embedded 10/100 ethernet phy */
918 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
48b1be6a 919 if ((ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT,
51bf2976 920 embd_phy, 0, 0, NULL)) < 0) {
2e55cc72 921 dbg("Select PHY #1 failed: %d", ret);
51bf2976 922 goto out;
2e55cc72
DB
923 }
924
d0ffff8f 925 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL)) < 0)
51bf2976 926 goto out;
2e55cc72
DB
927
928 msleep(150);
48b1be6a 929 if ((ret = asix_sw_reset(dev, AX_SWRESET_CLEAR)) < 0)
51bf2976 930 goto out;
2e55cc72
DB
931
932 msleep(150);
d0ffff8f
AS
933 if (embd_phy) {
934 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPRL)) < 0)
51bf2976 935 goto out;
d0ffff8f
AS
936 }
937 else {
938 if ((ret = asix_sw_reset(dev, AX_SWRESET_PRTE)) < 0)
51bf2976 939 goto out;
d0ffff8f 940 }
2e55cc72
DB
941
942 msleep(150);
933a27d3
DH
943 rx_ctl = asix_read_rx_ctl(dev);
944 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
945 if ((ret = asix_write_rx_ctl(dev, 0x0000)) < 0)
51bf2976 946 goto out;
2e55cc72 947
933a27d3
DH
948 rx_ctl = asix_read_rx_ctl(dev);
949 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
950
2e55cc72 951 /* Get the MAC address */
933a27d3 952 if ((ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
2e55cc72
DB
953 0, 0, ETH_ALEN, buf)) < 0) {
954 dbg("Failed to read MAC address: %d", ret);
51bf2976 955 goto out;
2e55cc72
DB
956 }
957 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
958
2e55cc72
DB
959 /* Initialize MII structure */
960 dev->mii.dev = dev->net;
48b1be6a
DH
961 dev->mii.mdio_read = asix_mdio_read;
962 dev->mii.mdio_write = asix_mdio_write;
933a27d3
DH
963 dev->mii.phy_id_mask = 0x1f;
964 dev->mii.reg_num_mask = 0x1f;
48b1be6a 965 dev->net->do_ioctl = asix_ioctl;
933a27d3
DH
966 dev->mii.phy_id = asix_get_phy_addr(dev);
967
968 phyid = asix_get_phyid(dev);
969 dbg("PHYID=0x%08x", phyid);
2e55cc72 970
48b1be6a 971 if ((ret = asix_sw_reset(dev, AX_SWRESET_PRL)) < 0)
51bf2976 972 goto out;
2e55cc72 973
2e55cc72 974 msleep(150);
48b1be6a
DH
975
976 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL)) < 0)
51bf2976 977 goto out;
2e55cc72 978
48b1be6a 979 msleep(150);
2e55cc72 980
48b1be6a 981 dev->net->set_multicast_list = asix_set_multicast;
2e55cc72
DB
982 dev->net->ethtool_ops = &ax88772_ethtool_ops;
983
933a27d3
DH
984 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
985 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
2e55cc72
DB
986 ADVERTISE_ALL | ADVERTISE_CSMA);
987 mii_nway_restart(&dev->mii);
988
933a27d3 989 if ((ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT)) < 0)
51bf2976 990 goto out;
2e55cc72 991
48b1be6a 992 if ((ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
2e55cc72 993 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
51bf2976 994 AX88772_IPG2_DEFAULT, 0, NULL)) < 0) {
2e55cc72 995 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
51bf2976 996 goto out;
2e55cc72 997 }
2e55cc72
DB
998
999 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
933a27d3 1000 if ((ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL)) < 0)
51bf2976 1001 goto out;
2e55cc72 1002
933a27d3
DH
1003 rx_ctl = asix_read_rx_ctl(dev);
1004 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1005
1006 rx_ctl = asix_read_medium_status(dev);
1007 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1008
2e55cc72
DB
1009 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1010 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1011 /* hard_mtu is still the default - the device does not support
1012 jumbo eth frames */
1013 dev->rx_urb_size = 2048;
1014 }
2e55cc72
DB
1015 return 0;
1016
51bf2976 1017out:
2e55cc72
DB
1018 return ret;
1019}
1020
933a27d3
DH
1021static struct ethtool_ops ax88178_ethtool_ops = {
1022 .get_drvinfo = asix_get_drvinfo,
1023 .get_link = asix_get_link,
933a27d3
DH
1024 .get_msglevel = usbnet_get_msglevel,
1025 .set_msglevel = usbnet_set_msglevel,
1026 .get_wol = asix_get_wol,
1027 .set_wol = asix_set_wol,
1028 .get_eeprom_len = asix_get_eeprom_len,
1029 .get_eeprom = asix_get_eeprom,
c41286fd
AB
1030 .get_settings = usbnet_get_settings,
1031 .set_settings = usbnet_set_settings,
1032 .nway_reset = usbnet_nway_reset,
933a27d3
DH
1033};
1034
1035static int marvell_phy_init(struct usbnet *dev)
2e55cc72 1036{
933a27d3
DH
1037 struct asix_data *data = (struct asix_data *)&dev->data;
1038 u16 reg;
2e55cc72 1039
933a27d3 1040 devdbg(dev,"marvell_phy_init()");
2e55cc72 1041
933a27d3
DH
1042 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
1043 devdbg(dev,"MII_MARVELL_STATUS = 0x%04x", reg);
2e55cc72 1044
933a27d3
DH
1045 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1046 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
2e55cc72 1047
933a27d3
DH
1048 if (data->ledmode) {
1049 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1050 MII_MARVELL_LED_CTRL);
1051 devdbg(dev,"MII_MARVELL_LED_CTRL (1) = 0x%04x", reg);
2e55cc72 1052
933a27d3
DH
1053 reg &= 0xf8ff;
1054 reg |= (1 + 0x0100);
1055 asix_mdio_write(dev->net, dev->mii.phy_id,
1056 MII_MARVELL_LED_CTRL, reg);
2e55cc72 1057
933a27d3
DH
1058 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1059 MII_MARVELL_LED_CTRL);
1060 devdbg(dev,"MII_MARVELL_LED_CTRL (2) = 0x%04x", reg);
1061 reg &= 0xfc0f;
1062 }
2e55cc72 1063
933a27d3
DH
1064 return 0;
1065}
1066
1067static int marvell_led_status(struct usbnet *dev, u16 speed)
1068{
1069 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1070
1071 devdbg(dev, "marvell_led_status() read 0x%04x", reg);
1072
1073 /* Clear out the center LED bits - 0x03F0 */
1074 reg &= 0xfc0f;
1075
1076 switch (speed) {
1077 case SPEED_1000:
1078 reg |= 0x03e0;
1079 break;
1080 case SPEED_100:
1081 reg |= 0x03b0;
1082 break;
1083 default:
1084 reg |= 0x02f0;
2e55cc72
DB
1085 }
1086
933a27d3
DH
1087 devdbg(dev, "marvell_led_status() writing 0x%04x", reg);
1088 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1089
1090 return 0;
1091}
1092
1093static int ax88178_link_reset(struct usbnet *dev)
1094{
1095 u16 mode;
1096 struct ethtool_cmd ecmd;
1097 struct asix_data *data = (struct asix_data *)&dev->data;
1098
1099 devdbg(dev,"ax88178_link_reset()");
1100
1101 mii_check_media(&dev->mii, 1, 1);
1102 mii_ethtool_gset(&dev->mii, &ecmd);
1103 mode = AX88178_MEDIUM_DEFAULT;
1104
1105 if (ecmd.speed == SPEED_1000)
a7f75c0c 1106 mode |= AX_MEDIUM_GM;
933a27d3
DH
1107 else if (ecmd.speed == SPEED_100)
1108 mode |= AX_MEDIUM_PS;
1109 else
1110 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1111
a7f75c0c
PK
1112 mode |= AX_MEDIUM_ENCK;
1113
933a27d3
DH
1114 if (ecmd.duplex == DUPLEX_FULL)
1115 mode |= AX_MEDIUM_FD;
1116 else
1117 mode &= ~AX_MEDIUM_FD;
1118
1119 devdbg(dev, "ax88178_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd.speed, ecmd.duplex, mode);
1120
1121 asix_write_medium_mode(dev, mode);
1122
1123 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
1124 marvell_led_status(dev, ecmd.speed);
1125
1126 return 0;
1127}
1128
1129static void ax88178_set_mfb(struct usbnet *dev)
1130{
1131 u16 mfb = AX_RX_CTL_MFB_16384;
1132 u16 rxctl;
1133 u16 medium;
1134 int old_rx_urb_size = dev->rx_urb_size;
1135
1136 if (dev->hard_mtu < 2048) {
1137 dev->rx_urb_size = 2048;
1138 mfb = AX_RX_CTL_MFB_2048;
1139 } else if (dev->hard_mtu < 4096) {
1140 dev->rx_urb_size = 4096;
1141 mfb = AX_RX_CTL_MFB_4096;
1142 } else if (dev->hard_mtu < 8192) {
1143 dev->rx_urb_size = 8192;
1144 mfb = AX_RX_CTL_MFB_8192;
1145 } else if (dev->hard_mtu < 16384) {
1146 dev->rx_urb_size = 16384;
1147 mfb = AX_RX_CTL_MFB_16384;
2e55cc72 1148 }
933a27d3
DH
1149
1150 rxctl = asix_read_rx_ctl(dev);
1151 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1152
1153 medium = asix_read_medium_status(dev);
1154 if (dev->net->mtu > 1500)
1155 medium |= AX_MEDIUM_JFE;
1156 else
1157 medium &= ~AX_MEDIUM_JFE;
1158 asix_write_medium_mode(dev, medium);
1159
1160 if (dev->rx_urb_size > old_rx_urb_size)
1161 usbnet_unlink_rx_urbs(dev);
2e55cc72
DB
1162}
1163
933a27d3 1164static int ax88178_change_mtu(struct net_device *net, int new_mtu)
2e55cc72 1165{
933a27d3
DH
1166 struct usbnet *dev = netdev_priv(net);
1167 int ll_mtu = new_mtu + net->hard_header_len + 4;
2e55cc72 1168
933a27d3 1169 devdbg(dev, "ax88178_change_mtu() new_mtu=%d", new_mtu);
2e55cc72 1170
933a27d3
DH
1171 if (new_mtu <= 0 || ll_mtu > 16384)
1172 return -EINVAL;
1173
1174 if ((ll_mtu % dev->maxpacket) == 0)
1175 return -EDOM;
1176
1177 net->mtu = new_mtu;
1178 dev->hard_mtu = net->mtu + net->hard_header_len;
1179 ax88178_set_mfb(dev);
1180
1181 return 0;
1182}
1183
1184static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1185{
1186 struct asix_data *data = (struct asix_data *)&dev->data;
1187 int ret;
51bf2976
AV
1188 u8 buf[ETH_ALEN];
1189 __le16 eeprom;
1190 u8 status;
933a27d3
DH
1191 int gpio0 = 0;
1192 u32 phyid;
1193
1194 usbnet_get_endpoints(dev,intf);
1195
51bf2976
AV
1196 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1197 dbg("GPIO Status: 0x%04x", status);
933a27d3
DH
1198
1199 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1200 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1201 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1202
1203 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1204
51bf2976 1205 if (eeprom == cpu_to_le16(0xffff)) {
933a27d3
DH
1206 data->phymode = PHY_MODE_MARVELL;
1207 data->ledmode = 0;
1208 gpio0 = 1;
2e55cc72 1209 } else {
51bf2976
AV
1210 data->phymode = le16_to_cpu(eeprom) & 7;
1211 data->ledmode = le16_to_cpu(eeprom) >> 8;
1212 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
2e55cc72 1213 }
933a27d3 1214 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
2e55cc72 1215
933a27d3 1216 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
51bf2976 1217 if ((le16_to_cpu(eeprom) >> 8) != 1) {
933a27d3
DH
1218 asix_write_gpio(dev, 0x003c, 30);
1219 asix_write_gpio(dev, 0x001c, 300);
1220 asix_write_gpio(dev, 0x003c, 30);
1221 } else {
1222 dbg("gpio phymode == 1 path");
1223 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1224 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1225 }
2e55cc72 1226
933a27d3
DH
1227 asix_sw_reset(dev, 0);
1228 msleep(150);
1229
1230 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1231 msleep(150);
1232
1233 asix_write_rx_ctl(dev, 0);
1234
1235 /* Get the MAC address */
933a27d3
DH
1236 if ((ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
1237 0, 0, ETH_ALEN, buf)) < 0) {
1238 dbg("Failed to read MAC address: %d", ret);
51bf2976 1239 goto out;
2e55cc72 1240 }
933a27d3 1241 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
2e55cc72 1242
933a27d3
DH
1243 /* Initialize MII structure */
1244 dev->mii.dev = dev->net;
1245 dev->mii.mdio_read = asix_mdio_read;
1246 dev->mii.mdio_write = asix_mdio_write;
1247 dev->mii.phy_id_mask = 0x1f;
1248 dev->mii.reg_num_mask = 0xff;
1249 dev->mii.supports_gmii = 1;
1250 dev->net->do_ioctl = asix_ioctl;
1251 dev->mii.phy_id = asix_get_phy_addr(dev);
1252 dev->net->set_multicast_list = asix_set_multicast;
1253 dev->net->ethtool_ops = &ax88178_ethtool_ops;
1254 dev->net->change_mtu = &ax88178_change_mtu;
2e55cc72 1255
933a27d3
DH
1256 phyid = asix_get_phyid(dev);
1257 dbg("PHYID=0x%08x", phyid);
2e55cc72 1258
933a27d3
DH
1259 if (data->phymode == PHY_MODE_MARVELL) {
1260 marvell_phy_init(dev);
1261 msleep(60);
1262 }
1263
1264 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1265 BMCR_RESET | BMCR_ANENABLE);
1266 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1267 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1268 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1269 ADVERTISE_1000FULL);
1270
1271 mii_nway_restart(&dev->mii);
1272
1273 if ((ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT)) < 0)
51bf2976 1274 goto out;
933a27d3
DH
1275
1276 if ((ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL)) < 0)
51bf2976 1277 goto out;
933a27d3
DH
1278
1279 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1280 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1281 /* hard_mtu is still the default - the device does not support
1282 jumbo eth frames */
1283 dev->rx_urb_size = 2048;
1284 }
2e55cc72 1285 return 0;
933a27d3 1286
51bf2976 1287out:
933a27d3 1288 return ret;
2e55cc72
DB
1289}
1290
1291static const struct driver_info ax8817x_info = {
1292 .description = "ASIX AX8817x USB 2.0 Ethernet",
48b1be6a
DH
1293 .bind = ax88172_bind,
1294 .status = asix_status,
2e55cc72
DB
1295 .link_reset = ax88172_link_reset,
1296 .reset = ax88172_link_reset,
1297 .flags = FLAG_ETHER,
1298 .data = 0x00130103,
1299};
1300
1301static const struct driver_info dlink_dub_e100_info = {
1302 .description = "DLink DUB-E100 USB Ethernet",
48b1be6a
DH
1303 .bind = ax88172_bind,
1304 .status = asix_status,
2e55cc72
DB
1305 .link_reset = ax88172_link_reset,
1306 .reset = ax88172_link_reset,
1307 .flags = FLAG_ETHER,
1308 .data = 0x009f9d9f,
1309};
1310
1311static const struct driver_info netgear_fa120_info = {
1312 .description = "Netgear FA-120 USB Ethernet",
48b1be6a
DH
1313 .bind = ax88172_bind,
1314 .status = asix_status,
2e55cc72
DB
1315 .link_reset = ax88172_link_reset,
1316 .reset = ax88172_link_reset,
1317 .flags = FLAG_ETHER,
1318 .data = 0x00130103,
1319};
1320
1321static const struct driver_info hawking_uf200_info = {
1322 .description = "Hawking UF200 USB Ethernet",
48b1be6a
DH
1323 .bind = ax88172_bind,
1324 .status = asix_status,
2e55cc72
DB
1325 .link_reset = ax88172_link_reset,
1326 .reset = ax88172_link_reset,
1327 .flags = FLAG_ETHER,
1328 .data = 0x001f1d1f,
1329};
1330
1331static const struct driver_info ax88772_info = {
1332 .description = "ASIX AX88772 USB 2.0 Ethernet",
1333 .bind = ax88772_bind,
48b1be6a 1334 .status = asix_status,
2e55cc72
DB
1335 .link_reset = ax88772_link_reset,
1336 .reset = ax88772_link_reset,
1337 .flags = FLAG_ETHER | FLAG_FRAMING_AX,
933a27d3
DH
1338 .rx_fixup = asix_rx_fixup,
1339 .tx_fixup = asix_tx_fixup,
1340};
1341
1342static const struct driver_info ax88178_info = {
1343 .description = "ASIX AX88178 USB 2.0 Ethernet",
1344 .bind = ax88178_bind,
1345 .status = asix_status,
1346 .link_reset = ax88178_link_reset,
1347 .reset = ax88178_link_reset,
1348 .flags = FLAG_ETHER | FLAG_FRAMING_AX,
1349 .rx_fixup = asix_rx_fixup,
1350 .tx_fixup = asix_tx_fixup,
2e55cc72
DB
1351};
1352
1353static const struct usb_device_id products [] = {
1354{
1355 // Linksys USB200M
1356 USB_DEVICE (0x077b, 0x2226),
1357 .driver_info = (unsigned long) &ax8817x_info,
1358}, {
1359 // Netgear FA120
1360 USB_DEVICE (0x0846, 0x1040),
1361 .driver_info = (unsigned long) &netgear_fa120_info,
1362}, {
1363 // DLink DUB-E100
1364 USB_DEVICE (0x2001, 0x1a00),
1365 .driver_info = (unsigned long) &dlink_dub_e100_info,
1366}, {
1367 // Intellinet, ST Lab USB Ethernet
1368 USB_DEVICE (0x0b95, 0x1720),
1369 .driver_info = (unsigned long) &ax8817x_info,
1370}, {
1371 // Hawking UF200, TrendNet TU2-ET100
1372 USB_DEVICE (0x07b8, 0x420a),
1373 .driver_info = (unsigned long) &hawking_uf200_info,
1374}, {
39c4b38c
DH
1375 // Billionton Systems, USB2AR
1376 USB_DEVICE (0x08dd, 0x90ff),
1377 .driver_info = (unsigned long) &ax8817x_info,
2e55cc72
DB
1378}, {
1379 // ATEN UC210T
1380 USB_DEVICE (0x0557, 0x2009),
1381 .driver_info = (unsigned long) &ax8817x_info,
1382}, {
1383 // Buffalo LUA-U2-KTX
1384 USB_DEVICE (0x0411, 0x003d),
1385 .driver_info = (unsigned long) &ax8817x_info,
ac7b77f1
MD
1386}, {
1387 // Buffalo LUA-U2-GT 10/100/1000
1388 USB_DEVICE (0x0411, 0x006e),
1389 .driver_info = (unsigned long) &ax88178_info,
2e55cc72
DB
1390}, {
1391 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1392 USB_DEVICE (0x6189, 0x182d),
1393 .driver_info = (unsigned long) &ax8817x_info,
1394}, {
1395 // corega FEther USB2-TX
1396 USB_DEVICE (0x07aa, 0x0017),
1397 .driver_info = (unsigned long) &ax8817x_info,
1398}, {
1399 // Surecom EP-1427X-2
1400 USB_DEVICE (0x1189, 0x0893),
1401 .driver_info = (unsigned long) &ax8817x_info,
1402}, {
1403 // goodway corp usb gwusb2e
1404 USB_DEVICE (0x1631, 0x6200),
1405 .driver_info = (unsigned long) &ax8817x_info,
39c4b38c
DH
1406}, {
1407 // JVC MP-PRX1 Port Replicator
1408 USB_DEVICE (0x04f1, 0x3008),
1409 .driver_info = (unsigned long) &ax8817x_info,
2e55cc72
DB
1410}, {
1411 // ASIX AX88772 10/100
39c4b38c
DH
1412 USB_DEVICE (0x0b95, 0x7720),
1413 .driver_info = (unsigned long) &ax88772_info,
7327413c
EW
1414}, {
1415 // ASIX AX88178 10/100/1000
1416 USB_DEVICE (0x0b95, 0x1780),
933a27d3 1417 .driver_info = (unsigned long) &ax88178_info,
5e0f76c6
DH
1418}, {
1419 // Linksys USB200M Rev 2
1420 USB_DEVICE (0x13b1, 0x0018),
1421 .driver_info = (unsigned long) &ax88772_info,
5732ce84
DH
1422}, {
1423 // 0Q0 cable ethernet
1424 USB_DEVICE (0x1557, 0x7720),
1425 .driver_info = (unsigned long) &ax88772_info,
933a27d3
DH
1426}, {
1427 // DLink DUB-E100 H/W Ver B1
1428 USB_DEVICE (0x07d1, 0x3c05),
1429 .driver_info = (unsigned long) &ax88772_info,
b923e7fc
DH
1430}, {
1431 // DLink DUB-E100 H/W Ver B1 Alternate
1432 USB_DEVICE (0x2001, 0x3c05),
1433 .driver_info = (unsigned long) &ax88772_info,
933a27d3
DH
1434}, {
1435 // Linksys USB1000
1436 USB_DEVICE (0x1737, 0x0039),
1437 .driver_info = (unsigned long) &ax88178_info,
b29cf31d
YH
1438}, {
1439 // IO-DATA ETG-US2
1440 USB_DEVICE (0x04bb, 0x0930),
1441 .driver_info = (unsigned long) &ax88178_info,
2ed22bc2
DH
1442}, {
1443 // Belkin F5D5055
1444 USB_DEVICE(0x050d, 0x5055),
1445 .driver_info = (unsigned long) &ax88178_info,
3d60efb5
AN
1446}, {
1447 // Apple USB Ethernet Adapter
1448 USB_DEVICE(0x05ac, 0x1402),
1449 .driver_info = (unsigned long) &ax88772_info,
ccf95402
JC
1450}, {
1451 // Cables-to-Go USB Ethernet Adapter
1452 USB_DEVICE(0x0b95, 0x772a),
1453 .driver_info = (unsigned long) &ax88772_info,
fef7cc08
GKH
1454}, {
1455 // ABOCOM for pci
1456 USB_DEVICE(0x14ea, 0xab11),
1457 .driver_info = (unsigned long) &ax88178_info,
1458}, {
1459 // ASIX 88772a
1460 USB_DEVICE(0x0db0, 0xa877),
1461 .driver_info = (unsigned long) &ax88772_info,
2e55cc72
DB
1462},
1463 { }, // END
1464};
1465MODULE_DEVICE_TABLE(usb, products);
1466
1467static struct usb_driver asix_driver = {
2e55cc72
DB
1468 .name = "asix",
1469 .id_table = products,
1470 .probe = usbnet_probe,
1471 .suspend = usbnet_suspend,
1472 .resume = usbnet_resume,
1473 .disconnect = usbnet_disconnect,
a11a6544 1474 .supports_autosuspend = 1,
2e55cc72
DB
1475};
1476
1477static int __init asix_init(void)
1478{
1479 return usb_register(&asix_driver);
1480}
1481module_init(asix_init);
1482
1483static void __exit asix_exit(void)
1484{
1485 usb_deregister(&asix_driver);
1486}
1487module_exit(asix_exit);
1488
1489MODULE_AUTHOR("David Hollis");
1490MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1491MODULE_LICENSE("GPL");
1492