blob: 6983b6bd8cf9499666c3d7ea6bab2c93fc6c6b4b [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 Jenkins22889db2017-08-07 09:50:14 +0100171 if (!rx->remaining) {
Dean Jenkins6a570812015-10-02 14:29:08 +0100172 usbnet_skb_return(dev, rx->ax_skb);
Dean Jenkins22889db2017-08-07 09:50:14 +0100173 rx->ax_skb = NULL;
174 }
Dean Jenkins6a570812015-10-02 14:29:08 +0100175 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000176
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100177 offset += (copy_length + 1) & 0xfffe;
David Hollis933a27d2006-07-29 10:12:50 -0400178 }
179
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000180 if (skb->len != offset) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000181 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
182 skb->len, offset);
David Hollis933a27d2006-07-29 10:12:50 -0400183 return 0;
184 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000185
David Hollis933a27d2006-07-29 10:12:50 -0400186 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500187}
188
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000189int asix_rx_fixup_common(struct usbnet *dev, struct sk_buff *skb)
190{
191 struct asix_common_private *dp = dev->driver_priv;
192 struct asix_rx_fixup_info *rx = &dp->rx_fixup_info;
193
194 return asix_rx_fixup_internal(dev, skb, rx);
195}
196
Christian Riesch607740b2012-07-13 05:26:30 +0000197struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
198 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500199{
David Hollis933a27d2006-07-29 10:12:50 -0400200 int padlen;
201 int headroom = skb_headroom(skb);
202 int tailroom = skb_tailroom(skb);
203 u32 packet_len;
204 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500205
Ingo van Lil2a580942012-04-23 22:05:38 +0000206 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500207
Eric Dumazet95162d62012-07-05 04:31:01 +0000208 /* We need to push 4 bytes in front of frame (packet_len)
209 * and maybe add 4 bytes after the end (if padlen is 4)
210 *
211 * Avoid skb_copy_expand() expensive call, using following rules :
212 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
213 * is false (and if we have 4 bytes of headroom)
214 * - We are allowed to put 4 bytes at tail if skb_cloned()
215 * is false (and if we have 4 bytes of tailroom)
216 *
217 * TCP packets for example are cloned, but skb_header_release()
218 * was called in tcp stack, allowing us to use headroom for our needs.
219 */
220 if (!skb_header_cloned(skb) &&
221 !(padlen && skb_cloned(skb)) &&
222 headroom + tailroom >= 4 + padlen) {
223 /* following should not happen, but better be safe */
224 if (headroom < 4 ||
225 tailroom < padlen) {
David Hollis933a27d2006-07-29 10:12:50 -0400226 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700227 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400228 }
229 } else {
230 struct sk_buff *skb2;
Eric Dumazet95162d62012-07-05 04:31:01 +0000231
David Hollis933a27d2006-07-29 10:12:50 -0400232 skb2 = skb_copy_expand(skb, 4, padlen, flags);
233 dev_kfree_skb_any(skb);
234 skb = skb2;
235 if (!skb)
236 return NULL;
237 }
238
Eric Dumazet95162d62012-07-05 04:31:01 +0000239 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
David Hollis933a27d2006-07-29 10:12:50 -0400240 skb_push(skb, 4);
David Hollis57e4f042007-02-05 12:03:03 -0500241 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300242 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400243
Ingo van Lil2a580942012-04-23 22:05:38 +0000244 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500245 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700246 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400247 skb_put(skb, sizeof(padbytes));
248 }
Ben Hutchings1e9e39f2015-02-26 19:34:37 +0000249
Ben Hutchings7a1e8902015-03-25 21:41:33 +0100250 usbnet_set_skb_tx_stats(skb, 1, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400251 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500252}
253
Robert Fossd9fe64e2016-08-29 09:32:15 -0400254int asix_set_sw_mii(struct usbnet *dev, int in_pm)
David Brownell2e55cc72005-08-31 09:53:10 -0700255{
David Hollis933a27d2006-07-29 10:12:50 -0400256 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400257 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL, in_pm);
258
David Hollis933a27d2006-07-29 10:12:50 -0400259 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000260 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400261 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700262}
263
Robert Fossd9fe64e2016-08-29 09:32:15 -0400264int asix_set_hw_mii(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400265{
266 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400267 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400268 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000269 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400270 return ret;
271}
272
Christian Riesch16626b02012-07-13 05:26:31 +0000273int asix_read_phy_addr(struct usbnet *dev, int internal)
David Hollis933a27d2006-07-29 10:12:50 -0400274{
Christian Riesch16626b02012-07-13 05:26:31 +0000275 int offset = (internal ? 1 : 0);
Al Viro51bf2972007-12-22 17:42:36 +0000276 u8 buf[2];
Robert Fossd9fe64e2016-08-29 09:32:15 -0400277 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400278
Joe Perches60b86752010-02-17 10:30:23 +0000279 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400280
Al Viro51bf2972007-12-22 17:42:36 +0000281 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000282 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000283 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400284 }
Joe Perches60b86752010-02-17 10:30:23 +0000285 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
286 *((__le16 *)buf));
Christian Riesch16626b02012-07-13 05:26:31 +0000287 ret = buf[offset];
Al Viro51bf2972007-12-22 17:42:36 +0000288
289out:
David Hollis933a27d2006-07-29 10:12:50 -0400290 return ret;
291}
292
Christian Riesch16626b02012-07-13 05:26:31 +0000293int asix_get_phy_addr(struct usbnet *dev)
294{
295 /* return the address of the internal phy */
296 return asix_read_phy_addr(dev, 1);
297}
298
299
Robert Fossd9fe64e2016-08-29 09:32:15 -0400300int asix_sw_reset(struct usbnet *dev, u8 flags, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400301{
302 int ret;
303
Robert Fossd9fe64e2016-08-29 09:32:15 -0400304 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400305 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000306 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400307
308 return ret;
309}
310
Robert Fossd9fe64e2016-08-29 09:32:15 -0400311u16 asix_read_rx_ctl(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400312{
Al Viro51bf2972007-12-22 17:42:36 +0000313 __le16 v;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400314 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400315
Al Viro51bf2972007-12-22 17:42:36 +0000316 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000317 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000318 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400319 }
Al Viro51bf2972007-12-22 17:42:36 +0000320 ret = le16_to_cpu(v);
321out:
David Hollis933a27d2006-07-29 10:12:50 -0400322 return ret;
323}
324
Robert Fossd9fe64e2016-08-29 09:32:15 -0400325int asix_write_rx_ctl(struct usbnet *dev, u16 mode, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400326{
327 int ret;
328
Joe Perches60b86752010-02-17 10:30:23 +0000329 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400330 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400331 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000332 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
333 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400334
335 return ret;
336}
337
Robert Fossd9fe64e2016-08-29 09:32:15 -0400338u16 asix_read_medium_status(struct usbnet *dev, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400339{
Al Viro51bf2972007-12-22 17:42:36 +0000340 __le16 v;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400341 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS,
342 0, 0, 2, &v, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400343
Al Viro51bf2972007-12-22 17:42:36 +0000344 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000345 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
346 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000347 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400348 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000349
350 return le16_to_cpu(v);
351
David Hollis933a27d2006-07-29 10:12:50 -0400352}
353
Robert Fossd9fe64e2016-08-29 09:32:15 -0400354int asix_write_medium_mode(struct usbnet *dev, u16 mode, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400355{
356 int ret;
357
Joe Perches60b86752010-02-17 10:30:23 +0000358 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400359 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE,
360 mode, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400361 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000362 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
363 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400364
365 return ret;
366}
367
Robert Fossd9fe64e2016-08-29 09:32:15 -0400368int asix_write_gpio(struct usbnet *dev, u16 value, int sleep, int in_pm)
David Hollis933a27d2006-07-29 10:12:50 -0400369{
370 int ret;
371
Joe Perches60b86752010-02-17 10:30:23 +0000372 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400373 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL, in_pm);
David Hollis933a27d2006-07-29 10:12:50 -0400374 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000375 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
376 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400377
378 if (sleep)
379 msleep(sleep);
380
381 return ret;
382}
383
384/*
385 * AX88772 & AX88178 have a 16-bit RX_CTL value
386 */
Christian Riesch607740b2012-07-13 05:26:30 +0000387void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700388{
389 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500390 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400391 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700392
393 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400394 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000395 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000396 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400397 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000398 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700399 /* just broadcast and directed */
400 } else {
401 /* We use the 20 byte dev->data
402 * for our 8 byte filter buffer
403 * to avoid allocating memory that
404 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000405 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700406 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700407
408 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
409
410 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000411 netdev_for_each_mc_addr(ha, net) {
412 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700413 data->multi_filter[crc_bits >> 3] |=
414 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700415 }
416
David Hollis48b1be62006-03-28 20:15:42 -0500417 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700418 AX_MCAST_FILTER_SIZE, data->multi_filter);
419
David Hollis933a27d2006-07-29 10:12:50 -0400420 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700421 }
422
David Hollis48b1be62006-03-28 20:15:42 -0500423 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700424}
425
Christian Riesch607740b2012-07-13 05:26:30 +0000426int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700427{
428 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000429 __le16 res;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400430 u8 smsr;
431 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400432 int ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700433
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200434 mutex_lock(&dev->phy_mutex);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400435 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400436 ret = asix_set_sw_mii(dev, 0);
Guenter Roeck610df1d2016-10-13 16:43:16 -0700437 if (ret == -ENODEV || ret == -ETIMEDOUT)
Robert Foss8a46f662016-08-29 09:32:16 -0400438 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400439 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400440 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
441 0, 0, 1, &smsr, 0);
442 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
Guenter Roeck610df1d2016-10-13 16:43:16 -0700443 if (ret == -ENODEV || ret == -ETIMEDOUT) {
Robert Foss8a46f662016-08-29 09:32:16 -0400444 mutex_unlock(&dev->phy_mutex);
445 return ret;
446 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400447
David Hollis48b1be62006-03-28 20:15:42 -0500448 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400449 (__u16)loc, 2, &res, 0);
450 asix_set_hw_mii(dev, 0);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200451 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700452
Joe Perches60b86752010-02-17 10:30:23 +0000453 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 -0400454 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700455
Al Viro51bf2972007-12-22 17:42:36 +0000456 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700457}
458
Christian Riesch607740b2012-07-13 05:26:30 +0000459void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700460{
461 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000462 __le16 res = cpu_to_le16(val);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400463 u8 smsr;
464 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400465 int ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700466
Joe Perches60b86752010-02-17 10:30:23 +0000467 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 -0400468 phy_id, loc, val);
469
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200470 mutex_lock(&dev->phy_mutex);
Robert Fossd9fe64e2016-08-29 09:32:15 -0400471 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400472 ret = asix_set_sw_mii(dev, 0);
473 if (ret == -ENODEV)
474 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400475 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400476 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
477 0, 0, 1, &smsr, 0);
478 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
479 if (ret == -ENODEV) {
480 mutex_unlock(&dev->phy_mutex);
481 return;
482 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400483
484 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id,
485 (__u16)loc, 2, &res, 0);
486 asix_set_hw_mii(dev, 0);
487 mutex_unlock(&dev->phy_mutex);
488}
489
490int asix_mdio_read_nopm(struct net_device *netdev, int phy_id, int loc)
491{
492 struct usbnet *dev = netdev_priv(netdev);
493 __le16 res;
494 u8 smsr;
495 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400496 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400497
498 mutex_lock(&dev->phy_mutex);
499 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400500 ret = asix_set_sw_mii(dev, 1);
Guenter Roeck610df1d2016-10-13 16:43:16 -0700501 if (ret == -ENODEV || ret == -ETIMEDOUT)
Robert Foss8a46f662016-08-29 09:32:16 -0400502 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400503 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400504 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
505 0, 0, 1, &smsr, 1);
506 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
Guenter Roeck610df1d2016-10-13 16:43:16 -0700507 if (ret == -ENODEV || ret == -ETIMEDOUT) {
Robert Foss8a46f662016-08-29 09:32:16 -0400508 mutex_unlock(&dev->phy_mutex);
509 return ret;
510 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400511
512 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
513 (__u16)loc, 2, &res, 1);
514 asix_set_hw_mii(dev, 1);
515 mutex_unlock(&dev->phy_mutex);
516
517 netdev_dbg(dev->net, "asix_mdio_read_nopm() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
518 phy_id, loc, le16_to_cpu(res));
519
520 return le16_to_cpu(res);
521}
522
523void
524asix_mdio_write_nopm(struct net_device *netdev, int phy_id, int loc, int val)
525{
526 struct usbnet *dev = netdev_priv(netdev);
527 __le16 res = cpu_to_le16(val);
528 u8 smsr;
529 int i = 0;
Robert Foss8a46f662016-08-29 09:32:16 -0400530 int ret;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400531
532 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
533 phy_id, loc, val);
534
535 mutex_lock(&dev->phy_mutex);
536 do {
Robert Foss8a46f662016-08-29 09:32:16 -0400537 ret = asix_set_sw_mii(dev, 1);
538 if (ret == -ENODEV)
539 break;
Robert Fossd9fe64e2016-08-29 09:32:15 -0400540 usleep_range(1000, 1100);
Robert Foss8a46f662016-08-29 09:32:16 -0400541 ret = asix_read_cmd(dev, AX_CMD_STATMNGSTS_REG,
542 0, 0, 1, &smsr, 1);
543 } while (!(smsr & AX_HOST_EN) && (i++ < 30) && (ret != -ENODEV));
544 if (ret == -ENODEV) {
545 mutex_unlock(&dev->phy_mutex);
546 return;
547 }
Robert Fossd9fe64e2016-08-29 09:32:15 -0400548
549 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id,
550 (__u16)loc, 2, &res, 1);
551 asix_set_hw_mii(dev, 1);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200552 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700553}
554
Christian Riesch607740b2012-07-13 05:26:30 +0000555void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700556{
557 struct usbnet *dev = netdev_priv(net);
558 u8 opt;
559
Robert Fossd9fe64e2016-08-29 09:32:15 -0400560 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE,
561 0, 0, 1, &opt, 0) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700562 wolinfo->supported = 0;
563 wolinfo->wolopts = 0;
564 return;
565 }
566 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
567 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000568 if (opt & AX_MONITOR_LINK)
569 wolinfo->wolopts |= WAKE_PHY;
570 if (opt & AX_MONITOR_MAGIC)
571 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700572}
573
Christian Riesch607740b2012-07-13 05:26:30 +0000574int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700575{
576 struct usbnet *dev = netdev_priv(net);
577 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700578
579 if (wolinfo->wolopts & WAKE_PHY)
580 opt |= AX_MONITOR_LINK;
581 if (wolinfo->wolopts & WAKE_MAGIC)
582 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700583
David Hollis48b1be62006-03-28 20:15:42 -0500584 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400585 opt, 0, 0, NULL, 0) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700586 return -EINVAL;
587
588 return 0;
589}
590
Christian Riesch607740b2012-07-13 05:26:30 +0000591int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700592{
Christian Rieschceb02c92012-07-19 00:23:06 +0000593 return AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700594}
595
Christian Riesch607740b2012-07-13 05:26:30 +0000596int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
597 u8 *data)
David Brownell2e55cc72005-08-31 09:53:10 -0700598{
599 struct usbnet *dev = netdev_priv(net);
Christian Rieschceb02c92012-07-19 00:23:06 +0000600 u16 *eeprom_buff;
601 int first_word, last_word;
David Brownell2e55cc72005-08-31 09:53:10 -0700602 int i;
603
Christian Rieschceb02c92012-07-19 00:23:06 +0000604 if (eeprom->len == 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700605 return -EINVAL;
606
607 eeprom->magic = AX_EEPROM_MAGIC;
608
Christian Rieschceb02c92012-07-19 00:23:06 +0000609 first_word = eeprom->offset >> 1;
610 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
611
612 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
613 GFP_KERNEL);
614 if (!eeprom_buff)
615 return -ENOMEM;
616
David Brownell2e55cc72005-08-31 09:53:10 -0700617 /* ax8817x returns 2 bytes from eeprom on read */
Christian Rieschceb02c92012-07-19 00:23:06 +0000618 for (i = first_word; i <= last_word; i++) {
619 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400620 &eeprom_buff[i - first_word], 0) < 0) {
Christian Rieschceb02c92012-07-19 00:23:06 +0000621 kfree(eeprom_buff);
622 return -EIO;
623 }
David Brownell2e55cc72005-08-31 09:53:10 -0700624 }
Christian Rieschceb02c92012-07-19 00:23:06 +0000625
626 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
627 kfree(eeprom_buff);
David Brownell2e55cc72005-08-31 09:53:10 -0700628 return 0;
629}
630
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000631int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
632 u8 *data)
633{
634 struct usbnet *dev = netdev_priv(net);
635 u16 *eeprom_buff;
636 int first_word, last_word;
637 int i;
638 int ret;
639
640 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
641 eeprom->len, eeprom->offset, eeprom->magic);
642
643 if (eeprom->len == 0)
644 return -EINVAL;
645
646 if (eeprom->magic != AX_EEPROM_MAGIC)
647 return -EINVAL;
648
649 first_word = eeprom->offset >> 1;
650 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
651
652 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
653 GFP_KERNEL);
654 if (!eeprom_buff)
655 return -ENOMEM;
656
657 /* align data to 16 bit boundaries, read the missing data from
658 the EEPROM */
659 if (eeprom->offset & 1) {
660 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400661 &eeprom_buff[0], 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000662 if (ret < 0) {
663 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
664 goto free;
665 }
666 }
667
668 if ((eeprom->offset + eeprom->len) & 1) {
669 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400670 &eeprom_buff[last_word - first_word], 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000671 if (ret < 0) {
672 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
673 goto free;
674 }
675 }
676
677 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
678
679 /* write data to EEPROM */
Robert Fossd9fe64e2016-08-29 09:32:15 -0400680 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000681 if (ret < 0) {
682 netdev_err(net, "Failed to enable EEPROM write\n");
683 goto free;
684 }
685 msleep(20);
686
687 for (i = first_word; i <= last_word; i++) {
688 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
689 i, eeprom_buff[i - first_word]);
690 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
Robert Fossd9fe64e2016-08-29 09:32:15 -0400691 eeprom_buff[i - first_word], 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000692 if (ret < 0) {
693 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
694 i);
695 goto free;
696 }
697 msleep(20);
698 }
699
Robert Fossd9fe64e2016-08-29 09:32:15 -0400700 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL, 0);
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000701 if (ret < 0) {
702 netdev_err(net, "Failed to disable EEPROM write\n");
703 goto free;
704 }
705
706 ret = 0;
707free:
708 kfree(eeprom_buff);
709 return ret;
710}
711
Christian Riesch607740b2012-07-13 05:26:30 +0000712void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
David Brownell2e55cc72005-08-31 09:53:10 -0700713{
714 /* Inherit standard device info */
715 usbnet_get_drvinfo(net, info);
Jiri Pirko7826d432013-01-06 00:44:26 +0000716 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
717 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
David Brownell2e55cc72005-08-31 09:53:10 -0700718}
719
Christian Riesch607740b2012-07-13 05:26:30 +0000720int asix_set_mac_address(struct net_device *net, void *p)
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000721{
722 struct usbnet *dev = netdev_priv(net);
723 struct asix_data *data = (struct asix_data *)&dev->data;
724 struct sockaddr *addr = p;
725
726 if (netif_running(net))
727 return -EBUSY;
728 if (!is_valid_ether_addr(addr->sa_data))
729 return -EADDRNOTAVAIL;
730
731 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
732
733 /* We use the 20 byte dev->data
734 * for our 6 byte mac buffer
735 * to avoid allocating memory that
736 * is tricky to free later */
737 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
738 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
739 data->mac_addr);
740
741 return 0;
742}