blob: 5c55f11572baa0a3e0dd3877ae886935cb8a6eb9 [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 }
191 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500192}
193
Christian Riesch607740b2012-07-13 05:26:30 +0000194int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700195{
David Hollis933a27d2006-07-29 10:12:50 -0400196 int ret;
197 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
198 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000199 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400200 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700201}
202
Christian Riesch607740b2012-07-13 05:26:30 +0000203int asix_set_hw_mii(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400204{
205 int ret;
206 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
207 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000208 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400209 return ret;
210}
211
Christian Riesch16626b02012-07-13 05:26:31 +0000212int asix_read_phy_addr(struct usbnet *dev, int internal)
David Hollis933a27d2006-07-29 10:12:50 -0400213{
Christian Riesch16626b02012-07-13 05:26:31 +0000214 int offset = (internal ? 1 : 0);
Al Viro51bf2972007-12-22 17:42:36 +0000215 u8 buf[2];
216 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400217
Joe Perches60b86752010-02-17 10:30:23 +0000218 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400219
Al Viro51bf2972007-12-22 17:42:36 +0000220 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000221 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000222 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400223 }
Joe Perches60b86752010-02-17 10:30:23 +0000224 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
225 *((__le16 *)buf));
Christian Riesch16626b02012-07-13 05:26:31 +0000226 ret = buf[offset];
Al Viro51bf2972007-12-22 17:42:36 +0000227
228out:
David Hollis933a27d2006-07-29 10:12:50 -0400229 return ret;
230}
231
Christian Riesch16626b02012-07-13 05:26:31 +0000232int 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
Christian Riesch607740b2012-07-13 05:26:30 +0000239int asix_sw_reset(struct usbnet *dev, u8 flags)
David Hollis933a27d2006-07-29 10:12:50 -0400240{
241 int ret;
242
243 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
244 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000245 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400246
247 return ret;
248}
249
Christian Riesch607740b2012-07-13 05:26:30 +0000250u16 asix_read_rx_ctl(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400251{
Al Viro51bf2972007-12-22 17:42:36 +0000252 __le16 v;
253 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400254
Al Viro51bf2972007-12-22 17:42:36 +0000255 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000256 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000257 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400258 }
Al Viro51bf2972007-12-22 17:42:36 +0000259 ret = le16_to_cpu(v);
260out:
David Hollis933a27d2006-07-29 10:12:50 -0400261 return ret;
262}
263
Christian Riesch607740b2012-07-13 05:26:30 +0000264int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400265{
266 int ret;
267
Joe Perches60b86752010-02-17 10:30:23 +0000268 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400269 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
270 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000271 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
272 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400273
274 return ret;
275}
276
Christian Riesch607740b2012-07-13 05:26:30 +0000277u16 asix_read_medium_status(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400278{
Al Viro51bf2972007-12-22 17:42:36 +0000279 __le16 v;
280 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400281
Al Viro51bf2972007-12-22 17:42:36 +0000282 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000283 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
284 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000285 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400286 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000287
288 return le16_to_cpu(v);
289
David Hollis933a27d2006-07-29 10:12:50 -0400290}
291
Christian Riesch607740b2012-07-13 05:26:30 +0000292int asix_write_medium_mode(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400293{
294 int ret;
295
Joe Perches60b86752010-02-17 10:30:23 +0000296 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400297 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
298 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000299 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
300 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400301
302 return ret;
303}
304
Christian Riesch607740b2012-07-13 05:26:30 +0000305int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
David Hollis933a27d2006-07-29 10:12:50 -0400306{
307 int ret;
308
Joe Perches60b86752010-02-17 10:30:23 +0000309 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400310 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
311 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000312 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
313 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400314
315 if (sleep)
316 msleep(sleep);
317
318 return ret;
319}
320
321/*
322 * AX88772 & AX88178 have a 16-bit RX_CTL value
323 */
Christian Riesch607740b2012-07-13 05:26:30 +0000324void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700325{
326 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500327 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400328 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700329
330 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400331 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000332 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000333 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400334 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000335 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700336 /* 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 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000342 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700343 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700344
345 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
346
347 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000348 netdev_for_each_mc_addr(ha, net) {
349 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700350 data->multi_filter[crc_bits >> 3] |=
351 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700352 }
353
David Hollis48b1be62006-03-28 20:15:42 -0500354 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700355 AX_MCAST_FILTER_SIZE, data->multi_filter);
356
David Hollis933a27d2006-07-29 10:12:50 -0400357 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700358 }
359
David Hollis48b1be62006-03-28 20:15:42 -0500360 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700361}
362
Christian Riesch607740b2012-07-13 05:26:30 +0000363int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700364{
365 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000366 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700367
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200368 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500369 asix_set_sw_mii(dev);
370 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000371 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500372 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200373 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700374
Joe Perches60b86752010-02-17 10:30:23 +0000375 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));
David Brownell2e55cc72005-08-31 09:53:10 -0700377
Al Viro51bf2972007-12-22 17:42:36 +0000378 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700379}
380
Christian Riesch607740b2012-07-13 05:26:30 +0000381void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700382{
383 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000384 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700385
Joe Perches60b86752010-02-17 10:30:23 +0000386 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
387 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200388 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500389 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000390 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500391 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200392 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700393}
394
Christian Riesch607740b2012-07-13 05:26:30 +0000395void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700396{
397 struct usbnet *dev = netdev_priv(net);
398 u8 opt;
399
David Hollis48b1be62006-03-28 20:15:42 -0500400 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700401 wolinfo->supported = 0;
402 wolinfo->wolopts = 0;
403 return;
404 }
405 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
406 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000407 if (opt & AX_MONITOR_LINK)
408 wolinfo->wolopts |= WAKE_PHY;
409 if (opt & AX_MONITOR_MAGIC)
410 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700411}
412
Christian Riesch607740b2012-07-13 05:26:30 +0000413int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700414{
415 struct usbnet *dev = netdev_priv(net);
416 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700417
418 if (wolinfo->wolopts & WAKE_PHY)
419 opt |= AX_MONITOR_LINK;
420 if (wolinfo->wolopts & WAKE_MAGIC)
421 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700422
David Hollis48b1be62006-03-28 20:15:42 -0500423 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000424 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700425 return -EINVAL;
426
427 return 0;
428}
429
Christian Riesch607740b2012-07-13 05:26:30 +0000430int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700431{
Christian Rieschceb02c92012-07-19 00:23:06 +0000432 return AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700433}
434
Christian Riesch607740b2012-07-13 05:26:30 +0000435int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
436 u8 *data)
David Brownell2e55cc72005-08-31 09:53:10 -0700437{
438 struct usbnet *dev = netdev_priv(net);
Christian Rieschceb02c92012-07-19 00:23:06 +0000439 u16 *eeprom_buff;
440 int first_word, last_word;
David Brownell2e55cc72005-08-31 09:53:10 -0700441 int i;
442
Christian Rieschceb02c92012-07-19 00:23:06 +0000443 if (eeprom->len == 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700444 return -EINVAL;
445
446 eeprom->magic = AX_EEPROM_MAGIC;
447
Christian Rieschceb02c92012-07-19 00:23:06 +0000448 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
David Brownell2e55cc72005-08-31 09:53:10 -0700456 /* ax8817x returns 2 bytes from eeprom on read */
Christian Rieschceb02c92012-07-19 00:23:06 +0000457 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 }
David Brownell2e55cc72005-08-31 09:53:10 -0700463 }
Christian Rieschceb02c92012-07-19 00:23:06 +0000464
465 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
466 kfree(eeprom_buff);
David Brownell2e55cc72005-08-31 09:53:10 -0700467 return 0;
468}
469
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000470int 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
Christian Riesch607740b2012-07-13 05:26:30 +0000551void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
David Brownell2e55cc72005-08-31 09:53:10 -0700552{
553 /* Inherit standard device info */
554 usbnet_get_drvinfo(net, info);
Jiri Pirko7826d432013-01-06 00:44:26 +0000555 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
556 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
Christian Rieschceb02c92012-07-19 00:23:06 +0000557 info->eedump_len = AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700558}
559
Christian Riesch607740b2012-07-13 05:26:30 +0000560int asix_set_mac_address(struct net_device *net, void *p)
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000561{
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}