blob: 50a91d012bceaf0edccf16c73a3a2fd9d0a44b0e [file] [log] [blame]
Johannes Bergab69bde2013-06-17 22:44:02 +02001/*
2 * Copyright (c) 2013 Johannes Berg <johannes@sipsolutions.net>
3 *
4 * This file is free software: you may copy, redistribute and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation, either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This file is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * This file incorporates work covered by the following copyright and
18 * permission notice:
19 *
20 * Copyright (c) 2012 Qualcomm Atheros, Inc.
21 *
22 * Permission to use, copy, modify, and/or distribute this software for any
23 * purpose with or without fee is hereby granted, provided that the above
24 * copyright notice and this permission notice appear in all copies.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
27 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
28 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
29 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
30 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
31 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
32 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
33 */
34
35#include <linux/pci.h>
36#include <linux/ip.h>
37#include <linux/tcp.h>
38#include <linux/netdevice.h>
39#include <linux/etherdevice.h>
40#include <linux/ethtool.h>
41#include <linux/mdio.h>
42#include <linux/interrupt.h>
43#include <asm/byteorder.h>
44
45#include "alx.h"
46#include "reg.h"
47#include "hw.h"
48
49
50static int alx_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
51{
52 struct alx_priv *alx = netdev_priv(netdev);
53 struct alx_hw *hw = &alx->hw;
54
55 ecmd->supported = SUPPORTED_10baseT_Half |
56 SUPPORTED_10baseT_Full |
57 SUPPORTED_100baseT_Half |
58 SUPPORTED_100baseT_Full |
59 SUPPORTED_Autoneg |
60 SUPPORTED_TP |
61 SUPPORTED_Pause;
62 if (alx_hw_giga(hw))
63 ecmd->supported |= SUPPORTED_1000baseT_Full;
64
65 ecmd->advertising = ADVERTISED_TP;
66 if (hw->adv_cfg & ADVERTISED_Autoneg)
67 ecmd->advertising |= hw->adv_cfg;
68
69 ecmd->port = PORT_TP;
70 ecmd->phy_address = 0;
71 if (hw->adv_cfg & ADVERTISED_Autoneg)
72 ecmd->autoneg = AUTONEG_ENABLE;
73 else
74 ecmd->autoneg = AUTONEG_DISABLE;
75 ecmd->transceiver = XCVR_INTERNAL;
76
77 if (hw->flowctrl & ALX_FC_ANEG && hw->adv_cfg & ADVERTISED_Autoneg) {
78 if (hw->flowctrl & ALX_FC_RX) {
79 ecmd->advertising |= ADVERTISED_Pause;
80
81 if (!(hw->flowctrl & ALX_FC_TX))
82 ecmd->advertising |= ADVERTISED_Asym_Pause;
83 } else if (hw->flowctrl & ALX_FC_TX) {
84 ecmd->advertising |= ADVERTISED_Asym_Pause;
85 }
86 }
87
88 if (hw->link_speed != SPEED_UNKNOWN) {
89 ethtool_cmd_speed_set(ecmd,
90 hw->link_speed - hw->link_speed % 10);
91 ecmd->duplex = hw->link_speed % 10;
92 } else {
93 ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN);
94 ecmd->duplex = DUPLEX_UNKNOWN;
95 }
96
97 return 0;
98}
99
100static int alx_set_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
101{
102 struct alx_priv *alx = netdev_priv(netdev);
103 struct alx_hw *hw = &alx->hw;
104 u32 adv_cfg;
105
106 ASSERT_RTNL();
107
108 if (ecmd->autoneg == AUTONEG_ENABLE) {
109 if (ecmd->advertising & ADVERTISED_1000baseT_Half)
110 return -EINVAL;
111 adv_cfg = ecmd->advertising | ADVERTISED_Autoneg;
112 } else {
113 int speed = ethtool_cmd_speed(ecmd);
114
115 switch (speed + ecmd->duplex) {
116 case SPEED_10 + DUPLEX_HALF:
117 adv_cfg = ADVERTISED_10baseT_Half;
118 break;
119 case SPEED_10 + DUPLEX_FULL:
120 adv_cfg = ADVERTISED_10baseT_Full;
121 break;
122 case SPEED_100 + DUPLEX_HALF:
123 adv_cfg = ADVERTISED_100baseT_Half;
124 break;
125 case SPEED_100 + DUPLEX_FULL:
126 adv_cfg = ADVERTISED_100baseT_Full;
127 break;
128 default:
129 return -EINVAL;
130 }
131 }
132
133 hw->adv_cfg = adv_cfg;
134 return alx_setup_speed_duplex(hw, adv_cfg, hw->flowctrl);
135}
136
137static void alx_get_pauseparam(struct net_device *netdev,
138 struct ethtool_pauseparam *pause)
139{
140 struct alx_priv *alx = netdev_priv(netdev);
141 struct alx_hw *hw = &alx->hw;
142
143 if (hw->flowctrl & ALX_FC_ANEG &&
144 hw->adv_cfg & ADVERTISED_Autoneg)
145 pause->autoneg = AUTONEG_ENABLE;
146 else
147 pause->autoneg = AUTONEG_DISABLE;
148
149 if (hw->flowctrl & ALX_FC_TX)
150 pause->tx_pause = 1;
151 else
152 pause->tx_pause = 0;
153
154 if (hw->flowctrl & ALX_FC_RX)
155 pause->rx_pause = 1;
156 else
157 pause->rx_pause = 0;
158}
159
160
161static int alx_set_pauseparam(struct net_device *netdev,
162 struct ethtool_pauseparam *pause)
163{
164 struct alx_priv *alx = netdev_priv(netdev);
165 struct alx_hw *hw = &alx->hw;
166 int err = 0;
167 bool reconfig_phy = false;
168 u8 fc = 0;
169
170 if (pause->tx_pause)
171 fc |= ALX_FC_TX;
172 if (pause->rx_pause)
173 fc |= ALX_FC_RX;
174 if (pause->autoneg)
175 fc |= ALX_FC_ANEG;
176
177 ASSERT_RTNL();
178
179 /* restart auto-neg for auto-mode */
180 if (hw->adv_cfg & ADVERTISED_Autoneg) {
181 if (!((fc ^ hw->flowctrl) & ALX_FC_ANEG))
182 reconfig_phy = true;
183 if (fc & hw->flowctrl & ALX_FC_ANEG &&
184 (fc ^ hw->flowctrl) & (ALX_FC_RX | ALX_FC_TX))
185 reconfig_phy = true;
186 }
187
188 if (reconfig_phy) {
189 err = alx_setup_speed_duplex(hw, hw->adv_cfg, fc);
Johannes Bergef0cc4b2013-06-29 19:23:13 +0200190 if (err)
191 return err;
Johannes Bergab69bde2013-06-17 22:44:02 +0200192 }
193
194 /* flow control on mac */
195 if ((fc ^ hw->flowctrl) & (ALX_FC_RX | ALX_FC_TX))
196 alx_cfg_mac_flowcontrol(hw, fc);
197
198 hw->flowctrl = fc;
199
200 return 0;
201}
202
203static u32 alx_get_msglevel(struct net_device *netdev)
204{
205 struct alx_priv *alx = netdev_priv(netdev);
206
207 return alx->msg_enable;
208}
209
210static void alx_set_msglevel(struct net_device *netdev, u32 data)
211{
212 struct alx_priv *alx = netdev_priv(netdev);
213
214 alx->msg_enable = data;
215}
216
217static void alx_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
218{
219 struct alx_priv *alx = netdev_priv(netdev);
220 struct alx_hw *hw = &alx->hw;
221
222 wol->supported = WAKE_MAGIC | WAKE_PHY;
223 wol->wolopts = 0;
224
225 if (hw->sleep_ctrl & ALX_SLEEP_WOL_MAGIC)
226 wol->wolopts |= WAKE_MAGIC;
227 if (hw->sleep_ctrl & ALX_SLEEP_WOL_PHY)
228 wol->wolopts |= WAKE_PHY;
229}
230
231static int alx_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
232{
233 struct alx_priv *alx = netdev_priv(netdev);
234 struct alx_hw *hw = &alx->hw;
235
236 if (wol->wolopts & (WAKE_ARP | WAKE_MAGICSECURE |
237 WAKE_UCAST | WAKE_BCAST | WAKE_MCAST))
238 return -EOPNOTSUPP;
239
240 hw->sleep_ctrl = 0;
241
242 if (wol->wolopts & WAKE_MAGIC)
243 hw->sleep_ctrl |= ALX_SLEEP_WOL_MAGIC;
244 if (wol->wolopts & WAKE_PHY)
245 hw->sleep_ctrl |= ALX_SLEEP_WOL_PHY;
246
247 device_set_wakeup_enable(&alx->hw.pdev->dev, hw->sleep_ctrl);
248
249 return 0;
250}
251
252static void alx_get_drvinfo(struct net_device *netdev,
253 struct ethtool_drvinfo *drvinfo)
254{
255 struct alx_priv *alx = netdev_priv(netdev);
256
257 strlcpy(drvinfo->driver, alx_drv_name, sizeof(drvinfo->driver));
258 strlcpy(drvinfo->bus_info, pci_name(alx->hw.pdev),
259 sizeof(drvinfo->bus_info));
260}
261
262const struct ethtool_ops alx_ethtool_ops = {
263 .get_settings = alx_get_settings,
264 .set_settings = alx_set_settings,
265 .get_pauseparam = alx_get_pauseparam,
266 .set_pauseparam = alx_set_pauseparam,
267 .get_drvinfo = alx_get_drvinfo,
268 .get_msglevel = alx_get_msglevel,
269 .set_msglevel = alx_set_msglevel,
270 .get_wol = alx_get_wol,
271 .set_wol = alx_set_wol,
272 .get_link = ethtool_op_get_link,
273};