blob: 7847436c441e3c16b91fb0d72c3f07061d4e772d [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,
Robert Fossd9fe64e2016-08-29 09:32:15 -040025 u16 size, void *data, int in_pm)
David Brownell2e55cc72005-08-31 09:53:10 -070026{
Ming Lei0bc69ef2012-10-24 19:46:55 +000027 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -040028 int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16);
Al Viro51bf2972007-12-22 17:42:36 +000029
Robert Fossd9fe64e2016-08-29 09:32:15 -040030 BUG_ON(!dev);
31
32 if (!in_pm)
33 fn = usbnet_read_cmd;
34 else
35 fn = usbnet_read_cmd_nopm;
36
37 ret = fn(dev, cmd, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
38 value, index, data, size);
39
40 if (unlikely(ret < 0))
41 netdev_warn(dev->net, "Failed to read reg index 0x%04x: %d\n",
42 index, ret);
43
Ming Lei0bc69ef2012-10-24 19:46:55 +000044 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -070045}
46
Christian Riesch607740b2012-07-13 05:26:30 +000047int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
Robert Fossd9fe64e2016-08-29 09:32:15 -040048 u16 size, void *data, int in_pm)
David Brownell2e55cc72005-08-31 09:53:10 -070049{
Robert Fossd9fe64e2016-08-29 09:32:15 -040050 int ret;
51 int (*fn)(struct usbnet *, u8, u8, u16, u16, const void *, u16);
52
53 BUG_ON(!dev);
54
55 if (!in_pm)
56 fn = usbnet_write_cmd;
57 else
58 fn = usbnet_write_cmd_nopm;
59
60 ret = fn(dev, cmd, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
61 value, index, data, size);
62
63 if (unlikely(ret < 0))
64 netdev_warn(dev->net, "Failed to write reg index 0x%04x: %d\n",
65 index, ret);
66
67 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -070068}
69
Christian Riesch607740b2012-07-13 05:26:30 +000070void asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
71 u16 size, void *data)
David Hollis48b1be62006-03-28 20:15:42 -050072{
Ming Lei0bc69ef2012-10-24 19:46:55 +000073 usbnet_write_cmd_async(dev, cmd,
74 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
75 value, index, data, size);
David Hollis48b1be62006-03-28 20:15:42 -050076}
77
Lucas Stach8b5b6f52013-01-16 04:24:07 +000078int asix_rx_fixup_internal(struct usbnet *dev, struct sk_buff *skb,
79 struct asix_rx_fixup_info *rx)
David Hollis48b1be62006-03-28 20:15:42 -050080{
Eric Dumazeta9e0aca2012-03-14 20:18:32 +000081 int offset = 0;
Dean Jenkins7b0378f2015-10-02 14:29:04 +010082 u16 size;
David Hollis48b1be62006-03-28 20:15:42 -050083
Dean Jenkins3f30b152015-10-02 14:29:07 +010084 /* When an Ethernet frame spans multiple URB socket buffers,
85 * do a sanity test for the Data header synchronisation.
86 * Attempt to detect the situation of the previous socket buffer having
87 * been truncated or a socket buffer was missing. These situations
88 * cause a discontinuity in the data stream and therefore need to avoid
89 * appending bad data to the end of the current netdev socket buffer.
90 * Also avoid unnecessarily discarding a good current netdev socket
91 * buffer.
92 */
93 if (rx->remaining && (rx->remaining + sizeof(u32) <= skb->len)) {
John Stultzcd9e2e52016-05-16 20:36:15 -070094 offset = ((rx->remaining + 1) & 0xfffe);
Dean Jenkins3f30b152015-10-02 14:29:07 +010095 rx->header = get_unaligned_le32(skb->data + offset);
96 offset = 0;
97
98 size = (u16)(rx->header & 0x7ff);
99 if (size != ((~rx->header >> 16) & 0x7ff)) {
100 netdev_err(dev->net, "asix_rx_fixup() Data Header synchronisation was lost, remaining %d\n",
101 rx->remaining);
Dean Jenkins6a570812015-10-02 14:29:08 +0100102 if (rx->ax_skb) {
103 kfree_skb(rx->ax_skb);
104 rx->ax_skb = NULL;
105 /* Discard the incomplete netdev Ethernet frame
106 * and assume the Data header is at the start of
107 * the current URB socket buffer.
108 */
109 }
Dean Jenkins3f30b152015-10-02 14:29:07 +0100110 rx->remaining = 0;
111 }
112 }
113
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000114 while (offset + sizeof(u16) <= skb->len) {
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100115 u16 copy_length;
David Hollis48b1be62006-03-28 20:15:42 -0500116
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100117 if (!rx->remaining) {
Dean Jenkins3bfc69a2015-10-02 14:29:05 +0100118 if (skb->len - offset == sizeof(u16)) {
119 rx->header = get_unaligned_le16(
120 skb->data + offset);
121 rx->split_head = true;
122 offset += sizeof(u16);
123 break;
124 }
125
126 if (rx->split_head == true) {
127 rx->header |= (get_unaligned_le16(
128 skb->data + offset) << 16);
129 rx->split_head = false;
130 offset += sizeof(u16);
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000131 } else {
132 rx->header = get_unaligned_le32(skb->data +
133 offset);
134 offset += sizeof(u32);
135 }
Marek Vasutbc466e62011-07-26 16:44:46 +0000136
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100137 /* take frame length from Data header 32-bit word */
138 size = (u16)(rx->header & 0x7ff);
139 if (size != ((~rx->header >> 16) & 0x7ff)) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000140 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length 0x%x, offset %d\n",
141 rx->header, offset);
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000142 return 0;
143 }
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100144 if (size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) {
stephen hemmingerb70183d2015-12-17 17:51:16 -0800145 netdev_dbg(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100146 size);
147 return 0;
148 }
149
Dean Jenkins6a570812015-10-02 14:29:08 +0100150 /* Sometimes may fail to get a netdev socket buffer but
151 * continue to process the URB socket buffer so that
152 * synchronisation of the Ethernet frame Data header
153 * word is maintained.
154 */
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100155 rx->ax_skb = netdev_alloc_skb_ip_align(dev->net, size);
Neil Jones3f78d1f2010-05-17 17:18:28 -0700156
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100157 rx->remaining = size;
David Hollis933a27d2006-07-29 10:12:50 -0400158 }
David Hollis933a27d2006-07-29 10:12:50 -0400159
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100160 if (rx->remaining > skb->len - offset) {
161 copy_length = skb->len - offset;
162 rx->remaining -= copy_length;
163 } else {
164 copy_length = rx->remaining;
165 rx->remaining = 0;
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000166 }
David Hollis933a27d2006-07-29 10:12:50 -0400167
Dean Jenkins6a570812015-10-02 14:29:08 +0100168 if (rx->ax_skb) {
yuan linyub952f4d2017-06-18 22:52:04 +0800169 skb_put_data(rx->ax_skb, skb->data + offset,
170 copy_length);
Dean Jenkins6a570812015-10-02 14:29:08 +0100171 if (!rx->remaining)
172 usbnet_skb_return(dev, rx->ax_skb);
173 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000174
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100175 offset += (copy_length + 1) & 0xfffe;
David Hollis933a27d2006-07-29 10:12:50 -0400176 }
177
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000178 if (skb->len != offset) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000179 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
180 skb->len, offset);
David Hollis933a27d2006-07-29 10:12:50 -0400181 return 0;
182 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000183
David Hollis933a27d2006-07-29 10:12:50 -0400184 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500185}
186
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000187int asix_rx_fixup_common(struct usbnet *dev, struct sk_buff *skb)
188{
189 struct asix_common_private *dp = dev->driver_priv;
190 struct asix_rx_fixup_info *rx = &dp->rx_fixup_info;
191
192 return asix_rx_fixup_internal(dev, skb, rx);
193}
194
Christian Riesch607740b2012-07-13 05:26:30 +0000195struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
196 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500197{
David Hollis933a27d2006-07-29 10:12:50 -0400198 int padlen;
199 int headroom = skb_headroom(skb);
200 int tailroom = skb_tailroom(skb);
201 u32 packet_len;
202 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500203
Ingo van Lil2a580942012-04-23 22:05:38 +0000204 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500205
Eric Dumazet95162d62012-07-05 04:31:01 +0000206 /* We need to push 4 bytes in front of frame (packet_len)
207 * and maybe add 4 bytes after the end (if padlen is 4)
208 *
209 * Avoid skb_copy_expand() expensive call, using following rules :
210 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
211 * is false (and if we have 4 bytes of headroom)
212 * - We are allowed to put 4 bytes at tail if skb_cloned()
213 * is false (and if we have 4 bytes of tailroom)
214 *
215 * TCP packets for example are cloned, but skb_header_release()
216 * was called in tcp stack, allowing us to use headroom for our needs.
217 */
218 if (!skb_header_cloned(skb) &&
219 !(padlen && skb_cloned(skb)) &&
220 headroom + tailroom >= 4 + padlen) {
221 /* following should not happen, but better be safe */
222 if (headroom < 4 ||
223 tailroom < padlen) {
David Hollis933a27d2006-07-29 10:12:50 -0400224 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700225 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400226 }
227 } else {
228 struct sk_buff *skb2;
Eric Dumazet95162d62012-07-05 04:31:01 +0000229
David Hollis933a27d2006-07-29 10:12:50 -0400230 skb2 = skb_copy_expand(skb, 4, padlen, flags);
231 dev_kfree_skb_any(skb);
232 skb = skb2;
233 if (!skb)
234 return NULL;
235 }
236
Eric Dumazet95162d62012-07-05 04:31:01 +0000237 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
David Hollis933a27d2006-07-29 10:12:50 -0400238 skb_push(skb, 4);
David Hollis57e4f042007-02-05 12:03:03 -0500239 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300240 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400241
Ingo van Lil2a580942012-04-23 22:05:38 +0000242 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500243 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700244 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400245 skb_put(skb, sizeof(padbytes));
246 }
Ben Hutchings1e9e39f2015-02-26 19:34:37 +0000247
Ben Hutchings7a1e8902015-03-25 21:41:33 +0100248 usbnet_set_skb_tx_stats(skb, 1, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400249 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500250}
251
Robert Fossd9fe64e2016-08-29 09:32:15 -0400252int asix_set_sw_mii(struct usbnet *dev, int in_pm)
David Brownell2e55cc72005-08-31 09:53:10 -0700253{
David Hollis933a27d2006-07-29 10:12:50 -0400254 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400255 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL, in_pm);
256
David Hollis933a27d2006-07-29 10:12:50 -0400257 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000258 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400259 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700260}
261
Robert Fossd9fe64e2016-08-29 09:32:15 -0400262int asix_set_hw_mii(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400263{
264 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400265 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400266 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000267 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400268 return ret;
269}
270
Christian Riesch16626b02012-07-13 05:26:31 +0000271int asix_read_phy_addr(struct usbnet *dev, int internal)
David Hollis933a27d2006-07-29 10:12:50 -0400272{
Christian Riesch16626b02012-07-13 05:26:31 +0000273 int offset = (internal ? 1 : 0);
Al Viro51bf2972007-12-22 17:42:36 +0000274 u8 buf[2];
Robert Fossd9fe64e2016-08-29 09:32:15 -0400275 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400276
Joe Perches60b86752010-02-17 10:30:23 +0000277 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400278
Al Viro51bf2972007-12-22 17:42:36 +0000279 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000280 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000281 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400282 }
Joe Perches60b86752010-02-17 10:30:23 +0000283 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
284 *((__le16 *)buf));
Christian Riesch16626b02012-07-13 05:26:31 +0000285 ret = buf[offset];
Al Viro51bf2972007-12-22 17:42:36 +0000286
287out:
David Hollis933a27d2006-07-29 10:12:50 -0400288 return ret;
289}
290
Christian Riesch16626b02012-07-13 05:26:31 +0000291int asix_get_phy_addr(struct usbnet *dev)
292{
293 /* return the address of the internal phy */
294 return asix_read_phy_addr(dev, 1);
295}
296
297
Robert Fossd9fe64e2016-08-29 09:32:15 -0400298int asix_sw_reset(struct usbnet *dev, u8 flags, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400299{
300 int ret;
301
Robert Fossd9fe64e2016-08-29 09:32:15 -0400302 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400303 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000304 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400305
306 return ret;
307}
308
Robert Fossd9fe64e2016-08-29 09:32:15 -0400309u16 asix_read_rx_ctl(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400310{
Al Viro51bf2972007-12-22 17:42:36 +0000311 __le16 v;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400312 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400313
Al Viro51bf2972007-12-22 17:42:36 +0000314 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000315 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000316 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400317 }
Al Viro51bf2972007-12-22 17:42:36 +0000318 ret = le16_to_cpu(v);
319out:
David Hollis933a27d2006-07-29 10:12:50 -0400320 return ret;
321}
322
Robert Fossd9fe64e2016-08-29 09:32:15 -0400323int asix_write_rx_ctl(struct usbnet *dev, u16 mode, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400324{
325 int ret;
326
Joe Perches60b86752010-02-17 10:30:23 +0000327 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400328 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400329 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000330 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
331 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400332
333 return ret;
334}
335
Robert Fossd9fe64e2016-08-29 09:32:15 -0400336u16 asix_read_medium_status(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400337{
Al Viro51bf2972007-12-22 17:42:36 +0000338 __le16 v;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400339 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS,
340 0, 0, 2, &v, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400341
Al Viro51bf2972007-12-22 17:42:36 +0000342 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000343 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
344 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000345 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400346 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000347
348 return le16_to_cpu(v);
349
David Hollis933a27d2006-07-29 10:12:50 -0400350}
351
Robert Fossd9fe64e2016-08-29 09:32:15 -0400352int asix_write_medium_mode(struct usbnet *dev, u16 mode, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400353{
354 int ret;
355
Joe Perches60b86752010-02-17 10:30:23 +0000356 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400357 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE,
358 mode, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400359 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000360 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
361 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400362
363 return ret;
364}
365
Robert Fossd9fe64e2016-08-29 09:32:15 -0400366int asix_write_gpio(struct usbnet *dev, u16 value, int sleep, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400367{
368 int ret;
369
Joe Perches60b86752010-02-17 10:30:23 +0000370 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400371 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400372 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000373 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
374 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400375
376 if (sleep)
377 msleep(sleep);
378
379 return ret;
380}
381
382/*
383 * AX88772 & AX88178 have a 16-bit RX_CTL value
384 */
Christian Riesch607740b2012-07-13 05:26:30 +0000385void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700386{
387 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500388 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400389 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700390
391 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400392 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000393 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000394 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400395 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000396 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700397 /* just broadcast and directed */
398 } else {
399 /* We use the 20 byte dev->data
400 * for our 8 byte filter buffer
401 * to avoid allocating memory that
402 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000403 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700404 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700405
406 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
407
408 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000409 netdev_for_each_mc_addr(ha, net) {
410 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700411 data->multi_filter[crc_bits >> 3] |=
412 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700413 }
414
David Hollis48b1be62006-03-28 20:15:42 -0500415 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700416 AX_MCAST_FILTER_SIZE, data->multi_filter);
417
David Hollis933a27d2006-07-29 10:12:50 -0400418 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700419 }
420
David Hollis48b1be62006-03-28 20:15:42 -0500421 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700422}
423
Christian Riesch607740b2012-07-13 05:26:30 +0000424int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700425{
426 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000427 __le16 res;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400428 u8 smsr;
429 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400430 int ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700431
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200432 mutex_lock(&dev->phy_mutex);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400433 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400434 ret = asix_set_sw_mii(dev, 0);
Guenter Roeck610df1d2016-10-13 16:43:16 -0700435 if (ret == -ENODEV || ret == -ETIMEDOUT)
Robert Foss8a46f662016-08-29 09:32:16 -0400436 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400437 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400438 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
439 0, 0, 1, &smsr, 0);
440 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
Guenter Roeck610df1d2016-10-13 16:43:16 -0700441 if (ret == -ENODEV || ret == -ETIMEDOUT) {
Robert Foss8a46f662016-08-29 09:32:16 -0400442 mutex_unlock(&dev->phy_mutex);
443 return ret;
444 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400445
David Hollis48b1be62006-03-28 20:15:42 -0500446 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400447 (__u16)loc, 2, &res, 0);
448 asix_set_hw_mii(dev, 0);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200449 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700450
Joe Perches60b86752010-02-17 10:30:23 +0000451 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
Robert Fossd9fe64e2016-08-29 09:32:15 -0400452 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700453
Al Viro51bf2972007-12-22 17:42:36 +0000454 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700455}
456
Christian Riesch607740b2012-07-13 05:26:30 +0000457void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700458{
459 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000460 __le16 res = cpu_to_le16(val);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400461 u8 smsr;
462 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400463 int ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700464
Joe Perches60b86752010-02-17 10:30:23 +0000465 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
Robert Fossd9fe64e2016-08-29 09:32:15 -0400466 phy_id, loc, val);
467
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200468 mutex_lock(&dev->phy_mutex);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400469 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400470 ret = asix_set_sw_mii(dev, 0);
471 if (ret == -ENODEV)
472 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400473 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400474 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
475 0, 0, 1, &smsr, 0);
476 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
477 if (ret == -ENODEV) {
478 mutex_unlock(&dev->phy_mutex);
479 return;
480 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400481
482 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id,
483 (__u16)loc, 2, &res, 0);
484 asix_set_hw_mii(dev, 0);
485 mutex_unlock(&dev->phy_mutex);
486}
487
488int asix_mdio_read_nopm(struct net_device *netdev, int phy_id, int loc)
489{
490 struct usbnet *dev = netdev_priv(netdev);
491 __le16 res;
492 u8 smsr;
493 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400494 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400495
496 mutex_lock(&dev->phy_mutex);
497 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400498 ret = asix_set_sw_mii(dev, 1);
Guenter Roeck610df1d2016-10-13 16:43:16 -0700499 if (ret == -ENODEV || ret == -ETIMEDOUT)
Robert Foss8a46f662016-08-29 09:32:16 -0400500 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400501 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400502 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
503 0, 0, 1, &smsr, 1);
504 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
Guenter Roeck610df1d2016-10-13 16:43:16 -0700505 if (ret == -ENODEV || ret == -ETIMEDOUT) {
Robert Foss8a46f662016-08-29 09:32:16 -0400506 mutex_unlock(&dev->phy_mutex);
507 return ret;
508 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400509
510 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
511 (__u16)loc, 2, &res, 1);
512 asix_set_hw_mii(dev, 1);
513 mutex_unlock(&dev->phy_mutex);
514
515 netdev_dbg(dev->net, "asix_mdio_read_nopm() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
516 phy_id, loc, le16_to_cpu(res));
517
518 return le16_to_cpu(res);
519}
520
521void
522asix_mdio_write_nopm(struct net_device *netdev, int phy_id, int loc, int val)
523{
524 struct usbnet *dev = netdev_priv(netdev);
525 __le16 res = cpu_to_le16(val);
526 u8 smsr;
527 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400528 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400529
530 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
531 phy_id, loc, val);
532
533 mutex_lock(&dev->phy_mutex);
534 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400535 ret = asix_set_sw_mii(dev, 1);
536 if (ret == -ENODEV)
537 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400538 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400539 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
540 0, 0, 1, &smsr, 1);
541 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
542 if (ret == -ENODEV) {
543 mutex_unlock(&dev->phy_mutex);
544 return;
545 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400546
547 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id,
548 (__u16)loc, 2, &res, 1);
549 asix_set_hw_mii(dev, 1);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200550 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700551}
552
Christian Riesch607740b2012-07-13 05:26:30 +0000553void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700554{
555 struct usbnet *dev = netdev_priv(net);
556 u8 opt;
557
Robert Fossd9fe64e2016-08-29 09:32:15 -0400558 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE,
559 0, 0, 1, &opt, 0) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700560 wolinfo->supported = 0;
561 wolinfo->wolopts = 0;
562 return;
563 }
564 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
565 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000566 if (opt & AX_MONITOR_LINK)
567 wolinfo->wolopts |= WAKE_PHY;
568 if (opt & AX_MONITOR_MAGIC)
569 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700570}
571
Christian Riesch607740b2012-07-13 05:26:30 +0000572int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700573{
574 struct usbnet *dev = netdev_priv(net);
575 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700576
577 if (wolinfo->wolopts & WAKE_PHY)
578 opt |= AX_MONITOR_LINK;
579 if (wolinfo->wolopts & WAKE_MAGIC)
580 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700581
David Hollis48b1be62006-03-28 20:15:42 -0500582 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400583 opt, 0, 0, NULL, 0) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700584 return -EINVAL;
585
586 return 0;
587}
588
Christian Riesch607740b2012-07-13 05:26:30 +0000589int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700590{
Christian Rieschceb02c92012-07-19 00:23:06 +0000591 return AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700592}
593
Christian Riesch607740b2012-07-13 05:26:30 +0000594int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
595 u8 *data)
David Brownell2e55cc72005-08-31 09:53:10 -0700596{
597 struct usbnet *dev = netdev_priv(net);
Christian Rieschceb02c92012-07-19 00:23:06 +0000598 u16 *eeprom_buff;
599 int first_word, last_word;
David Brownell2e55cc72005-08-31 09:53:10 -0700600 int i;
601
Christian Rieschceb02c92012-07-19 00:23:06 +0000602 if (eeprom->len == 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700603 return -EINVAL;
604
605 eeprom->magic = AX_EEPROM_MAGIC;
606
Christian Rieschceb02c92012-07-19 00:23:06 +0000607 first_word = eeprom->offset >> 1;
608 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
609
610 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
611 GFP_KERNEL);
612 if (!eeprom_buff)
613 return -ENOMEM;
614
David Brownell2e55cc72005-08-31 09:53:10 -0700615 /* ax8817x returns 2 bytes from eeprom on read */
Christian Rieschceb02c92012-07-19 00:23:06 +0000616 for (i = first_word; i <= last_word; i++) {
617 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400618 &eeprom_buff[i - first_word], 0) < 0) {
Christian Rieschceb02c92012-07-19 00:23:06 +0000619 kfree(eeprom_buff);
620 return -EIO;
621 }
David Brownell2e55cc72005-08-31 09:53:10 -0700622 }
Christian Rieschceb02c92012-07-19 00:23:06 +0000623
624 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
625 kfree(eeprom_buff);
David Brownell2e55cc72005-08-31 09:53:10 -0700626 return 0;
627}
628
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000629int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
630 u8 *data)
631{
632 struct usbnet *dev = netdev_priv(net);
633 u16 *eeprom_buff;
634 int first_word, last_word;
635 int i;
636 int ret;
637
638 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
639 eeprom->len, eeprom->offset, eeprom->magic);
640
641 if (eeprom->len == 0)
642 return -EINVAL;
643
644 if (eeprom->magic != AX_EEPROM_MAGIC)
645 return -EINVAL;
646
647 first_word = eeprom->offset >> 1;
648 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
649
650 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
651 GFP_KERNEL);
652 if (!eeprom_buff)
653 return -ENOMEM;
654
655 /* align data to 16 bit boundaries, read the missing data from
656 the EEPROM */
657 if (eeprom->offset & 1) {
658 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400659 &eeprom_buff[0], 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000660 if (ret < 0) {
661 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
662 goto free;
663 }
664 }
665
666 if ((eeprom->offset + eeprom->len) & 1) {
667 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400668 &eeprom_buff[last_word - first_word], 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000669 if (ret < 0) {
670 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
671 goto free;
672 }
673 }
674
675 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
676
677 /* write data to EEPROM */
Robert Fossd9fe64e2016-08-29 09:32:15 -0400678 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000679 if (ret < 0) {
680 netdev_err(net, "Failed to enable EEPROM write\n");
681 goto free;
682 }
683 msleep(20);
684
685 for (i = first_word; i <= last_word; i++) {
686 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
687 i, eeprom_buff[i - first_word]);
688 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400689 eeprom_buff[i - first_word], 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000690 if (ret < 0) {
691 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
692 i);
693 goto free;
694 }
695 msleep(20);
696 }
697
Robert Fossd9fe64e2016-08-29 09:32:15 -0400698 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000699 if (ret < 0) {
700 netdev_err(net, "Failed to disable EEPROM write\n");
701 goto free;
702 }
703
704 ret = 0;
705free:
706 kfree(eeprom_buff);
707 return ret;
708}
709
Christian Riesch607740b2012-07-13 05:26:30 +0000710void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
David Brownell2e55cc72005-08-31 09:53:10 -0700711{
712 /* Inherit standard device info */
713 usbnet_get_drvinfo(net, info);
Jiri Pirko7826d432013-01-06 00:44:26 +0000714 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
715 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
David Brownell2e55cc72005-08-31 09:53:10 -0700716}
717
Christian Riesch607740b2012-07-13 05:26:30 +0000718int asix_set_mac_address(struct net_device *net, void *p)
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000719{
720 struct usbnet *dev = netdev_priv(net);
721 struct asix_data *data = (struct asix_data *)&dev->data;
722 struct sockaddr *addr = p;
723
724 if (netif_running(net))
725 return -EBUSY;
726 if (!is_valid_ether_addr(addr->sa_data))
727 return -EADDRNOTAVAIL;
728
729 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
730
731 /* We use the 20 byte dev->data
732 * for our 6 byte mac buffer
733 * to avoid allocating memory that
734 * is tricky to free later */
735 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
736 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
737 data->mac_addr);
738
739 return 0;
740}