blob: 3af5a336a5afd40c60b07935b559c18b7f065248 [file] [log] [blame]
Jie Yang43250dd2009-02-18 17:24:15 -08001/*
2 * Copyright(c) 2009 - 2009 Atheros Corporation. All rights reserved.
3 *
4 * Derived from Intel e1000 driver
5 * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation; either version 2 of the License, or (at your option)
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc., 59
19 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 *
21 */
22
23#include <linux/netdevice.h>
24#include <linux/ethtool.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Jie Yang43250dd2009-02-18 17:24:15 -080026
27#include "atl1c.h"
28
29static int atl1c_get_settings(struct net_device *netdev,
30 struct ethtool_cmd *ecmd)
31{
32 struct atl1c_adapter *adapter = netdev_priv(netdev);
33 struct atl1c_hw *hw = &adapter->hw;
34
35 ecmd->supported = (SUPPORTED_10baseT_Half |
36 SUPPORTED_10baseT_Full |
37 SUPPORTED_100baseT_Half |
38 SUPPORTED_100baseT_Full |
39 SUPPORTED_Autoneg |
40 SUPPORTED_TP);
Luis R. Rodriguez496c1852010-02-16 15:16:45 -080041 if (hw->link_cap_flags & ATL1C_LINK_CAP_1000M)
Jie Yang43250dd2009-02-18 17:24:15 -080042 ecmd->supported |= SUPPORTED_1000baseT_Full;
43
44 ecmd->advertising = ADVERTISED_TP;
45
46 ecmd->advertising |= hw->autoneg_advertised;
47
48 ecmd->port = PORT_TP;
49 ecmd->phy_address = 0;
50 ecmd->transceiver = XCVR_INTERNAL;
51
52 if (adapter->link_speed != SPEED_0) {
53 ecmd->speed = adapter->link_speed;
54 if (adapter->link_duplex == FULL_DUPLEX)
55 ecmd->duplex = DUPLEX_FULL;
56 else
57 ecmd->duplex = DUPLEX_HALF;
58 } else {
59 ecmd->speed = -1;
60 ecmd->duplex = -1;
61 }
62
63 ecmd->autoneg = AUTONEG_ENABLE;
64 return 0;
65}
66
67static int atl1c_set_settings(struct net_device *netdev,
68 struct ethtool_cmd *ecmd)
69{
70 struct atl1c_adapter *adapter = netdev_priv(netdev);
71 struct atl1c_hw *hw = &adapter->hw;
72 u16 autoneg_advertised;
73
74 while (test_and_set_bit(__AT_RESETTING, &adapter->flags))
75 msleep(1);
76
77 if (ecmd->autoneg == AUTONEG_ENABLE) {
78 autoneg_advertised = ADVERTISED_Autoneg;
79 } else {
80 if (ecmd->speed == SPEED_1000) {
81 if (ecmd->duplex != DUPLEX_FULL) {
82 if (netif_msg_link(adapter))
83 dev_warn(&adapter->pdev->dev,
84 "1000M half is invalid\n");
85 clear_bit(__AT_RESETTING, &adapter->flags);
86 return -EINVAL;
87 }
88 autoneg_advertised = ADVERTISED_1000baseT_Full;
89 } else if (ecmd->speed == SPEED_100) {
90 if (ecmd->duplex == DUPLEX_FULL)
91 autoneg_advertised = ADVERTISED_100baseT_Full;
92 else
93 autoneg_advertised = ADVERTISED_100baseT_Half;
94 } else {
95 if (ecmd->duplex == DUPLEX_FULL)
96 autoneg_advertised = ADVERTISED_10baseT_Full;
97 else
98 autoneg_advertised = ADVERTISED_10baseT_Half;
99 }
100 }
101
102 if (hw->autoneg_advertised != autoneg_advertised) {
103 hw->autoneg_advertised = autoneg_advertised;
104 if (atl1c_restart_autoneg(hw) != 0) {
105 if (netif_msg_link(adapter))
106 dev_warn(&adapter->pdev->dev,
107 "ethtool speed/duplex setting failed\n");
108 clear_bit(__AT_RESETTING, &adapter->flags);
109 return -EINVAL;
110 }
111 }
112 clear_bit(__AT_RESETTING, &adapter->flags);
113 return 0;
114}
115
Jie Yang43250dd2009-02-18 17:24:15 -0800116static u32 atl1c_get_msglevel(struct net_device *netdev)
117{
118 struct atl1c_adapter *adapter = netdev_priv(netdev);
119 return adapter->msg_enable;
120}
121
122static void atl1c_set_msglevel(struct net_device *netdev, u32 data)
123{
124 struct atl1c_adapter *adapter = netdev_priv(netdev);
125 adapter->msg_enable = data;
126}
127
128static int atl1c_get_regs_len(struct net_device *netdev)
129{
130 return AT_REGS_LEN;
131}
132
133static void atl1c_get_regs(struct net_device *netdev,
134 struct ethtool_regs *regs, void *p)
135{
136 struct atl1c_adapter *adapter = netdev_priv(netdev);
137 struct atl1c_hw *hw = &adapter->hw;
138 u32 *regs_buff = p;
139 u16 phy_data;
140
141 memset(p, 0, AT_REGS_LEN);
142
143 regs->version = 0;
144 AT_READ_REG(hw, REG_VPD_CAP, p++);
145 AT_READ_REG(hw, REG_PM_CTRL, p++);
146 AT_READ_REG(hw, REG_MAC_HALF_DUPLX_CTRL, p++);
147 AT_READ_REG(hw, REG_TWSI_CTRL, p++);
148 AT_READ_REG(hw, REG_PCIE_DEV_MISC_CTRL, p++);
149 AT_READ_REG(hw, REG_MASTER_CTRL, p++);
150 AT_READ_REG(hw, REG_MANUAL_TIMER_INIT, p++);
151 AT_READ_REG(hw, REG_IRQ_MODRT_TIMER_INIT, p++);
152 AT_READ_REG(hw, REG_GPHY_CTRL, p++);
153 AT_READ_REG(hw, REG_LINK_CTRL, p++);
154 AT_READ_REG(hw, REG_IDLE_STATUS, p++);
155 AT_READ_REG(hw, REG_MDIO_CTRL, p++);
156 AT_READ_REG(hw, REG_SERDES_LOCK, p++);
157 AT_READ_REG(hw, REG_MAC_CTRL, p++);
158 AT_READ_REG(hw, REG_MAC_IPG_IFG, p++);
159 AT_READ_REG(hw, REG_MAC_STA_ADDR, p++);
160 AT_READ_REG(hw, REG_MAC_STA_ADDR+4, p++);
161 AT_READ_REG(hw, REG_RX_HASH_TABLE, p++);
162 AT_READ_REG(hw, REG_RX_HASH_TABLE+4, p++);
163 AT_READ_REG(hw, REG_RXQ_CTRL, p++);
164 AT_READ_REG(hw, REG_TXQ_CTRL, p++);
165 AT_READ_REG(hw, REG_MTU, p++);
166 AT_READ_REG(hw, REG_WOL_CTRL, p++);
167
168 atl1c_read_phy_reg(hw, MII_BMCR, &phy_data);
169 regs_buff[73] = (u32) phy_data;
170 atl1c_read_phy_reg(hw, MII_BMSR, &phy_data);
171 regs_buff[74] = (u32) phy_data;
172}
173
174static int atl1c_get_eeprom_len(struct net_device *netdev)
175{
176 struct atl1c_adapter *adapter = netdev_priv(netdev);
177
178 if (atl1c_check_eeprom_exist(&adapter->hw))
179 return AT_EEPROM_LEN;
180 else
181 return 0;
182}
183
184static int atl1c_get_eeprom(struct net_device *netdev,
185 struct ethtool_eeprom *eeprom, u8 *bytes)
186{
187 struct atl1c_adapter *adapter = netdev_priv(netdev);
188 struct atl1c_hw *hw = &adapter->hw;
189 u32 *eeprom_buff;
190 int first_dword, last_dword;
191 int ret_val = 0;
192 int i;
193
194 if (eeprom->len == 0)
195 return -EINVAL;
196
197 if (!atl1c_check_eeprom_exist(hw)) /* not exist */
198 return -EINVAL;
199
200 eeprom->magic = adapter->pdev->vendor |
201 (adapter->pdev->device << 16);
202
203 first_dword = eeprom->offset >> 2;
204 last_dword = (eeprom->offset + eeprom->len - 1) >> 2;
205
206 eeprom_buff = kmalloc(sizeof(u32) *
207 (last_dword - first_dword + 1), GFP_KERNEL);
208 if (eeprom_buff == NULL)
209 return -ENOMEM;
210
211 for (i = first_dword; i < last_dword; i++) {
212 if (!atl1c_read_eeprom(hw, i * 4, &(eeprom_buff[i-first_dword]))) {
213 kfree(eeprom_buff);
214 return -EIO;
215 }
216 }
217
218 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 3),
219 eeprom->len);
220 kfree(eeprom_buff);
221
222 return ret_val;
223 return 0;
224}
225
226static void atl1c_get_drvinfo(struct net_device *netdev,
227 struct ethtool_drvinfo *drvinfo)
228{
229 struct atl1c_adapter *adapter = netdev_priv(netdev);
230
Roel Kluin082ba882009-08-06 13:06:56 +0000231 strlcpy(drvinfo->driver, atl1c_driver_name, sizeof(drvinfo->driver));
232 strlcpy(drvinfo->version, atl1c_driver_version,
Jie Yang43250dd2009-02-18 17:24:15 -0800233 sizeof(drvinfo->version));
Roel Kluin082ba882009-08-06 13:06:56 +0000234 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
235 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
Jie Yang43250dd2009-02-18 17:24:15 -0800236 sizeof(drvinfo->bus_info));
237 drvinfo->n_stats = 0;
238 drvinfo->testinfo_len = 0;
239 drvinfo->regdump_len = atl1c_get_regs_len(netdev);
240 drvinfo->eedump_len = atl1c_get_eeprom_len(netdev);
241}
242
243static void atl1c_get_wol(struct net_device *netdev,
244 struct ethtool_wolinfo *wol)
245{
246 struct atl1c_adapter *adapter = netdev_priv(netdev);
247
248 wol->supported = WAKE_MAGIC | WAKE_PHY;
249 wol->wolopts = 0;
250
251 if (adapter->wol & AT_WUFC_EX)
252 wol->wolopts |= WAKE_UCAST;
253 if (adapter->wol & AT_WUFC_MC)
254 wol->wolopts |= WAKE_MCAST;
255 if (adapter->wol & AT_WUFC_BC)
256 wol->wolopts |= WAKE_BCAST;
257 if (adapter->wol & AT_WUFC_MAG)
258 wol->wolopts |= WAKE_MAGIC;
259 if (adapter->wol & AT_WUFC_LNKC)
260 wol->wolopts |= WAKE_PHY;
Jie Yang43250dd2009-02-18 17:24:15 -0800261}
262
263static int atl1c_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
264{
265 struct atl1c_adapter *adapter = netdev_priv(netdev);
266
267 if (wol->wolopts & (WAKE_ARP | WAKE_MAGICSECURE |
Roel Kluin0ed586d2009-06-10 09:55:03 +0000268 WAKE_UCAST | WAKE_BCAST | WAKE_MCAST))
Jie Yang43250dd2009-02-18 17:24:15 -0800269 return -EOPNOTSUPP;
270 /* these settings will always override what we currently have */
271 adapter->wol = 0;
272
273 if (wol->wolopts & WAKE_MAGIC)
274 adapter->wol |= AT_WUFC_MAG;
275 if (wol->wolopts & WAKE_PHY)
276 adapter->wol |= AT_WUFC_LNKC;
277
Brandon Philipsd8146bb2009-06-24 14:09:14 +0000278 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
279
Jie Yang43250dd2009-02-18 17:24:15 -0800280 return 0;
281}
282
283static int atl1c_nway_reset(struct net_device *netdev)
284{
285 struct atl1c_adapter *adapter = netdev_priv(netdev);
286 if (netif_running(netdev))
287 atl1c_reinit_locked(adapter);
288 return 0;
289}
290
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700291static const struct ethtool_ops atl1c_ethtool_ops = {
Jie Yang43250dd2009-02-18 17:24:15 -0800292 .get_settings = atl1c_get_settings,
293 .set_settings = atl1c_set_settings,
294 .get_drvinfo = atl1c_get_drvinfo,
295 .get_regs_len = atl1c_get_regs_len,
296 .get_regs = atl1c_get_regs,
297 .get_wol = atl1c_get_wol,
298 .set_wol = atl1c_set_wol,
299 .get_msglevel = atl1c_get_msglevel,
300 .set_msglevel = atl1c_set_msglevel,
301 .nway_reset = atl1c_nway_reset,
302 .get_link = ethtool_op_get_link,
303 .get_eeprom_len = atl1c_get_eeprom_len,
304 .get_eeprom = atl1c_get_eeprom,
Jie Yang43250dd2009-02-18 17:24:15 -0800305};
306
307void atl1c_set_ethtool_ops(struct net_device *netdev)
308{
309 SET_ETHTOOL_OPS(netdev, &atl1c_ethtool_ops);
310}