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