From: "Zhang, Helin" <helin.zhang@intel.com>
To: Shweta Choudaha <shweta.choudaha@gmail.com>,
"dev@dpdk.org" <dev@dpdk.org>
Cc: Shweta Choudaha <shweta.choudaha@att.com>
Subject: Re: [dpdk-dev] [PATCH v2 1/2] net/ixgbe: add and export MDIO APIs
Date: Thu, 21 Dec 2017 03:25:23 +0000 [thread overview]
Message-ID: <F35DEAC7BCE34641BA9FAC6BCA4A12E71ACC48C4@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <1509978323-9879-1-git-send-email-shweta.choudaha@gmail.com>
In general, I'd suggest to add two things together with this patch set.
1. test cases in testpmd.
2. documentation in release notes, testpmd doc, and others if needed.
Regards,
Helin
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Shweta Choudaha
> Sent: Monday, November 6, 2017 10:25 PM
> To: dev@dpdk.org
> Cc: Shweta Choudaha
> Subject: [dpdk-dev] [PATCH v2 1/2] net/ixgbe: add and export MDIO APIs
>
> From: Shweta Choudaha <shweta.choudaha@att.com>
>
> Add ixgbe MDIO access APIs to read and write PHY registers when being used
> as a backplane port. Export these APIs via the map file
>
> Signed-off-by: Shweta Choudaha <shweta.choudaha@att.com>
> Reviewed-by: Chas Williams <chas3@att.com>
> Reviewed-by: Luca Boccassi <bluca@debian.org>
> ---
> drivers/net/ixgbe/rte_pmd_ixgbe.c | 53
> +++++++++++++++++++++++++++++
> drivers/net/ixgbe/rte_pmd_ixgbe.h | 39 +++++++++++++++++++++
> drivers/net/ixgbe/rte_pmd_ixgbe_version.map | 7 ++++
> 3 files changed, 99 insertions(+)
>
> diff --git a/drivers/net/ixgbe/rte_pmd_ixgbe.c
> b/drivers/net/ixgbe/rte_pmd_ixgbe.c
> index f127378..34d8cb4 100644
> --- a/drivers/net/ixgbe/rte_pmd_ixgbe.c
> +++ b/drivers/net/ixgbe/rte_pmd_ixgbe.c
> @@ -1041,3 +1041,56 @@ rte_pmd_ixgbe_bypass_wd_reset(uint16_t
> port_id)
> return ixgbe_bypass_wd_reset(dev);
> }
> #endif
> +
> +static void rte_pmd_ixgbe_get_hw_phy(uint16_t port, struct ixgbe_hw
> **hw,
> + struct ixgbe_phy_info **phy)
> +{
> + struct rte_eth_dev *dev;
> +
> + *hw = NULL;
> + *phy = NULL;
> +
> + dev = &rte_eth_devices[port];
> + if (!is_ixgbe_supported(dev))
> + return;
> +
> + *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
> + if (!*hw)
> + return;
> +
> + *phy = &(*hw)->phy;
> +}
> +
> +int
> +rte_pmd_ixgbe_mdio_read(uint16_t port, uint32_t reg_addr,
> + uint32_t dev_type, uint16_t *phy_data) {
> + struct ixgbe_hw *hw;
> + struct ixgbe_phy_info *phy;
> +
> + RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
> +
> + rte_pmd_ixgbe_get_hw_phy(port, &hw, &phy);
> +
> + if (!hw || !phy)
> + return -ENOTSUP;
> +
> + return phy->ops.read_reg_mdi(hw, reg_addr, dev_type, phy_data); }
> +
> +int
> +rte_pmd_ixgbe_mdio_write(uint16_t port, uint32_t reg_addr,
> + uint32_t dev_type, uint16_t phy_data) {
> + struct ixgbe_hw *hw;
> + struct ixgbe_phy_info *phy;
> +
> + RTE_ETH_VALID_PORTID_OR_ERR_RET(port, -ENODEV);
> +
> + rte_pmd_ixgbe_get_hw_phy(port, &hw, &phy);
> +
> + if (!hw || !phy)
> + return -ENOTSUP;
> +
> + return phy->ops.write_reg_mdi(hw, reg_addr, dev_type, phy_data); }
> diff --git a/drivers/net/ixgbe/rte_pmd_ixgbe.h
> b/drivers/net/ixgbe/rte_pmd_ixgbe.h
> index 81b18f8..5d36f8a 100644
> --- a/drivers/net/ixgbe/rte_pmd_ixgbe.h
> +++ b/drivers/net/ixgbe/rte_pmd_ixgbe.h
> @@ -601,6 +601,45 @@ int
> rte_pmd_ixgbe_bypass_wd_timeout_show(uint16_t port, uint32_t
> *wd_timeout);
> */
> int rte_pmd_ixgbe_bypass_wd_reset(uint16_t port);
>
> +/**
> + * Read PHY register using MDIO
> + *
> + * @param port
> + * The port identifier of the Ethernet device.
> + * @param reg_addr
> + * 32 bit PHY Register
> + * @param dev_type
> + * Always Unused
> + * @param phy_data
> + * Pointer for reading PHY register data
> + * @return
> + * - (0) if successful.
> + * - (-ENOTSUP) if hardware doesn't support.
> + * - (-ENODEV) if *port* invalid.
> + */
> +int
> +rte_pmd_ixgbe_mdio_read(uint16_t port, uint32_t reg_addr,
> + uint32_t dev_type, uint16_t *phy_data);
> +
> +/**
> + * Write data to PHY register using MDIO
> + *
> + * @param port
> + * The port identifier of the Ethernet device.
> + * @param reg_addr
> + * 32 bit PHY Register
> + * @param dev_type
> + * Always unused
> + * @param phy_data
> + * Data to write to PHY register
> + * @return
> + * - (0) if successful.
> + * - (-ENOTSUP) if hardware doesn't support.
> + * - (-ENODEV) if *port* invalid.
> + */
> +int
> +rte_pmd_ixgbe_mdio_write(uint16_t port, uint32_t reg_addr,
> + uint32_t dev_type, uint16_t phy_data);
>
> /**
> * Response sent back to ixgbe driver from user app after callback diff --git
> a/drivers/net/ixgbe/rte_pmd_ixgbe_version.map
> b/drivers/net/ixgbe/rte_pmd_ixgbe_version.map
> index bf77674..ce72c73 100644
> --- a/drivers/net/ixgbe/rte_pmd_ixgbe_version.map
> +++ b/drivers/net/ixgbe/rte_pmd_ixgbe_version.map
> @@ -52,3 +52,10 @@ DPDK_17.08 {
> rte_pmd_ixgbe_bypass_wd_timeout_show;
> rte_pmd_ixgbe_bypass_wd_timeout_store;
> } DPDK_17.05;
> +
> +EXPERIMENTAL {
> + global:
> +
> + rte_pmd_ixgbe_mdio_read;
> + rte_pmd_ixgbe_mdio_write;
> +} DPDK_17.08;
> --
> 2.1.4
next prev parent reply other threads:[~2017-12-21 3:25 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-06 13:42 [dpdk-dev] [PATCH " Shweta Choudaha
2017-11-06 14:25 ` [dpdk-dev] [PATCH v2 " Shweta Choudaha
2017-11-06 14:25 ` [dpdk-dev] [PATCH v2 2/2] net/ixgbe : backplane port MDIO support Shweta Choudaha
2017-12-21 3:23 ` Zhang, Helin
2018-01-10 3:17 ` Zhang, Helin
2018-01-23 14:14 ` Shweta Choudaha
2017-12-21 3:25 ` Zhang, Helin [this message]
2018-01-23 15:12 ` [dpdk-dev] [PATCH v2 1/2] net/ixgbe: add and export MDIO APIs Shweta Choudaha
2018-01-23 15:05 ` [dpdk-dev] [PATCH v3 " Shweta Choudaha
2018-01-23 15:05 ` [dpdk-dev] [PATCH v3 2/2] net/ixgbe : backplane port MDIO support Shweta Choudaha
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=F35DEAC7BCE34641BA9FAC6BCA4A12E71ACC48C4@SHSMSX103.ccr.corp.intel.com \
--to=helin.zhang@intel.com \
--cc=dev@dpdk.org \
--cc=shweta.choudaha@att.com \
--cc=shweta.choudaha@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).