cregit-Linux how code gets into the kernel

Release 4.7 drivers/staging/octeon/ethernet-mdio.c

/*
 * This file is based on code from OCTEON SDK by Cavium Networks.
 *
 * Copyright (c) 2003-2007 Cavium Networks
 *
 * This file is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, Version 2, as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/ethtool.h>
#include <linux/phy.h>
#include <linux/ratelimit.h>
#include <linux/of_mdio.h>
#include <generated/utsrelease.h>
#include <net/dst.h>

#include <asm/octeon/octeon.h>

#include "ethernet-defines.h"
#include "octeon-ethernet.h"
#include "ethernet-mdio.h"
#include "ethernet-util.h"

#include <asm/octeon/cvmx-gmxx-defs.h>
#include <asm/octeon/cvmx-smix-defs.h>


static void cvm_oct_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); strlcpy(info->version, UTS_RELEASE, sizeof(info->version)); strlcpy(info->bus_info, "Builtin", sizeof(info->bus_info)); }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney3859.38%133.33%
jiri pirkojiri pirko2437.50%133.33%
aaro koskinenaaro koskinen23.12%133.33%
Total64100.00%3100.00%


static int cvm_oct_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) { struct octeon_ethernet *priv = netdev_priv(dev); if (priv->phydev) return phy_ethtool_gset(priv->phydev, cmd); return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney46100.00%2100.00%
Total46100.00%2100.00%


static int cvm_oct_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) { struct octeon_ethernet *priv = netdev_priv(dev); if (!capable(CAP_NET_ADMIN)) return -EPERM; if (priv->phydev) return phy_ethtool_sset(priv->phydev, cmd); return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney58100.00%2100.00%
Total58100.00%2100.00%


static int cvm_oct_nway_reset(struct net_device *dev) { struct octeon_ethernet *priv = netdev_priv(dev); if (!capable(CAP_NET_ADMIN)) return -EPERM; if (priv->phydev) return phy_start_aneg(priv->phydev); return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney51100.00%2100.00%
Total51100.00%2100.00%

const struct ethtool_ops cvm_oct_ethtool_ops = { .get_drvinfo = cvm_oct_get_drvinfo, .get_settings = cvm_oct_get_settings, .set_settings = cvm_oct_set_settings, .nway_reset = cvm_oct_nway_reset, .get_link = ethtool_op_get_link, }; /** * cvm_oct_ioctl - IOCTL support for PHY control * @dev: Device to change * @rq: the request * @cmd: the command * * Returns Zero on success */
int cvm_oct_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) { struct octeon_ethernet *priv = netdev_priv(dev); if (!netif_running(dev)) return -EINVAL; if (!priv->phydev) return -EINVAL; return phy_mii_ioctl(priv->phydev, rq, cmd); }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney63100.00%2100.00%
Total63100.00%2100.00%


void cvm_oct_note_carrier(struct octeon_ethernet *priv, cvmx_helper_link_info_t li) { if (li.s.link_up) { pr_notice_ratelimited("%s: %u Mbps %s duplex, port %d, queue %d\n", netdev_name(priv->netdev), li.s.speed, (li.s.full_duplex) ? "Full" : "Half", priv->port, priv->queue); } else { pr_notice_ratelimited("%s: Link down\n", netdev_name(priv->netdev)); } }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney7193.42%266.67%
aaro koskinenaaro koskinen56.58%133.33%
Total76100.00%3100.00%


void cvm_oct_adjust_link(struct net_device *dev) { struct octeon_ethernet *priv = netdev_priv(dev); cvmx_helper_link_info_t link_info; link_info.u64 = 0; link_info.s.link_up = priv->phydev->link ? 1 : 0; link_info.s.full_duplex = priv->phydev->duplex ? 1 : 0; link_info.s.speed = priv->phydev->speed; priv->link_info = link_info.u64; /* * The polling task need to know about link status changes. */ if (priv->poll) priv->poll(dev); if (priv->last_link != priv->phydev->link) { priv->last_link = priv->phydev->link; cvmx_helper_link_set(priv->port, link_info); cvm_oct_note_carrier(priv, link_info); } }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney8764.44%375.00%
aaro koskinenaaro koskinen4835.56%125.00%
Total135100.00%4100.00%


int cvm_oct_common_stop(struct net_device *dev) { struct octeon_ethernet *priv = netdev_priv(dev); int interface = INTERFACE(priv->port); cvmx_helper_link_info_t link_info; union cvmx_gmxx_prtx_cfg gmx_cfg; int index = INDEX(priv->port); gmx_cfg.u64 = cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index, interface)); gmx_cfg.s.en = 0; cvmx_write_csr(CVMX_GMXX_PRTX_CFG(index, interface), gmx_cfg.u64); priv->poll = NULL; if (priv->phydev) phy_disconnect(priv->phydev); priv->phydev = NULL; if (priv->last_link) { link_info.u64 = 0; priv->last_link = 0; cvmx_helper_link_set(priv->port, link_info); cvm_oct_note_carrier(priv, link_info); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney8759.18%375.00%
aaro koskinenaaro koskinen6040.82%125.00%
Total147100.00%4100.00%

/** * cvm_oct_phy_setup_device - setup the PHY * * @dev: Device to setup * * Returns Zero on success, negative on failure */
int cvm_oct_phy_setup_device(struct net_device *dev) { struct octeon_ethernet *priv = netdev_priv(dev); struct device_node *phy_node; if (!priv->of_node) goto no_phy; phy_node = of_parse_phandle(priv->of_node, "phy-handle", 0); if (!phy_node && of_phy_is_fixed_link(priv->of_node)) { int rc; rc = of_phy_register_fixed_link(priv->of_node); if (rc) return rc; phy_node = of_node_get(priv->of_node); } if (!phy_node) goto no_phy; priv->phydev = of_phy_connect(dev, phy_node, cvm_oct_adjust_link, 0, PHY_INTERFACE_MODE_GMII); if (!priv->phydev) return -ENODEV; priv->last_link = 0; phy_start_aneg(priv->phydev); return 0; no_phy: /* If there is no phy, assume a direct MAC connection and that * the link is up. */ netif_carrier_on(dev); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney11071.90%466.67%
aaro koskinenaaro koskinen4227.45%116.67%
laura garcialaura garcia10.65%116.67%
Total153100.00%6100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
david daneydavid daney67877.93%743.75%
aaro koskinenaaro koskinen16418.85%637.50%
jiri pirkojiri pirko242.76%16.25%
christian dietrichchristian dietrich30.34%16.25%
laura garcialaura garcia10.11%16.25%
Total870100.00%16100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}