Loading...
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, see <http://www.gnu.org/licenses/>.
20 */
21
22#include "asix.h"
23
24int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
25 u16 size, void *data)
26{
27 int ret;
28 ret = usbnet_read_cmd(dev, cmd,
29 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
30 value, index, data, size);
31
32 if (ret != size && ret >= 0)
33 return -EINVAL;
34 return ret;
35}
36
37int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
38 u16 size, void *data)
39{
40 return usbnet_write_cmd(dev, cmd,
41 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
42 value, index, data, size);
43}
44
45void asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
46 u16 size, void *data)
47{
48 usbnet_write_cmd_async(dev, cmd,
49 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
50 value, index, data, size);
51}
52
53int asix_rx_fixup_internal(struct usbnet *dev, struct sk_buff *skb,
54 struct asix_rx_fixup_info *rx)
55{
56 int offset = 0;
57
58 while (offset + sizeof(u16) <= skb->len) {
59 u16 remaining = 0;
60 unsigned char *data;
61
62 if (!rx->size) {
63 if ((skb->len - offset == sizeof(u16)) ||
64 rx->split_head) {
65 if(!rx->split_head) {
66 rx->header = get_unaligned_le16(
67 skb->data + offset);
68 rx->split_head = true;
69 offset += sizeof(u16);
70 break;
71 } else {
72 rx->header |= (get_unaligned_le16(
73 skb->data + offset)
74 << 16);
75 rx->split_head = false;
76 offset += sizeof(u16);
77 }
78 } else {
79 rx->header = get_unaligned_le32(skb->data +
80 offset);
81 offset += sizeof(u32);
82 }
83
84 /* get the packet length */
85 rx->size = (u16) (rx->header & 0x7ff);
86 if (rx->size != ((~rx->header >> 16) & 0x7ff)) {
87 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length 0x%x, offset %d\n",
88 rx->header, offset);
89 rx->size = 0;
90 return 0;
91 }
92 rx->ax_skb = netdev_alloc_skb_ip_align(dev->net,
93 rx->size);
94 if (!rx->ax_skb)
95 return 0;
96 }
97
98 if (rx->size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) {
99 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
100 rx->size);
101 kfree_skb(rx->ax_skb);
102 rx->ax_skb = NULL;
103 rx->size = 0U;
104
105 return 0;
106 }
107
108 if (rx->size > skb->len - offset) {
109 remaining = rx->size - (skb->len - offset);
110 rx->size = skb->len - offset;
111 }
112
113 data = skb_put(rx->ax_skb, rx->size);
114 memcpy(data, skb->data + offset, rx->size);
115 if (!remaining)
116 usbnet_skb_return(dev, rx->ax_skb);
117
118 offset += (rx->size + 1) & 0xfffe;
119 rx->size = remaining;
120 }
121
122 if (skb->len != offset) {
123 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
124 skb->len, offset);
125 return 0;
126 }
127
128 return 1;
129}
130
131int asix_rx_fixup_common(struct usbnet *dev, struct sk_buff *skb)
132{
133 struct asix_common_private *dp = dev->driver_priv;
134 struct asix_rx_fixup_info *rx = &dp->rx_fixup_info;
135
136 return asix_rx_fixup_internal(dev, skb, rx);
137}
138
139struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
140 gfp_t flags)
141{
142 int padlen;
143 int headroom = skb_headroom(skb);
144 int tailroom = skb_tailroom(skb);
145 u32 packet_len;
146 u32 padbytes = 0xffff0000;
147
148 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
149
150 /* We need to push 4 bytes in front of frame (packet_len)
151 * and maybe add 4 bytes after the end (if padlen is 4)
152 *
153 * Avoid skb_copy_expand() expensive call, using following rules :
154 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
155 * is false (and if we have 4 bytes of headroom)
156 * - We are allowed to put 4 bytes at tail if skb_cloned()
157 * is false (and if we have 4 bytes of tailroom)
158 *
159 * TCP packets for example are cloned, but skb_header_release()
160 * was called in tcp stack, allowing us to use headroom for our needs.
161 */
162 if (!skb_header_cloned(skb) &&
163 !(padlen && skb_cloned(skb)) &&
164 headroom + tailroom >= 4 + padlen) {
165 /* following should not happen, but better be safe */
166 if (headroom < 4 ||
167 tailroom < padlen) {
168 skb->data = memmove(skb->head + 4, skb->data, skb->len);
169 skb_set_tail_pointer(skb, skb->len);
170 }
171 } else {
172 struct sk_buff *skb2;
173
174 skb2 = skb_copy_expand(skb, 4, padlen, flags);
175 dev_kfree_skb_any(skb);
176 skb = skb2;
177 if (!skb)
178 return NULL;
179 }
180
181 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
182 skb_push(skb, 4);
183 cpu_to_le32s(&packet_len);
184 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
185
186 if (padlen) {
187 cpu_to_le32s(&padbytes);
188 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
189 skb_put(skb, sizeof(padbytes));
190 }
191 return skb;
192}
193
194int asix_set_sw_mii(struct usbnet *dev)
195{
196 int ret;
197 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
198 if (ret < 0)
199 netdev_err(dev->net, "Failed to enable software MII access\n");
200 return ret;
201}
202
203int asix_set_hw_mii(struct usbnet *dev)
204{
205 int ret;
206 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
207 if (ret < 0)
208 netdev_err(dev->net, "Failed to enable hardware MII access\n");
209 return ret;
210}
211
212int asix_read_phy_addr(struct usbnet *dev, int internal)
213{
214 int offset = (internal ? 1 : 0);
215 u8 buf[2];
216 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
217
218 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
219
220 if (ret < 0) {
221 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
222 goto out;
223 }
224 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
225 *((__le16 *)buf));
226 ret = buf[offset];
227
228out:
229 return ret;
230}
231
232int asix_get_phy_addr(struct usbnet *dev)
233{
234 /* return the address of the internal phy */
235 return asix_read_phy_addr(dev, 1);
236}
237
238
239int asix_sw_reset(struct usbnet *dev, u8 flags)
240{
241 int ret;
242
243 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
244 if (ret < 0)
245 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
246
247 return ret;
248}
249
250u16 asix_read_rx_ctl(struct usbnet *dev)
251{
252 __le16 v;
253 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
254
255 if (ret < 0) {
256 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
257 goto out;
258 }
259 ret = le16_to_cpu(v);
260out:
261 return ret;
262}
263
264int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
265{
266 int ret;
267
268 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
269 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
270 if (ret < 0)
271 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
272 mode, ret);
273
274 return ret;
275}
276
277u16 asix_read_medium_status(struct usbnet *dev)
278{
279 __le16 v;
280 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
281
282 if (ret < 0) {
283 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
284 ret);
285 return ret; /* TODO: callers not checking for error ret */
286 }
287
288 return le16_to_cpu(v);
289
290}
291
292int asix_write_medium_mode(struct usbnet *dev, u16 mode)
293{
294 int ret;
295
296 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
297 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
298 if (ret < 0)
299 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
300 mode, ret);
301
302 return ret;
303}
304
305int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
306{
307 int ret;
308
309 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
310 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
311 if (ret < 0)
312 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
313 value, ret);
314
315 if (sleep)
316 msleep(sleep);
317
318 return ret;
319}
320
321/*
322 * AX88772 & AX88178 have a 16-bit RX_CTL value
323 */
324void asix_set_multicast(struct net_device *net)
325{
326 struct usbnet *dev = netdev_priv(net);
327 struct asix_data *data = (struct asix_data *)&dev->data;
328 u16 rx_ctl = AX_DEFAULT_RX_CTL;
329
330 if (net->flags & IFF_PROMISC) {
331 rx_ctl |= AX_RX_CTL_PRO;
332 } else if (net->flags & IFF_ALLMULTI ||
333 netdev_mc_count(net) > AX_MAX_MCAST) {
334 rx_ctl |= AX_RX_CTL_AMALL;
335 } else if (netdev_mc_empty(net)) {
336 /* just broadcast and directed */
337 } else {
338 /* We use the 20 byte dev->data
339 * for our 8 byte filter buffer
340 * to avoid allocating memory that
341 * is tricky to free later */
342 struct netdev_hw_addr *ha;
343 u32 crc_bits;
344
345 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
346
347 /* Build the multicast hash filter. */
348 netdev_for_each_mc_addr(ha, net) {
349 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
350 data->multi_filter[crc_bits >> 3] |=
351 1 << (crc_bits & 7);
352 }
353
354 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
355 AX_MCAST_FILTER_SIZE, data->multi_filter);
356
357 rx_ctl |= AX_RX_CTL_AM;
358 }
359
360 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
361}
362
363int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
364{
365 struct usbnet *dev = netdev_priv(netdev);
366 __le16 res;
367
368 mutex_lock(&dev->phy_mutex);
369 asix_set_sw_mii(dev);
370 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
371 (__u16)loc, 2, &res);
372 asix_set_hw_mii(dev);
373 mutex_unlock(&dev->phy_mutex);
374
375 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
376 phy_id, loc, le16_to_cpu(res));
377
378 return le16_to_cpu(res);
379}
380
381void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
382{
383 struct usbnet *dev = netdev_priv(netdev);
384 __le16 res = cpu_to_le16(val);
385
386 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
387 phy_id, loc, val);
388 mutex_lock(&dev->phy_mutex);
389 asix_set_sw_mii(dev);
390 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
391 asix_set_hw_mii(dev);
392 mutex_unlock(&dev->phy_mutex);
393}
394
395void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
396{
397 struct usbnet *dev = netdev_priv(net);
398 u8 opt;
399
400 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
401 wolinfo->supported = 0;
402 wolinfo->wolopts = 0;
403 return;
404 }
405 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
406 wolinfo->wolopts = 0;
407 if (opt & AX_MONITOR_LINK)
408 wolinfo->wolopts |= WAKE_PHY;
409 if (opt & AX_MONITOR_MAGIC)
410 wolinfo->wolopts |= WAKE_MAGIC;
411}
412
413int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
414{
415 struct usbnet *dev = netdev_priv(net);
416 u8 opt = 0;
417
418 if (wolinfo->wolopts & WAKE_PHY)
419 opt |= AX_MONITOR_LINK;
420 if (wolinfo->wolopts & WAKE_MAGIC)
421 opt |= AX_MONITOR_MAGIC;
422
423 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
424 opt, 0, 0, NULL) < 0)
425 return -EINVAL;
426
427 return 0;
428}
429
430int asix_get_eeprom_len(struct net_device *net)
431{
432 return AX_EEPROM_LEN;
433}
434
435int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
436 u8 *data)
437{
438 struct usbnet *dev = netdev_priv(net);
439 u16 *eeprom_buff;
440 int first_word, last_word;
441 int i;
442
443 if (eeprom->len == 0)
444 return -EINVAL;
445
446 eeprom->magic = AX_EEPROM_MAGIC;
447
448 first_word = eeprom->offset >> 1;
449 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
450
451 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
452 GFP_KERNEL);
453 if (!eeprom_buff)
454 return -ENOMEM;
455
456 /* ax8817x returns 2 bytes from eeprom on read */
457 for (i = first_word; i <= last_word; i++) {
458 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
459 &(eeprom_buff[i - first_word])) < 0) {
460 kfree(eeprom_buff);
461 return -EIO;
462 }
463 }
464
465 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
466 kfree(eeprom_buff);
467 return 0;
468}
469
470int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
471 u8 *data)
472{
473 struct usbnet *dev = netdev_priv(net);
474 u16 *eeprom_buff;
475 int first_word, last_word;
476 int i;
477 int ret;
478
479 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
480 eeprom->len, eeprom->offset, eeprom->magic);
481
482 if (eeprom->len == 0)
483 return -EINVAL;
484
485 if (eeprom->magic != AX_EEPROM_MAGIC)
486 return -EINVAL;
487
488 first_word = eeprom->offset >> 1;
489 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
490
491 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
492 GFP_KERNEL);
493 if (!eeprom_buff)
494 return -ENOMEM;
495
496 /* align data to 16 bit boundaries, read the missing data from
497 the EEPROM */
498 if (eeprom->offset & 1) {
499 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
500 &(eeprom_buff[0]));
501 if (ret < 0) {
502 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
503 goto free;
504 }
505 }
506
507 if ((eeprom->offset + eeprom->len) & 1) {
508 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
509 &(eeprom_buff[last_word - first_word]));
510 if (ret < 0) {
511 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
512 goto free;
513 }
514 }
515
516 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
517
518 /* write data to EEPROM */
519 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL);
520 if (ret < 0) {
521 netdev_err(net, "Failed to enable EEPROM write\n");
522 goto free;
523 }
524 msleep(20);
525
526 for (i = first_word; i <= last_word; i++) {
527 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
528 i, eeprom_buff[i - first_word]);
529 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
530 eeprom_buff[i - first_word], 0, NULL);
531 if (ret < 0) {
532 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
533 i);
534 goto free;
535 }
536 msleep(20);
537 }
538
539 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL);
540 if (ret < 0) {
541 netdev_err(net, "Failed to disable EEPROM write\n");
542 goto free;
543 }
544
545 ret = 0;
546free:
547 kfree(eeprom_buff);
548 return ret;
549}
550
551void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
552{
553 /* Inherit standard device info */
554 usbnet_get_drvinfo(net, info);
555 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
556 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
557 info->eedump_len = AX_EEPROM_LEN;
558}
559
560int asix_set_mac_address(struct net_device *net, void *p)
561{
562 struct usbnet *dev = netdev_priv(net);
563 struct asix_data *data = (struct asix_data *)&dev->data;
564 struct sockaddr *addr = p;
565
566 if (netif_running(net))
567 return -EBUSY;
568 if (!is_valid_ether_addr(addr->sa_data))
569 return -EADDRNOTAVAIL;
570
571 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
572
573 /* We use the 20 byte dev->data
574 * for our 6 byte mac buffer
575 * to avoid allocating memory that
576 * is tricky to free later */
577 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
578 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
579 data->mac_addr);
580
581 return 0;
582}
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * ASIX AX8817X based USB 2.0 Ethernet Devices
4 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
5 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
6 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
7 * Copyright (c) 2002-2003 TiVo Inc.
8 */
9
10#include "asix.h"
11
12int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
13 u16 size, void *data, int in_pm)
14{
15 int ret;
16 int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16);
17
18 BUG_ON(!dev);
19
20 if (!in_pm)
21 fn = usbnet_read_cmd;
22 else
23 fn = usbnet_read_cmd_nopm;
24
25 ret = fn(dev, cmd, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
26 value, index, data, size);
27
28 if (unlikely(ret < 0))
29 netdev_warn(dev->net, "Failed to read reg index 0x%04x: %d\n",
30 index, ret);
31
32 return ret;
33}
34
35int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
36 u16 size, void *data, int in_pm)
37{
38 int ret;
39 int (*fn)(struct usbnet *, u8, u8, u16, u16, const void *, u16);
40
41 BUG_ON(!dev);
42
43 if (!in_pm)
44 fn = usbnet_write_cmd;
45 else
46 fn = usbnet_write_cmd_nopm;
47
48 ret = fn(dev, cmd, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
49 value, index, data, size);
50
51 if (unlikely(ret < 0))
52 netdev_warn(dev->net, "Failed to write reg index 0x%04x: %d\n",
53 index, ret);
54
55 return ret;
56}
57
58void asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
59 u16 size, void *data)
60{
61 usbnet_write_cmd_async(dev, cmd,
62 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
63 value, index, data, size);
64}
65
66static void reset_asix_rx_fixup_info(struct asix_rx_fixup_info *rx)
67{
68 /* Reset the variables that have a lifetime outside of
69 * asix_rx_fixup_internal() so that future processing starts from a
70 * known set of initial conditions.
71 */
72
73 if (rx->ax_skb) {
74 /* Discard any incomplete Ethernet frame in the netdev buffer */
75 kfree_skb(rx->ax_skb);
76 rx->ax_skb = NULL;
77 }
78
79 /* Assume the Data header 32-bit word is at the start of the current
80 * or next URB socket buffer so reset all the state variables.
81 */
82 rx->remaining = 0;
83 rx->split_head = false;
84 rx->header = 0;
85}
86
87int asix_rx_fixup_internal(struct usbnet *dev, struct sk_buff *skb,
88 struct asix_rx_fixup_info *rx)
89{
90 int offset = 0;
91 u16 size;
92
93 /* When an Ethernet frame spans multiple URB socket buffers,
94 * do a sanity test for the Data header synchronisation.
95 * Attempt to detect the situation of the previous socket buffer having
96 * been truncated or a socket buffer was missing. These situations
97 * cause a discontinuity in the data stream and therefore need to avoid
98 * appending bad data to the end of the current netdev socket buffer.
99 * Also avoid unnecessarily discarding a good current netdev socket
100 * buffer.
101 */
102 if (rx->remaining && (rx->remaining + sizeof(u32) <= skb->len)) {
103 offset = ((rx->remaining + 1) & 0xfffe);
104 rx->header = get_unaligned_le32(skb->data + offset);
105 offset = 0;
106
107 size = (u16)(rx->header & 0x7ff);
108 if (size != ((~rx->header >> 16) & 0x7ff)) {
109 netdev_err(dev->net, "asix_rx_fixup() Data Header synchronisation was lost, remaining %d\n",
110 rx->remaining);
111 reset_asix_rx_fixup_info(rx);
112 }
113 }
114
115 while (offset + sizeof(u16) <= skb->len) {
116 u16 copy_length;
117
118 if (!rx->remaining) {
119 if (skb->len - offset == sizeof(u16)) {
120 rx->header = get_unaligned_le16(
121 skb->data + offset);
122 rx->split_head = true;
123 offset += sizeof(u16);
124 break;
125 }
126
127 if (rx->split_head == true) {
128 rx->header |= (get_unaligned_le16(
129 skb->data + offset) << 16);
130 rx->split_head = false;
131 offset += sizeof(u16);
132 } else {
133 rx->header = get_unaligned_le32(skb->data +
134 offset);
135 offset += sizeof(u32);
136 }
137
138 /* take frame length from Data header 32-bit word */
139 size = (u16)(rx->header & 0x7ff);
140 if (size != ((~rx->header >> 16) & 0x7ff)) {
141 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length 0x%x, offset %d\n",
142 rx->header, offset);
143 reset_asix_rx_fixup_info(rx);
144 return 0;
145 }
146 if (size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) {
147 netdev_dbg(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
148 size);
149 reset_asix_rx_fixup_info(rx);
150 return 0;
151 }
152
153 /* Sometimes may fail to get a netdev socket buffer but
154 * continue to process the URB socket buffer so that
155 * synchronisation of the Ethernet frame Data header
156 * word is maintained.
157 */
158 rx->ax_skb = netdev_alloc_skb_ip_align(dev->net, size);
159
160 rx->remaining = size;
161 }
162
163 if (rx->remaining > skb->len - offset) {
164 copy_length = skb->len - offset;
165 rx->remaining -= copy_length;
166 } else {
167 copy_length = rx->remaining;
168 rx->remaining = 0;
169 }
170
171 if (rx->ax_skb) {
172 skb_put_data(rx->ax_skb, skb->data + offset,
173 copy_length);
174 if (!rx->remaining) {
175 usbnet_skb_return(dev, rx->ax_skb);
176 rx->ax_skb = NULL;
177 }
178 }
179
180 offset += (copy_length + 1) & 0xfffe;
181 }
182
183 if (skb->len != offset) {
184 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
185 skb->len, offset);
186 reset_asix_rx_fixup_info(rx);
187 return 0;
188 }
189
190 return 1;
191}
192
193int asix_rx_fixup_common(struct usbnet *dev, struct sk_buff *skb)
194{
195 struct asix_common_private *dp = dev->driver_priv;
196 struct asix_rx_fixup_info *rx = &dp->rx_fixup_info;
197
198 return asix_rx_fixup_internal(dev, skb, rx);
199}
200
201void asix_rx_fixup_common_free(struct asix_common_private *dp)
202{
203 struct asix_rx_fixup_info *rx;
204
205 if (!dp)
206 return;
207
208 rx = &dp->rx_fixup_info;
209
210 if (rx->ax_skb) {
211 kfree_skb(rx->ax_skb);
212 rx->ax_skb = NULL;
213 }
214}
215
216struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
217 gfp_t flags)
218{
219 int padlen;
220 int headroom = skb_headroom(skb);
221 int tailroom = skb_tailroom(skb);
222 u32 packet_len;
223 u32 padbytes = 0xffff0000;
224 void *ptr;
225
226 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
227
228 /* We need to push 4 bytes in front of frame (packet_len)
229 * and maybe add 4 bytes after the end (if padlen is 4)
230 *
231 * Avoid skb_copy_expand() expensive call, using following rules :
232 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
233 * is false (and if we have 4 bytes of headroom)
234 * - We are allowed to put 4 bytes at tail if skb_cloned()
235 * is false (and if we have 4 bytes of tailroom)
236 *
237 * TCP packets for example are cloned, but __skb_header_release()
238 * was called in tcp stack, allowing us to use headroom for our needs.
239 */
240 if (!skb_header_cloned(skb) &&
241 !(padlen && skb_cloned(skb)) &&
242 headroom + tailroom >= 4 + padlen) {
243 /* following should not happen, but better be safe */
244 if (headroom < 4 ||
245 tailroom < padlen) {
246 skb->data = memmove(skb->head + 4, skb->data, skb->len);
247 skb_set_tail_pointer(skb, skb->len);
248 }
249 } else {
250 struct sk_buff *skb2;
251
252 skb2 = skb_copy_expand(skb, 4, padlen, flags);
253 dev_kfree_skb_any(skb);
254 skb = skb2;
255 if (!skb)
256 return NULL;
257 }
258
259 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
260 ptr = skb_push(skb, 4);
261 put_unaligned_le32(packet_len, ptr);
262
263 if (padlen) {
264 put_unaligned_le32(padbytes, skb_tail_pointer(skb));
265 skb_put(skb, sizeof(padbytes));
266 }
267
268 usbnet_set_skb_tx_stats(skb, 1, 0);
269 return skb;
270}
271
272int asix_set_sw_mii(struct usbnet *dev, int in_pm)
273{
274 int ret;
275 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL, in_pm);
276
277 if (ret < 0)
278 netdev_err(dev->net, "Failed to enable software MII access\n");
279 return ret;
280}
281
282int asix_set_hw_mii(struct usbnet *dev, int in_pm)
283{
284 int ret;
285 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL, in_pm);
286 if (ret < 0)
287 netdev_err(dev->net, "Failed to enable hardware MII access\n");
288 return ret;
289}
290
291int asix_read_phy_addr(struct usbnet *dev, int internal)
292{
293 int offset = (internal ? 1 : 0);
294 u8 buf[2];
295 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf, 0);
296
297 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
298
299 if (ret < 0) {
300 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
301 goto out;
302 }
303 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
304 *((__le16 *)buf));
305 ret = buf[offset];
306
307out:
308 return ret;
309}
310
311int asix_get_phy_addr(struct usbnet *dev)
312{
313 /* return the address of the internal phy */
314 return asix_read_phy_addr(dev, 1);
315}
316
317
318int asix_sw_reset(struct usbnet *dev, u8 flags, int in_pm)
319{
320 int ret;
321
322 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL, in_pm);
323 if (ret < 0)
324 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
325
326 return ret;
327}
328
329u16 asix_read_rx_ctl(struct usbnet *dev, int in_pm)
330{
331 __le16 v;
332 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v, in_pm);
333
334 if (ret < 0) {
335 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
336 goto out;
337 }
338 ret = le16_to_cpu(v);
339out:
340 return ret;
341}
342
343int asix_write_rx_ctl(struct usbnet *dev, u16 mode, int in_pm)
344{
345 int ret;
346
347 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
348 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL, in_pm);
349 if (ret < 0)
350 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
351 mode, ret);
352
353 return ret;
354}
355
356u16 asix_read_medium_status(struct usbnet *dev, int in_pm)
357{
358 __le16 v;
359 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS,
360 0, 0, 2, &v, in_pm);
361
362 if (ret < 0) {
363 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
364 ret);
365 return ret; /* TODO: callers not checking for error ret */
366 }
367
368 return le16_to_cpu(v);
369
370}
371
372int asix_write_medium_mode(struct usbnet *dev, u16 mode, int in_pm)
373{
374 int ret;
375
376 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
377 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE,
378 mode, 0, 0, NULL, in_pm);
379 if (ret < 0)
380 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
381 mode, ret);
382
383 return ret;
384}
385
386int asix_write_gpio(struct usbnet *dev, u16 value, int sleep, int in_pm)
387{
388 int ret;
389
390 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
391 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL, in_pm);
392 if (ret < 0)
393 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
394 value, ret);
395
396 if (sleep)
397 msleep(sleep);
398
399 return ret;
400}
401
402/*
403 * AX88772 & AX88178 have a 16-bit RX_CTL value
404 */
405void asix_set_multicast(struct net_device *net)
406{
407 struct usbnet *dev = netdev_priv(net);
408 struct asix_data *data = (struct asix_data *)&dev->data;
409 u16 rx_ctl = AX_DEFAULT_RX_CTL;
410
411 if (net->flags & IFF_PROMISC) {
412 rx_ctl |= AX_RX_CTL_PRO;
413 } else if (net->flags & IFF_ALLMULTI ||
414 netdev_mc_count(net) > AX_MAX_MCAST) {
415 rx_ctl |= AX_RX_CTL_AMALL;
416 } else if (netdev_mc_empty(net)) {
417 /* just broadcast and directed */
418 } else {
419 /* We use the 20 byte dev->data
420 * for our 8 byte filter buffer
421 * to avoid allocating memory that
422 * is tricky to free later */
423 struct netdev_hw_addr *ha;
424 u32 crc_bits;
425
426 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
427
428 /* Build the multicast hash filter. */
429 netdev_for_each_mc_addr(ha, net) {
430 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
431 data->multi_filter[crc_bits >> 3] |=
432 1 << (crc_bits & 7);
433 }
434
435 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
436 AX_MCAST_FILTER_SIZE, data->multi_filter);
437
438 rx_ctl |= AX_RX_CTL_AM;
439 }
440
441 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
442}
443
444int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
445{
446 struct usbnet *dev = netdev_priv(netdev);
447 __le16 res;
448 u8 smsr;
449 int i = 0;
450 int ret;
451
452 mutex_lock(&dev->phy_mutex);
453 do {
454 ret = asix_set_sw_mii(dev, 0);
455 if (ret == -ENODEV || ret == -ETIMEDOUT)
456 break;
457 usleep_range(1000, 1100);
458 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
459 0, 0, 1, &smsr, 0);
460 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
461 if (ret == -ENODEV || ret == -ETIMEDOUT) {
462 mutex_unlock(&dev->phy_mutex);
463 return ret;
464 }
465
466 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
467 (__u16)loc, 2, &res, 0);
468 asix_set_hw_mii(dev, 0);
469 mutex_unlock(&dev->phy_mutex);
470
471 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
472 phy_id, loc, le16_to_cpu(res));
473
474 return le16_to_cpu(res);
475}
476
477void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
478{
479 struct usbnet *dev = netdev_priv(netdev);
480 __le16 res = cpu_to_le16(val);
481 u8 smsr;
482 int i = 0;
483 int ret;
484
485 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
486 phy_id, loc, val);
487
488 mutex_lock(&dev->phy_mutex);
489 do {
490 ret = asix_set_sw_mii(dev, 0);
491 if (ret == -ENODEV)
492 break;
493 usleep_range(1000, 1100);
494 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
495 0, 0, 1, &smsr, 0);
496 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
497 if (ret == -ENODEV) {
498 mutex_unlock(&dev->phy_mutex);
499 return;
500 }
501
502 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id,
503 (__u16)loc, 2, &res, 0);
504 asix_set_hw_mii(dev, 0);
505 mutex_unlock(&dev->phy_mutex);
506}
507
508int asix_mdio_read_nopm(struct net_device *netdev, int phy_id, int loc)
509{
510 struct usbnet *dev = netdev_priv(netdev);
511 __le16 res;
512 u8 smsr;
513 int i = 0;
514 int ret;
515
516 mutex_lock(&dev->phy_mutex);
517 do {
518 ret = asix_set_sw_mii(dev, 1);
519 if (ret == -ENODEV || ret == -ETIMEDOUT)
520 break;
521 usleep_range(1000, 1100);
522 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
523 0, 0, 1, &smsr, 1);
524 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
525 if (ret == -ENODEV || ret == -ETIMEDOUT) {
526 mutex_unlock(&dev->phy_mutex);
527 return ret;
528 }
529
530 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
531 (__u16)loc, 2, &res, 1);
532 asix_set_hw_mii(dev, 1);
533 mutex_unlock(&dev->phy_mutex);
534
535 netdev_dbg(dev->net, "asix_mdio_read_nopm() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
536 phy_id, loc, le16_to_cpu(res));
537
538 return le16_to_cpu(res);
539}
540
541void
542asix_mdio_write_nopm(struct net_device *netdev, int phy_id, int loc, int val)
543{
544 struct usbnet *dev = netdev_priv(netdev);
545 __le16 res = cpu_to_le16(val);
546 u8 smsr;
547 int i = 0;
548 int ret;
549
550 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
551 phy_id, loc, val);
552
553 mutex_lock(&dev->phy_mutex);
554 do {
555 ret = asix_set_sw_mii(dev, 1);
556 if (ret == -ENODEV)
557 break;
558 usleep_range(1000, 1100);
559 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
560 0, 0, 1, &smsr, 1);
561 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
562 if (ret == -ENODEV) {
563 mutex_unlock(&dev->phy_mutex);
564 return;
565 }
566
567 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id,
568 (__u16)loc, 2, &res, 1);
569 asix_set_hw_mii(dev, 1);
570 mutex_unlock(&dev->phy_mutex);
571}
572
573void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
574{
575 struct usbnet *dev = netdev_priv(net);
576 u8 opt;
577
578 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE,
579 0, 0, 1, &opt, 0) < 0) {
580 wolinfo->supported = 0;
581 wolinfo->wolopts = 0;
582 return;
583 }
584 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
585 wolinfo->wolopts = 0;
586 if (opt & AX_MONITOR_LINK)
587 wolinfo->wolopts |= WAKE_PHY;
588 if (opt & AX_MONITOR_MAGIC)
589 wolinfo->wolopts |= WAKE_MAGIC;
590}
591
592int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
593{
594 struct usbnet *dev = netdev_priv(net);
595 u8 opt = 0;
596
597 if (wolinfo->wolopts & ~(WAKE_PHY | WAKE_MAGIC))
598 return -EINVAL;
599
600 if (wolinfo->wolopts & WAKE_PHY)
601 opt |= AX_MONITOR_LINK;
602 if (wolinfo->wolopts & WAKE_MAGIC)
603 opt |= AX_MONITOR_MAGIC;
604
605 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
606 opt, 0, 0, NULL, 0) < 0)
607 return -EINVAL;
608
609 return 0;
610}
611
612int asix_get_eeprom_len(struct net_device *net)
613{
614 return AX_EEPROM_LEN;
615}
616
617int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
618 u8 *data)
619{
620 struct usbnet *dev = netdev_priv(net);
621 u16 *eeprom_buff;
622 int first_word, last_word;
623 int i;
624
625 if (eeprom->len == 0)
626 return -EINVAL;
627
628 eeprom->magic = AX_EEPROM_MAGIC;
629
630 first_word = eeprom->offset >> 1;
631 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
632
633 eeprom_buff = kmalloc_array(last_word - first_word + 1, sizeof(u16),
634 GFP_KERNEL);
635 if (!eeprom_buff)
636 return -ENOMEM;
637
638 /* ax8817x returns 2 bytes from eeprom on read */
639 for (i = first_word; i <= last_word; i++) {
640 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
641 &eeprom_buff[i - first_word], 0) < 0) {
642 kfree(eeprom_buff);
643 return -EIO;
644 }
645 }
646
647 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
648 kfree(eeprom_buff);
649 return 0;
650}
651
652int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
653 u8 *data)
654{
655 struct usbnet *dev = netdev_priv(net);
656 u16 *eeprom_buff;
657 int first_word, last_word;
658 int i;
659 int ret;
660
661 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
662 eeprom->len, eeprom->offset, eeprom->magic);
663
664 if (eeprom->len == 0)
665 return -EINVAL;
666
667 if (eeprom->magic != AX_EEPROM_MAGIC)
668 return -EINVAL;
669
670 first_word = eeprom->offset >> 1;
671 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
672
673 eeprom_buff = kmalloc_array(last_word - first_word + 1, sizeof(u16),
674 GFP_KERNEL);
675 if (!eeprom_buff)
676 return -ENOMEM;
677
678 /* align data to 16 bit boundaries, read the missing data from
679 the EEPROM */
680 if (eeprom->offset & 1) {
681 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
682 &eeprom_buff[0], 0);
683 if (ret < 0) {
684 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
685 goto free;
686 }
687 }
688
689 if ((eeprom->offset + eeprom->len) & 1) {
690 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
691 &eeprom_buff[last_word - first_word], 0);
692 if (ret < 0) {
693 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
694 goto free;
695 }
696 }
697
698 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
699
700 /* write data to EEPROM */
701 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL, 0);
702 if (ret < 0) {
703 netdev_err(net, "Failed to enable EEPROM write\n");
704 goto free;
705 }
706 msleep(20);
707
708 for (i = first_word; i <= last_word; i++) {
709 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
710 i, eeprom_buff[i - first_word]);
711 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
712 eeprom_buff[i - first_word], 0, NULL, 0);
713 if (ret < 0) {
714 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
715 i);
716 goto free;
717 }
718 msleep(20);
719 }
720
721 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL, 0);
722 if (ret < 0) {
723 netdev_err(net, "Failed to disable EEPROM write\n");
724 goto free;
725 }
726
727 ret = 0;
728free:
729 kfree(eeprom_buff);
730 return ret;
731}
732
733void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
734{
735 /* Inherit standard device info */
736 usbnet_get_drvinfo(net, info);
737 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
738 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
739}
740
741int asix_set_mac_address(struct net_device *net, void *p)
742{
743 struct usbnet *dev = netdev_priv(net);
744 struct asix_data *data = (struct asix_data *)&dev->data;
745 struct sockaddr *addr = p;
746
747 if (netif_running(net))
748 return -EBUSY;
749 if (!is_valid_ether_addr(addr->sa_data))
750 return -EADDRNOTAVAIL;
751
752 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
753
754 /* We use the 20 byte dev->data
755 * for our 6 byte mac buffer
756 * to avoid allocating memory that
757 * is tricky to free later */
758 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
759 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
760 data->mac_addr);
761
762 return 0;
763}