netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] net: txgbe: fix the issue of TX failture
@ 2025-06-24  9:30 Jiawen Wu
  2025-06-25  9:35 ` Simon Horman
  0 siblings, 1 reply; 4+ messages in thread
From: Jiawen Wu @ 2025-06-24  9:30 UTC (permalink / raw)
  To: netdev, andrew+netdev, davem, edumazet, kuba, pabeni, horms
  Cc: mengyuanlou, Jiawen Wu

There is a occasional problem that ping is failed between AML devices.
That is because the manual enablement of the security Tx path on the
hardware is missing, no matter what its previous state was.

Fixes: 6f8b4c01a8cd ("net: txgbe: Implement PHYLINK for AML 25G/10G devices")
Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>
---
 drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c b/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
index 7dbcf41750c1..dc87ccad9652 100644
--- a/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
+++ b/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
@@ -294,6 +294,7 @@ static void txgbe_mac_link_up_aml(struct phylink_config *config,
 	wx_fc_enable(wx, tx_pause, rx_pause);
 
 	txgbe_reconfig_mac(wx);
+	txgbe_enable_sec_tx_path(wx);
 
 	txcfg = rd32(wx, TXGBE_AML_MAC_TX_CFG);
 	txcfg &= ~TXGBE_AML_MAC_TX_CFG_SPEED_MASK;
-- 
2.48.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net] net: txgbe: fix the issue of TX failture
  2025-06-24  9:30 [PATCH net] net: txgbe: fix the issue of TX failture Jiawen Wu
@ 2025-06-25  9:35 ` Simon Horman
  2025-06-25  9:51   ` Jiawen Wu
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Horman @ 2025-06-25  9:35 UTC (permalink / raw)
  To: Jiawen Wu
  Cc: netdev, andrew+netdev, davem, edumazet, kuba, pabeni, mengyuanlou

On Tue, Jun 24, 2025 at 05:30:21PM +0800, Jiawen Wu wrote:
> There is a occasional problem that ping is failed between AML devices.
> That is because the manual enablement of the security Tx path on the
> hardware is missing, no matter what its previous state was.
> 
> Fixes: 6f8b4c01a8cd ("net: txgbe: Implement PHYLINK for AML 25G/10G devices")
> Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>

nit: failure is misspelt in the subject

> ---
>  drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c b/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> index 7dbcf41750c1..dc87ccad9652 100644
> --- a/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> +++ b/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> @@ -294,6 +294,7 @@ static void txgbe_mac_link_up_aml(struct phylink_config *config,
>  	wx_fc_enable(wx, tx_pause, rx_pause);
>  
>  	txgbe_reconfig_mac(wx);
> +	txgbe_enable_sec_tx_path(wx);
>  
>  	txcfg = rd32(wx, TXGBE_AML_MAC_TX_CFG);
>  	txcfg &= ~TXGBE_AML_MAC_TX_CFG_SPEED_MASK;

Hi Jiawen,

I am unsure if it is important, but I notice that:

* txgbe_mac_link_up_aml is the mac_link_up callback for txgbe_aml

* Whereas for txgbe_phy txgbe_enable_sec_tx_path() is called in
  txgbe_mac_finish(), which is the mac_finish callback

Could you comment on this asymmetry?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH net] net: txgbe: fix the issue of TX failture
  2025-06-25  9:35 ` Simon Horman
@ 2025-06-25  9:51   ` Jiawen Wu
  2025-06-25 16:59     ` Simon Horman
  0 siblings, 1 reply; 4+ messages in thread
From: Jiawen Wu @ 2025-06-25  9:51 UTC (permalink / raw)
  To: 'Simon Horman'
  Cc: netdev, andrew+netdev, davem, edumazet, kuba, pabeni, mengyuanlou

On Wed, Jun 25, 2025 5:36 PM, Simon Horman wrote:
> On Tue, Jun 24, 2025 at 05:30:21PM +0800, Jiawen Wu wrote:
> > There is a occasional problem that ping is failed between AML devices.
> > That is because the manual enablement of the security Tx path on the
> > hardware is missing, no matter what its previous state was.
> >
> > Fixes: 6f8b4c01a8cd ("net: txgbe: Implement PHYLINK for AML 25G/10G devices")
> > Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>
> 
> nit: failure is misspelt in the subject

Thanks. :)

