blob: fda74f33e3ece1d5ec2928b0e2ee0473f832e057 [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
Dean Jenkins960eb4e2017-08-07 09:50:15 +010078static void reset_asix_rx_fixup_info(struct asix_rx_fixup_info *rx)
79{
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.
83 */
84
85 if (rx->ax_skb) {
86 /* Discard any incomplete Ethernet frame in the netdev buffer */
87 kfree_skb(rx->ax_skb);
88 rx->ax_skb = NULL;
89 }
90
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.
93 */
94 rx->remaining = 0;
95 rx->split_head = false;
96 rx->header = 0;
97}
98
Lucas Stach8b5b6f52013-01-16 04:24:07 +000099int asix_rx_fixup_internal(struct usbnet *dev, struct sk_buff *skb,
100 struct asix_rx_fixup_info *rx)
David Hollis48b1be62006-03-28 20:15:42 -0500101{
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000102 int offset = 0;
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100103 u16 size;
David Hollis48b1be62006-03-28 20:15:42 -0500104
Dean Jenkins3f30b152015-10-02 14:29:07 +0100105 /* 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
112 * buffer.
113 */
114 if (rx->remaining && (rx->remaining + sizeof(u32) <= skb->len)) {
John Stultzcd9e2e52016-05-16 20:36:15 -0700115 offset = ((rx->remaining + 1) & 0xfffe);
Dean Jenkins3f30b152015-10-02 14:29:07 +0100116 rx->header = get_unaligned_le32(skb->data + offset);
117 offset = 0;
118
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",
122 rx->remaining);
Dean Jenkins960eb4e2017-08-07 09:50:15 +0100123 reset_asix_rx_fixup_info(rx);
Dean Jenkins3f30b152015-10-02 14:29:07 +0100124 }
125 }
126
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000127 while (offset + sizeof(u16) <= skb->len) {
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100128 u16 copy_length;
David Hollis48b1be62006-03-28 20:15:42 -0500129
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100130 if (!rx->remaining) {
Dean Jenkins3bfc69a2015-10-02 14:29:05 +0100131 if (skb->len - offset == sizeof(u16)) {
132 rx->header = get_unaligned_le16(
133 skb->data + offset);
134 rx->split_head = true;
135 offset += sizeof(u16);
136 break;
137 }
138
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);
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000144 } else {
145 rx->header = get_unaligned_le32(skb->data +
146 offset);
147 offset += sizeof(u32);
148 }
Marek Vasutbc466e62011-07-26 16:44:46 +0000149
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100150 /* take frame length from Data header 32-bit word */
151 size = (u16)(rx->header & 0x7ff);
152 if (size != ((~rx->header >> 16) & 0x7ff)) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000153 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length 0x%x, offset %d\n",
154 rx->header, offset);
Dean Jenkins960eb4e2017-08-07 09:50:15 +0100155 reset_asix_rx_fixup_info(rx);
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000156 return 0;
157 }
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100158 if (size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) {
stephen hemmingerb70183d2015-12-17 17:51:16 -0800159 netdev_dbg(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100160 size);
Dean Jenkins960eb4e2017-08-07 09:50:15 +0100161 reset_asix_rx_fixup_info(rx);
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100162 return 0;
163 }
164
Dean Jenkins6a570812015-10-02 14:29:08 +0100165 /* 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.
169 */
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100170 rx->ax_skb = netdev_alloc_skb_ip_align(dev->net, size);
Neil Jones3f78d1f2010-05-17 17:18:28 -0700171
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100172 rx->remaining = size;
David Hollis933a27d2006-07-29 10:12:50 -0400173 }
David Hollis933a27d2006-07-29 10:12:50 -0400174
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100175 if (rx->remaining > skb->len - offset) {
176 copy_length = skb->len - offset;
177 rx->remaining -= copy_length;
178 } else {
179 copy_length = rx->remaining;
180 rx->remaining = 0;
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000181 }
David Hollis933a27d2006-07-29 10:12:50 -0400182
Dean Jenkins6a570812015-10-02 14:29:08 +0100183 if (rx->ax_skb) {
yuan linyub952f4d2017-06-18 22:52:04 +0800184 skb_put_data(rx->ax_skb, skb->data + offset,
185 copy_length);
Dean Jenkins22889db2017-08-07 09:50:14 +0100186 if (!rx->remaining) {
Dean Jenkins6a570812015-10-02 14:29:08 +0100187 usbnet_skb_return(dev, rx->ax_skb);
Dean Jenkins22889db2017-08-07 09:50:14 +0100188 rx->ax_skb = NULL;
189 }
Dean Jenkins6a570812015-10-02 14:29:08 +0100190 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000191
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100192 offset += (copy_length + 1) & 0xfffe;
David Hollis933a27d2006-07-29 10:12:50 -0400193 }
194
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000195 if (skb->len != offset) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000196 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
197 skb->len, offset);
Dean Jenkins960eb4e2017-08-07 09:50:15 +0100198 reset_asix_rx_fixup_info(rx);
David Hollis933a27d2006-07-29 10:12:50 -0400199 return 0;
200 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000201
David Hollis933a27d2006-07-29 10:12:50 -0400202 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500203}
204
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000205int asix_rx_fixup_common(struct usbnet *dev, struct sk_buff *skb)
206{
207 struct asix_common_private *dp = dev->driver_priv;
208 struct asix_rx_fixup_info *rx = &dp->rx_fixup_info;
209
210 return asix_rx_fixup_internal(dev, skb, rx);
211}
212
Christian Riesch607740b2012-07-13 05:26:30 +0000213struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
214 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500215{
David Hollis933a27d2006-07-29 10:12:50 -0400216 int padlen;
217 int headroom = skb_headroom(skb);
218 int tailroom = skb_tailroom(skb);
219 u32 packet_len;
220 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500221
Ingo van Lil2a580942012-04-23 22:05:38 +0000222 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500223
Eric Dumazet95162d62012-07-05 04:31:01 +0000224 /* We need to push 4 bytes in front of frame (packet_len)
225 * and maybe add 4 bytes after the end (if padlen is 4)
226 *
227 * Avoid skb_copy_expand() expensive call, using following rules :
228 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
229 * is false (and if we have 4 bytes of headroom)
230 * - We are allowed to put 4 bytes at tail if skb_cloned()
231 * is false (and if we have 4 bytes of tailroom)
232 *
233 * TCP packets for example are cloned, but skb_header_release()
234 * was called in tcp stack, allowing us to use headroom for our needs.
235 */
236 if (!skb_header_cloned(skb) &&
237 !(padlen && skb_cloned(skb)) &&
238 headroom + tailroom >= 4 + padlen) {
239 /* following should not happen, but better be safe */
240 if (headroom < 4 ||
241 tailroom < padlen) {
David Hollis933a27d2006-07-29 10:12:50 -0400242 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700243 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400244 }
245 } else {
246 struct sk_buff *skb2;
Eric Dumazet95162d62012-07-05 04:31:01 +0000247
David Hollis933a27d2006-07-29 10:12:50 -0400248 skb2 = skb_copy_expand(skb, 4, padlen, flags);
249 dev_kfree_skb_any(skb);
250 skb = skb2;
251 if (!skb)
252 return NULL;
253 }
254
Eric Dumazet95162d62012-07-05 04:31:01 +0000255 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
David Hollis933a27d2006-07-29 10:12:50 -0400256 skb_push(skb, 4);
David Hollis57e4f042007-02-05 12:03:03 -0500257 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300258 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400259
Ingo van Lil2a580942012-04-23 22:05:38 +0000260 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500261 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700262 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400263 skb_put(skb, sizeof(padbytes));
264 }
Ben Hutchings1e9e39f2015-02-26 19:34:37 +0000265
Ben Hutchings7a1e8902015-03-25 21:41:33 +0100266 usbnet_set_skb_tx_stats(skb, 1, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400267 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500268}
269
Robert Fossd9fe64e2016-08-29 09:32:15 -0400270int asix_set_sw_mii(struct usbnet *dev, int in_pm)
David Brownell2e55cc72005-08-31 09:53:10 -0700271{
David Hollis933a27d2006-07-29 10:12:50 -0400272 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400273 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL, in_pm);
274
David Hollis933a27d2006-07-29 10:12:50 -0400275 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000276 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400277 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700278}
279
Robert Fossd9fe64e2016-08-29 09:32:15 -0400280int asix_set_hw_mii(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400281{
282 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400283 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400284 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000285 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400286 return ret;
287}
288
Christian Riesch16626b02012-07-13 05:26:31 +0000289int asix_read_phy_addr(struct usbnet *dev, int internal)
David Hollis933a27d2006-07-29 10:12:50 -0400290{
Christian Riesch16626b02012-07-13 05:26:31 +0000291 int offset = (internal ? 1 : 0);
Al Viro51bf2972007-12-22 17:42:36 +0000292 u8 buf[2];
Robert Fossd9fe64e2016-08-29 09:32:15 -0400293 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400294
Joe Perches60b86752010-02-17 10:30:23 +0000295 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400296
Al Viro51bf2972007-12-22 17:42:36 +0000297 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000298 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000299 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400300 }
Joe Perches60b86752010-02-17 10:30:23 +0000301 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
302 *((__le16 *)buf));
Christian Riesch16626b02012-07-13 05:26:31 +0000303 ret = buf[offset];
Al Viro51bf2972007-12-22 17:42:36 +0000304
305out:
David Hollis933a27d2006-07-29 10:12:50 -0400306 return ret;
307}
308
Christian Riesch16626b02012-07-13 05:26:31 +0000309int asix_get_phy_addr(struct usbnet *dev)
310{
311 /* return the address of the internal phy */
312 return asix_read_phy_addr(dev, 1);
313}
314
315
Robert Fossd9fe64e2016-08-29 09:32:15 -0400316int asix_sw_reset(struct usbnet *dev, u8 flags, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400317{
318 int ret;
319
Robert Fossd9fe64e2016-08-29 09:32:15 -0400320 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400321 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000322 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400323
324 return ret;
325}
326
Robert Fossd9fe64e2016-08-29 09:32:15 -0400327u16 asix_read_rx_ctl(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400328{
Al Viro51bf2972007-12-22 17:42:36 +0000329 __le16 v;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400330 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400331
Al Viro51bf2972007-12-22 17:42:36 +0000332 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000333 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000334 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400335 }
Al Viro51bf2972007-12-22 17:42:36 +0000336 ret = le16_to_cpu(v);
337out:
David Hollis933a27d2006-07-29 10:12:50 -0400338 return ret;
339}
340
Robert Fossd9fe64e2016-08-29 09:32:15 -0400341int asix_write_rx_ctl(struct usbnet *dev, u16 mode, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400342{
343 int ret;
344
Joe Perches60b86752010-02-17 10:30:23 +0000345 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400346 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400347 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000348 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
349 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400350
351 return ret;
352}
353
Robert Fossd9fe64e2016-08-29 09:32:15 -0400354u16 asix_read_medium_status(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400355{
Al Viro51bf2972007-12-22 17:42:36 +0000356 __le16 v;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400357 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS,
358 0, 0, 2, &v, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400359
Al Viro51bf2972007-12-22 17:42:36 +0000360 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000361 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
362 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000363 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400364 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000365
366 return le16_to_cpu(v);
367
David Hollis933a27d2006-07-29 10:12:50 -0400368}
369
Robert Fossd9fe64e2016-08-29 09:32:15 -0400370int asix_write_medium_mode(struct usbnet *dev, u16 mode, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400371{
372 int ret;
373
Joe Perches60b86752010-02-17 10:30:23 +0000374 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400375 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE,
376 mode, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400377 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000378 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
379 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400380
381 return ret;
382}
383
Robert Fossd9fe64e2016-08-29 09:32:15 -0400384int asix_write_gpio(struct usbnet *dev, u16 value, int sleep, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400385{
386 int ret;
387
Joe Perches60b86752010-02-17 10:30:23 +0000388 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400389 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400390 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000391 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
392 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400393
394 if (sleep)
395 msleep(sleep);
396
397 return ret;
398}
399
400/*
401 * AX88772 & AX88178 have a 16-bit RX_CTL value
402 */
Christian Riesch607740b2012-07-13 05:26:30 +0000403void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700404{
405 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500406 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400407 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700408
409 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400410 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000411 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000412 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400413 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000414 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700415 /* just broadcast and directed */
416 } else {
417 /* We use the 20 byte dev->data
418 * for our 8 byte filter buffer
419 * to avoid allocating memory that
420 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000421 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700422 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700423
424 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
425
426 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000427 netdev_for_each_mc_addr(ha, net) {
428 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700429 data->multi_filter[crc_bits >> 3] |=
430 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700431 }
432
David Hollis48b1be62006-03-28 20:15:42 -0500433 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700434 AX_MCAST_FILTER_SIZE, data->multi_filter);
435
David Hollis933a27d2006-07-29 10:12:50 -0400436 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700437 }
438
David Hollis48b1be62006-03-28 20:15:42 -0500439 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700440}
441
Christian Riesch607740b2012-07-13 05:26:30 +0000442int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700443{
444 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000445 __le16 res;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400446 u8 smsr;
447 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400448 int ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700449
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200450 mutex_lock(&dev->phy_mutex);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400451 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400452 ret = asix_set_sw_mii(dev, 0);
Guenter Roeck610df1d2016-10-13 16:43:16 -0700453 if (ret == -ENODEV || ret == -ETIMEDOUT)
Robert Foss8a46f662016-08-29 09:32:16 -0400454 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400455 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400456 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
457 0, 0, 1, &smsr, 0);
458 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
Guenter Roeck610df1d2016-10-13 16:43:16 -0700459 if (ret == -ENODEV || ret == -ETIMEDOUT) {
Robert Foss8a46f662016-08-29 09:32:16 -0400460 mutex_unlock(&dev->phy_mutex);
461 return ret;
462 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400463
David Hollis48b1be62006-03-28 20:15:42 -0500464 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400465 (__u16)loc, 2, &res, 0);
466 asix_set_hw_mii(dev, 0);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200467 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700468
Joe Perches60b86752010-02-17 10:30:23 +0000469 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 -0400470 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700471
Al Viro51bf2972007-12-22 17:42:36 +0000472 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700473}
474
Christian Riesch607740b2012-07-13 05:26:30 +0000475void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700476{
477 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000478 __le16 res = cpu_to_le16(val);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400479 u8 smsr;
480 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400481 int ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700482
Joe Perches60b86752010-02-17 10:30:23 +0000483 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 -0400484 phy_id, loc, val);
485
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200486 mutex_lock(&dev->phy_mutex);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400487 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400488 ret = asix_set_sw_mii(dev, 0);
489 if (ret == -ENODEV)
490 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400491 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400492 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
493 0, 0, 1, &smsr, 0);
494 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
495 if (ret == -ENODEV) {
496 mutex_unlock(&dev->phy_mutex);
497 return;
498 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400499
500 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id,
501 (__u16)loc, 2, &res, 0);
502 asix_set_hw_mii(dev, 0);
503 mutex_unlock(&dev->phy_mutex);
504}
505
506int asix_mdio_read_nopm(struct net_device *netdev, int phy_id, int loc)
507{
508 struct usbnet *dev = netdev_priv(netdev);
509 __le16 res;
510 u8 smsr;
511 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400512 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400513
514 mutex_lock(&dev->phy_mutex);
515 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400516 ret = asix_set_sw_mii(dev, 1);
Guenter Roeck610df1d2016-10-13 16:43:16 -0700517 if (ret == -ENODEV || ret == -ETIMEDOUT)
Robert Foss8a46f662016-08-29 09:32:16 -0400518 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400519 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400520 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
521 0, 0, 1, &smsr, 1);
522 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
Guenter Roeck610df1d2016-10-13 16:43:16 -0700523 if (ret == -ENODEV || ret == -ETIMEDOUT) {
Robert Foss8a46f662016-08-29 09:32:16 -0400524 mutex_unlock(&dev->phy_mutex);
525 return ret;
526 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400527
528 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
529 (__u16)loc, 2, &res, 1);
530 asix_set_hw_mii(dev, 1);
531 mutex_unlock(&dev->phy_mutex);
532
533 netdev_dbg(dev->net, "asix_mdio_read_nopm() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
534 phy_id, loc, le16_to_cpu(res));
535
536 return le16_to_cpu(res);
537}
538
539void
540asix_mdio_write_nopm(struct net_device *netdev, int phy_id, int loc, int val)
541{
542 struct usbnet *dev = netdev_priv(netdev);
543 __le16 res = cpu_to_le16(val);
544 u8 smsr;
545 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400546 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400547
548 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
549 phy_id, loc, val);
550
551 mutex_lock(&dev->phy_mutex);
552 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400553 ret = asix_set_sw_mii(dev, 1);
554 if (ret == -ENODEV)
555 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400556 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400557 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
558 0, 0, 1, &smsr, 1);
559 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
560 if (ret == -ENODEV) {
561 mutex_unlock(&dev->phy_mutex);
562 return;
563 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400564
565 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id,
566 (__u16)loc, 2, &res, 1);
567 asix_set_hw_mii(dev, 1);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200568 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700569}
570
Christian Riesch607740b2012-07-13 05:26:30 +0000571void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700572{
573 struct usbnet *dev = netdev_priv(net);
574 u8 opt;
575
Robert Fossd9fe64e2016-08-29 09:32:15 -0400576 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE,
577 0, 0, 1, &opt, 0) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700578 wolinfo->supported = 0;
579 wolinfo->wolopts = 0;
580 return;
581 }
582 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
583 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000584 if (opt & AX_MONITOR_LINK)
585 wolinfo->wolopts |= WAKE_PHY;
586 if (opt & AX_MONITOR_MAGIC)
587 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700588}
589
Christian Riesch607740b2012-07-13 05:26:30 +0000590int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700591{
592 struct usbnet *dev = netdev_priv(net);
593 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700594
595 if (wolinfo->wolopts & WAKE_PHY)
596 opt |= AX_MONITOR_LINK;
597 if (wolinfo->wolopts & WAKE_MAGIC)
598 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700599
David Hollis48b1be62006-03-28 20:15:42 -0500600 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400601 opt, 0, 0, NULL, 0) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700602 return -EINVAL;
603
604 return 0;
605}
606
Christian Riesch607740b2012-07-13 05:26:30 +0000607int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700608{
Christian Rieschceb02c92012-07-19 00:23:06 +0000609 return AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700610}
611
Christian Riesch607740b2012-07-13 05:26:30 +0000612int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
613 u8 *data)
David Brownell2e55cc72005-08-31 09:53:10 -0700614{
615 struct usbnet *dev = netdev_priv(net);
Christian Rieschceb02c92012-07-19 00:23:06 +0000616 u16 *eeprom_buff;
617 int first_word, last_word;
David Brownell2e55cc72005-08-31 09:53:10 -0700618 int i;
619
Christian Rieschceb02c92012-07-19 00:23:06 +0000620 if (eeprom->len == 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700621 return -EINVAL;
622
623 eeprom->magic = AX_EEPROM_MAGIC;
624
Christian Rieschceb02c92012-07-19 00:23:06 +0000625 first_word = eeprom->offset >> 1;
626 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
627
628 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
629 GFP_KERNEL);
630 if (!eeprom_buff)
631 return -ENOMEM;
632
David Brownell2e55cc72005-08-31 09:53:10 -0700633 /* ax8817x returns 2 bytes from eeprom on read */
Christian Rieschceb02c92012-07-19 00:23:06 +0000634 for (i = first_word; i <= last_word; i++) {
635 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400636 &eeprom_buff[i - first_word], 0) < 0) {
Christian Rieschceb02c92012-07-19 00:23:06 +0000637 kfree(eeprom_buff);
638 return -EIO;
639 }
David Brownell2e55cc72005-08-31 09:53:10 -0700640 }
Christian Rieschceb02c92012-07-19 00:23:06 +0000641
642 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
643 kfree(eeprom_buff);
David Brownell2e55cc72005-08-31 09:53:10 -0700644 return 0;
645}
646
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000647int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
648 u8 *data)
649{
650 struct usbnet *dev = netdev_priv(net);
651 u16 *eeprom_buff;
652 int first_word, last_word;
653 int i;
654 int ret;
655
656 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
657 eeprom->len, eeprom->offset, eeprom->magic);
658
659 if (eeprom->len == 0)
660 return -EINVAL;
661
662 if (eeprom->magic != AX_EEPROM_MAGIC)
663 return -EINVAL;
664
665 first_word = eeprom->offset >> 1;
666 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
667
668 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
669 GFP_KERNEL);
670 if (!eeprom_buff)
671 return -ENOMEM;
672
673 /* align data to 16 bit boundaries, read the missing data from
674 the EEPROM */
675 if (eeprom->offset & 1) {
676 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400677 &eeprom_buff[0], 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000678 if (ret < 0) {
679 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
680 goto free;
681 }
682 }
683
684 if ((eeprom->offset + eeprom->len) & 1) {
685 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400686 &eeprom_buff[last_word - first_word], 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000687 if (ret < 0) {
688 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
689 goto free;
690 }
691 }
692
693 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
694
695 /* write data to EEPROM */
Robert Fossd9fe64e2016-08-29 09:32:15 -0400696 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000697 if (ret < 0) {
698 netdev_err(net, "Failed to enable EEPROM write\n");
699 goto free;
700 }
701 msleep(20);
702
703 for (i = first_word; i <= last_word; i++) {
704 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
705 i, eeprom_buff[i - first_word]);
706 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400707 eeprom_buff[i - first_word], 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000708 if (ret < 0) {
709 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
710 i);
711 goto free;
712 }
713 msleep(20);
714 }
715
Robert Fossd9fe64e2016-08-29 09:32:15 -0400716 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000717 if (ret < 0) {
718 netdev_err(net, "Failed to disable EEPROM write\n");
719 goto free;
720 }
721
722 ret = 0;
723free:
724 kfree(eeprom_buff);
725 return ret;
726}
727
Christian Riesch607740b2012-07-13 05:26:30 +0000728void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
David Brownell2e55cc72005-08-31 09:53:10 -0700729{
730 /* Inherit standard device info */
731 usbnet_get_drvinfo(net, info);
Jiri Pirko7826d432013-01-06 00:44:26 +0000732 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
733 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
David Brownell2e55cc72005-08-31 09:53:10 -0700734}
735
Christian Riesch607740b2012-07-13 05:26:30 +0000736int asix_set_mac_address(struct net_device *net, void *p)
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000737{
738 struct usbnet *dev = netdev_priv(net);
739 struct asix_data *data = (struct asix_data *)&dev->data;
740 struct sockaddr *addr = p;
741
742 if (netif_running(net))
743 return -EBUSY;
744 if (!is_valid_ether_addr(addr->sa_data))
745 return -EADDRNOTAVAIL;
746
747 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
748
749 /* We use the 20 byte dev->data
750 * for our 6 byte mac buffer
751 * to avoid allocating memory that
752 * is tricky to free later */
753 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
754 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
755 data->mac_addr);
756
757 return 0;
758}