From: Jacob Keller <jacob.e.keller@intel.com>
To: Mengyuan Lou <mengyuanlou@net-swift.com>, <netdev@vger.kernel.org>
Cc: <pabeni@redhat.com>, <kuba@kernel.org>,
<przemyslaw.kitszel@intel.com>, <andrew@lunn.ch>,
<jiawenwu@trustnetic.com>, <duanqiangwen@net-swift.com>,
<stable@vger.kernel.org>
Subject: Re: [PATCH net v3] net: ngbe: Fix phy mode set to external phy
Date: Tue, 20 Aug 2024 14:46:29 -0700 [thread overview]
Message-ID: <fb874804-e0d7-4846-9434-64fa1a382076@intel.com> (raw)
In-Reply-To: <E6759CF1387CF84C+20240820030425.93003-1-mengyuanlou@net-swift.com>
On 8/19/2024 8:04 PM, Mengyuan Lou wrote:
> The MAC only has add the TX delay and it can not be modified.
> MAC and PHY are both set the TX delay cause transmission problems.
> So just disable TX delay in PHY, when use rgmii to attach to
> external phy, set PHY_INTERFACE_MODE_RGMII_RXID to phy drivers.
> And it is does not matter to internal phy.
>
> Fixes: bc2426d74aa3 ("net: ngbe: convert phylib to phylink")
> Signed-off-by: Mengyuan Lou <mengyuanlou@net-swift.com>
> Cc: stable@vger.kernel.org # 6.3+
> ---
> v3:
> -Rebase the fix commit for net.
> v2:
> -Add a comment for the code modification.
> -Add the problem in commit messages.
> https://lore.kernel.org/netdev/E9C427FDDCF0CBC3+20240812103025.42417-1-mengyuanlou@net-swift.com/
> v1:
> https://lore.kernel.org/netdev/C1587837D62D1BC0+20240806082520.29193-1-mengyuanlou@net-swift.com/
>
> drivers/net/ethernet/wangxun/ngbe/ngbe_mdio.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/wangxun/ngbe/ngbe_mdio.c b/drivers/net/ethernet/wangxun/ngbe/ngbe_mdio.c
> index ec54b18c5fe7..a5e9b779c44d 100644
> --- a/drivers/net/ethernet/wangxun/ngbe/ngbe_mdio.c
> +++ b/drivers/net/ethernet/wangxun/ngbe/ngbe_mdio.c
> @@ -124,8 +124,12 @@ static int ngbe_phylink_init(struct wx *wx)
> MAC_SYM_PAUSE | MAC_ASYM_PAUSE;
> config->mac_managed_pm = true;
>
> - phy_mode = PHY_INTERFACE_MODE_RGMII_ID;
> - __set_bit(PHY_INTERFACE_MODE_RGMII_ID, config->supported_interfaces);
> + /* The MAC only has add the Tx delay and it can not be modified.
> + * So just disable TX delay in PHY, and it is does not matter to
> + * internal phy.
> + */
The language of the comment seems a bit weird to me. It makes more sense
if it read "as it does not matter to the internal PHY".
That being said, its a bit of a nit. With our without changing the comment:
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
> + phy_mode = PHY_INTERFACE_MODE_RGMII_RXID;
> + __set_bit(PHY_INTERFACE_MODE_RGMII_RXID, config->supported_interfaces);
>
> phylink = phylink_create(config, NULL, phy_mode, &ngbe_mac_ops);
> if (IS_ERR(phylink))
next prev parent reply other threads:[~2024-08-20 21:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-20 3:04 [PATCH net v3] net: ngbe: Fix phy mode set to external phy Mengyuan Lou
2024-08-20 21:46 ` Jacob Keller [this message]
2024-08-22 11:00 ` patchwork-bot+netdevbpf
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=fb874804-e0d7-4846-9434-64fa1a382076@intel.com \
--to=jacob.e.keller@intel.com \
--cc=andrew@lunn.ch \
--cc=duanqiangwen@net-swift.com \
--cc=jiawenwu@trustnetic.com \
--cc=kuba@kernel.org \
--cc=mengyuanlou@net-swift.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=stable@vger.kernel.org \
/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).