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