blob: fd9b3d899c1ffc699c0da7d6fd3bb37d09c8cd9a [file] [log] [blame]
Aaro Koskinen67620982015-04-04 22:51:21 +03001/*
2 * This file is based on code from OCTEON SDK by Cavium Networks.
David Daney80ff0fd2009-05-05 17:35:21 -07003 *
4 * Copyright (c) 2003-2007 Cavium Networks
5 *
6 * This file is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, Version 2, as
8 * published by the Free Software Foundation.
Aaro Koskinen67620982015-04-04 22:51:21 +03009 */
10
David Daney80ff0fd2009-05-05 17:35:21 -070011#include <linux/kernel.h>
12#include <linux/ethtool.h>
David Daneyf6ed1b32009-10-14 12:04:42 -070013#include <linux/phy.h>
Christian Dietrich7a2eaf92011-06-04 17:35:58 +020014#include <linux/ratelimit.h>
David Daneydf9244c2012-07-05 18:12:40 +020015#include <linux/of_mdio.h>
Aaro Koskinen948c2512015-04-04 22:51:20 +030016#include <generated/utsrelease.h>
David Daney80ff0fd2009-05-05 17:35:21 -070017#include <net/dst.h>
18
19#include <asm/octeon/octeon.h>
20
21#include "ethernet-defines.h"
22#include "octeon-ethernet.h"
23#include "ethernet-mdio.h"
David Daneyf6ed1b32009-10-14 12:04:42 -070024#include "ethernet-util.h"
David Daney80ff0fd2009-05-05 17:35:21 -070025
Aaro Koskinen96217eb2015-04-04 22:51:03 +030026#include <asm/octeon/cvmx-gmxx-defs.h>
David Daneyaf866492011-11-22 14:47:00 +000027#include <asm/octeon/cvmx-smix-defs.h>
David Daney80ff0fd2009-05-05 17:35:21 -070028
David Daney80ff0fd2009-05-05 17:35:21 -070029static void cvm_oct_get_drvinfo(struct net_device *dev,
30 struct ethtool_drvinfo *info)
31{
Aaro Koskinen948c2512015-04-04 22:51:20 +030032 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
33 strlcpy(info->version, UTS_RELEASE, sizeof(info->version));
Jiri Pirko7826d432013-01-06 00:44:26 +000034 strlcpy(info->bus_info, "Builtin", sizeof(info->bus_info));
David Daney80ff0fd2009-05-05 17:35:21 -070035}
36
37static int cvm_oct_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
38{
39 struct octeon_ethernet *priv = netdev_priv(dev);
David Daney80ff0fd2009-05-05 17:35:21 -070040
David Daneyf6ed1b32009-10-14 12:04:42 -070041 if (priv->phydev)
42 return phy_ethtool_gset(priv->phydev, cmd);
David Daney80ff0fd2009-05-05 17:35:21 -070043
David Daneyf6ed1b32009-10-14 12:04:42 -070044 return -EINVAL;
David Daney80ff0fd2009-05-05 17:35:21 -070045}
46
47static int cvm_oct_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
48{
49 struct octeon_ethernet *priv = netdev_priv(dev);
David Daney80ff0fd2009-05-05 17:35:21 -070050
David Daneyf6ed1b32009-10-14 12:04:42 -070051 if (!capable(CAP_NET_ADMIN))
52 return -EPERM;
David Daney80ff0fd2009-05-05 17:35:21 -070053
David Daneyf6ed1b32009-10-14 12:04:42 -070054 if (priv->phydev)
55 return phy_ethtool_sset(priv->phydev, cmd);
56
57 return -EINVAL;
David Daney80ff0fd2009-05-05 17:35:21 -070058}
59
60static int cvm_oct_nway_reset(struct net_device *dev)
61{
62 struct octeon_ethernet *priv = netdev_priv(dev);
David Daney80ff0fd2009-05-05 17:35:21 -070063
David Daneyf6ed1b32009-10-14 12:04:42 -070064 if (!capable(CAP_NET_ADMIN))
65 return -EPERM;
David Daney80ff0fd2009-05-05 17:35:21 -070066
David Daneyf6ed1b32009-10-14 12:04:42 -070067 if (priv->phydev)
68 return phy_start_aneg(priv->phydev);
David Daney80ff0fd2009-05-05 17:35:21 -070069
David Daneyf6ed1b32009-10-14 12:04:42 -070070 return -EINVAL;
David Daney80ff0fd2009-05-05 17:35:21 -070071}
72
David Daney9326e362009-10-01 16:47:39 -070073const struct ethtool_ops cvm_oct_ethtool_ops = {
David Daney80ff0fd2009-05-05 17:35:21 -070074 .get_drvinfo = cvm_oct_get_drvinfo,
75 .get_settings = cvm_oct_get_settings,
76 .set_settings = cvm_oct_set_settings,
77 .nway_reset = cvm_oct_nway_reset,
David Daneyf6ed1b32009-10-14 12:04:42 -070078 .get_link = ethtool_op_get_link,
David Daney80ff0fd2009-05-05 17:35:21 -070079};
80
81/**
David Daneyec977c52010-02-16 17:25:32 -080082 * cvm_oct_ioctl - IOCTL support for PHY control
David Daney80ff0fd2009-05-05 17:35:21 -070083 * @dev: Device to change
84 * @rq: the request
85 * @cmd: the command
David Daneyec977c52010-02-16 17:25:32 -080086 *
David Daney80ff0fd2009-05-05 17:35:21 -070087 * Returns Zero on success
88 */
89int cvm_oct_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
90{
91 struct octeon_ethernet *priv = netdev_priv(dev);
David Daney80ff0fd2009-05-05 17:35:21 -070092
David Daneyf6ed1b32009-10-14 12:04:42 -070093 if (!netif_running(dev))
94 return -EINVAL;
David Daney80ff0fd2009-05-05 17:35:21 -070095
David Daneyf6ed1b32009-10-14 12:04:42 -070096 if (!priv->phydev)
97 return -EINVAL;
98
Richard Cochran28b04112010-07-17 08:48:55 +000099 return phy_mii_ioctl(priv->phydev, rq, cmd);
David Daney80ff0fd2009-05-05 17:35:21 -0700100}
101
Aaro Koskinen2638f712015-04-04 22:51:07 +0300102void cvm_oct_note_carrier(struct octeon_ethernet *priv,
103 cvmx_helper_link_info_t li)
David Daneyec3a2202014-05-29 11:10:02 +0100104{
105 if (li.s.link_up) {
Aaro Koskinen36a14572015-04-04 22:51:06 +0300106 pr_notice_ratelimited("%s: %u Mbps %s duplex, port %d, queue %d\n",
David Daneyec3a2202014-05-29 11:10:02 +0100107 netdev_name(priv->netdev), li.s.speed,
108 (li.s.full_duplex) ? "Full" : "Half",
Aaro Koskinen36a14572015-04-04 22:51:06 +0300109 priv->port, priv->queue);
David Daneyec3a2202014-05-29 11:10:02 +0100110 } else {
111 pr_notice_ratelimited("%s: Link down\n",
112 netdev_name(priv->netdev));
113 }
114}
115
David Daneyec3a2202014-05-29 11:10:02 +0100116void cvm_oct_adjust_link(struct net_device *dev)
David Daneyf6ed1b32009-10-14 12:04:42 -0700117{
118 struct octeon_ethernet *priv = netdev_priv(dev);
119 cvmx_helper_link_info_t link_info;
120
121 if (priv->last_link != priv->phydev->link) {
122 priv->last_link = priv->phydev->link;
123 link_info.u64 = 0;
124 link_info.s.link_up = priv->last_link ? 1 : 0;
125 link_info.s.full_duplex = priv->phydev->duplex ? 1 : 0;
126 link_info.s.speed = priv->phydev->speed;
David Daneyec3a2202014-05-29 11:10:02 +0100127
Himangi Saraogi0da50c62014-03-03 06:30:46 +0530128 cvmx_helper_link_set(priv->port, link_info);
David Daneyec3a2202014-05-29 11:10:02 +0100129 cvm_oct_note_carrier(priv, link_info);
David Daneyf6ed1b32009-10-14 12:04:42 -0700130 }
131}
132
David Daneyec3a2202014-05-29 11:10:02 +0100133int cvm_oct_common_stop(struct net_device *dev)
134{
135 struct octeon_ethernet *priv = netdev_priv(dev);
Aaro Koskinen96217eb2015-04-04 22:51:03 +0300136 int interface = INTERFACE(priv->port);
David Daneyec3a2202014-05-29 11:10:02 +0100137 cvmx_helper_link_info_t link_info;
Aaro Koskinen96217eb2015-04-04 22:51:03 +0300138 union cvmx_gmxx_prtx_cfg gmx_cfg;
139 int index = INDEX(priv->port);
140
141 gmx_cfg.u64 = cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index, interface));
142 gmx_cfg.s.en = 0;
143 cvmx_write_csr(CVMX_GMXX_PRTX_CFG(index, interface), gmx_cfg.u64);
David Daneyec3a2202014-05-29 11:10:02 +0100144
145 priv->poll = NULL;
146
147 if (priv->phydev)
148 phy_disconnect(priv->phydev);
149 priv->phydev = NULL;
150
151 if (priv->last_link) {
152 link_info.u64 = 0;
153 priv->last_link = 0;
154
155 cvmx_helper_link_set(priv->port, link_info);
156 cvm_oct_note_carrier(priv, link_info);
157 }
158 return 0;
159}
David Daneyf6ed1b32009-10-14 12:04:42 -0700160
David Daney80ff0fd2009-05-05 17:35:21 -0700161/**
David Daneyec977c52010-02-16 17:25:32 -0800162 * cvm_oct_phy_setup_device - setup the PHY
David Daney80ff0fd2009-05-05 17:35:21 -0700163 *
164 * @dev: Device to setup
165 *
166 * Returns Zero on success, negative on failure
167 */
David Daneyf6ed1b32009-10-14 12:04:42 -0700168int cvm_oct_phy_setup_device(struct net_device *dev)
David Daney80ff0fd2009-05-05 17:35:21 -0700169{
170 struct octeon_ethernet *priv = netdev_priv(dev);
David Daneydf9244c2012-07-05 18:12:40 +0200171 struct device_node *phy_node;
David Daneyf6ed1b32009-10-14 12:04:42 -0700172
David Daneydf9244c2012-07-05 18:12:40 +0200173 if (!priv->of_node)
David Daneyec3a2202014-05-29 11:10:02 +0100174 goto no_phy;
David Daneyf6ed1b32009-10-14 12:04:42 -0700175
David Daneydf9244c2012-07-05 18:12:40 +0200176 phy_node = of_parse_phandle(priv->of_node, "phy-handle", 0);
177 if (!phy_node)
David Daneyec3a2202014-05-29 11:10:02 +0100178 goto no_phy;
David Daneyf6ed1b32009-10-14 12:04:42 -0700179
David Daneydf9244c2012-07-05 18:12:40 +0200180 priv->phydev = of_phy_connect(dev, phy_node, cvm_oct_adjust_link, 0,
181 PHY_INTERFACE_MODE_GMII);
David Daneyf6ed1b32009-10-14 12:04:42 -0700182
David Daneydf9244c2012-07-05 18:12:40 +0200183 if (priv->phydev == NULL)
184 return -ENODEV;
185
186 priv->last_link = 0;
187 phy_start_aneg(priv->phydev);
188
David Daney80ff0fd2009-05-05 17:35:21 -0700189 return 0;
David Daneyec3a2202014-05-29 11:10:02 +0100190no_phy:
191 /* If there is no phy, assume a direct MAC connection and that
192 * the link is up.
193 */
194 netif_carrier_on(dev);
195 return 0;
David Daney80ff0fd2009-05-05 17:35:21 -0700196}