blob: 89efd6ad9644f65ce0f902aa860279990fb5c444 [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
Lucas Stach8b5b6f52013-01-16 04:24:07 +000059 while (offset + sizeof(u16) <= skb->len) {
Dean Jenkins7b0378f2015-10-02 14:29:04 +010060 u16 copy_length;
Lucas Stach8b5b6f52013-01-16 04:24:07 +000061 unsigned char *data;
David Hollis48b1be62006-03-28 20:15:42 -050062
Dean Jenkins7b0378f2015-10-02 14:29:04 +010063 if (!rx->remaining) {
Dean Jenkins3bfc69a2015-10-02 14:29:05 +010064 if (skb->len - offset == sizeof(u16)) {
65 rx->header = get_unaligned_le16(
66 skb->data + offset);
67 rx->split_head = true;
68 offset += sizeof(u16);
69 break;
70 }
71
72 if (rx->split_head == true) {
73 rx->header |= (get_unaligned_le16(
74 skb->data + offset) << 16);
75 rx->split_head = false;
76 offset += sizeof(u16);
Lucas Stach8b5b6f52013-01-16 04:24:07 +000077 } else {
78 rx->header = get_unaligned_le32(skb->data +
79 offset);
80 offset += sizeof(u32);
81 }
Marek Vasutbc466e62011-07-26 16:44:46 +000082
Dean Jenkins7b0378f2015-10-02 14:29:04 +010083 /* take frame length from Data header 32-bit word */
84 size = (u16)(rx->header & 0x7ff);
85 if (size != ((~rx->header >> 16) & 0x7ff)) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +000086 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length 0x%x, offset %d\n",
87 rx->header, offset);
Lucas Stach8b5b6f52013-01-16 04:24:07 +000088 return 0;
89 }
Dean Jenkins7b0378f2015-10-02 14:29:04 +010090 rx->ax_skb = netdev_alloc_skb_ip_align(dev->net, size);
Lucas Stach8b5b6f52013-01-16 04:24:07 +000091 if (!rx->ax_skb)
92 return 0;
Dean Jenkins7b0378f2015-10-02 14:29:04 +010093 rx->remaining = size;
Neil Jones3f78d1f2010-05-17 17:18:28 -070094 }
95
Dean Jenkins7b0378f2015-10-02 14:29:04 +010096 if (rx->remaining > dev->net->mtu + ETH_HLEN + VLAN_HLEN) {
Joe Perches60b86752010-02-17 10:30:23 +000097 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
Dean Jenkins7b0378f2015-10-02 14:29:04 +010098 rx->remaining);
Lucas Stach8b5b6f52013-01-16 04:24:07 +000099 kfree_skb(rx->ax_skb);
holger@eitzenberger.orgc5060ce2013-05-03 00:02:20 +0000100 rx->ax_skb = NULL;
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100101 rx->remaining = 0;
David Hollis933a27d2006-07-29 10:12:50 -0400102 return 0;
103 }
David Hollis933a27d2006-07-29 10:12:50 -0400104
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100105 if (rx->remaining > skb->len - offset) {
106 copy_length = skb->len - offset;
107 rx->remaining -= copy_length;
108 } else {
109 copy_length = rx->remaining;
110 rx->remaining = 0;
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000111 }
David Hollis933a27d2006-07-29 10:12:50 -0400112
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100113 data = skb_put(rx->ax_skb, copy_length);
114 memcpy(data, skb->data + offset, copy_length);
115 if (!rx->remaining)
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000116 usbnet_skb_return(dev, rx->ax_skb);
117
Dean Jenkins7b0378f2015-10-02 14:29:04 +0100118 offset += (copy_length + 1) & 0xfffe;
David Hollis933a27d2006-07-29 10:12:50 -0400119 }
120
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000121 if (skb->len != offset) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000122 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
123 skb->len, offset);
David Hollis933a27d2006-07-29 10:12:50 -0400124 return 0;
125 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000126
David Hollis933a27d2006-07-29 10:12:50 -0400127 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500128}
129
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000130int asix_rx_fixup_common(struct usbnet *dev, struct sk_buff *skb)
131{
132 struct asix_common_private *dp = dev->driver_priv;
133 struct asix_rx_fixup_info *rx = &dp->rx_fixup_info;
134
135 return asix_rx_fixup_internal(dev, skb, rx);
136}
137
Christian Riesch607740b2012-07-13 05:26:30 +0000138struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
139 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500140{
David Hollis933a27d2006-07-29 10:12:50 -0400141 int padlen;
142 int headroom = skb_headroom(skb);
143 int tailroom = skb_tailroom(skb);
144 u32 packet_len;
145 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500146
Ingo van Lil2a580942012-04-23 22:05:38 +0000147 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500148
Eric Dumazet95162d62012-07-05 04:31:01 +0000149 /* We need to push 4 bytes in front of frame (packet_len)
150 * and maybe add 4 bytes after the end (if padlen is 4)
151 *
152 * Avoid skb_copy_expand() expensive call, using following rules :
153 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
154 * is false (and if we have 4 bytes of headroom)
155 * - We are allowed to put 4 bytes at tail if skb_cloned()
156 * is false (and if we have 4 bytes of tailroom)
157 *
158 * TCP packets for example are cloned, but skb_header_release()
159 * was called in tcp stack, allowing us to use headroom for our needs.
160 */
161 if (!skb_header_cloned(skb) &&
162 !(padlen && skb_cloned(skb)) &&
163 headroom + tailroom >= 4 + padlen) {
164 /* following should not happen, but better be safe */
165 if (headroom < 4 ||
166 tailroom < padlen) {
David Hollis933a27d2006-07-29 10:12:50 -0400167 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700168 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400169 }
170 } else {
171 struct sk_buff *skb2;
Eric Dumazet95162d62012-07-05 04:31:01 +0000172
David Hollis933a27d2006-07-29 10:12:50 -0400173 skb2 = skb_copy_expand(skb, 4, padlen, flags);
174 dev_kfree_skb_any(skb);
175 skb = skb2;
176 if (!skb)
177 return NULL;
178 }
179
Eric Dumazet95162d62012-07-05 04:31:01 +0000180 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
David Hollis933a27d2006-07-29 10:12:50 -0400181 skb_push(skb, 4);
David Hollis57e4f042007-02-05 12:03:03 -0500182 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300183 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400184
Ingo van Lil2a580942012-04-23 22:05:38 +0000185 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500186 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700187 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400188 skb_put(skb, sizeof(padbytes));
189 }
Ben Hutchings1e9e39f2015-02-26 19:34:37 +0000190
Ben Hutchings7a1e8902015-03-25 21:41:33 +0100191 usbnet_set_skb_tx_stats(skb, 1, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400192 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500193}
194
Christian Riesch607740b2012-07-13 05:26:30 +0000195int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700196{
David Hollis933a27d2006-07-29 10:12:50 -0400197 int ret;
198 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
199 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000200 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400201 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700202}
203
Christian Riesch607740b2012-07-13 05:26:30 +0000204int asix_set_hw_mii(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400205{
206 int ret;
207 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
208 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000209 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400210 return ret;
211}
212
Christian Riesch16626b02012-07-13 05:26:31 +0000213int asix_read_phy_addr(struct usbnet *dev, int internal)
David Hollis933a27d2006-07-29 10:12:50 -0400214{
Christian Riesch16626b02012-07-13 05:26:31 +0000215 int offset = (internal ? 1 : 0);
Al Viro51bf2972007-12-22 17:42:36 +0000216 u8 buf[2];
217 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400218
Joe Perches60b86752010-02-17 10:30:23 +0000219 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400220
Al Viro51bf2972007-12-22 17:42:36 +0000221 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000222 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000223 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400224 }
Joe Perches60b86752010-02-17 10:30:23 +0000225 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
226 *((__le16 *)buf));
Christian Riesch16626b02012-07-13 05:26:31 +0000227 ret = buf[offset];
Al Viro51bf2972007-12-22 17:42:36 +0000228
229out:
David Hollis933a27d2006-07-29 10:12:50 -0400230 return ret;
231}
232
Christian Riesch16626b02012-07-13 05:26:31 +0000233int asix_get_phy_addr(struct usbnet *dev)
234{
235 /* return the address of the internal phy */
236 return asix_read_phy_addr(dev, 1);
237}
238
239
Christian Riesch607740b2012-07-13 05:26:30 +0000240int asix_sw_reset(struct usbnet *dev, u8 flags)
David Hollis933a27d2006-07-29 10:12:50 -0400241{
242 int ret;
243
244 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
245 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000246 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400247
248 return ret;
249}
250
Christian Riesch607740b2012-07-13 05:26:30 +0000251u16 asix_read_rx_ctl(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400252{
Al Viro51bf2972007-12-22 17:42:36 +0000253 __le16 v;
254 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400255
Al Viro51bf2972007-12-22 17:42:36 +0000256 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000257 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000258 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400259 }
Al Viro51bf2972007-12-22 17:42:36 +0000260 ret = le16_to_cpu(v);
261out:
David Hollis933a27d2006-07-29 10:12:50 -0400262 return ret;
263}
264
Christian Riesch607740b2012-07-13 05:26:30 +0000265int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400266{
267 int ret;
268
Joe Perches60b86752010-02-17 10:30:23 +0000269 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400270 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
271 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000272 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
273 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400274
275 return ret;
276}
277
Christian Riesch607740b2012-07-13 05:26:30 +0000278u16 asix_read_medium_status(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400279{
Al Viro51bf2972007-12-22 17:42:36 +0000280 __le16 v;
281 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400282
Al Viro51bf2972007-12-22 17:42:36 +0000283 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000284 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
285 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000286 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400287 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000288
289 return le16_to_cpu(v);
290
David Hollis933a27d2006-07-29 10:12:50 -0400291}
292
Christian Riesch607740b2012-07-13 05:26:30 +0000293int asix_write_medium_mode(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400294{
295 int ret;
296
Joe Perches60b86752010-02-17 10:30:23 +0000297 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400298 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
299 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000300 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
301 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400302
303 return ret;
304}
305
Christian Riesch607740b2012-07-13 05:26:30 +0000306int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
David Hollis933a27d2006-07-29 10:12:50 -0400307{
308 int ret;
309
Joe Perches60b86752010-02-17 10:30:23 +0000310 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400311 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
312 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000313 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
314 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400315
316 if (sleep)
317 msleep(sleep);
318
319 return ret;
320}
321
322/*
323 * AX88772 & AX88178 have a 16-bit RX_CTL value
324 */
Christian Riesch607740b2012-07-13 05:26:30 +0000325void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700326{
327 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500328 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400329 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700330
331 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400332 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000333 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000334 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400335 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000336 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700337 /* just broadcast and directed */
338 } else {
339 /* We use the 20 byte dev->data
340 * for our 8 byte filter buffer
341 * to avoid allocating memory that
342 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000343 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700344 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700345
346 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
347
348 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000349 netdev_for_each_mc_addr(ha, net) {
350 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700351 data->multi_filter[crc_bits >> 3] |=
352 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700353 }
354
David Hollis48b1be62006-03-28 20:15:42 -0500355 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700356 AX_MCAST_FILTER_SIZE, data->multi_filter);
357
David Hollis933a27d2006-07-29 10:12:50 -0400358 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700359 }
360
David Hollis48b1be62006-03-28 20:15:42 -0500361 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700362}
363
Christian Riesch607740b2012-07-13 05:26:30 +0000364int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700365{
366 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000367 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700368
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200369 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500370 asix_set_sw_mii(dev);
371 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000372 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500373 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200374 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700375
Joe Perches60b86752010-02-17 10:30:23 +0000376 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
377 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700378
Al Viro51bf2972007-12-22 17:42:36 +0000379 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700380}
381
Christian Riesch607740b2012-07-13 05:26:30 +0000382void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700383{
384 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000385 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700386
Joe Perches60b86752010-02-17 10:30:23 +0000387 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
388 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200389 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500390 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000391 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500392 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200393 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700394}
395
Christian Riesch607740b2012-07-13 05:26:30 +0000396void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700397{
398 struct usbnet *dev = netdev_priv(net);
399 u8 opt;
400
David Hollis48b1be62006-03-28 20:15:42 -0500401 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700402 wolinfo->supported = 0;
403 wolinfo->wolopts = 0;
404 return;
405 }
406 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
407 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000408 if (opt & AX_MONITOR_LINK)
409 wolinfo->wolopts |= WAKE_PHY;
410 if (opt & AX_MONITOR_MAGIC)
411 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700412}
413
Christian Riesch607740b2012-07-13 05:26:30 +0000414int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700415{
416 struct usbnet *dev = netdev_priv(net);
417 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700418
419 if (wolinfo->wolopts & WAKE_PHY)
420 opt |= AX_MONITOR_LINK;
421 if (wolinfo->wolopts & WAKE_MAGIC)
422 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700423
David Hollis48b1be62006-03-28 20:15:42 -0500424 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000425 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700426 return -EINVAL;
427
428 return 0;
429}
430
Christian Riesch607740b2012-07-13 05:26:30 +0000431int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700432{
Christian Rieschceb02c92012-07-19 00:23:06 +0000433 return AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700434}
435
Christian Riesch607740b2012-07-13 05:26:30 +0000436int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
437 u8 *data)
David Brownell2e55cc72005-08-31 09:53:10 -0700438{
439 struct usbnet *dev = netdev_priv(net);
Christian Rieschceb02c92012-07-19 00:23:06 +0000440 u16 *eeprom_buff;
441 int first_word, last_word;
David Brownell2e55cc72005-08-31 09:53:10 -0700442 int i;
443
Christian Rieschceb02c92012-07-19 00:23:06 +0000444 if (eeprom->len == 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700445 return -EINVAL;
446
447 eeprom->magic = AX_EEPROM_MAGIC;
448
Christian Rieschceb02c92012-07-19 00:23:06 +0000449 first_word = eeprom->offset >> 1;
450 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
451
452 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
453 GFP_KERNEL);
454 if (!eeprom_buff)
455 return -ENOMEM;
456
David Brownell2e55cc72005-08-31 09:53:10 -0700457 /* ax8817x returns 2 bytes from eeprom on read */
Christian Rieschceb02c92012-07-19 00:23:06 +0000458 for (i = first_word; i <= last_word; i++) {
459 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
460 &(eeprom_buff[i - first_word])) < 0) {
461 kfree(eeprom_buff);
462 return -EIO;
463 }
David Brownell2e55cc72005-08-31 09:53:10 -0700464 }
Christian Rieschceb02c92012-07-19 00:23:06 +0000465
466 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
467 kfree(eeprom_buff);
David Brownell2e55cc72005-08-31 09:53:10 -0700468 return 0;
469}
470
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000471int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
472 u8 *data)
473{
474 struct usbnet *dev = netdev_priv(net);
475 u16 *eeprom_buff;
476 int first_word, last_word;
477 int i;
478 int ret;
479
480 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
481 eeprom->len, eeprom->offset, eeprom->magic);
482
483 if (eeprom->len == 0)
484 return -EINVAL;
485
486 if (eeprom->magic != AX_EEPROM_MAGIC)
487 return -EINVAL;
488
489 first_word = eeprom->offset >> 1;
490 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
491
492 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
493 GFP_KERNEL);
494 if (!eeprom_buff)
495 return -ENOMEM;
496
497 /* align data to 16 bit boundaries, read the missing data from
498 the EEPROM */
499 if (eeprom->offset & 1) {
500 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
501 &(eeprom_buff[0]));
502 if (ret < 0) {
503 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
504 goto free;
505 }
506 }
507
508 if ((eeprom->offset + eeprom->len) & 1) {
509 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
510 &(eeprom_buff[last_word - first_word]));
511 if (ret < 0) {
512 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
513 goto free;
514 }
515 }
516
517 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
518
519 /* write data to EEPROM */
520 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL);
521 if (ret < 0) {
522 netdev_err(net, "Failed to enable EEPROM write\n");
523 goto free;
524 }
525 msleep(20);
526
527 for (i = first_word; i <= last_word; i++) {
528 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
529 i, eeprom_buff[i - first_word]);
530 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
531 eeprom_buff[i - first_word], 0, NULL);
532 if (ret < 0) {
533 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
534 i);
535 goto free;
536 }
537 msleep(20);
538 }
539
540 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL);
541 if (ret < 0) {
542 netdev_err(net, "Failed to disable EEPROM write\n");
543 goto free;
544 }
545
546 ret = 0;
547free:
548 kfree(eeprom_buff);
549 return ret;
550}
551
Christian Riesch607740b2012-07-13 05:26:30 +0000552void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
David Brownell2e55cc72005-08-31 09:53:10 -0700553{
554 /* Inherit standard device info */
555 usbnet_get_drvinfo(net, info);
Jiri Pirko7826d432013-01-06 00:44:26 +0000556 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
557 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
Christian Rieschceb02c92012-07-19 00:23:06 +0000558 info->eedump_len = AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700559}
560
Christian Riesch607740b2012-07-13 05:26:30 +0000561int asix_set_mac_address(struct net_device *net, void *p)
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000562{
563 struct usbnet *dev = netdev_priv(net);
564 struct asix_data *data = (struct asix_data *)&dev->data;
565 struct sockaddr *addr = p;
566
567 if (netif_running(net))
568 return -EBUSY;
569 if (!is_valid_ether_addr(addr->sa_data))
570 return -EADDRNOTAVAIL;
571
572 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
573
574 /* We use the 20 byte dev->data
575 * for our 6 byte mac buffer
576 * to avoid allocating memory that
577 * is tricky to free later */
578 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
579 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
580 data->mac_addr);
581
582 return 0;
583}