blob: 3f067f189b3d01d3dd9505c4adad07d85975868d [file] [log] [blame]
David Daney80ff0fd2009-05-05 17:35:21 -07001/**********************************************************************
2 * Author: Cavium Networks
3 *
4 * Contact: support@caviumnetworks.com
5 * This file is part of the OCTEON SDK
6 *
7 * Copyright (c) 2003-2007 Cavium Networks
8 *
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, Version 2, as
11 * published by the Free Software Foundation.
12 *
13 * This file is distributed in the hope that it will be useful, but
14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16 * NONINFRINGEMENT. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this file; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 * or visit http://www.gnu.org/licenses/.
23 *
24 * This file may also be available under a different license from Cavium.
25 * Contact Cavium Networks for more information
26**********************************************************************/
27#include <linux/kernel.h>
28#include <linux/ethtool.h>
David Daneyf6ed1b32009-10-14 12:04:42 -070029#include <linux/phy.h>
Christian Dietrich7a2eaf92011-06-04 17:35:58 +020030#include <linux/ratelimit.h>
David Daneydf9244c2012-07-05 18:12:40 +020031#include <linux/of_mdio.h>
David Daneyf6ed1b32009-10-14 12:04:42 -070032
David Daney80ff0fd2009-05-05 17:35:21 -070033#include <net/dst.h>
34
35#include <asm/octeon/octeon.h>
36
37#include "ethernet-defines.h"
38#include "octeon-ethernet.h"
39#include "ethernet-mdio.h"
David Daneyf6ed1b32009-10-14 12:04:42 -070040#include "ethernet-util.h"
David Daney80ff0fd2009-05-05 17:35:21 -070041
David Daneyaf866492011-11-22 14:47:00 +000042#include <asm/octeon/cvmx-helper-board.h>
David Daney80ff0fd2009-05-05 17:35:21 -070043
David Daneyaf866492011-11-22 14:47:00 +000044#include <asm/octeon/cvmx-smix-defs.h>
David Daney80ff0fd2009-05-05 17:35:21 -070045
David Daney80ff0fd2009-05-05 17:35:21 -070046static void cvm_oct_get_drvinfo(struct net_device *dev,
47 struct ethtool_drvinfo *info)
48{
Jiri Pirko7826d432013-01-06 00:44:26 +000049 strlcpy(info->driver, "cavium-ethernet", sizeof(info->driver));
50 strlcpy(info->version, OCTEON_ETHERNET_VERSION, sizeof(info->version));
51 strlcpy(info->bus_info, "Builtin", sizeof(info->bus_info));
David Daney80ff0fd2009-05-05 17:35:21 -070052}
53
54static int cvm_oct_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
55{
56 struct octeon_ethernet *priv = netdev_priv(dev);
David Daney80ff0fd2009-05-05 17:35:21 -070057
David Daneyf6ed1b32009-10-14 12:04:42 -070058 if (priv->phydev)
59 return phy_ethtool_gset(priv->phydev, cmd);
David Daney80ff0fd2009-05-05 17:35:21 -070060
David Daneyf6ed1b32009-10-14 12:04:42 -070061 return -EINVAL;
David Daney80ff0fd2009-05-05 17:35:21 -070062}
63
64static int cvm_oct_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
65{
66 struct octeon_ethernet *priv = netdev_priv(dev);
David Daney80ff0fd2009-05-05 17:35:21 -070067
David Daneyf6ed1b32009-10-14 12:04:42 -070068 if (!capable(CAP_NET_ADMIN))
69 return -EPERM;
David Daney80ff0fd2009-05-05 17:35:21 -070070
David Daneyf6ed1b32009-10-14 12:04:42 -070071 if (priv->phydev)
72 return phy_ethtool_sset(priv->phydev, cmd);
73
74 return -EINVAL;
David Daney80ff0fd2009-05-05 17:35:21 -070075}
76
77static int cvm_oct_nway_reset(struct net_device *dev)
78{
79 struct octeon_ethernet *priv = netdev_priv(dev);
David Daney80ff0fd2009-05-05 17:35:21 -070080
David Daneyf6ed1b32009-10-14 12:04:42 -070081 if (!capable(CAP_NET_ADMIN))
82 return -EPERM;
David Daney80ff0fd2009-05-05 17:35:21 -070083
David Daneyf6ed1b32009-10-14 12:04:42 -070084 if (priv->phydev)
85 return phy_start_aneg(priv->phydev);
David Daney80ff0fd2009-05-05 17:35:21 -070086
David Daneyf6ed1b32009-10-14 12:04:42 -070087 return -EINVAL;
David Daney80ff0fd2009-05-05 17:35:21 -070088}
89
David Daney9326e362009-10-01 16:47:39 -070090const struct ethtool_ops cvm_oct_ethtool_ops = {
David Daney80ff0fd2009-05-05 17:35:21 -070091 .get_drvinfo = cvm_oct_get_drvinfo,
92 .get_settings = cvm_oct_get_settings,
93 .set_settings = cvm_oct_set_settings,
94 .nway_reset = cvm_oct_nway_reset,
David Daneyf6ed1b32009-10-14 12:04:42 -070095 .get_link = ethtool_op_get_link,
David Daney80ff0fd2009-05-05 17:35:21 -070096};
97
98/**
David Daneyec977c52010-02-16 17:25:32 -080099 * cvm_oct_ioctl - IOCTL support for PHY control
David Daney80ff0fd2009-05-05 17:35:21 -0700100 * @dev: Device to change
101 * @rq: the request
102 * @cmd: the command
David Daneyec977c52010-02-16 17:25:32 -0800103 *
David Daney80ff0fd2009-05-05 17:35:21 -0700104 * Returns Zero on success
105 */
106int cvm_oct_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
107{
108 struct octeon_ethernet *priv = netdev_priv(dev);
David Daney80ff0fd2009-05-05 17:35:21 -0700109
David Daneyf6ed1b32009-10-14 12:04:42 -0700110 if (!netif_running(dev))
111 return -EINVAL;
David Daney80ff0fd2009-05-05 17:35:21 -0700112
David Daneyf6ed1b32009-10-14 12:04:42 -0700113 if (!priv->phydev)
114 return -EINVAL;
115
Richard Cochran28b04112010-07-17 08:48:55 +0000116 return phy_mii_ioctl(priv->phydev, rq, cmd);
David Daney80ff0fd2009-05-05 17:35:21 -0700117}
118
David Daneyf6ed1b32009-10-14 12:04:42 -0700119static void cvm_oct_adjust_link(struct net_device *dev)
120{
121 struct octeon_ethernet *priv = netdev_priv(dev);
122 cvmx_helper_link_info_t link_info;
123
124 if (priv->last_link != priv->phydev->link) {
125 priv->last_link = priv->phydev->link;
126 link_info.u64 = 0;
127 link_info.s.link_up = priv->last_link ? 1 : 0;
128 link_info.s.full_duplex = priv->phydev->duplex ? 1 : 0;
129 link_info.s.speed = priv->phydev->speed;
Himangi Saraogi0da50c62014-03-03 06:30:46 +0530130 cvmx_helper_link_set(priv->port, link_info);
David Daneyf6ed1b32009-10-14 12:04:42 -0700131 if (priv->last_link) {
132 netif_carrier_on(dev);
133 if (priv->queue != -1)
Christian Dietrich7a2eaf92011-06-04 17:35:58 +0200134 printk_ratelimited("%s: %u Mbps %s duplex, "
Aybuke Ozdemirde82a6d2014-03-15 18:54:28 +0200135 "port %2d, queue %2d\n", dev->name,
136 priv->phydev->speed,
137 priv->phydev->duplex ? "Full" : "Half",
138 priv->port, priv->queue);
David Daneyf6ed1b32009-10-14 12:04:42 -0700139 else
Christian Dietrich7a2eaf92011-06-04 17:35:58 +0200140 printk_ratelimited("%s: %u Mbps %s duplex, "
Aybuke Ozdemirde82a6d2014-03-15 18:54:28 +0200141 "port %2d, POW\n", dev->name,
142 priv->phydev->speed,
143 priv->phydev->duplex ? "Full" : "Half",
144 priv->port);
David Daneyf6ed1b32009-10-14 12:04:42 -0700145 } else {
146 netif_carrier_off(dev);
Christian Dietrich7a2eaf92011-06-04 17:35:58 +0200147 printk_ratelimited("%s: Link down\n", dev->name);
David Daneyf6ed1b32009-10-14 12:04:42 -0700148 }
149 }
150}
151
152
David Daney80ff0fd2009-05-05 17:35:21 -0700153/**
David Daneyec977c52010-02-16 17:25:32 -0800154 * cvm_oct_phy_setup_device - setup the PHY
David Daney80ff0fd2009-05-05 17:35:21 -0700155 *
156 * @dev: Device to setup
157 *
158 * Returns Zero on success, negative on failure
159 */
David Daneyf6ed1b32009-10-14 12:04:42 -0700160int cvm_oct_phy_setup_device(struct net_device *dev)
David Daney80ff0fd2009-05-05 17:35:21 -0700161{
162 struct octeon_ethernet *priv = netdev_priv(dev);
David Daneydf9244c2012-07-05 18:12:40 +0200163 struct device_node *phy_node;
David Daneyf6ed1b32009-10-14 12:04:42 -0700164
David Daneydf9244c2012-07-05 18:12:40 +0200165 if (!priv->of_node)
166 return 0;
David Daneyf6ed1b32009-10-14 12:04:42 -0700167
David Daneydf9244c2012-07-05 18:12:40 +0200168 phy_node = of_parse_phandle(priv->of_node, "phy-handle", 0);
169 if (!phy_node)
170 return 0;
David Daneyf6ed1b32009-10-14 12:04:42 -0700171
David Daneydf9244c2012-07-05 18:12:40 +0200172 priv->phydev = of_phy_connect(dev, phy_node, cvm_oct_adjust_link, 0,
173 PHY_INTERFACE_MODE_GMII);
David Daneyf6ed1b32009-10-14 12:04:42 -0700174
David Daneydf9244c2012-07-05 18:12:40 +0200175 if (priv->phydev == NULL)
176 return -ENODEV;
177
178 priv->last_link = 0;
179 phy_start_aneg(priv->phydev);
180
David Daney80ff0fd2009-05-05 17:35:21 -0700181 return 0;
182}