blob: 079069a060a62fdb42cb9dff9acbcd55148277b8 [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;
David Hollis48b1be62006-03-28 20:15:42 -050057
Lucas Stach8b5b6f52013-01-16 04:24:07 +000058 while (offset + sizeof(u16) <= skb->len) {
59 u16 remaining = 0;
60 unsigned char *data;
David Hollis48b1be62006-03-28 20:15:42 -050061
Lucas Stach8b5b6f52013-01-16 04:24:07 +000062 if (!rx->size) {
63 if ((skb->len - offset == sizeof(u16)) ||
64 rx->split_head) {
65 if(!rx->split_head) {
66 rx->header = get_unaligned_le16(
67 skb->data + offset);
68 rx->split_head = true;
69 offset += sizeof(u16);
70 break;
71 } else {
72 rx->header |= (get_unaligned_le16(
73 skb->data + offset)
74 << 16);
75 rx->split_head = false;
76 offset += sizeof(u16);
77 }
78 } else {
79 rx->header = get_unaligned_le32(skb->data +
80 offset);
81 offset += sizeof(u32);
82 }
Marek Vasutbc466e62011-07-26 16:44:46 +000083
Lucas Stach8b5b6f52013-01-16 04:24:07 +000084 /* get the packet length */
85 rx->size = (u16) (rx->header & 0x7ff);
86 if (rx->size != ((~rx->header >> 16) & 0x7ff)) {
87 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length 0x%x, offset %d\n",
88 rx->header, offset);
89 rx->size = 0;
90 return 0;
91 }
92 rx->ax_skb = netdev_alloc_skb_ip_align(dev->net,
93 rx->size);
David B. Robinsf6194bc2015-09-30 16:20:04 -040094 if (!rx->ax_skb) {
95 rx->size = 0;
Lucas Stach8b5b6f52013-01-16 04:24:07 +000096 return 0;
David B. Robinsf6194bc2015-09-30 16:20:04 -040097 }
Neil Jones3f78d1f2010-05-17 17:18:28 -070098 }
99
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000100 if (rx->size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) {
Joe Perches60b86752010-02-17 10:30:23 +0000101 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000102 rx->size);
103 kfree_skb(rx->ax_skb);
holger@eitzenberger.orgc5060ce2013-05-03 00:02:20 +0000104 rx->ax_skb = NULL;
105 rx->size = 0U;
106
David Hollis933a27d2006-07-29 10:12:50 -0400107 return 0;
108 }
David Hollis933a27d2006-07-29 10:12:50 -0400109
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000110 if (rx->size > skb->len - offset) {
111 remaining = rx->size - (skb->len - offset);
112 rx->size = skb->len - offset;
113 }
David Hollis933a27d2006-07-29 10:12:50 -0400114
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000115 data = skb_put(rx->ax_skb, rx->size);
116 memcpy(data, skb->data + offset, rx->size);
117 if (!remaining)
118 usbnet_skb_return(dev, rx->ax_skb);
119
120 offset += (rx->size + 1) & 0xfffe;
121 rx->size = remaining;
David Hollis933a27d2006-07-29 10:12:50 -0400122 }
123
Eric Dumazeta9e0aca2012-03-14 20:18:32 +0000124 if (skb->len != offset) {
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000125 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d, %d\n",
126 skb->len, offset);
David Hollis933a27d2006-07-29 10:12:50 -0400127 return 0;
128 }
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000129
David Hollis933a27d2006-07-29 10:12:50 -0400130 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500131}
132
Lucas Stach8b5b6f52013-01-16 04:24:07 +0000133int asix_rx_fixup_common(struct usbnet *dev, struct sk_buff *skb)
134{
135 struct asix_common_private *dp = dev->driver_priv;
136 struct asix_rx_fixup_info *rx = &dp->rx_fixup_info;
137
138 return asix_rx_fixup_internal(dev, skb, rx);
139}
140
Christian Riesch607740b2012-07-13 05:26:30 +0000141struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
142 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500143{
David Hollis933a27d2006-07-29 10:12:50 -0400144 int padlen;
145 int headroom = skb_headroom(skb);
146 int tailroom = skb_tailroom(skb);
147 u32 packet_len;
148 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500149
Ingo van Lil2a580942012-04-23 22:05:38 +0000150 padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500151
Eric Dumazet95162d62012-07-05 04:31:01 +0000152 /* We need to push 4 bytes in front of frame (packet_len)
153 * and maybe add 4 bytes after the end (if padlen is 4)
154 *
155 * Avoid skb_copy_expand() expensive call, using following rules :
156 * - We are allowed to push 4 bytes in headroom if skb_header_cloned()
157 * is false (and if we have 4 bytes of headroom)
158 * - We are allowed to put 4 bytes at tail if skb_cloned()
159 * is false (and if we have 4 bytes of tailroom)
160 *
161 * TCP packets for example are cloned, but skb_header_release()
162 * was called in tcp stack, allowing us to use headroom for our needs.
163 */
164 if (!skb_header_cloned(skb) &&
165 !(padlen && skb_cloned(skb)) &&
166 headroom + tailroom >= 4 + padlen) {
167 /* following should not happen, but better be safe */
168 if (headroom < 4 ||
169 tailroom < padlen) {
David Hollis933a27d2006-07-29 10:12:50 -0400170 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700171 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400172 }
173 } else {
174 struct sk_buff *skb2;
Eric Dumazet95162d62012-07-05 04:31:01 +0000175
David Hollis933a27d2006-07-29 10:12:50 -0400176 skb2 = skb_copy_expand(skb, 4, padlen, flags);
177 dev_kfree_skb_any(skb);
178 skb = skb2;
179 if (!skb)
180 return NULL;
181 }
182
Eric Dumazet95162d62012-07-05 04:31:01 +0000183 packet_len = ((skb->len ^ 0x0000ffff) << 16) + skb->len;
David Hollis933a27d2006-07-29 10:12:50 -0400184 skb_push(skb, 4);
David Hollis57e4f042007-02-05 12:03:03 -0500185 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300186 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400187
Ingo van Lil2a580942012-04-23 22:05:38 +0000188 if (padlen) {
David Hollis57e4f042007-02-05 12:03:03 -0500189 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700190 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400191 skb_put(skb, sizeof(padbytes));
192 }
Ben Hutchings1e9e39f2015-02-26 19:34:37 +0000193
Ben Hutchings7a1e8902015-03-25 21:41:33 +0100194 usbnet_set_skb_tx_stats(skb, 1, 0);
David Hollis933a27d2006-07-29 10:12:50 -0400195 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500196}
197
Christian Riesch607740b2012-07-13 05:26:30 +0000198int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700199{
David Hollis933a27d2006-07-29 10:12:50 -0400200 int ret;
201 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
202 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000203 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400204 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700205}
206
Christian Riesch607740b2012-07-13 05:26:30 +0000207int asix_set_hw_mii(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400208{
209 int ret;
210 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
211 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000212 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400213 return ret;
214}
215
Christian Riesch16626b02012-07-13 05:26:31 +0000216int asix_read_phy_addr(struct usbnet *dev, int internal)
David Hollis933a27d2006-07-29 10:12:50 -0400217{
Christian Riesch16626b02012-07-13 05:26:31 +0000218 int offset = (internal ? 1 : 0);
Al Viro51bf2972007-12-22 17:42:36 +0000219 u8 buf[2];
220 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400221
Joe Perches60b86752010-02-17 10:30:23 +0000222 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400223
Al Viro51bf2972007-12-22 17:42:36 +0000224 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000225 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000226 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400227 }
Joe Perches60b86752010-02-17 10:30:23 +0000228 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
229 *((__le16 *)buf));
Christian Riesch16626b02012-07-13 05:26:31 +0000230 ret = buf[offset];
Al Viro51bf2972007-12-22 17:42:36 +0000231
232out:
David Hollis933a27d2006-07-29 10:12:50 -0400233 return ret;
234}
235
Christian Riesch16626b02012-07-13 05:26:31 +0000236int asix_get_phy_addr(struct usbnet *dev)
237{
238 /* return the address of the internal phy */
239 return asix_read_phy_addr(dev, 1);
240}
241
242
Christian Riesch607740b2012-07-13 05:26:30 +0000243int asix_sw_reset(struct usbnet *dev, u8 flags)
David Hollis933a27d2006-07-29 10:12:50 -0400244{
245 int ret;
246
247 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
248 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000249 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400250
251 return ret;
252}
253
Christian Riesch607740b2012-07-13 05:26:30 +0000254u16 asix_read_rx_ctl(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400255{
Al Viro51bf2972007-12-22 17:42:36 +0000256 __le16 v;
257 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400258
Al Viro51bf2972007-12-22 17:42:36 +0000259 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000260 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000261 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400262 }
Al Viro51bf2972007-12-22 17:42:36 +0000263 ret = le16_to_cpu(v);
264out:
David Hollis933a27d2006-07-29 10:12:50 -0400265 return ret;
266}
267
Christian Riesch607740b2012-07-13 05:26:30 +0000268int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400269{
270 int ret;
271
Joe Perches60b86752010-02-17 10:30:23 +0000272 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400273 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
274 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000275 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
276 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400277
278 return ret;
279}
280
Christian Riesch607740b2012-07-13 05:26:30 +0000281u16 asix_read_medium_status(struct usbnet *dev)
David Hollis933a27d2006-07-29 10:12:50 -0400282{
Al Viro51bf2972007-12-22 17:42:36 +0000283 __le16 v;
284 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400285
Al Viro51bf2972007-12-22 17:42:36 +0000286 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000287 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
288 ret);
Grant Grundler83e1b912011-10-04 09:55:18 +0000289 return ret; /* TODO: callers not checking for error ret */
David Hollis933a27d2006-07-29 10:12:50 -0400290 }
Grant Grundler83e1b912011-10-04 09:55:18 +0000291
292 return le16_to_cpu(v);
293
David Hollis933a27d2006-07-29 10:12:50 -0400294}
295
Christian Riesch607740b2012-07-13 05:26:30 +0000296int asix_write_medium_mode(struct usbnet *dev, u16 mode)
David Hollis933a27d2006-07-29 10:12:50 -0400297{
298 int ret;
299
Joe Perches60b86752010-02-17 10:30:23 +0000300 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400301 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
302 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000303 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
304 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400305
306 return ret;
307}
308
Christian Riesch607740b2012-07-13 05:26:30 +0000309int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
David Hollis933a27d2006-07-29 10:12:50 -0400310{
311 int ret;
312
Joe Perches60b86752010-02-17 10:30:23 +0000313 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400314 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
315 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000316 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
317 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400318
319 if (sleep)
320 msleep(sleep);
321
322 return ret;
323}
324
325/*
326 * AX88772 & AX88178 have a 16-bit RX_CTL value
327 */
Christian Riesch607740b2012-07-13 05:26:30 +0000328void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700329{
330 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500331 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400332 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700333
334 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400335 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000336 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000337 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400338 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000339 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700340 /* just broadcast and directed */
341 } else {
342 /* We use the 20 byte dev->data
343 * for our 8 byte filter buffer
344 * to avoid allocating memory that
345 * is tricky to free later */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000346 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700347 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700348
349 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
350
351 /* Build the multicast hash filter. */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000352 netdev_for_each_mc_addr(ha, net) {
353 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700354 data->multi_filter[crc_bits >> 3] |=
355 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700356 }
357
David Hollis48b1be62006-03-28 20:15:42 -0500358 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700359 AX_MCAST_FILTER_SIZE, data->multi_filter);
360
David Hollis933a27d2006-07-29 10:12:50 -0400361 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700362 }
363
David Hollis48b1be62006-03-28 20:15:42 -0500364 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700365}
366
Christian Riesch607740b2012-07-13 05:26:30 +0000367int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700368{
369 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000370 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700371
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200372 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500373 asix_set_sw_mii(dev);
374 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000375 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500376 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200377 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700378
Joe Perches60b86752010-02-17 10:30:23 +0000379 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
380 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700381
Al Viro51bf2972007-12-22 17:42:36 +0000382 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700383}
384
Christian Riesch607740b2012-07-13 05:26:30 +0000385void asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700386{
387 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000388 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700389
Joe Perches60b86752010-02-17 10:30:23 +0000390 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
391 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200392 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500393 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000394 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500395 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200396 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700397}
398
Christian Riesch607740b2012-07-13 05:26:30 +0000399void asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700400{
401 struct usbnet *dev = netdev_priv(net);
402 u8 opt;
403
David Hollis48b1be62006-03-28 20:15:42 -0500404 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700405 wolinfo->supported = 0;
406 wolinfo->wolopts = 0;
407 return;
408 }
409 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
410 wolinfo->wolopts = 0;
allanf87ce5b2011-12-22 20:38:51 +0000411 if (opt & AX_MONITOR_LINK)
412 wolinfo->wolopts |= WAKE_PHY;
413 if (opt & AX_MONITOR_MAGIC)
414 wolinfo->wolopts |= WAKE_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700415}
416
Christian Riesch607740b2012-07-13 05:26:30 +0000417int asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700418{
419 struct usbnet *dev = netdev_priv(net);
420 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700421
422 if (wolinfo->wolopts & WAKE_PHY)
423 opt |= AX_MONITOR_LINK;
424 if (wolinfo->wolopts & WAKE_MAGIC)
425 opt |= AX_MONITOR_MAGIC;
David Brownell2e55cc72005-08-31 09:53:10 -0700426
David Hollis48b1be62006-03-28 20:15:42 -0500427 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000428 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700429 return -EINVAL;
430
431 return 0;
432}
433
Christian Riesch607740b2012-07-13 05:26:30 +0000434int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700435{
Christian Rieschceb02c92012-07-19 00:23:06 +0000436 return AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700437}
438
Christian Riesch607740b2012-07-13 05:26:30 +0000439int asix_get_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
440 u8 *data)
David Brownell2e55cc72005-08-31 09:53:10 -0700441{
442 struct usbnet *dev = netdev_priv(net);
Christian Rieschceb02c92012-07-19 00:23:06 +0000443 u16 *eeprom_buff;
444 int first_word, last_word;
David Brownell2e55cc72005-08-31 09:53:10 -0700445 int i;
446
Christian Rieschceb02c92012-07-19 00:23:06 +0000447 if (eeprom->len == 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700448 return -EINVAL;
449
450 eeprom->magic = AX_EEPROM_MAGIC;
451
Christian Rieschceb02c92012-07-19 00:23:06 +0000452 first_word = eeprom->offset >> 1;
453 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
454
455 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
456 GFP_KERNEL);
457 if (!eeprom_buff)
458 return -ENOMEM;
459
David Brownell2e55cc72005-08-31 09:53:10 -0700460 /* ax8817x returns 2 bytes from eeprom on read */
Christian Rieschceb02c92012-07-19 00:23:06 +0000461 for (i = first_word; i <= last_word; i++) {
462 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM, i, 0, 2,
463 &(eeprom_buff[i - first_word])) < 0) {
464 kfree(eeprom_buff);
465 return -EIO;
466 }
David Brownell2e55cc72005-08-31 09:53:10 -0700467 }
Christian Rieschceb02c92012-07-19 00:23:06 +0000468
469 memcpy(data, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
470 kfree(eeprom_buff);
David Brownell2e55cc72005-08-31 09:53:10 -0700471 return 0;
472}
473
Christian Rieschcb7b24c2012-07-19 00:23:07 +0000474int asix_set_eeprom(struct net_device *net, struct ethtool_eeprom *eeprom,
475 u8 *data)
476{
477 struct usbnet *dev = netdev_priv(net);
478 u16 *eeprom_buff;
479 int first_word, last_word;
480 int i;
481 int ret;
482
483 netdev_dbg(net, "write EEPROM len %d, offset %d, magic 0x%x\n",
484 eeprom->len, eeprom->offset, eeprom->magic);
485
486 if (eeprom->len == 0)
487 return -EINVAL;
488
489 if (eeprom->magic != AX_EEPROM_MAGIC)
490 return -EINVAL;
491
492 first_word = eeprom->offset >> 1;
493 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
494
495 eeprom_buff = kmalloc(sizeof(u16) * (last_word - first_word + 1),
496 GFP_KERNEL);
497 if (!eeprom_buff)
498 return -ENOMEM;
499
500 /* align data to 16 bit boundaries, read the missing data from
501 the EEPROM */
502 if (eeprom->offset & 1) {
503 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, first_word, 0, 2,
504 &(eeprom_buff[0]));
505 if (ret < 0) {
506 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", first_word);
507 goto free;
508 }
509 }
510
511 if ((eeprom->offset + eeprom->len) & 1) {
512 ret = asix_read_cmd(dev, AX_CMD_READ_EEPROM, last_word, 0, 2,
513 &(eeprom_buff[last_word - first_word]));
514 if (ret < 0) {
515 netdev_err(net, "Failed to read EEPROM at offset 0x%02x.\n", last_word);
516 goto free;
517 }
518 }
519
520 memcpy((u8 *)eeprom_buff + (eeprom->offset & 1), data, eeprom->len);
521
522 /* write data to EEPROM */
523 ret = asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0x0000, 0, 0, NULL);
524 if (ret < 0) {
525 netdev_err(net, "Failed to enable EEPROM write\n");
526 goto free;
527 }
528 msleep(20);
529
530 for (i = first_word; i <= last_word; i++) {
531 netdev_dbg(net, "write to EEPROM at offset 0x%02x, data 0x%04x\n",
532 i, eeprom_buff[i - first_word]);
533 ret = asix_write_cmd(dev, AX_CMD_WRITE_EEPROM, i,
534 eeprom_buff[i - first_word], 0, NULL);
535 if (ret < 0) {
536 netdev_err(net, "Failed to write EEPROM at offset 0x%02x.\n",
537 i);
538 goto free;
539 }
540 msleep(20);
541 }
542
543 ret = asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0x0000, 0, 0, NULL);
544 if (ret < 0) {
545 netdev_err(net, "Failed to disable EEPROM write\n");
546 goto free;
547 }
548
549 ret = 0;
550free:
551 kfree(eeprom_buff);
552 return ret;
553}
554
Christian Riesch607740b2012-07-13 05:26:30 +0000555void asix_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
David Brownell2e55cc72005-08-31 09:53:10 -0700556{
557 /* Inherit standard device info */
558 usbnet_get_drvinfo(net, info);
Jiri Pirko7826d432013-01-06 00:44:26 +0000559 strlcpy(info->driver, DRIVER_NAME, sizeof(info->driver));
560 strlcpy(info->version, DRIVER_VERSION, sizeof(info->version));
Christian Rieschceb02c92012-07-19 00:23:06 +0000561 info->eedump_len = AX_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700562}
563
Christian Riesch607740b2012-07-13 05:26:30 +0000564int asix_set_mac_address(struct net_device *net, void *p)
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000565{
566 struct usbnet *dev = netdev_priv(net);
567 struct asix_data *data = (struct asix_data *)&dev->data;
568 struct sockaddr *addr = p;
569
570 if (netif_running(net))
571 return -EBUSY;
572 if (!is_valid_ether_addr(addr->sa_data))
573 return -EADDRNOTAVAIL;
574
575 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
576
577 /* We use the 20 byte dev->data
578 * for our 6 byte mac buffer
579 * to avoid allocating memory that
580 * is tricky to free later */
581 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
582 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
583 data->mac_addr);
584
585 return 0;
586}