* [dpdk-dev] [PATCH] net/ixgbe/base: wait for link after copper MAC setup
@ 2019-05-24 9:30 Ashijeet Acharya
2019-05-27 16:45 ` Zhang, Qi Z
0 siblings, 1 reply; 2+ messages in thread
From: Ashijeet Acharya @ 2019-05-24 9:30 UTC (permalink / raw)
To: dev; +Cc: wenzhuo.lu, konstantin.ananyev
After setting up the link on x552/X557-AT 10GBASE-T NICs, sometimes the
link does not get set up properly and as a result all the subsequent
calls to ixgbe_check_link() from ixgbe_dev_link_update_share() fail.
Introduce a delay time of 1s in ixgbe_setup_mac_link_t_X550em() before
beginning to set up the external PHY link speed to ensure that the
controller can acquire the link.
Signed-off-by: Ashijeet Acharya <ashijeet.acharya@6wind.com>
---
Hello,
This patch makes changes in the base driver.
Similar patch was introduced in case of fiber link MAC setup earlier
http://patchwork.dpdk.org/patch/43119/
Bugzilla: https://bugs.dpdk.org/show_bug.cgi?id=69
drivers/net/ixgbe/base/ixgbe_x550.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c b/drivers/net/ixgbe/base/ixgbe_x550.c
index a920a146e..930a61a20 100644
--- a/drivers/net/ixgbe/base/ixgbe_x550.c
+++ b/drivers/net/ixgbe/base/ixgbe_x550.c
@@ -4440,6 +4440,8 @@ s32 ixgbe_setup_mac_link_t_X550em(struct ixgbe_hw *hw,
{
s32 status;
ixgbe_link_speed force_speed;
+ u32 i;
+ bool link_up = false;
DEBUGFUNC("ixgbe_setup_mac_link_t_X550em");
@@ -4459,6 +4461,19 @@ s32 ixgbe_setup_mac_link_t_X550em(struct ixgbe_hw *hw,
if (status != IXGBE_SUCCESS)
return status;
+
+ /* Wait for the controller to acquire link */
+ for (i = 0; i < 10; i++) {
+ msec_delay(100);
+
+ status = ixgbe_check_link(hw, &force_speed, &link_up,
+ false);
+ if (status != IXGBE_SUCCESS)
+ return status;
+
+ if (link_up)
+ break;
+ }
}
return hw->phy.ops.setup_link_speed(hw, speed, autoneg_wait_to_complete);
--
2.11.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH] net/ixgbe/base: wait for link after copper MAC setup
2019-05-24 9:30 [dpdk-dev] [PATCH] net/ixgbe/base: wait for link after copper MAC setup Ashijeet Acharya
@ 2019-05-27 16:45 ` Zhang, Qi Z
0 siblings, 0 replies; 2+ messages in thread
From: Zhang, Qi Z @ 2019-05-27 16:45 UTC (permalink / raw)
To: Ashijeet Acharya, dev; +Cc: Lu, Wenzhuo, Ananyev, Konstantin
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Ashijeet Acharya
> Sent: Friday, May 24, 2019 2:30 AM
> To: dev@dpdk.org
> Cc: Lu, Wenzhuo <wenzhuo.lu@intel.com>; Ananyev, Konstantin
> <konstantin.ananyev@intel.com>
> Subject: [dpdk-dev] [PATCH] net/ixgbe/base: wait for link after copper MAC
> setup
>
> After setting up the link on x552/X557-AT 10GBASE-T NICs, sometimes the link
> does not get set up properly and as a result all the subsequent calls to
> ixgbe_check_link() from ixgbe_dev_link_update_share() fail.
>
> Introduce a delay time of 1s in ixgbe_setup_mac_link_t_X550em() before
> beginning to set up the external PHY link speed to ensure that the controller
> can acquire the link.
>
> Signed-off-by: Ashijeet Acharya <ashijeet.acharya@6wind.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
Applied to dpdk-next-net-intel.
Thanks
Qi
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-05-27 16:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-24 9:30 [dpdk-dev] [PATCH] net/ixgbe/base: wait for link after copper MAC setup Ashijeet Acharya
2019-05-27 16:45 ` Zhang, Qi Z
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).