blob: d372d4235c810494276c757ac798b024111a31c8 [file] [log] [blame]
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -07001/* Applied Micro X-Gene SoC Ethernet Driver
2 *
3 * Copyright (c) 2014, Applied Micro Circuits Corporation
4 * Authors: Iyappan Subramanian <isubramanian@apm.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <linux/ethtool.h>
21#include "xgene_enet_main.h"
22
23struct xgene_gstrings_stats {
24 char name[ETH_GSTRING_LEN];
25 int offset;
26};
27
28#define XGENE_STAT(m) { #m, offsetof(struct xgene_enet_pdata, stats.m) }
29
30static const struct xgene_gstrings_stats gstrings_stats[] = {
31 XGENE_STAT(rx_packets),
32 XGENE_STAT(tx_packets),
33 XGENE_STAT(rx_bytes),
34 XGENE_STAT(tx_bytes),
35 XGENE_STAT(rx_errors),
36 XGENE_STAT(tx_errors),
37 XGENE_STAT(rx_length_errors),
38 XGENE_STAT(rx_crc_errors),
39 XGENE_STAT(rx_frame_errors),
40 XGENE_STAT(rx_fifo_errors)
41};
42
43#define XGENE_STATS_LEN ARRAY_SIZE(gstrings_stats)
44
45static void xgene_get_drvinfo(struct net_device *ndev,
46 struct ethtool_drvinfo *info)
47{
48 struct xgene_enet_pdata *pdata = netdev_priv(ndev);
49 struct platform_device *pdev = pdata->pdev;
50
51 strcpy(info->driver, "xgene_enet");
52 strcpy(info->version, XGENE_DRV_VERSION);
53 snprintf(info->fw_version, ETHTOOL_FWVERS_LEN, "N/A");
54 sprintf(info->bus_info, "%s", pdev->name);
55}
56
Philippe Reynes36a19b22016-09-11 17:54:04 +020057static int xgene_get_link_ksettings(struct net_device *ndev,
58 struct ethtool_link_ksettings *cmd)
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -070059{
60 struct xgene_enet_pdata *pdata = netdev_priv(ndev);
Philippe Reynes971d3a42016-09-11 17:54:03 +020061 struct phy_device *phydev = ndev->phydev;
Philippe Reynes36a19b22016-09-11 17:54:04 +020062 u32 supported;
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -070063
Iyappan Subramanian41aace62014-10-09 18:32:07 -070064 if (pdata->phy_mode == PHY_INTERFACE_MODE_RGMII) {
65 if (phydev == NULL)
66 return -ENODEV;
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -070067
Philippe Reynes36a19b22016-09-11 17:54:04 +020068 return phy_ethtool_ksettings_get(phydev, cmd);
Iyappan Subramanian5e6a0242014-10-13 17:05:35 -070069 } else if (pdata->phy_mode == PHY_INTERFACE_MODE_SGMII) {
Iyappan Subramanian52d1fd92016-07-25 17:12:44 -070070 if (pdata->mdio_driver) {
71 if (!phydev)
72 return -ENODEV;
73
Philippe Reynes36a19b22016-09-11 17:54:04 +020074 return phy_ethtool_ksettings_get(phydev, cmd);
Iyappan Subramanian52d1fd92016-07-25 17:12:44 -070075 }
76
Philippe Reynes36a19b22016-09-11 17:54:04 +020077 supported = SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
78 SUPPORTED_MII;
79 ethtool_convert_legacy_u32_to_link_mode(
80 cmd->link_modes.supported,
81 supported);
82 ethtool_convert_legacy_u32_to_link_mode(
83 cmd->link_modes.advertising,
84 supported);
85
86 cmd->base.speed = SPEED_1000;
87 cmd->base.duplex = DUPLEX_FULL;
88 cmd->base.port = PORT_MII;
89 cmd->base.autoneg = AUTONEG_ENABLE;
Iyappan Subramanian5e6a0242014-10-13 17:05:35 -070090 } else {
Philippe Reynes36a19b22016-09-11 17:54:04 +020091 supported = SUPPORTED_10000baseT_Full | SUPPORTED_FIBRE;
92 ethtool_convert_legacy_u32_to_link_mode(
93 cmd->link_modes.supported,
94 supported);
95 ethtool_convert_legacy_u32_to_link_mode(
96 cmd->link_modes.advertising,
97 supported);
98
99 cmd->base.speed = SPEED_10000;
100 cmd->base.duplex = DUPLEX_FULL;
101 cmd->base.port = PORT_FIBRE;
102 cmd->base.autoneg = AUTONEG_DISABLE;
Iyappan Subramanian41aace62014-10-09 18:32:07 -0700103 }
104
Iyappan Subramanian41aace62014-10-09 18:32:07 -0700105 return 0;
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -0700106}
107
Philippe Reynes36a19b22016-09-11 17:54:04 +0200108static int xgene_set_link_ksettings(struct net_device *ndev,
109 const struct ethtool_link_ksettings *cmd)
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -0700110{
111 struct xgene_enet_pdata *pdata = netdev_priv(ndev);
Philippe Reynes971d3a42016-09-11 17:54:03 +0200112 struct phy_device *phydev = ndev->phydev;
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -0700113
Iyappan Subramanian41aace62014-10-09 18:32:07 -0700114 if (pdata->phy_mode == PHY_INTERFACE_MODE_RGMII) {
Iyappan Subramanian52d1fd92016-07-25 17:12:44 -0700115 if (!phydev)
Iyappan Subramanian41aace62014-10-09 18:32:07 -0700116 return -ENODEV;
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -0700117
Philippe Reynes36a19b22016-09-11 17:54:04 +0200118 return phy_ethtool_ksettings_set(phydev, cmd);
Iyappan Subramanian41aace62014-10-09 18:32:07 -0700119 }
120
Iyappan Subramanian52d1fd92016-07-25 17:12:44 -0700121 if (pdata->phy_mode == PHY_INTERFACE_MODE_SGMII) {
122 if (pdata->mdio_driver) {
123 if (!phydev)
124 return -ENODEV;
125
Philippe Reynes36a19b22016-09-11 17:54:04 +0200126 return phy_ethtool_ksettings_set(phydev, cmd);
Iyappan Subramanian52d1fd92016-07-25 17:12:44 -0700127 }
128 }
129
Iyappan Subramanian41aace62014-10-09 18:32:07 -0700130 return -EINVAL;
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -0700131}
132
133static void xgene_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
134{
135 int i;
136 u8 *p = data;
137
138 if (stringset != ETH_SS_STATS)
139 return;
140
141 for (i = 0; i < XGENE_STATS_LEN; i++) {
142 memcpy(p, gstrings_stats[i].name, ETH_GSTRING_LEN);
143 p += ETH_GSTRING_LEN;
144 }
145}
146
147static int xgene_get_sset_count(struct net_device *ndev, int sset)
148{
149 if (sset != ETH_SS_STATS)
150 return -EINVAL;
151
152 return XGENE_STATS_LEN;
153}
154
155static void xgene_get_ethtool_stats(struct net_device *ndev,
156 struct ethtool_stats *dummy,
157 u64 *data)
158{
159 void *pdata = netdev_priv(ndev);
160 int i;
161
162 for (i = 0; i < XGENE_STATS_LEN; i++)
163 *data++ = *(u64 *)(pdata + gstrings_stats[i].offset);
164}
165
166static const struct ethtool_ops xgene_ethtool_ops = {
167 .get_drvinfo = xgene_get_drvinfo,
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -0700168 .get_link = ethtool_op_get_link,
169 .get_strings = xgene_get_strings,
170 .get_sset_count = xgene_get_sset_count,
Philippe Reynes36a19b22016-09-11 17:54:04 +0200171 .get_ethtool_stats = xgene_get_ethtool_stats,
172 .get_link_ksettings = xgene_get_link_ksettings,
173 .set_link_ksettings = xgene_set_link_ksettings,
Iyappan Subramaniane6ad7672014-08-07 15:14:28 -0700174};
175
176void xgene_enet_set_ethtool_ops(struct net_device *ndev)
177{
178 ndev->ethtool_ops = &xgene_ethtool_ops;
179}