1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300 |
- /*
- * Copyright (c) 2014-2015 Hisilicon Limited.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- */
- #include <linux/etherdevice.h>
- #include <linux/interrupt.h>
- #include <linux/module.h>
- #include <linux/platform_device.h>
- #include "hns_enet.h"
- #define HNS_PHY_PAGE_MDIX 0
- #define HNS_PHY_PAGE_LED 3
- #define HNS_PHY_PAGE_COPPER 0
- #define HNS_PHY_PAGE_REG 22 /* Page Selection Reg. */
- #define HNS_PHY_CSC_REG 16 /* Copper Specific Control Register */
- #define HNS_PHY_CSS_REG 17 /* Copper Specific Status Register */
- #define HNS_LED_FC_REG 16 /* LED Function Control Reg. */
- #define HNS_LED_PC_REG 17 /* LED Polarity Control Reg. */
- #define HNS_LED_FORCE_ON 9
- #define HNS_LED_FORCE_OFF 8
- #define HNS_CHIP_VERSION 660
- #define HNS_NET_STATS_CNT 26
- #define PHY_MDIX_CTRL_S (5)
- #define PHY_MDIX_CTRL_M (3 << PHY_MDIX_CTRL_S)
- #define PHY_MDIX_STATUS_B (6)
- #define PHY_SPEED_DUP_RESOLVE_B (11)
- /**
- *hns_nic_get_link - get current link status
- *@net_dev: net_device
- *retuen 0 - success , negative --fail
- */
- static u32 hns_nic_get_link(struct net_device *net_dev)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- u32 link_stat = priv->link;
- struct hnae_handle *h;
- h = priv->ae_handle;
- if (net_dev->phydev) {
- if (!genphy_read_status(net_dev->phydev))
- link_stat = net_dev->phydev->link;
- else
- link_stat = 0;
- }
- if (h->dev && h->dev->ops && h->dev->ops->get_status)
- link_stat = link_stat && h->dev->ops->get_status(h);
- else
- link_stat = 0;
- return link_stat;
- }
- static void hns_get_mdix_mode(struct net_device *net_dev,
- struct ethtool_link_ksettings *cmd)
- {
- int mdix_ctrl, mdix, retval, is_resolved;
- struct phy_device *phy_dev = net_dev->phydev;
- if (!phy_dev || !phy_dev->mdio.bus) {
- cmd->base.eth_tp_mdix_ctrl = ETH_TP_MDI_INVALID;
- cmd->base.eth_tp_mdix = ETH_TP_MDI_INVALID;
- return;
- }
- phy_write(phy_dev, HNS_PHY_PAGE_REG, HNS_PHY_PAGE_MDIX);
- retval = phy_read(phy_dev, HNS_PHY_CSC_REG);
- mdix_ctrl = hnae_get_field(retval, PHY_MDIX_CTRL_M, PHY_MDIX_CTRL_S);
- retval = phy_read(phy_dev, HNS_PHY_CSS_REG);
- mdix = hnae_get_bit(retval, PHY_MDIX_STATUS_B);
- is_resolved = hnae_get_bit(retval, PHY_SPEED_DUP_RESOLVE_B);
- phy_write(phy_dev, HNS_PHY_PAGE_REG, HNS_PHY_PAGE_COPPER);
- switch (mdix_ctrl) {
- case 0x0:
- cmd->base.eth_tp_mdix_ctrl = ETH_TP_MDI;
- break;
- case 0x1:
- cmd->base.eth_tp_mdix_ctrl = ETH_TP_MDI_X;
- break;
- case 0x3:
- cmd->base.eth_tp_mdix_ctrl = ETH_TP_MDI_AUTO;
- break;
- default:
- cmd->base.eth_tp_mdix_ctrl = ETH_TP_MDI_INVALID;
- break;
- }
- if (!is_resolved)
- cmd->base.eth_tp_mdix = ETH_TP_MDI_INVALID;
- else if (mdix)
- cmd->base.eth_tp_mdix = ETH_TP_MDI_X;
- else
- cmd->base.eth_tp_mdix = ETH_TP_MDI;
- }
- /**
- *hns_nic_get_link_ksettings - implement ethtool get link ksettings
- *@net_dev: net_device
- *@cmd: ethtool_link_ksettings
- *retuen 0 - success , negative --fail
- */
- static int hns_nic_get_link_ksettings(struct net_device *net_dev,
- struct ethtool_link_ksettings *cmd)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_handle *h;
- u32 link_stat;
- int ret;
- u8 duplex;
- u16 speed;
- u32 supported, advertising;
- if (!priv || !priv->ae_handle)
- return -ESRCH;
- h = priv->ae_handle;
- if (!h->dev || !h->dev->ops || !h->dev->ops->get_info)
- return -ESRCH;
- ret = h->dev->ops->get_info(h, NULL, &speed, &duplex);
- if (ret < 0) {
- netdev_err(net_dev, "%s get_info error!\n", __func__);
- return -EINVAL;
- }
- ethtool_convert_link_mode_to_legacy_u32(&supported,
- cmd->link_modes.supported);
- ethtool_convert_link_mode_to_legacy_u32(&advertising,
- cmd->link_modes.advertising);
- /* When there is no phy, autoneg is off. */
- cmd->base.autoneg = false;
- cmd->base.speed = speed;
- cmd->base.duplex = duplex;
- if (net_dev->phydev)
- phy_ethtool_ksettings_get(net_dev->phydev, cmd);
- link_stat = hns_nic_get_link(net_dev);
- if (!link_stat) {
- cmd->base.speed = (u32)SPEED_UNKNOWN;
- cmd->base.duplex = DUPLEX_UNKNOWN;
- }
- if (cmd->base.autoneg)
- advertising |= ADVERTISED_Autoneg;
- supported |= h->if_support;
- if (h->phy_if == PHY_INTERFACE_MODE_SGMII) {
- supported |= SUPPORTED_TP;
- advertising |= ADVERTISED_1000baseT_Full;
- } else if (h->phy_if == PHY_INTERFACE_MODE_XGMII) {
- supported |= SUPPORTED_FIBRE;
- advertising |= ADVERTISED_10000baseKR_Full;
- }
- switch (h->media_type) {
- case HNAE_MEDIA_TYPE_FIBER:
- cmd->base.port = PORT_FIBRE;
- break;
- case HNAE_MEDIA_TYPE_COPPER:
- cmd->base.port = PORT_TP;
- break;
- case HNAE_MEDIA_TYPE_UNKNOWN:
- default:
- break;
- }
- if (!(AE_IS_VER1(priv->enet_ver) && h->port_type == HNAE_PORT_DEBUG))
- supported |= SUPPORTED_Pause;
- ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
- supported);
- ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
- advertising);
- cmd->base.mdio_support = ETH_MDIO_SUPPORTS_C45 | ETH_MDIO_SUPPORTS_C22;
- hns_get_mdix_mode(net_dev, cmd);
- return 0;
- }
- /**
- *hns_nic_set_link_settings - implement ethtool set link ksettings
- *@net_dev: net_device
- *@cmd: ethtool_link_ksettings
- *retuen 0 - success , negative --fail
- */
- static int hns_nic_set_link_ksettings(struct net_device *net_dev,
- const struct ethtool_link_ksettings *cmd)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_handle *h;
- u32 speed;
- if (!netif_running(net_dev))
- return -ESRCH;
- if (!priv || !priv->ae_handle || !priv->ae_handle->dev ||
- !priv->ae_handle->dev->ops)
- return -ENODEV;
- h = priv->ae_handle;
- speed = cmd->base.speed;
- if (h->phy_if == PHY_INTERFACE_MODE_XGMII) {
- if (cmd->base.autoneg == AUTONEG_ENABLE ||
- speed != SPEED_10000 ||
- cmd->base.duplex != DUPLEX_FULL)
- return -EINVAL;
- } else if (h->phy_if == PHY_INTERFACE_MODE_SGMII) {
- if (!net_dev->phydev && cmd->base.autoneg == AUTONEG_ENABLE)
- return -EINVAL;
- if (speed == SPEED_1000 && cmd->base.duplex == DUPLEX_HALF)
- return -EINVAL;
- if (net_dev->phydev)
- return phy_ethtool_ksettings_set(net_dev->phydev, cmd);
- if ((speed != SPEED_10 && speed != SPEED_100 &&
- speed != SPEED_1000) || (cmd->base.duplex != DUPLEX_HALF &&
- cmd->base.duplex != DUPLEX_FULL))
- return -EINVAL;
- } else {
- netdev_err(net_dev, "Not supported!");
- return -ENOTSUPP;
- }
- if (h->dev->ops->adjust_link) {
- netif_carrier_off(net_dev);
- h->dev->ops->adjust_link(h, (int)speed, cmd->base.duplex);
- netif_carrier_on(net_dev);
- return 0;
- }
- netdev_err(net_dev, "Not supported!");
- return -ENOTSUPP;
- }
- static const char hns_nic_test_strs[][ETH_GSTRING_LEN] = {
- "Mac Loopback test",
- "Serdes Loopback test",
- "Phy Loopback test"
- };
- static int hns_nic_config_phy_loopback(struct phy_device *phy_dev, u8 en)
- {
- int err;
- if (en) {
- /* Doing phy loopback in offline state, phy resuming is
- * needed to power up the device.
- */
- err = phy_resume(phy_dev);
- if (err)
- goto out;
- err = phy_loopback(phy_dev, true);
- } else {
- err = phy_loopback(phy_dev, false);
- if (err)
- goto out;
- err = phy_suspend(phy_dev);
- }
- out:
- return err;
- }
- static int __lb_setup(struct net_device *ndev,
- enum hnae_loop loop)
- {
- int ret = 0;
- struct hns_nic_priv *priv = netdev_priv(ndev);
- struct phy_device *phy_dev = ndev->phydev;
- struct hnae_handle *h = priv->ae_handle;
- switch (loop) {
- case MAC_INTERNALLOOP_PHY:
- ret = hns_nic_config_phy_loopback(phy_dev, 0x1);
- if (!ret)
- ret = h->dev->ops->set_loopback(h, loop, 0x1);
- break;
- case MAC_INTERNALLOOP_MAC:
- if ((h->dev->ops->set_loopback) &&
- (priv->ae_handle->phy_if != PHY_INTERFACE_MODE_XGMII))
- ret = h->dev->ops->set_loopback(h, loop, 0x1);
- break;
- case MAC_INTERNALLOOP_SERDES:
- if (h->dev->ops->set_loopback)
- ret = h->dev->ops->set_loopback(h, loop, 0x1);
- break;
- case MAC_LOOP_PHY_NONE:
- ret = hns_nic_config_phy_loopback(phy_dev, 0x0);
- /* fall through */
- case MAC_LOOP_NONE:
- if (!ret && h->dev->ops->set_loopback) {
- if (priv->ae_handle->phy_if != PHY_INTERFACE_MODE_XGMII)
- ret = h->dev->ops->set_loopback(h,
- MAC_INTERNALLOOP_MAC, 0x0);
- if (!ret)
- ret = h->dev->ops->set_loopback(h,
- MAC_INTERNALLOOP_SERDES, 0x0);
- }
- break;
- default:
- ret = -EINVAL;
- break;
- }
- if (!ret) {
- if (loop == MAC_LOOP_NONE)
- h->dev->ops->set_promisc_mode(
- h, ndev->flags & IFF_PROMISC);
- else
- h->dev->ops->set_promisc_mode(h, 1);
- }
- return ret;
- }
- static int __lb_up(struct net_device *ndev,
- enum hnae_loop loop_mode)
- {
- #define NIC_LB_TEST_WAIT_PHY_LINK_TIME 300
- struct hns_nic_priv *priv = netdev_priv(ndev);
- struct hnae_handle *h = priv->ae_handle;
- int speed, duplex;
- int ret;
- hns_nic_net_reset(ndev);
- ret = __lb_setup(ndev, loop_mode);
- if (ret)
- return ret;
- msleep(200);
- ret = h->dev->ops->start ? h->dev->ops->start(h) : 0;
- if (ret)
- return ret;
- /* link adjust duplex*/
- if (priv->ae_handle->phy_if != PHY_INTERFACE_MODE_XGMII)
- speed = 1000;
- else
- speed = 10000;
- duplex = 1;
- h->dev->ops->adjust_link(h, speed, duplex);
- /* wait adjust link done and phy ready */
- msleep(NIC_LB_TEST_WAIT_PHY_LINK_TIME);
- return 0;
- }
- static void __lb_other_process(struct hns_nic_ring_data *ring_data,
- struct sk_buff *skb)
- {
- struct net_device *ndev;
- struct hns_nic_priv *priv;
- struct hnae_ring *ring;
- struct netdev_queue *dev_queue;
- struct sk_buff *new_skb;
- unsigned int frame_size;
- int check_ok;
- u32 i;
- char buff[33]; /* 32B data and the last character '\0' */
- if (!ring_data) { /* Just for doing create frame*/
- ndev = skb->dev;
- priv = netdev_priv(ndev);
- frame_size = skb->len;
- memset(skb->data, 0xFF, frame_size);
- if ((!AE_IS_VER1(priv->enet_ver)) &&
- (priv->ae_handle->port_type == HNAE_PORT_SERVICE)) {
- memcpy(skb->data, ndev->dev_addr, 6);
- skb->data[5] += 0x1f;
- }
- frame_size &= ~1ul;
- memset(&skb->data[frame_size / 2], 0xAA, frame_size / 2 - 1);
- memset(&skb->data[frame_size / 2 + 10], 0xBE,
- frame_size / 2 - 11);
- memset(&skb->data[frame_size / 2 + 12], 0xAF,
- frame_size / 2 - 13);
- return;
- }
- ring = ring_data->ring;
- ndev = ring_data->napi.dev;
- if (is_tx_ring(ring)) { /* for tx queue reset*/
- dev_queue = netdev_get_tx_queue(ndev, ring_data->queue_index);
- netdev_tx_reset_queue(dev_queue);
- return;
- }
- frame_size = skb->len;
- frame_size &= ~1ul;
- /* for mutl buffer*/
- new_skb = skb_copy(skb, GFP_ATOMIC);
- dev_kfree_skb_any(skb);
- skb = new_skb;
- check_ok = 0;
- if (*(skb->data + 10) == 0xFF) { /* for rx check frame*/
- if ((*(skb->data + frame_size / 2 + 10) == 0xBE) &&
- (*(skb->data + frame_size / 2 + 12) == 0xAF))
- check_ok = 1;
- }
- if (check_ok) {
- ndev->stats.rx_packets++;
- ndev->stats.rx_bytes += skb->len;
- } else {
- ndev->stats.rx_frame_errors++;
- for (i = 0; i < skb->len; i++) {
- snprintf(buff + i % 16 * 2, 3, /* tailing \0*/
- "%02x", *(skb->data + i));
- if ((i % 16 == 15) || (i == skb->len - 1))
- pr_info("%s\n", buff);
- }
- }
- dev_kfree_skb_any(skb);
- }
- static int __lb_clean_rings(struct hns_nic_priv *priv,
- int ringid0, int ringid1, int budget)
- {
- int i, ret;
- struct hns_nic_ring_data *ring_data;
- struct net_device *ndev = priv->netdev;
- unsigned long rx_packets = ndev->stats.rx_packets;
- unsigned long rx_bytes = ndev->stats.rx_bytes;
- unsigned long rx_frame_errors = ndev->stats.rx_frame_errors;
- for (i = ringid0; i <= ringid1; i++) {
- ring_data = &priv->ring_data[i];
- (void)ring_data->poll_one(ring_data,
- budget, __lb_other_process);
- }
- ret = (int)(ndev->stats.rx_packets - rx_packets);
- ndev->stats.rx_packets = rx_packets;
- ndev->stats.rx_bytes = rx_bytes;
- ndev->stats.rx_frame_errors = rx_frame_errors;
- return ret;
- }
- /**
- * nic_run_loopback_test - run loopback test
- * @nic_dev: net device
- * @loopback_type: loopback type
- */
- static int __lb_run_test(struct net_device *ndev,
- enum hnae_loop loop_mode)
- {
- #define NIC_LB_TEST_PKT_NUM_PER_CYCLE 1
- #define NIC_LB_TEST_RING_ID 0
- #define NIC_LB_TEST_FRAME_SIZE 128
- /* nic loopback test err */
- #define NIC_LB_TEST_NO_MEM_ERR 1
- #define NIC_LB_TEST_TX_CNT_ERR 2
- #define NIC_LB_TEST_RX_CNT_ERR 3
- #define NIC_LB_TEST_RX_PKG_ERR 4
- struct hns_nic_priv *priv = netdev_priv(ndev);
- struct hnae_handle *h = priv->ae_handle;
- int i, j, lc, good_cnt, ret_val = 0;
- unsigned int size;
- netdev_tx_t tx_ret_val;
- struct sk_buff *skb;
- size = NIC_LB_TEST_FRAME_SIZE;
- /* allocate test skb */
- skb = alloc_skb(size, GFP_KERNEL);
- if (!skb)
- return NIC_LB_TEST_NO_MEM_ERR;
- /* place data into test skb */
- (void)skb_put(skb, size);
- skb->dev = ndev;
- __lb_other_process(NULL, skb);
- skb->queue_mapping = NIC_LB_TEST_RING_ID;
- lc = 1;
- for (j = 0; j < lc; j++) {
- /* reset count of good packets */
- good_cnt = 0;
- /* place 64 packets on the transmit queue*/
- for (i = 0; i < NIC_LB_TEST_PKT_NUM_PER_CYCLE; i++) {
- (void)skb_get(skb);
- tx_ret_val = (netdev_tx_t)hns_nic_net_xmit_hw(
- ndev, skb,
- &tx_ring_data(priv, skb->queue_mapping));
- if (tx_ret_val == NETDEV_TX_OK)
- good_cnt++;
- else
- break;
- }
- if (good_cnt != NIC_LB_TEST_PKT_NUM_PER_CYCLE) {
- ret_val = NIC_LB_TEST_TX_CNT_ERR;
- dev_err(priv->dev, "%s sent fail, cnt=0x%x, budget=0x%x\n",
- hns_nic_test_strs[loop_mode], good_cnt,
- NIC_LB_TEST_PKT_NUM_PER_CYCLE);
- break;
- }
- /* allow 100 milliseconds for packets to go from Tx to Rx */
- msleep(100);
- good_cnt = __lb_clean_rings(priv,
- h->q_num, h->q_num * 2 - 1,
- NIC_LB_TEST_PKT_NUM_PER_CYCLE);
- if (good_cnt != NIC_LB_TEST_PKT_NUM_PER_CYCLE) {
- ret_val = NIC_LB_TEST_RX_CNT_ERR;
- dev_err(priv->dev, "%s recv fail, cnt=0x%x, budget=0x%x\n",
- hns_nic_test_strs[loop_mode], good_cnt,
- NIC_LB_TEST_PKT_NUM_PER_CYCLE);
- break;
- }
- (void)__lb_clean_rings(priv,
- NIC_LB_TEST_RING_ID, NIC_LB_TEST_RING_ID,
- NIC_LB_TEST_PKT_NUM_PER_CYCLE);
- }
- /* free the original skb */
- kfree_skb(skb);
- return ret_val;
- }
- static int __lb_down(struct net_device *ndev, enum hnae_loop loop)
- {
- struct hns_nic_priv *priv = netdev_priv(ndev);
- struct hnae_handle *h = priv->ae_handle;
- int ret;
- if (loop == MAC_INTERNALLOOP_PHY)
- ret = __lb_setup(ndev, MAC_LOOP_PHY_NONE);
- else
- ret = __lb_setup(ndev, MAC_LOOP_NONE);
- if (ret)
- netdev_err(ndev, "%s: __lb_setup return error(%d)!\n",
- __func__,
- ret);
- if (h->dev->ops->stop)
- h->dev->ops->stop(h);
- usleep_range(10000, 20000);
- (void)__lb_clean_rings(priv, 0, h->q_num - 1, 256);
- hns_nic_net_reset(ndev);
- return 0;
- }
- /**
- * hns_nic_self_test - self test
- * @dev: net device
- * @eth_test: test cmd
- * @data: test result
- */
- static void hns_nic_self_test(struct net_device *ndev,
- struct ethtool_test *eth_test, u64 *data)
- {
- struct hns_nic_priv *priv = netdev_priv(ndev);
- bool if_running = netif_running(ndev);
- #define SELF_TEST_TPYE_NUM 3
- int st_param[SELF_TEST_TPYE_NUM][2];
- int i;
- int test_index = 0;
- st_param[0][0] = MAC_INTERNALLOOP_MAC; /* XGE not supported lb */
- st_param[0][1] = (priv->ae_handle->phy_if != PHY_INTERFACE_MODE_XGMII);
- st_param[1][0] = MAC_INTERNALLOOP_SERDES;
- st_param[1][1] = 1; /*serdes must exist*/
- st_param[2][0] = MAC_INTERNALLOOP_PHY; /* only supporte phy node*/
- st_param[2][1] = ((!!(priv->ae_handle->phy_dev)) &&
- (priv->ae_handle->phy_if != PHY_INTERFACE_MODE_XGMII));
- if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
- set_bit(NIC_STATE_TESTING, &priv->state);
- if (if_running)
- dev_close(ndev);
- for (i = 0; i < SELF_TEST_TPYE_NUM; i++) {
- if (!st_param[i][1])
- continue; /* NEXT testing */
- data[test_index] = __lb_up(ndev,
- (enum hnae_loop)st_param[i][0]);
- if (!data[test_index]) {
- data[test_index] = __lb_run_test(
- ndev, (enum hnae_loop)st_param[i][0]);
- (void)__lb_down(ndev,
- (enum hnae_loop)st_param[i][0]);
- }
- if (data[test_index])
- eth_test->flags |= ETH_TEST_FL_FAILED;
- test_index++;
- }
- hns_nic_net_reset(priv->netdev);
- clear_bit(NIC_STATE_TESTING, &priv->state);
- if (if_running)
- (void)dev_open(ndev);
- }
- /* Online tests aren't run; pass by default */
- (void)msleep_interruptible(4 * 1000);
- }
- /**
- * hns_nic_get_drvinfo - get net driver info
- * @dev: net device
- * @drvinfo: driver info
- */
- static void hns_nic_get_drvinfo(struct net_device *net_dev,
- struct ethtool_drvinfo *drvinfo)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- strncpy(drvinfo->version, HNAE_DRIVER_VERSION,
- sizeof(drvinfo->version));
- drvinfo->version[sizeof(drvinfo->version) - 1] = '\0';
- strncpy(drvinfo->driver, HNAE_DRIVER_NAME, sizeof(drvinfo->driver));
- drvinfo->driver[sizeof(drvinfo->driver) - 1] = '\0';
- strncpy(drvinfo->bus_info, priv->dev->bus->name,
- sizeof(drvinfo->bus_info));
- drvinfo->bus_info[ETHTOOL_BUSINFO_LEN - 1] = '\0';
- strncpy(drvinfo->fw_version, "N/A", ETHTOOL_FWVERS_LEN);
- drvinfo->eedump_len = 0;
- }
- /**
- * hns_get_ringparam - get ring parameter
- * @dev: net device
- * @param: ethtool parameter
- */
- static void hns_get_ringparam(struct net_device *net_dev,
- struct ethtool_ringparam *param)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_ae_ops *ops;
- struct hnae_queue *queue;
- u32 uplimit = 0;
- queue = priv->ae_handle->qs[0];
- ops = priv->ae_handle->dev->ops;
- if (ops->get_ring_bdnum_limit)
- ops->get_ring_bdnum_limit(queue, &uplimit);
- param->rx_max_pending = uplimit;
- param->tx_max_pending = uplimit;
- param->rx_pending = queue->rx_ring.desc_num;
- param->tx_pending = queue->tx_ring.desc_num;
- }
- /**
- * hns_get_pauseparam - get pause parameter
- * @dev: net device
- * @param: pause parameter
- */
- static void hns_get_pauseparam(struct net_device *net_dev,
- struct ethtool_pauseparam *param)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_ae_ops *ops;
- ops = priv->ae_handle->dev->ops;
- if (ops->get_pauseparam)
- ops->get_pauseparam(priv->ae_handle, ¶m->autoneg,
- ¶m->rx_pause, ¶m->tx_pause);
- }
- /**
- * hns_set_pauseparam - set pause parameter
- * @dev: net device
- * @param: pause parameter
- *
- * Return 0 on success, negative on failure
- */
- static int hns_set_pauseparam(struct net_device *net_dev,
- struct ethtool_pauseparam *param)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_handle *h;
- struct hnae_ae_ops *ops;
- h = priv->ae_handle;
- ops = h->dev->ops;
- if (!ops->set_pauseparam)
- return -ESRCH;
- return ops->set_pauseparam(priv->ae_handle, param->autoneg,
- param->rx_pause, param->tx_pause);
- }
- /**
- * hns_get_coalesce - get coalesce info.
- * @dev: net device
- * @ec: coalesce info.
- *
- * Return 0 on success, negative on failure.
- */
- static int hns_get_coalesce(struct net_device *net_dev,
- struct ethtool_coalesce *ec)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_ae_ops *ops;
- ops = priv->ae_handle->dev->ops;
- ec->use_adaptive_rx_coalesce = priv->ae_handle->coal_adapt_en;
- ec->use_adaptive_tx_coalesce = priv->ae_handle->coal_adapt_en;
- if ((!ops->get_coalesce_usecs) ||
- (!ops->get_max_coalesced_frames))
- return -ESRCH;
- ops->get_coalesce_usecs(priv->ae_handle,
- &ec->tx_coalesce_usecs,
- &ec->rx_coalesce_usecs);
- ops->get_max_coalesced_frames(
- priv->ae_handle,
- &ec->tx_max_coalesced_frames,
- &ec->rx_max_coalesced_frames);
- ops->get_coalesce_range(priv->ae_handle,
- &ec->tx_max_coalesced_frames_low,
- &ec->rx_max_coalesced_frames_low,
- &ec->tx_max_coalesced_frames_high,
- &ec->rx_max_coalesced_frames_high,
- &ec->tx_coalesce_usecs_low,
- &ec->rx_coalesce_usecs_low,
- &ec->tx_coalesce_usecs_high,
- &ec->rx_coalesce_usecs_high);
- return 0;
- }
- /**
- * hns_set_coalesce - set coalesce info.
- * @dev: net device
- * @ec: coalesce info.
- *
- * Return 0 on success, negative on failure.
- */
- static int hns_set_coalesce(struct net_device *net_dev,
- struct ethtool_coalesce *ec)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_ae_ops *ops;
- int rc1, rc2;
- ops = priv->ae_handle->dev->ops;
- if (ec->tx_coalesce_usecs != ec->rx_coalesce_usecs)
- return -EINVAL;
- if ((!ops->set_coalesce_usecs) ||
- (!ops->set_coalesce_frames))
- return -ESRCH;
- if (ec->use_adaptive_rx_coalesce != priv->ae_handle->coal_adapt_en)
- priv->ae_handle->coal_adapt_en = ec->use_adaptive_rx_coalesce;
- rc1 = ops->set_coalesce_usecs(priv->ae_handle,
- ec->rx_coalesce_usecs);
- rc2 = ops->set_coalesce_frames(priv->ae_handle,
- ec->tx_max_coalesced_frames,
- ec->rx_max_coalesced_frames);
- if (rc1 || rc2)
- return -EINVAL;
- return 0;
- }
- /**
- * hns_get_channels - get channel info.
- * @dev: net device
- * @ch: channel info.
- */
- static void
- hns_get_channels(struct net_device *net_dev, struct ethtool_channels *ch)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- ch->max_rx = priv->ae_handle->q_num;
- ch->max_tx = priv->ae_handle->q_num;
- ch->rx_count = priv->ae_handle->q_num;
- ch->tx_count = priv->ae_handle->q_num;
- }
- /**
- * get_ethtool_stats - get detail statistics.
- * @dev: net device
- * @stats: statistics info.
- * @data: statistics data.
- */
- static void hns_get_ethtool_stats(struct net_device *netdev,
- struct ethtool_stats *stats, u64 *data)
- {
- u64 *p = data;
- struct hns_nic_priv *priv = netdev_priv(netdev);
- struct hnae_handle *h = priv->ae_handle;
- const struct rtnl_link_stats64 *net_stats;
- struct rtnl_link_stats64 temp;
- if (!h->dev->ops->get_stats || !h->dev->ops->update_stats) {
- netdev_err(netdev, "get_stats or update_stats is null!\n");
- return;
- }
- h->dev->ops->update_stats(h, &netdev->stats);
- net_stats = dev_get_stats(netdev, &temp);
- /* get netdev statistics */
- p[0] = net_stats->rx_packets;
- p[1] = net_stats->tx_packets;
- p[2] = net_stats->rx_bytes;
- p[3] = net_stats->tx_bytes;
- p[4] = net_stats->rx_errors;
- p[5] = net_stats->tx_errors;
- p[6] = net_stats->rx_dropped;
- p[7] = net_stats->tx_dropped;
- p[8] = net_stats->multicast;
- p[9] = net_stats->collisions;
- p[10] = net_stats->rx_over_errors;
- p[11] = net_stats->rx_crc_errors;
- p[12] = net_stats->rx_frame_errors;
- p[13] = net_stats->rx_fifo_errors;
- p[14] = net_stats->rx_missed_errors;
- p[15] = net_stats->tx_aborted_errors;
- p[16] = net_stats->tx_carrier_errors;
- p[17] = net_stats->tx_fifo_errors;
- p[18] = net_stats->tx_heartbeat_errors;
- p[19] = net_stats->rx_length_errors;
- p[20] = net_stats->tx_window_errors;
- p[21] = net_stats->rx_compressed;
- p[22] = net_stats->tx_compressed;
- p[23] = netdev->rx_dropped.counter;
- p[24] = netdev->tx_dropped.counter;
- p[25] = priv->tx_timeout_count;
- /* get driver statistics */
- h->dev->ops->get_stats(h, &p[26]);
- }
- /**
- * get_strings: Return a set of strings that describe the requested objects
- * @dev: net device
- * @stats: string set ID.
- * @data: objects data.
- */
- static void hns_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
- {
- struct hns_nic_priv *priv = netdev_priv(netdev);
- struct hnae_handle *h = priv->ae_handle;
- char *buff = (char *)data;
- if (!h->dev->ops->get_strings) {
- netdev_err(netdev, "h->dev->ops->get_strings is null!\n");
- return;
- }
- if (stringset == ETH_SS_TEST) {
- if (priv->ae_handle->phy_if != PHY_INTERFACE_MODE_XGMII) {
- memcpy(buff, hns_nic_test_strs[MAC_INTERNALLOOP_MAC],
- ETH_GSTRING_LEN);
- buff += ETH_GSTRING_LEN;
- }
- memcpy(buff, hns_nic_test_strs[MAC_INTERNALLOOP_SERDES],
- ETH_GSTRING_LEN);
- buff += ETH_GSTRING_LEN;
- if ((netdev->phydev) && (!netdev->phydev->is_c45))
- memcpy(buff, hns_nic_test_strs[MAC_INTERNALLOOP_PHY],
- ETH_GSTRING_LEN);
- } else {
- snprintf(buff, ETH_GSTRING_LEN, "rx_packets");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_packets");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_bytes");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_bytes");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_dropped");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_dropped");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "multicast");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "collisions");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_over_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_crc_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_frame_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_fifo_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_missed_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_aborted_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_carrier_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_fifo_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_heartbeat_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_length_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_window_errors");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "rx_compressed");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "tx_compressed");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "netdev_rx_dropped");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "netdev_tx_dropped");
- buff = buff + ETH_GSTRING_LEN;
- snprintf(buff, ETH_GSTRING_LEN, "netdev_tx_timeout");
- buff = buff + ETH_GSTRING_LEN;
- h->dev->ops->get_strings(h, stringset, (u8 *)buff);
- }
- }
- /**
- * nic_get_sset_count - get string set count witch returned by nic_get_strings.
- * @dev: net device
- * @stringset: string set index, 0: self test string; 1: statistics string.
- *
- * Return string set count.
- */
- static int hns_get_sset_count(struct net_device *netdev, int stringset)
- {
- struct hns_nic_priv *priv = netdev_priv(netdev);
- struct hnae_handle *h = priv->ae_handle;
- struct hnae_ae_ops *ops = h->dev->ops;
- if (!ops->get_sset_count) {
- netdev_err(netdev, "get_sset_count is null!\n");
- return -EOPNOTSUPP;
- }
- if (stringset == ETH_SS_TEST) {
- u32 cnt = (sizeof(hns_nic_test_strs) / ETH_GSTRING_LEN);
- if (priv->ae_handle->phy_if == PHY_INTERFACE_MODE_XGMII)
- cnt--;
- if ((!netdev->phydev) || (netdev->phydev->is_c45))
- cnt--;
- return cnt;
- } else if (stringset == ETH_SS_STATS) {
- return (HNS_NET_STATS_CNT + ops->get_sset_count(h, stringset));
- } else {
- return -EOPNOTSUPP;
- }
- }
- /**
- * hns_phy_led_set - set phy LED status.
- * @dev: net device
- * @value: LED state.
- *
- * Return 0 on success, negative on failure.
- */
- static int hns_phy_led_set(struct net_device *netdev, int value)
- {
- int retval;
- struct phy_device *phy_dev = netdev->phydev;
- retval = phy_write(phy_dev, HNS_PHY_PAGE_REG, HNS_PHY_PAGE_LED);
- retval |= phy_write(phy_dev, HNS_LED_FC_REG, value);
- retval |= phy_write(phy_dev, HNS_PHY_PAGE_REG, HNS_PHY_PAGE_COPPER);
- if (retval) {
- netdev_err(netdev, "mdiobus_write fail !\n");
- return retval;
- }
- return 0;
- }
- /**
- * nic_set_phys_id - set phy identify LED.
- * @dev: net device
- * @state: LED state.
- *
- * Return 0 on success, negative on failure.
- */
- static int
- hns_set_phys_id(struct net_device *netdev, enum ethtool_phys_id_state state)
- {
- struct hns_nic_priv *priv = netdev_priv(netdev);
- struct hnae_handle *h = priv->ae_handle;
- struct phy_device *phy_dev = netdev->phydev;
- int ret;
- if (phy_dev)
- switch (state) {
- case ETHTOOL_ID_ACTIVE:
- ret = phy_write(phy_dev, HNS_PHY_PAGE_REG,
- HNS_PHY_PAGE_LED);
- if (ret)
- return ret;
- priv->phy_led_val = phy_read(phy_dev, HNS_LED_FC_REG);
- ret = phy_write(phy_dev, HNS_PHY_PAGE_REG,
- HNS_PHY_PAGE_COPPER);
- if (ret)
- return ret;
- return 2;
- case ETHTOOL_ID_ON:
- ret = hns_phy_led_set(netdev, HNS_LED_FORCE_ON);
- if (ret)
- return ret;
- break;
- case ETHTOOL_ID_OFF:
- ret = hns_phy_led_set(netdev, HNS_LED_FORCE_OFF);
- if (ret)
- return ret;
- break;
- case ETHTOOL_ID_INACTIVE:
- ret = phy_write(phy_dev, HNS_PHY_PAGE_REG,
- HNS_PHY_PAGE_LED);
- if (ret)
- return ret;
- ret = phy_write(phy_dev, HNS_LED_FC_REG,
- priv->phy_led_val);
- if (ret)
- return ret;
- ret = phy_write(phy_dev, HNS_PHY_PAGE_REG,
- HNS_PHY_PAGE_COPPER);
- if (ret)
- return ret;
- break;
- default:
- return -EINVAL;
- }
- else
- switch (state) {
- case ETHTOOL_ID_ACTIVE:
- return h->dev->ops->set_led_id(h, HNAE_LED_ACTIVE);
- case ETHTOOL_ID_ON:
- return h->dev->ops->set_led_id(h, HNAE_LED_ON);
- case ETHTOOL_ID_OFF:
- return h->dev->ops->set_led_id(h, HNAE_LED_OFF);
- case ETHTOOL_ID_INACTIVE:
- return h->dev->ops->set_led_id(h, HNAE_LED_INACTIVE);
- default:
- return -EINVAL;
- }
- return 0;
- }
- /**
- * hns_get_regs - get net device register
- * @dev: net device
- * @cmd: ethtool cmd
- * @date: register data
- */
- static void hns_get_regs(struct net_device *net_dev, struct ethtool_regs *cmd,
- void *data)
- {
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_ae_ops *ops;
- ops = priv->ae_handle->dev->ops;
- cmd->version = HNS_CHIP_VERSION;
- if (!ops->get_regs) {
- netdev_err(net_dev, "ops->get_regs is null!\n");
- return;
- }
- ops->get_regs(priv->ae_handle, data);
- }
- /**
- * nic_get_regs_len - get total register len.
- * @dev: net device
- *
- * Return total register len.
- */
- static int hns_get_regs_len(struct net_device *net_dev)
- {
- u32 reg_num;
- struct hns_nic_priv *priv = netdev_priv(net_dev);
- struct hnae_ae_ops *ops;
- ops = priv->ae_handle->dev->ops;
- if (!ops->get_regs_len) {
- netdev_err(net_dev, "ops->get_regs_len is null!\n");
- return -EOPNOTSUPP;
- }
- reg_num = ops->get_regs_len(priv->ae_handle);
- if (reg_num > 0)
- return reg_num * sizeof(u32);
- else
- return reg_num; /* error code */
- }
- /**
- * hns_nic_nway_reset - nway reset
- * @dev: net device
- *
- * Return 0 on success, negative on failure
- */
- static int hns_nic_nway_reset(struct net_device *netdev)
- {
- struct phy_device *phy = netdev->phydev;
- if (!netif_running(netdev))
- return 0;
- if (!phy)
- return -EOPNOTSUPP;
- if (phy->autoneg != AUTONEG_ENABLE)
- return -EINVAL;
- return genphy_restart_aneg(phy);
- }
- static u32
- hns_get_rss_key_size(struct net_device *netdev)
- {
- struct hns_nic_priv *priv = netdev_priv(netdev);
- struct hnae_ae_ops *ops;
- if (AE_IS_VER1(priv->enet_ver)) {
- netdev_err(netdev,
- "RSS feature is not supported on this hardware\n");
- return 0;
- }
- ops = priv->ae_handle->dev->ops;
- return ops->get_rss_key_size(priv->ae_handle);
- }
- static u32
- hns_get_rss_indir_size(struct net_device *netdev)
- {
- struct hns_nic_priv *priv = netdev_priv(netdev);
- struct hnae_ae_ops *ops;
- if (AE_IS_VER1(priv->enet_ver)) {
- netdev_err(netdev,
- "RSS feature is not supported on this hardware\n");
- return 0;
- }
- ops = priv->ae_handle->dev->ops;
- return ops->get_rss_indir_size(priv->ae_handle);
- }
- static int
- hns_get_rss(struct net_device *netdev, u32 *indir, u8 *key, u8 *hfunc)
- {
- struct hns_nic_priv *priv = netdev_priv(netdev);
- struct hnae_ae_ops *ops;
- if (AE_IS_VER1(priv->enet_ver)) {
- netdev_err(netdev,
- "RSS feature is not supported on this hardware\n");
- return -EOPNOTSUPP;
- }
- ops = priv->ae_handle->dev->ops;
- if (!indir)
- return 0;
- return ops->get_rss(priv->ae_handle, indir, key, hfunc);
- }
- static int
- hns_set_rss(struct net_device *netdev, const u32 *indir, const u8 *key,
- const u8 hfunc)
- {
- struct hns_nic_priv *priv = netdev_priv(netdev);
- struct hnae_ae_ops *ops;
- if (AE_IS_VER1(priv->enet_ver)) {
- netdev_err(netdev,
- "RSS feature is not supported on this hardware\n");
- return -EOPNOTSUPP;
- }
- ops = priv->ae_handle->dev->ops;
- if (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP) {
- netdev_err(netdev, "Invalid hfunc!\n");
- return -EOPNOTSUPP;
- }
- return ops->set_rss(priv->ae_handle, indir, key, hfunc);
- }
- static int hns_get_rxnfc(struct net_device *netdev,
- struct ethtool_rxnfc *cmd,
- u32 *rule_locs)
- {
- struct hns_nic_priv *priv = netdev_priv(netdev);
- switch (cmd->cmd) {
- case ETHTOOL_GRXRINGS:
- cmd->data = priv->ae_handle->q_num;
- break;
- default:
- return -EOPNOTSUPP;
- }
- return 0;
- }
- static const struct ethtool_ops hns_ethtool_ops = {
- .get_drvinfo = hns_nic_get_drvinfo,
- .get_link = hns_nic_get_link,
- .get_ringparam = hns_get_ringparam,
- .get_pauseparam = hns_get_pauseparam,
- .set_pauseparam = hns_set_pauseparam,
- .get_coalesce = hns_get_coalesce,
- .set_coalesce = hns_set_coalesce,
- .get_channels = hns_get_channels,
- .self_test = hns_nic_self_test,
- .get_strings = hns_get_strings,
- .get_sset_count = hns_get_sset_count,
- .get_ethtool_stats = hns_get_ethtool_stats,
- .set_phys_id = hns_set_phys_id,
- .get_regs_len = hns_get_regs_len,
- .get_regs = hns_get_regs,
- .nway_reset = hns_nic_nway_reset,
- .get_rxfh_key_size = hns_get_rss_key_size,
- .get_rxfh_indir_size = hns_get_rss_indir_size,
- .get_rxfh = hns_get_rss,
- .set_rxfh = hns_set_rss,
- .get_rxnfc = hns_get_rxnfc,
- .get_link_ksettings = hns_nic_get_link_ksettings,
- .set_link_ksettings = hns_nic_set_link_ksettings,
- };
- void hns_ethtool_set_ops(struct net_device *ndev)
- {
- ndev->ethtool_ops = &hns_ethtool_ops;
- }
|