blob: 75d6f26729a30e34cdaaf8334a9cc0aaa2a01c82 [file] [log] [blame]
David Brownell2e55cc72005-08-31 09:53:10 -07001/*
2 * ASIX AX8817X based USB 2.0 Ethernet Devices
David Hollis933a27d2006-07-29 10:12:50 -04003 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
David Brownell2e55cc72005-08-31 09:53:10 -07004 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
David Hollis933a27d2006-07-29 10:12:50 -04005 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
David Brownell2e55cc72005-08-31 09:53:10 -07006 * 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
Jeff Kirsher9cb00072013-12-06 06:28:46 -080019 * along with this program; if not, see <http://www.gnu.org/licenses/>.
David Brownell2e55cc72005-08-31 09:53:10 -070020 */
21
Christian Riesch607740b2012-07-13 05:26:30 +000022#include "asix.h"
David Brownell2e55cc72005-08-31 09:53:10 -070023
Christian Riesch607740b2012-07-13 05:26:30 +000024int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
25 u16 size, void *data)
David Brownell2e55cc72005-08-31 09:53:10 -070026{
Ming Lei0bc69ef2012-10-24 19:46:55 +000027 int ret;
28 ret = usbnet_read_cmd(dev, cmd,
29 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
30 value, index, data, size);
Al Viro51bf2972007-12-22 17:42:36 +000031
Ming Lei0bc69ef2012-10-24 19:46:55 +000032 if (ret != size && ret >= 0)
33 return -EINVAL;
34 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -070035}
36
Christian Riesch607740b2012-07-13 05:26:30 +000037int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
38 u16 size, void *data)
David Brownell2e55cc72005-08-31 09:53:10 -070039{
Ming Lei0bc69ef2012-10-24 19:46:55 +000040 return usbnet_write_cmd(dev, cmd,
41 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
42 value, index, data, size);
David Brownell2e55cc72005-08-31 09:53:10 -070043}
44
Christian Riesch607740b2012-07-13 05:26:30 +000045void asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
46 u16 size, void *data)
David Hollis48b1be62006-03-28 20:15:42 -050047{
Ming Lei0bc69ef2012-10-24 19:46:55 +000048 usbnet_write_cmd_async(dev, cmd,
49 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
50 value, index, data, size);
David Hollis48b1be62006-03-28 20:15:42 -050051}
52
Lucas Stach8b5b6f52013-01-16 04:24:07 +000053int asix_rx_fixup_internal(struct usbnet *dev, struct sk_buff *skb,
54 struct asix_rx_fixup_info *rx)
David Hollis48b1be62006-03-28 20:15:42 -050055{
Eric Dumazeta9e0aca2012-03-14 20:18:32 +000056 int offset = 0;
David Hollis48b1be62006-03-28 20:15:42 -050057
Lucas Stach8b5b6f52013-01-16 04:24:07 +000058 while (offset + sizeof(u16) <= skb->len) {
59 u16 remaining = 0;
60 unsigned char *data;
David Hollis48b1be62006-03-28 20:15:42 -050061
Lucas Stach8b5b6f52013-01-16 04:24:07 +000062 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 }
Marek Vasutbc466e62011-07-26 16:44:46 +000083
Lucas Stach8b5b6f52013-01-16 04:24:07 +000084 /* 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;
Neil Jones3f78d1f2010-05-17 17:18:28 -070096 }
97
Lucas Stach8b5b6f52013-01-16 04:24:07 +000098 if (rx->size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) {
Joe Perches60b86752010-02-17 10:30:23 +000099 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000100 rx->size);
101 kfree_skb(rx->ax_skb);
holger@eitzenberger.orgc5060ce2013-05-03 00:02:20 +0000102 rx->ax_skb = NULL;
103 rx->size = 0U;
104
David Hollis933a27d2006-07-29 10:12:50 -0400105 return 0;
106 }
David Hollis933a27d2006-07-29 10:12:50 -0400107
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000108 if (rx->size > skb->len - offset) {
109 remaining = rx->size - (skb->len - offset);
110 rx->size = skb->len - offset;
111 }
David Hollis933a27d2006-07-29 10:12:50 -0400112
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000113 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;
David Hollis933a27d2006-07-29 10:12:50 -0400120 }
121
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000122 if (skb->len != offset) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000123 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
124 skb->len, offset);
David Hollis933a27d2006-07-29 10:12:50 -0400125 return 0;
126 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000127
David Hollis933a27d2006-07-29 10:12:50 -0400128 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500129}
130
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000131int 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
Christian Riesch607740b2012-07-13 05:26:30 +0000139struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
140 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500141{
David Hollis933a27d2006-07-29 10:12:50 -0400142 int padlen;
143 int headroom = skb_headroom(skb);
144 int tailroom = skb_tailroom(skb);
145 u32 packet_len;
146 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500147
Ingo van Lil2a580942012-04-23 22:05:38 +0000148 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500149
Eric Dumazet95162d62012-07-05 04:31:01 +0000150 /* 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) {
David Hollis933a27d2006-07-29 10:12:50 -0400168 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700169 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400170 }
171 } else {
172 struct sk_buff *skb2;
Eric Dumazet95162d62012-07-05 04:31:01 +0000173
David Hollis933a27d2006-07-29 10:12:50 -0400174 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
Eric Dumazet95162d62012-07-05 04:31:01 +0000181 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
David Hollis933a27d2006-07-29 10:12:50 -0400182 skb_push(skb, 4);
David Hollis57e4f042007-02-05 12:03:03 -0500183 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300184 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400185
Ingo van Lil2a580942012-04-23 22:05:38 +0000186 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500187 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700188 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400189 skb_put(skb, sizeof(padbytes));
190 }
Ben Hutchings1e9e39f2015-02-26 19:34:37 +0000191
Ben Hutchings7a1e8902015-03-25 21:41:33 +0100192 usbnet_set_skb_tx_stats(skb, 1, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400193 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500194}
195
Christian Riesch607740b2012-07-13 05:26:30 +0000196int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700197{
David Hollis933a27d2006-07-29 10:12:50 -0400198 int ret;
199 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
200 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000201 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400202 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700203}
204
Christian Riesch607740b2012-07-13 05:26:30 +0000205int asix_set_hw_mii(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400206{
207 int ret;
208 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
209 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000210 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400211 return ret;
212}
213
Christian Riesch16626b02012-07-13 05:26:31 +0000214int asix_read_phy_addr(struct usbnet *dev, int internal)
David Hollis933a27d2006-07-29 10:12:50 -0400215{
Christian Riesch16626b02012-07-13 05:26:31 +0000216 int offset = (internal ? 1 : 0);
Al Viro51bf2972007-12-22 17:42:36 +0000217 u8 buf[2];
218 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400219
Joe Perches60b86752010-02-17 10:30:23 +0000220 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400221
Al Viro51bf2972007-12-22 17:42:36 +0000222 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000223 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000224 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400225 }
Joe Perches60b86752010-02-17 10:30:23 +0000226 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
227 *((__le16 *)buf));
Christian Riesch16626b02012-07-13 05:26:31 +0000228 ret = buf[offset];
Al Viro51bf2972007-12-22 17:42:36 +0000229
230out:
David Hollis933a27d2006-07-29 10:12:50 -0400231 return ret;
232}
233
Christian Riesch16626b02012-07-13 05:26:31 +0000234int asix_get_phy_addr(struct usbnet *dev)
235{
236 /* return the address of the internal phy */
237 return asix_read_phy_addr(dev, 1);
238}
239
240
Christian Riesch607740b2012-07-13 05:26:30 +0000241int asix_sw_reset(struct usbnet *dev, u8 flags)
David Hollis933a27d2006-07-29 10:12:50 -0400242{
243 int ret;
244
245 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
246 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000247 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400248
249 return ret;
250}
251
Christian Riesch607740b2012-07-13 05:26:30 +0000252u16 asix_read_rx_ctl(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400253{
Al Viro51bf2972007-12-22 17:42:36 +0000254 __le16 v;
255 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400256
Al Viro51bf2972007-12-22 17:42:36 +0000257 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000258 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000259 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400260 }
Al Viro51bf2972007-12-22 17:42:36 +0000261 ret = le16_to_cpu(v);
262out:
David Hollis933a27d2006-07-29 10:12:50 -0400263 return ret;
264}
265
Christian Riesch607740b2012-07-13 05:26:30 +0000266int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400267{
268 int ret;
269
Joe Perches60b86752010-02-17 10:30:23 +0000270 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400271 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
272 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000273 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
274 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400275
276 return ret;
277}
278
Christian Riesch607740b2012-07-13 05:26:30 +0000279u16 asix_read_medium_status(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400280{
Al Viro51bf2972007-12-22 17:42:36 +0000281 __le16 v;
282 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400283
Al Viro51bf2972007-12-22 17:42:36 +0000284 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000285 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
286 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000287 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400288 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000289
290 return le16_to_cpu(v);
291
David Hollis933a27d2006-07-29 10:12:50 -0400292}
293
Christian Riesch607740b2012-07-13 05:26:30 +0000294int asix_write_medium_mode(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400295{
296 int ret;
297
Joe Perches60b86752010-02-17 10:30:23 +0000298 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400299 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
300 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000301 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
302 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400303
304 return ret;
305}
306
Christian Riesch607740b2012-07-13 05:26:30 +0000307int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
David Hollis933a27d2006-07-29 10:12:50 -0400308{
309 int ret;
310
Joe Perches60b86752010-02-17 10:30:23 +0000311 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400312 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
313 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000314 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
315 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400316
317 if (sleep)
318 msleep(sleep);
319
320 return ret;
321}
322
323/*
324 * AX88772 & AX88178 have a 16-bit RX_CTL value
325 */
Christian Riesch607740b2012-07-13 05:26:30 +0000326void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700327{
328 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500329 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400330 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700331
332 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400333 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000334 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000335 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400336 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000337 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700338 /* just broadcast and directed */
339 } else {
340 /* We use the 20 byte dev->data
341 * for our 8 byte filter buffer
342 * to avoid allocating memory that
343 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000344 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700345 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700346
347 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
348
349 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000350 netdev_for_each_mc_addr(ha, net) {
351 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700352 data->multi_filter[crc_bits >> 3] |=
353 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700354 }
355
David Hollis48b1be62006-03-28 20:15:42 -0500356 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700357 AX_MCAST_FILTER_SIZE, data->multi_filter);
358
David Hollis933a27d2006-07-29 10:12:50 -0400359 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700360 }
361
David Hollis48b1be62006-03-28 20:15:42 -0500362 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700363}
364
Christian Riesch607740b2012-07-13 05:26:30 +0000365int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700366{
367 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000368 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700369
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200370 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500371 asix_set_sw_mii(dev);
372 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000373 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500374 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200375 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700376
Joe Perches60b86752010-02-17 10:30:23 +0000377 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
378 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700379
Al Viro51bf2972007-12-22 17:42:36 +0000380 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700381}
382
Christian Riesch607740b2012-07-13 05:26:30 +0000383void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700384{
385 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000386 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700387
Joe Perches60b86752010-02-17 10:30:23 +0000388 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
389 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200390 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500391 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000392 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500393 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200394 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700395}
396
Christian Riesch607740b2012-07-13 05:26:30 +0000397void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700398{
399 struct usbnet *dev = netdev_priv(net);
400 u8 opt;
401
David Hollis48b1be62006-03-28 20:15:42 -0500402 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700403 wolinfo->supported = 0;
404 wolinfo->wolopts = 0;
405 return;
406 }
407 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
408 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000409 if (opt & AX_MONITOR_LINK)
410 wolinfo->wolopts |= WAKE_PHY;
411 if (opt & AX_MONITOR_MAGIC)
412 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700413}
414
Christian Riesch607740b2012-07-13 05:26:30 +0000415int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700416{
417 struct usbnet *dev = netdev_priv(net);
418 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700419
420 if (wolinfo->wolopts & WAKE_PHY)
421 opt |= AX_MONITOR_LINK;
422 if (wolinfo->wolopts & WAKE_MAGIC)
423 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700424
David Hollis48b1be62006-03-28 20:15:42 -0500425 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000426 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700427 return -EINVAL;
428
429 return 0;
430}
431
Christian Riesch607740b2012-07-13 05:26:30 +0000432int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700433{
Christian Rieschceb02c92012-07-19 00:23:06 +0000434 return AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700435}
436
Christian Riesch607740b2012-07-13 05:26:30 +0000437int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
438 u8 *data)
David Brownell2e55cc72005-08-31 09:53:10 -0700439{
440 struct usbnet *dev = netdev_priv(net);
Christian Rieschceb02c92012-07-19 00:23:06 +0000441 u16 *eeprom_buff;
442 int first_word, last_word;
David Brownell2e55cc72005-08-31 09:53:10 -0700443 int i;
444
Christian Rieschceb02c92012-07-19 00:23:06 +0000445 if (eeprom->len == 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700446 return -EINVAL;
447
448 eeprom->magic = AX_EEPROM_MAGIC;
449
Christian Rieschceb02c92012-07-19 00:23:06 +0000450 first_word = eeprom->offset >> 1;
451 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
452
453 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
454 GFP_KERNEL);
455 if (!eeprom_buff)
456 return -ENOMEM;
457
David Brownell2e55cc72005-08-31 09:53:10 -0700458 /* ax8817x returns 2 bytes from eeprom on read */
Christian Rieschceb02c92012-07-19 00:23:06 +0000459 for (i = first_word; i <= last_word; i++) {
460 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
461 &(eeprom_buff[i - first_word])) < 0) {
462 kfree(eeprom_buff);
463 return -EIO;
464 }
David Brownell2e55cc72005-08-31 09:53:10 -0700465 }
Christian Rieschceb02c92012-07-19 00:23:06 +0000466
467 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
468 kfree(eeprom_buff);
David Brownell2e55cc72005-08-31 09:53:10 -0700469 return 0;
470}
471
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000472int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
473 u8 *data)
474{
475 struct usbnet *dev = netdev_priv(net);
476 u16 *eeprom_buff;
477 int first_word, last_word;
478 int i;
479 int ret;
480
481 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
482 eeprom->len, eeprom->offset, eeprom->magic);
483
484 if (eeprom->len == 0)
485 return -EINVAL;
486
487 if (eeprom->magic != AX_EEPROM_MAGIC)
488 return -EINVAL;
489
490 first_word = eeprom->offset >> 1;
491 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
492
493 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
494 GFP_KERNEL);
495 if (!eeprom_buff)
496 return -ENOMEM;
497
498 /* align data to 16 bit boundaries, read the missing data from
499 the EEPROM */
500 if (eeprom->offset & 1) {
501 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
502 &(eeprom_buff[0]));
503 if (ret < 0) {
504 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
505 goto free;
506 }
507 }
508
509 if ((eeprom->offset + eeprom->len) & 1) {
510 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
511 &(eeprom_buff[last_word - first_word]));
512 if (ret < 0) {
513 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
514 goto free;
515 }
516 }
517
518 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
519
520 /* write data to EEPROM */
521 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL);
522 if (ret < 0) {
523 netdev_err(net, "Failed to enable EEPROM write\n");
524 goto free;
525 }
526 msleep(20);
527
528 for (i = first_word; i <= last_word; i++) {
529 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
530 i, eeprom_buff[i - first_word]);
531 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
532 eeprom_buff[i - first_word], 0, NULL);
533 if (ret < 0) {
534 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
535 i);
536 goto free;
537 }
538 msleep(20);
539 }
540
541 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL);
542 if (ret < 0) {
543 netdev_err(net, "Failed to disable EEPROM write\n");
544 goto free;
545 }
546
547 ret = 0;
548free:
549 kfree(eeprom_buff);
550 return ret;
551}
552
Christian Riesch607740b2012-07-13 05:26:30 +0000553void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
David Brownell2e55cc72005-08-31 09:53:10 -0700554{
555 /* Inherit standard device info */
556 usbnet_get_drvinfo(net, info);
Jiri Pirko7826d432013-01-06 00:44:26 +0000557 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
558 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
Christian Rieschceb02c92012-07-19 00:23:06 +0000559 info->eedump_len = AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700560}
561
Christian Riesch607740b2012-07-13 05:26:30 +0000562int asix_set_mac_address(struct net_device *net, void *p)
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000563{
564 struct usbnet *dev = netdev_priv(net);
565 struct asix_data *data = (struct asix_data *)&dev->data;
566 struct sockaddr *addr = p;
567
568 if (netif_running(net))
569 return -EBUSY;
570 if (!is_valid_ether_addr(addr->sa_data))
571 return -EADDRNOTAVAIL;
572
573 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
574
575 /* We use the 20 byte dev->data
576 * for our 6 byte mac buffer
577 * to avoid allocating memory that
578 * is tricky to free later */
579 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
580 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
581 data->mac_addr);
582
583 return 0;
584}