> 
> > ---
> >  drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c b/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> > index 7dbcf41750c1..dc87ccad9652 100644
> > --- a/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> > +++ b/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> > @@ -294,6 +294,7 @@ static void txgbe_mac_link_up_aml(struct phylink_config *config,
> >  	wx_fc_enable(wx, tx_pause, rx_pause);
> >
> >  	txgbe_reconfig_mac(wx);
> > +	txgbe_enable_sec_tx_path(wx);
> >
> >  	txcfg = rd32(wx, TXGBE_AML_MAC_TX_CFG);
> >  	txcfg &= ~TXGBE_AML_MAC_TX_CFG_SPEED_MASK;
> 
> Hi Jiawen,
> 
> I am unsure if it is important, but I notice that:
> 
> * txgbe_mac_link_up_aml is the mac_link_up callback for txgbe_aml
> 
> * Whereas for txgbe_phy txgbe_enable_sec_tx_path() is called in
>   txgbe_mac_finish(), which is the mac_finish callback
> 
> Could you comment on this asymmetry?

For txgbe_sp, the configuration of PCS is completed in the driver.
Disable sec_tx_path -> configure PCS -> enable sec_tx_path, it is
the necessary sequence. So these MAC operations were added in
txgbe_mac_prepare() and txgbe_mac_finish().

For txgbe_aml, the configuration of PCS is completed in the firmware.
So I didn't implement .mac_prepare and .mac_finish.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net] net: txgbe: fix the issue of TX failture
  2025-06-25  9:51   ` Jiawen Wu
@ 2025-06-25 16:59     ` Simon Horman
  0 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2025-06-25 16:59 UTC (permalink / raw)
  To: Jiawen Wu
  Cc: netdev, andrew+netdev, davem, edumazet, kuba, pabeni, mengyuanlou

On Wed, Jun 25, 2025 at 05:51:19PM +0800, Jiawen Wu wrote:
> On Wed, Jun 25, 2025 5:36 PM, Simon Horman wrote:
> > On Tue, Jun 24, 2025 at 05:30:21PM +0800, Jiawen Wu wrote:
> > > There is a occasional problem that ping is failed between AML devices.
> > > That is because the manual enablement of the security Tx path on the
> > > hardware is missing, no matter what its previous state was.
> > >
> > > Fixes: 6f8b4c01a8cd ("net: txgbe: Implement PHYLINK for AML 25G/10G devices")
> > > Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>
> > 
> > nit: failure is misspelt in the subject
> 
> Thanks. :)
> 
> > 
> > > ---
> > >  drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c | 1 +
> > >  1 file changed, 1 insertion(+)
> > >
> > > diff --git a/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c b/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> > > index 7dbcf41750c1..dc87ccad9652 100644
> > > --- a/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> > > +++ b/drivers/net/ethernet/wangxun/txgbe/txgbe_aml.c
> > > @@ -294,6 +294,7 @@ static void txgbe_mac_link_up_aml(struct phylink_config *config,
> > >  	wx_fc_enable(wx, tx_pause, rx_pause);
> > >
> > >  	txgbe_reconfig_mac(wx);
> > > +	txgbe_enable_sec_tx_path(wx);
> > >
> > >  	txcfg = rd32(wx, TXGBE_AML_MAC_TX_CFG);
> > >  	txcfg &= ~TXGBE_AML_MAC_TX_CFG_SPEED_MASK;
> > 
> > Hi Jiawen,
> > 
> > I am unsure if it is important, but I notice that:
> > 
> > * txgbe_mac_link_up_aml is the mac_link_up callback for txgbe_aml
> > 
> > * Whereas for txgbe_phy txgbe_enable_sec_tx_path() is called in
> >   txgbe_mac_finish(), which is the mac_finish callback
> > 
> > Could you comment on this asymmetry?
> 
> For txgbe_sp, the configuration of PCS is completed in the driver.
> Disable sec_tx_path -> configure PCS -> enable sec_tx_path, it is
> the necessary sequence. So these MAC operations were added in
> txgbe_mac_prepare() and txgbe_mac_finish().
> 
> For txgbe_aml, the configuration of PCS is completed in the firmware.
> So I didn't implement .mac_prepare and .mac_finish.

Thanks, that seems reasonable to me.

Reviewed-by: Simon Horman <horms@kernel.org>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-06-25 16:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-24  9:30 [PATCH net] net: txgbe: fix the issue of TX failture Jiawen Wu
2025-06-25  9:35 ` Simon Horman
2025-06-25  9:51   ` Jiawen Wu
2025-06-25 16:59     ` Simon Horman

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).