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.
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.
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.
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/>.
24 int asix_read_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
25 u16 size
, void *data
, int in_pm
)
28 int (*fn
)(struct usbnet
*, u8
, u8
, u16
, u16
, void *, u16
);
35 fn
= usbnet_read_cmd_nopm
;
37 ret
= fn(dev
, cmd
, USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
38 value
, index
, data
, size
);
40 if (unlikely(ret
< 0))
41 netdev_warn(dev
->net
, "Failed to read reg index 0x%04x: %d\n",
47 int asix_write_cmd(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
48 u16 size
, void *data
, int in_pm
)
51 int (*fn
)(struct usbnet
*, u8
, u8
, u16
, u16
, const void *, u16
);
56 fn
= usbnet_write_cmd
;
58 fn
= usbnet_write_cmd_nopm
;
60 ret
= fn(dev
, cmd
, USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
61 value
, index
, data
, size
);
63 if (unlikely(ret
< 0))
64 netdev_warn(dev
->net
, "Failed to write reg index 0x%04x: %d\n",
70 void asix_write_cmd_async(struct usbnet
*dev
, u8 cmd
, u16 value
, u16 index
,
73 usbnet_write_cmd_async(dev
, cmd
,
74 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
75 value
, index
, data
, size
);
78 static void reset_asix_rx_fixup_info(struct asix_rx_fixup_info
*rx
)
80 /* Reset the variables that have a lifetime outside of
81 * asix_rx_fixup_internal() so that future processing starts from a
82 * known set of initial conditions.
86 /* Discard any incomplete Ethernet frame in the netdev buffer */
87 kfree_skb(rx
->ax_skb
);
91 /* Assume the Data header 32-bit word is at the start of the current
92 * or next URB socket buffer so reset all the state variables.
95 rx
->split_head
= false;
99 int asix_rx_fixup_internal(struct usbnet
*dev
, struct sk_buff
*skb
,
100 struct asix_rx_fixup_info
*rx
)
105 /* When an Ethernet frame spans multiple URB socket buffers,
106 * do a sanity test for the Data header synchronisation.
107 * Attempt to detect the situation of the previous socket buffer having
108 * been truncated or a socket buffer was missing. These situations
109 * cause a discontinuity in the data stream and therefore need to avoid
110 * appending bad data to the end of the current netdev socket buffer.
111 * Also avoid unnecessarily discarding a good current netdev socket
114 if (rx
->remaining
&& (rx
->remaining
+ sizeof(u32
) <= skb
->len
)) {
115 offset
= ((rx
->remaining
+ 1) & 0xfffe);
116 rx
->header
= get_unaligned_le32(skb
->data
+ offset
);
119 size
= (u16
)(rx
->header
& 0x7ff);
120 if (size
!= ((~rx
->header
>> 16) & 0x7ff)) {
121 netdev_err(dev
->net
, "asix_rx_fixup() Data Header synchronisation was lost, remaining %d\n",
123 reset_asix_rx_fixup_info(rx
);
127 while (offset
+ sizeof(u16
) <= skb
->len
) {
130 if (!rx
->remaining
) {
131 if (skb
->len
- offset
== sizeof(u16
)) {
132 rx
->header
= get_unaligned_le16(
134 rx
->split_head
= true;
135 offset
+= sizeof(u16
);
139 if (rx
->split_head
== true) {
140 rx
->header
|= (get_unaligned_le16(
141 skb
->data
+ offset
) << 16);
142 rx
->split_head
= false;
143 offset
+= sizeof(u16
);
145 rx
->header
= get_unaligned_le32(skb
->data
+
147 offset
+= sizeof(u32
);
150 /* take frame length from Data header 32-bit word */
151 size
= (u16
)(rx
->header
& 0x7ff);
152 if (size
!= ((~rx
->header
>> 16) & 0x7ff)) {
153 netdev_err(dev
->net
, "asix_rx_fixup() Bad Header Length 0x%x, offset %d\n",
155 reset_asix_rx_fixup_info(rx
);
158 if (size
> dev
->net
->mtu
+ ETH_HLEN
+ VLAN_HLEN
) {
159 netdev_dbg(dev
->net
, "asix_rx_fixup() Bad RX Length %d\n",
161 reset_asix_rx_fixup_info(rx
);
165 /* Sometimes may fail to get a netdev socket buffer but
166 * continue to process the URB socket buffer so that
167 * synchronisation of the Ethernet frame Data header
168 * word is maintained.
170 rx
->ax_skb
= netdev_alloc_skb_ip_align(dev
->net
, size
);
172 rx
->remaining
= size
;
175 if (rx
->remaining
> skb
->len
- offset
) {
176 copy_length
= skb
->len
- offset
;
177 rx
->remaining
-= copy_length
;
179 copy_length
= rx
->remaining
;
184 skb_put_data(rx
->ax_skb
, skb
->data
+ offset
,
186 if (!rx
->remaining
) {
187 usbnet_skb_return(dev
, rx
->ax_skb
);
192 offset
+= (copy_length
+ 1) & 0xfffe;
195 if (skb
->len
!= offset
) {
196 netdev_err(dev
->net
, "asix_rx_fixup() Bad SKB Length %d, %d\n",
198 reset_asix_rx_fixup_info(rx
);
205 int asix_rx_fixup_common(struct usbnet
*dev
, struct sk_buff
*skb
)
207 struct asix_common_private
*dp
= dev
->driver_priv
;
208 struct asix_rx_fixup_info
*rx
= &dp
->rx_fixup_info
;
210 return asix_rx_fixup_internal(dev
, skb
, rx
);
213 void asix_rx_fixup_common_free(struct asix_common_private
*dp
)
215 struct asix_rx_fixup_info
*rx
;
220 rx
= &dp
->rx_fixup_info
;
223 kfree_skb(rx
->ax_skb
);
228 struct sk_buff
*asix_tx_fixup(struct usbnet
*dev
, struct sk_buff
*skb
,
232 int headroom
= skb_headroom(skb
);
233 int tailroom
= skb_tailroom(skb
);
235 u32 padbytes
= 0xffff0000;
237 padlen
= ((skb
->len
+ 4) & (dev
->maxpacket
- 1)) ? 0 : 4;
239 /* We need to push 4 bytes in front of frame (packet_len)
240 * and maybe add 4 bytes after the end (if padlen is 4)
242 * Avoid skb_copy_expand() expensive call, using following rules :
243 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
244 * is false (and if we have 4 bytes of headroom)
245 * - We are allowed to put 4 bytes at tail if skb_cloned()
246 * is false (and if we have 4 bytes of tailroom)
248 * TCP packets for example are cloned, but __skb_header_release()
249 * was called in tcp stack, allowing us to use headroom for our needs.
251 if (!skb_header_cloned(skb
) &&
252 !(padlen
&& skb_cloned(skb
)) &&
253 headroom
+ tailroom
>= 4 + padlen
) {
254 /* following should not happen, but better be safe */
257 skb
->data
= memmove(skb
->head
+ 4, skb
->data
, skb
->len
);
258 skb_set_tail_pointer(skb
, skb
->len
);
261 struct sk_buff
*skb2
;
263 skb2
= skb_copy_expand(skb
, 4, padlen
, flags
);
264 dev_kfree_skb_any(skb
);
270 packet_len
= ((skb
->len
^ 0x0000ffff) << 16) + skb
->len
;
272 cpu_to_le32s(&packet_len
);
273 skb_copy_to_linear_data(skb
, &packet_len
, sizeof(packet_len
));
276 cpu_to_le32s(&padbytes
);
277 memcpy(skb_tail_pointer(skb
), &padbytes
, sizeof(padbytes
));
278 skb_put(skb
, sizeof(padbytes
));
281 usbnet_set_skb_tx_stats(skb
, 1, 0);
285 int asix_set_sw_mii(struct usbnet
*dev
, int in_pm
)
288 ret
= asix_write_cmd(dev
, AX_CMD_SET_SW_MII
, 0x0000, 0, 0, NULL
, in_pm
);
291 netdev_err(dev
->net
, "Failed to enable software MII access\n");
295 int asix_set_hw_mii(struct usbnet
*dev
, int in_pm
)
298 ret
= asix_write_cmd(dev
, AX_CMD_SET_HW_MII
, 0x0000, 0, 0, NULL
, in_pm
);
300 netdev_err(dev
->net
, "Failed to enable hardware MII access\n");
304 int asix_read_phy_addr(struct usbnet
*dev
, int internal
)
306 int offset
= (internal
? 1 : 0);
308 int ret
= asix_read_cmd(dev
, AX_CMD_READ_PHY_ID
, 0, 0, 2, buf
, 0);
310 netdev_dbg(dev
->net
, "asix_get_phy_addr()\n");
313 netdev_err(dev
->net
, "Error reading PHYID register: %02x\n", ret
);
316 netdev_dbg(dev
->net
, "asix_get_phy_addr() returning 0x%04x\n",
324 int asix_get_phy_addr(struct usbnet
*dev
)
326 /* return the address of the internal phy */
327 return asix_read_phy_addr(dev
, 1);
331 int asix_sw_reset(struct usbnet
*dev
, u8 flags
, int in_pm
)
335 ret
= asix_write_cmd(dev
, AX_CMD_SW_RESET
, flags
, 0, 0, NULL
, in_pm
);
337 netdev_err(dev
->net
, "Failed to send software reset: %02x\n", ret
);
342 u16
asix_read_rx_ctl(struct usbnet
*dev
, int in_pm
)
345 int ret
= asix_read_cmd(dev
, AX_CMD_READ_RX_CTL
, 0, 0, 2, &v
, in_pm
);
348 netdev_err(dev
->net
, "Error reading RX_CTL register: %02x\n", ret
);
351 ret
= le16_to_cpu(v
);
356 int asix_write_rx_ctl(struct usbnet
*dev
, u16 mode
, int in_pm
)
360 netdev_dbg(dev
->net
, "asix_write_rx_ctl() - mode = 0x%04x\n", mode
);
361 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_RX_CTL
, mode
, 0, 0, NULL
, in_pm
);
363 netdev_err(dev
->net
, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
369 u16
asix_read_medium_status(struct usbnet
*dev
, int in_pm
)
372 int ret
= asix_read_cmd(dev
, AX_CMD_READ_MEDIUM_STATUS
,
376 netdev_err(dev
->net
, "Error reading Medium Status register: %02x\n",
378 return ret
; /* TODO: callers not checking for error ret */
381 return le16_to_cpu(v
);
385 int asix_write_medium_mode(struct usbnet
*dev
, u16 mode
, int in_pm
)
389 netdev_dbg(dev
->net
, "asix_write_medium_mode() - mode = 0x%04x\n", mode
);
390 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_MEDIUM_MODE
,
391 mode
, 0, 0, NULL
, in_pm
);
393 netdev_err(dev
->net
, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
399 int asix_write_gpio(struct usbnet
*dev
, u16 value
, int sleep
, int in_pm
)
403 netdev_dbg(dev
->net
, "asix_write_gpio() - value = 0x%04x\n", value
);
404 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_GPIOS
, value
, 0, 0, NULL
, in_pm
);
406 netdev_err(dev
->net
, "Failed to write GPIO value 0x%04x: %02x\n",
416 * AX88772 & AX88178 have a 16-bit RX_CTL value
418 void asix_set_multicast(struct net_device
*net
)
420 struct usbnet
*dev
= netdev_priv(net
);
421 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
422 u16 rx_ctl
= AX_DEFAULT_RX_CTL
;
424 if (net
->flags
& IFF_PROMISC
) {
425 rx_ctl
|= AX_RX_CTL_PRO
;
426 } else if (net
->flags
& IFF_ALLMULTI
||
427 netdev_mc_count(net
) > AX_MAX_MCAST
) {
428 rx_ctl
|= AX_RX_CTL_AMALL
;
429 } else if (netdev_mc_empty(net
)) {
430 /* just broadcast and directed */
432 /* We use the 20 byte dev->data
433 * for our 8 byte filter buffer
434 * to avoid allocating memory that
435 * is tricky to free later */
436 struct netdev_hw_addr
*ha
;
439 memset(data
->multi_filter
, 0, AX_MCAST_FILTER_SIZE
);
441 /* Build the multicast hash filter. */
442 netdev_for_each_mc_addr(ha
, net
) {
443 crc_bits
= ether_crc(ETH_ALEN
, ha
->addr
) >> 26;
444 data
->multi_filter
[crc_bits
>> 3] |=
448 asix_write_cmd_async(dev
, AX_CMD_WRITE_MULTI_FILTER
, 0, 0,
449 AX_MCAST_FILTER_SIZE
, data
->multi_filter
);
451 rx_ctl
|= AX_RX_CTL_AM
;
454 asix_write_cmd_async(dev
, AX_CMD_WRITE_RX_CTL
, rx_ctl
, 0, 0, NULL
);
457 int asix_mdio_read(struct net_device
*netdev
, int phy_id
, int loc
)
459 struct usbnet
*dev
= netdev_priv(netdev
);
465 mutex_lock(&dev
->phy_mutex
);
467 ret
= asix_set_sw_mii(dev
, 0);
468 if (ret
== -ENODEV
|| ret
== -ETIMEDOUT
)
470 usleep_range(1000, 1100);
471 ret
= asix_read_cmd(dev
, AX_CMD_STATMNGSTS_REG
,
473 } while (!(smsr
& AX_HOST_EN
) && (i
++ < 30) && (ret
!= -ENODEV
));
474 if (ret
== -ENODEV
|| ret
== -ETIMEDOUT
) {
475 mutex_unlock(&dev
->phy_mutex
);
479 asix_read_cmd(dev
, AX_CMD_READ_MII_REG
, phy_id
,
480 (__u16
)loc
, 2, &res
, 0);
481 asix_set_hw_mii(dev
, 0);
482 mutex_unlock(&dev
->phy_mutex
);
484 netdev_dbg(dev
->net
, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
485 phy_id
, loc
, le16_to_cpu(res
));
487 return le16_to_cpu(res
);
490 void asix_mdio_write(struct net_device
*netdev
, int phy_id
, int loc
, int val
)
492 struct usbnet
*dev
= netdev_priv(netdev
);
493 __le16 res
= cpu_to_le16(val
);
498 netdev_dbg(dev
->net
, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
501 mutex_lock(&dev
->phy_mutex
);
503 ret
= asix_set_sw_mii(dev
, 0);
506 usleep_range(1000, 1100);
507 ret
= asix_read_cmd(dev
, AX_CMD_STATMNGSTS_REG
,
509 } while (!(smsr
& AX_HOST_EN
) && (i
++ < 30) && (ret
!= -ENODEV
));
510 if (ret
== -ENODEV
) {
511 mutex_unlock(&dev
->phy_mutex
);
515 asix_write_cmd(dev
, AX_CMD_WRITE_MII_REG
, phy_id
,
516 (__u16
)loc
, 2, &res
, 0);
517 asix_set_hw_mii(dev
, 0);
518 mutex_unlock(&dev
->phy_mutex
);
521 int asix_mdio_read_nopm(struct net_device
*netdev
, int phy_id
, int loc
)
523 struct usbnet
*dev
= netdev_priv(netdev
);
529 mutex_lock(&dev
->phy_mutex
);
531 ret
= asix_set_sw_mii(dev
, 1);
532 if (ret
== -ENODEV
|| ret
== -ETIMEDOUT
)
534 usleep_range(1000, 1100);
535 ret
= asix_read_cmd(dev
, AX_CMD_STATMNGSTS_REG
,
537 } while (!(smsr
& AX_HOST_EN
) && (i
++ < 30) && (ret
!= -ENODEV
));
538 if (ret
== -ENODEV
|| ret
== -ETIMEDOUT
) {
539 mutex_unlock(&dev
->phy_mutex
);
543 asix_read_cmd(dev
, AX_CMD_READ_MII_REG
, phy_id
,
544 (__u16
)loc
, 2, &res
, 1);
545 asix_set_hw_mii(dev
, 1);
546 mutex_unlock(&dev
->phy_mutex
);
548 netdev_dbg(dev
->net
, "asix_mdio_read_nopm() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
549 phy_id
, loc
, le16_to_cpu(res
));
551 return le16_to_cpu(res
);
555 asix_mdio_write_nopm(struct net_device
*netdev
, int phy_id
, int loc
, int val
)
557 struct usbnet
*dev
= netdev_priv(netdev
);
558 __le16 res
= cpu_to_le16(val
);
563 netdev_dbg(dev
->net
, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
566 mutex_lock(&dev
->phy_mutex
);
568 ret
= asix_set_sw_mii(dev
, 1);
571 usleep_range(1000, 1100);
572 ret
= asix_read_cmd(dev
, AX_CMD_STATMNGSTS_REG
,
574 } while (!(smsr
& AX_HOST_EN
) && (i
++ < 30) && (ret
!= -ENODEV
));
575 if (ret
== -ENODEV
) {
576 mutex_unlock(&dev
->phy_mutex
);
580 asix_write_cmd(dev
, AX_CMD_WRITE_MII_REG
, phy_id
,
581 (__u16
)loc
, 2, &res
, 1);
582 asix_set_hw_mii(dev
, 1);
583 mutex_unlock(&dev
->phy_mutex
);
586 void asix_get_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
588 struct usbnet
*dev
= netdev_priv(net
);
591 if (asix_read_cmd(dev
, AX_CMD_READ_MONITOR_MODE
,
592 0, 0, 1, &opt
, 0) < 0) {
593 wolinfo
->supported
= 0;
594 wolinfo
->wolopts
= 0;
597 wolinfo
->supported
= WAKE_PHY
| WAKE_MAGIC
;
598 wolinfo
->wolopts
= 0;
599 if (opt
& AX_MONITOR_LINK
)
600 wolinfo
->wolopts
|= WAKE_PHY
;
601 if (opt
& AX_MONITOR_MAGIC
)
602 wolinfo
->wolopts
|= WAKE_MAGIC
;
605 int asix_set_wol(struct net_device
*net
, struct ethtool_wolinfo
*wolinfo
)
607 struct usbnet
*dev
= netdev_priv(net
);
610 if (wolinfo
->wolopts
& ~(WAKE_PHY
| WAKE_MAGIC
))
613 if (wolinfo
->wolopts
& WAKE_PHY
)
614 opt
|= AX_MONITOR_LINK
;
615 if (wolinfo
->wolopts
& WAKE_MAGIC
)
616 opt
|= AX_MONITOR_MAGIC
;
618 if (asix_write_cmd(dev
, AX_CMD_WRITE_MONITOR_MODE
,
619 opt
, 0, 0, NULL
, 0) < 0)
625 int asix_get_eeprom_len(struct net_device
*net
)
627 return AX_EEPROM_LEN
;
630 int asix_get_eeprom(struct net_device
*net
, struct ethtool_eeprom
*eeprom
,
633 struct usbnet
*dev
= netdev_priv(net
);
635 int first_word
, last_word
;
638 if (eeprom
->len
== 0)
641 eeprom
->magic
= AX_EEPROM_MAGIC
;
643 first_word
= eeprom
->offset
>> 1;
644 last_word
= (eeprom
->offset
+ eeprom
->len
- 1) >> 1;
646 eeprom_buff
= kmalloc_array(last_word
- first_word
+ 1, sizeof(u16
),
651 /* ax8817x returns 2 bytes from eeprom on read */
652 for (i
= first_word
; i
<= last_word
; i
++) {
653 if (asix_read_cmd(dev
, AX_CMD_READ_EEPROM
, i
, 0, 2,
654 &eeprom_buff
[i
- first_word
], 0) < 0) {
660 memcpy(data
, (u8
*)eeprom_buff
+ (eeprom
->offset
& 1), eeprom
->len
);
665 int asix_set_eeprom(struct net_device
*net
, struct ethtool_eeprom
*eeprom
,
668 struct usbnet
*dev
= netdev_priv(net
);
670 int first_word
, last_word
;
674 netdev_dbg(net
, "write EEPROM len %d, offset %d, magic 0x%x\n",
675 eeprom
->len
, eeprom
->offset
, eeprom
->magic
);
677 if (eeprom
->len
== 0)
680 if (eeprom
->magic
!= AX_EEPROM_MAGIC
)
683 first_word
= eeprom
->offset
>> 1;
684 last_word
= (eeprom
->offset
+ eeprom
->len
- 1) >> 1;
686 eeprom_buff
= kmalloc_array(last_word
- first_word
+ 1, sizeof(u16
),
691 /* align data to 16 bit boundaries, read the missing data from
693 if (eeprom
->offset
& 1) {
694 ret
= asix_read_cmd(dev
, AX_CMD_READ_EEPROM
, first_word
, 0, 2,
697 netdev_err(net
, "Failed to read EEPROM at offset 0x%02x.\n", first_word
);
702 if ((eeprom
->offset
+ eeprom
->len
) & 1) {
703 ret
= asix_read_cmd(dev
, AX_CMD_READ_EEPROM
, last_word
, 0, 2,
704 &eeprom_buff
[last_word
- first_word
], 0);
706 netdev_err(net
, "Failed to read EEPROM at offset 0x%02x.\n", last_word
);
711 memcpy((u8
*)eeprom_buff
+ (eeprom
->offset
& 1), data
, eeprom
->len
);
713 /* write data to EEPROM */
714 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_ENABLE
, 0x0000, 0, 0, NULL
, 0);
716 netdev_err(net
, "Failed to enable EEPROM write\n");
721 for (i
= first_word
; i
<= last_word
; i
++) {
722 netdev_dbg(net
, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
723 i
, eeprom_buff
[i
- first_word
]);
724 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_EEPROM
, i
,
725 eeprom_buff
[i
- first_word
], 0, NULL
, 0);
727 netdev_err(net
, "Failed to write EEPROM at offset 0x%02x.\n",
734 ret
= asix_write_cmd(dev
, AX_CMD_WRITE_DISABLE
, 0x0000, 0, 0, NULL
, 0);
736 netdev_err(net
, "Failed to disable EEPROM write\n");
746 void asix_get_drvinfo(struct net_device
*net
, struct ethtool_drvinfo
*info
)
748 /* Inherit standard device info */
749 usbnet_get_drvinfo(net
, info
);
750 strlcpy(info
->driver
, DRIVER_NAME
, sizeof(info
->driver
));
751 strlcpy(info
->version
, DRIVER_VERSION
, sizeof(info
->version
));
754 int asix_set_mac_address(struct net_device
*net
, void *p
)
756 struct usbnet
*dev
= netdev_priv(net
);
757 struct asix_data
*data
= (struct asix_data
*)&dev
->data
;
758 struct sockaddr
*addr
= p
;
760 if (netif_running(net
))
762 if (!is_valid_ether_addr(addr
->sa_data
))
763 return -EADDRNOTAVAIL
;
765 memcpy(net
->dev_addr
, addr
->sa_data
, ETH_ALEN
);
767 /* We use the 20 byte dev->data
768 * for our 6 byte mac buffer
769 * to avoid allocating memory that
770 * is tricky to free later */
771 memcpy(data
->mac_addr
, addr
->sa_data
, ETH_ALEN
);
772 asix_write_cmd_async(dev
, AX_CMD_WRITE_NODE_ID
, 0, 0, ETH_ALEN
,