blob: 7de5ab589e4eabb0dc5ae23598ed80ebe8536dc6 [file] [log] [blame]
David Brownell2e55cc72005-08-31 09:53:10 -07001/*
2 * ASIX AX8817X based USB 2.0 Ethernet Devices
David Hollis933a27d2006-07-29 10:12:50 -04003 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
David Brownell2e55cc72005-08-31 09:53:10 -07004 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
David Hollis933a27d2006-07-29 10:12:50 -04005 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
David Brownell2e55cc72005-08-31 09:53:10 -07006 * Copyright (c) 2002-2003 TiVo Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
Jeff Kirsher9cb00072013-12-06 06:28:46 -080019 * along with this program; if not, see <http://www.gnu.org/licenses/>.
David Brownell2e55cc72005-08-31 09:53:10 -070020 */
21
Christian Riesch607740b2012-07-13 05:26:30 +000022#include "asix.h"
David Brownell2e55cc72005-08-31 09:53:10 -070023
Christian Riesch607740b2012-07-13 05:26:30 +000024int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
25 u16 size, void *data)
David Brownell2e55cc72005-08-31 09:53:10 -070026{
Ming Lei0bc69ef2012-10-24 19:46:55 +000027 int ret;
28 ret = usbnet_read_cmd(dev, cmd,
29 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
30 value, index, data, size);
Al Viro51bf2972007-12-22 17:42:36 +000031
Ming Lei0bc69ef2012-10-24 19:46:55 +000032 if (ret != size && ret >= 0)
33 return -EINVAL;
34 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -070035}
36
Christian Riesch607740b2012-07-13 05:26:30 +000037int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
38 u16 size, void *data)
David Brownell2e55cc72005-08-31 09:53:10 -070039{
Ming Lei0bc69ef2012-10-24 19:46:55 +000040 return usbnet_write_cmd(dev, cmd,
41 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
42 value, index, data, size);
David Brownell2e55cc72005-08-31 09:53:10 -070043}
44
Christian Riesch607740b2012-07-13 05:26:30 +000045void asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
46 u16 size, void *data)
David Hollis48b1be62006-03-28 20:15:42 -050047{
Ming Lei0bc69ef2012-10-24 19:46:55 +000048 usbnet_write_cmd_async(dev, cmd,
49 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
50 value, index, data, size);
David Hollis48b1be62006-03-28 20:15:42 -050051}
52
Lucas Stach8b5b6f52013-01-16 04:24:07 +000053int asix_rx_fixup_internal(struct usbnet *dev, struct sk_buff *skb,
54 struct asix_rx_fixup_info *rx)
David Hollis48b1be62006-03-28 20:15:42 -050055{
Eric Dumazeta9e0aca2012-03-14 20:18:32 +000056 int offset = 0;
Dean Jenkins7b0378f2015-10-02 14:29:04 +010057 u16 size;
David Hollis48b1be62006-03-28 20:15:42 -050058
Dean Jenkins3f30b152015-10-02 14:29:07 +010059 /* When an Ethernet frame spans multiple URB socket buffers,
60 * do a sanity test for the Data header synchronisation.
61 * Attempt to detect the situation of the previous socket buffer having
62 * been truncated or a socket buffer was missing. These situations
63 * cause a discontinuity in the data stream and therefore need to avoid
64 * appending bad data to the end of the current netdev socket buffer.
65 * Also avoid unnecessarily discarding a good current netdev socket
66 * buffer.
67 */
68 if (rx->remaining && (rx->remaining + sizeof(u32) <= skb->len)) {
John Stultzcd9e2e52016-05-16 20:36:15 -070069 offset = ((rx->remaining + 1) & 0xfffe);
Dean Jenkins3f30b152015-10-02 14:29:07 +010070 rx->header = get_unaligned_le32(skb->data + offset);
71 offset = 0;
72
73 size = (u16)(rx->header & 0x7ff);
74 if (size != ((~rx->header >> 16) & 0x7ff)) {
75 netdev_err(dev->net, "asix_rx_fixup() Data Header synchronisation was lost, remaining %d\n",
76 rx->remaining);
Dean Jenkins6a570812015-10-02 14:29:08 +010077 if (rx->ax_skb) {
78 kfree_skb(rx->ax_skb);
79 rx->ax_skb = NULL;
80 /* Discard the incomplete netdev Ethernet frame
81 * and assume the Data header is at the start of
82 * the current URB socket buffer.
83 */
84 }
Dean Jenkins3f30b152015-10-02 14:29:07 +010085 rx->remaining = 0;
86 }
87 }
88
Lucas Stach8b5b6f52013-01-16 04:24:07 +000089 while (offset + sizeof(u16) <= skb->len) {
Dean Jenkins7b0378f2015-10-02 14:29:04 +010090 u16 copy_length;
Lucas Stach8b5b6f52013-01-16 04:24:07 +000091 unsigned char *data;
David Hollis48b1be62006-03-28 20:15:42 -050092
Dean Jenkins7b0378f2015-10-02 14:29:04 +010093 if (!rx->remaining) {
Dean Jenkins3bfc69a2015-10-02 14:29:05 +010094 if (skb->len - offset == sizeof(u16)) {
95 rx->header = get_unaligned_le16(
96 skb->data + offset);
97 rx->split_head = true;
98 offset += sizeof(u16);
99 break;
100 }
101
102 if (rx->split_head == true) {
103 rx->header |= (get_unaligned_le16(
104 skb->data + offset) << 16);
105 rx->split_head = false;
106 offset += sizeof(u16);
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000107 } else {
108 rx->header = get_unaligned_le32(skb->data +
109 offset);
110 offset += sizeof(u32);
111 }
Marek Vasutbc466e62011-07-26 16:44:46 +0000112
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100113 /* take frame length from Data header 32-bit word */
114 size = (u16)(rx->header & 0x7ff);
115 if (size != ((~rx->header >> 16) & 0x7ff)) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000116 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length 0x%x, offset %d\n",
117 rx->header, offset);
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000118 return 0;
119 }
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100120 if (size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) {
stephen hemmingerb70183d2015-12-17 17:51:16 -0800121 netdev_dbg(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100122 size);
123 return 0;
124 }
125
Dean Jenkins6a570812015-10-02 14:29:08 +0100126 /* Sometimes may fail to get a netdev socket buffer but
127 * continue to process the URB socket buffer so that
128 * synchronisation of the Ethernet frame Data header
129 * word is maintained.
130 */
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100131 rx->ax_skb = netdev_alloc_skb_ip_align(dev->net, size);
Neil Jones3f78d1f2010-05-17 17:18:28 -0700132
Dean Jenkins9a5ccd82015-10-02 14:29:06 +0100133 rx->remaining = size;
David Hollis933a27d2006-07-29 10:12:50 -0400134 }
David Hollis933a27d2006-07-29 10:12:50 -0400135
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100136 if (rx->remaining > skb->len - offset) {
137 copy_length = skb->len - offset;
138 rx->remaining -= copy_length;
139 } else {
140 copy_length = rx->remaining;
141 rx->remaining = 0;
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000142 }
David Hollis933a27d2006-07-29 10:12:50 -0400143
Dean Jenkins6a570812015-10-02 14:29:08 +0100144 if (rx->ax_skb) {
145 data = skb_put(rx->ax_skb, copy_length);
146 memcpy(data, skb->data + offset, copy_length);
147 if (!rx->remaining)
148 usbnet_skb_return(dev, rx->ax_skb);
149 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000150
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100151 offset += (copy_length + 1) & 0xfffe;
David Hollis933a27d2006-07-29 10:12:50 -0400152 }
153
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000154 if (skb->len != offset) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000155 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
156 skb->len, offset);
David Hollis933a27d2006-07-29 10:12:50 -0400157 return 0;
158 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000159
David Hollis933a27d2006-07-29 10:12:50 -0400160 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500161}
162
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000163int asix_rx_fixup_common(struct usbnet *dev, struct sk_buff *skb)
164{
165 struct asix_common_private *dp = dev->driver_priv;
166 struct asix_rx_fixup_info *rx = &dp->rx_fixup_info;
167
168 return asix_rx_fixup_internal(dev, skb, rx);
169}
170
Christian Riesch607740b2012-07-13 05:26:30 +0000171struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
172 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500173{
David Hollis933a27d2006-07-29 10:12:50 -0400174 int padlen;
175 int headroom = skb_headroom(skb);
176 int tailroom = skb_tailroom(skb);
177 u32 packet_len;
178 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500179
Ingo van Lil2a580942012-04-23 22:05:38 +0000180 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500181
Eric Dumazet95162d62012-07-05 04:31:01 +0000182 /* We need to push 4 bytes in front of frame (packet_len)
183 * and maybe add 4 bytes after the end (if padlen is 4)
184 *
185 * Avoid skb_copy_expand() expensive call, using following rules :
186 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
187 * is false (and if we have 4 bytes of headroom)
188 * - We are allowed to put 4 bytes at tail if skb_cloned()
189 * is false (and if we have 4 bytes of tailroom)
190 *
191 * TCP packets for example are cloned, but skb_header_release()
192 * was called in tcp stack, allowing us to use headroom for our needs.
193 */
194 if (!skb_header_cloned(skb) &&
195 !(padlen && skb_cloned(skb)) &&
196 headroom + tailroom >= 4 + padlen) {
197 /* following should not happen, but better be safe */
198 if (headroom < 4 ||
199 tailroom < padlen) {
David Hollis933a27d2006-07-29 10:12:50 -0400200 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700201 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400202 }
203 } else {
204 struct sk_buff *skb2;
Eric Dumazet95162d62012-07-05 04:31:01 +0000205
David Hollis933a27d2006-07-29 10:12:50 -0400206 skb2 = skb_copy_expand(skb, 4, padlen, flags);
207 dev_kfree_skb_any(skb);
208 skb = skb2;
209 if (!skb)
210 return NULL;
211 }
212
Eric Dumazet95162d62012-07-05 04:31:01 +0000213 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
David Hollis933a27d2006-07-29 10:12:50 -0400214 skb_push(skb, 4);
David Hollis57e4f042007-02-05 12:03:03 -0500215 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300216 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400217
Ingo van Lil2a580942012-04-23 22:05:38 +0000218 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500219 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700220 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400221 skb_put(skb, sizeof(padbytes));
222 }
Ben Hutchings1e9e39f2015-02-26 19:34:37 +0000223
Ben Hutchings7a1e8902015-03-25 21:41:33 +0100224 usbnet_set_skb_tx_stats(skb, 1, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400225 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500226}
227
Christian Riesch607740b2012-07-13 05:26:30 +0000228int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700229{
David Hollis933a27d2006-07-29 10:12:50 -0400230 int ret;
231 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
232 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000233 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400234 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700235}
236
Christian Riesch607740b2012-07-13 05:26:30 +0000237int asix_set_hw_mii(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400238{
239 int ret;
240 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
241 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000242 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400243 return ret;
244}
245
Christian Riesch16626b02012-07-13 05:26:31 +0000246int asix_read_phy_addr(struct usbnet *dev, int internal)
David Hollis933a27d2006-07-29 10:12:50 -0400247{
Christian Riesch16626b02012-07-13 05:26:31 +0000248 int offset = (internal ? 1 : 0);
Al Viro51bf2972007-12-22 17:42:36 +0000249 u8 buf[2];
250 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400251
Joe Perches60b86752010-02-17 10:30:23 +0000252 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400253
Al Viro51bf2972007-12-22 17:42:36 +0000254 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000255 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000256 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400257 }
Joe Perches60b86752010-02-17 10:30:23 +0000258 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
259 *((__le16 *)buf));
Christian Riesch16626b02012-07-13 05:26:31 +0000260 ret = buf[offset];
Al Viro51bf2972007-12-22 17:42:36 +0000261
262out:
David Hollis933a27d2006-07-29 10:12:50 -0400263 return ret;
264}
265
Christian Riesch16626b02012-07-13 05:26:31 +0000266int asix_get_phy_addr(struct usbnet *dev)
267{
268 /* return the address of the internal phy */
269 return asix_read_phy_addr(dev, 1);
270}
271
272
Christian Riesch607740b2012-07-13 05:26:30 +0000273int asix_sw_reset(struct usbnet *dev, u8 flags)
David Hollis933a27d2006-07-29 10:12:50 -0400274{
275 int ret;
276
277 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
278 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000279 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400280
281 return ret;
282}
283
Christian Riesch607740b2012-07-13 05:26:30 +0000284u16 asix_read_rx_ctl(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400285{
Al Viro51bf2972007-12-22 17:42:36 +0000286 __le16 v;
287 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400288
Al Viro51bf2972007-12-22 17:42:36 +0000289 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000290 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000291 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400292 }
Al Viro51bf2972007-12-22 17:42:36 +0000293 ret = le16_to_cpu(v);
294out:
David Hollis933a27d2006-07-29 10:12:50 -0400295 return ret;
296}
297
Christian Riesch607740b2012-07-13 05:26:30 +0000298int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400299{
300 int ret;
301
Joe Perches60b86752010-02-17 10:30:23 +0000302 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400303 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
304 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000305 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
306 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400307
308 return ret;
309}
310
Christian Riesch607740b2012-07-13 05:26:30 +0000311u16 asix_read_medium_status(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400312{
Al Viro51bf2972007-12-22 17:42:36 +0000313 __le16 v;
314 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
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 Medium Status register: %02x\n",
318 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000319 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400320 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000321
322 return le16_to_cpu(v);
323
David Hollis933a27d2006-07-29 10:12:50 -0400324}
325
Christian Riesch607740b2012-07-13 05:26:30 +0000326int asix_write_medium_mode(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400327{
328 int ret;
329
Joe Perches60b86752010-02-17 10:30:23 +0000330 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400331 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
332 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000333 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
334 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400335
336 return ret;
337}
338
Christian Riesch607740b2012-07-13 05:26:30 +0000339int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
David Hollis933a27d2006-07-29 10:12:50 -0400340{
341 int ret;
342
Joe Perches60b86752010-02-17 10:30:23 +0000343 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400344 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
345 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000346 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
347 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400348
349 if (sleep)
350 msleep(sleep);
351
352 return ret;
353}
354
355/*
356 * AX88772 & AX88178 have a 16-bit RX_CTL value
357 */
Christian Riesch607740b2012-07-13 05:26:30 +0000358void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700359{
360 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500361 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400362 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700363
364 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400365 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000366 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000367 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400368 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000369 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700370 /* just broadcast and directed */
371 } else {
372 /* We use the 20 byte dev->data
373 * for our 8 byte filter buffer
374 * to avoid allocating memory that
375 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000376 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700377 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700378
379 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
380
381 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000382 netdev_for_each_mc_addr(ha, net) {
383 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700384 data->multi_filter[crc_bits >> 3] |=
385 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700386 }
387
David Hollis48b1be62006-03-28 20:15:42 -0500388 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700389 AX_MCAST_FILTER_SIZE, data->multi_filter);
390
David Hollis933a27d2006-07-29 10:12:50 -0400391 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700392 }
393
David Hollis48b1be62006-03-28 20:15:42 -0500394 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700395}
396
Christian Riesch607740b2012-07-13 05:26:30 +0000397int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700398{
399 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000400 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700401
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200402 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500403 asix_set_sw_mii(dev);
404 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000405 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500406 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200407 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700408
Joe Perches60b86752010-02-17 10:30:23 +0000409 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
410 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700411
Al Viro51bf2972007-12-22 17:42:36 +0000412 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700413}
414
Christian Riesch607740b2012-07-13 05:26:30 +0000415void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700416{
417 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000418 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700419
Joe Perches60b86752010-02-17 10:30:23 +0000420 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
421 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200422 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500423 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000424 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500425 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200426 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700427}
428
Christian Riesch607740b2012-07-13 05:26:30 +0000429void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700430{
431 struct usbnet *dev = netdev_priv(net);
432 u8 opt;
433
David Hollis48b1be62006-03-28 20:15:42 -0500434 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700435 wolinfo->supported = 0;
436 wolinfo->wolopts = 0;
437 return;
438 }
439 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
440 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000441 if (opt & AX_MONITOR_LINK)
442 wolinfo->wolopts |= WAKE_PHY;
443 if (opt & AX_MONITOR_MAGIC)
444 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700445}
446
Christian Riesch607740b2012-07-13 05:26:30 +0000447int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700448{
449 struct usbnet *dev = netdev_priv(net);
450 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700451
452 if (wolinfo->wolopts & WAKE_PHY)
453 opt |= AX_MONITOR_LINK;
454 if (wolinfo->wolopts & WAKE_MAGIC)
455 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700456
David Hollis48b1be62006-03-28 20:15:42 -0500457 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000458 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700459 return -EINVAL;
460
461 return 0;
462}
463
Christian Riesch607740b2012-07-13 05:26:30 +0000464int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700465{
Christian Rieschceb02c92012-07-19 00:23:06 +0000466 return AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700467}
468
Christian Riesch607740b2012-07-13 05:26:30 +0000469int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
470 u8 *data)
David Brownell2e55cc72005-08-31 09:53:10 -0700471{
472 struct usbnet *dev = netdev_priv(net);
Christian Rieschceb02c92012-07-19 00:23:06 +0000473 u16 *eeprom_buff;
474 int first_word, last_word;
David Brownell2e55cc72005-08-31 09:53:10 -0700475 int i;
476
Christian Rieschceb02c92012-07-19 00:23:06 +0000477 if (eeprom->len == 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700478 return -EINVAL;
479
480 eeprom->magic = AX_EEPROM_MAGIC;
481
Christian Rieschceb02c92012-07-19 00:23:06 +0000482 first_word = eeprom->offset >> 1;
483 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
484
485 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
486 GFP_KERNEL);
487 if (!eeprom_buff)
488 return -ENOMEM;
489
David Brownell2e55cc72005-08-31 09:53:10 -0700490 /* ax8817x returns 2 bytes from eeprom on read */
Christian Rieschceb02c92012-07-19 00:23:06 +0000491 for (i = first_word; i <= last_word; i++) {
492 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
493 &(eeprom_buff[i - first_word])) < 0) {
494 kfree(eeprom_buff);
495 return -EIO;
496 }
David Brownell2e55cc72005-08-31 09:53:10 -0700497 }
Christian Rieschceb02c92012-07-19 00:23:06 +0000498
499 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
500 kfree(eeprom_buff);
David Brownell2e55cc72005-08-31 09:53:10 -0700501 return 0;
502}
503
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000504int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
505 u8 *data)
506{
507 struct usbnet *dev = netdev_priv(net);
508 u16 *eeprom_buff;
509 int first_word, last_word;
510 int i;
511 int ret;
512
513 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
514 eeprom->len, eeprom->offset, eeprom->magic);
515
516 if (eeprom->len == 0)
517 return -EINVAL;
518
519 if (eeprom->magic != AX_EEPROM_MAGIC)
520 return -EINVAL;
521
522 first_word = eeprom->offset >> 1;
523 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
524
525 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
526 GFP_KERNEL);
527 if (!eeprom_buff)
528 return -ENOMEM;
529
530 /* align data to 16 bit boundaries, read the missing data from
531 the EEPROM */
532 if (eeprom->offset & 1) {
533 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
534 &(eeprom_buff[0]));
535 if (ret < 0) {
536 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
537 goto free;
538 }
539 }
540
541 if ((eeprom->offset + eeprom->len) & 1) {
542 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
543 &(eeprom_buff[last_word - first_word]));
544 if (ret < 0) {
545 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
546 goto free;
547 }
548 }
549
550 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
551
552 /* write data to EEPROM */
553 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL);
554 if (ret < 0) {
555 netdev_err(net, "Failed to enable EEPROM write\n");
556 goto free;
557 }
558 msleep(20);
559
560 for (i = first_word; i <= last_word; i++) {
561 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
562 i, eeprom_buff[i - first_word]);
563 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
564 eeprom_buff[i - first_word], 0, NULL);
565 if (ret < 0) {
566 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
567 i);
568 goto free;
569 }
570 msleep(20);
571 }
572
573 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL);
574 if (ret < 0) {
575 netdev_err(net, "Failed to disable EEPROM write\n");
576 goto free;
577 }
578
579 ret = 0;
580free:
581 kfree(eeprom_buff);
582 return ret;
583}
584
Christian Riesch607740b2012-07-13 05:26:30 +0000585void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
David Brownell2e55cc72005-08-31 09:53:10 -0700586{
587 /* Inherit standard device info */
588 usbnet_get_drvinfo(net, info);
Jiri Pirko7826d432013-01-06 00:44:26 +0000589 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
590 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
David Brownell2e55cc72005-08-31 09:53:10 -0700591}
592
Christian Riesch607740b2012-07-13 05:26:30 +0000593int asix_set_mac_address(struct net_device *net, void *p)
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000594{
595 struct usbnet *dev = netdev_priv(net);
596 struct asix_data *data = (struct asix_data *)&dev->data;
597 struct sockaddr *addr = p;
598
599 if (netif_running(net))
600 return -EBUSY;
601 if (!is_valid_ether_addr(addr->sa_data))
602 return -EADDRNOTAVAIL;
603
604 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
605
606 /* We use the 20 byte dev->data
607 * for our 6 byte mac buffer
608 * to avoid allocating memory that
609 * is tricky to free later */
610 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
611 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
612 data->mac_addr);
613
614 return 0;
615}