[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZJw2CKtgqbRU/3Z6@shell.armlinux.org.uk>
Date: Wed, 28 Jun 2023 14:30:48 +0100
From: "Russell King (Oracle)" <linux@...linux.org.uk>
To: Revanth Kumar Uppala <ruppala@...dia.com>
Cc: andrew@...n.ch, hkallweit1@...il.com, netdev@...r.kernel.org,
linux-tegra@...r.kernel.org, Narayan Reddy <narayanr@...dia.com>
Subject: Re: [PATCH 1/4] net: phy: aquantia: Enable Tx/Rx pause frame support
in aquantia PHY
On Wed, Jun 28, 2023 at 06:13:23PM +0530, Revanth Kumar Uppala wrote:
> From: Narayan Reddy <narayanr@...dia.com>
>
> Enable flow control support using pause frames in aquantia phy driver.
>
> Signed-off-by: Narayan Reddy <narayanr@...dia.com>
> Signed-off-by: Revanth Kumar Uppala <ruppala@...dia.com>
I think this is over-complex.
> #define MDIO_PHYXS_VEND_IF_STATUS 0xe812
> #define MDIO_PHYXS_VEND_IF_STATUS_TYPE_MASK GENMASK(7, 3)
> #define MDIO_PHYXS_VEND_IF_STATUS_TYPE_KR 0
> @@ -583,6 +585,17 @@ static int aqr107_config_init(struct phy_device *phydev)
> if (!ret)
> aqr107_chip_info(phydev);
>
> + /* Advertize flow control */
> + linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
> + linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
> + linkmode_copy(phydev->advertising, phydev->supported);
This is the wrong place to be doing this, since pause support depends
not only on the PHY but also on the MAC. There are phylib interfaces
that MACs should call so that phylib knows that the MAC supports pause
frames.
Secondly, the PHY driver needs to tell phylib that the PHY supports
pause frames, and that's done through either setting the .features
member in the PHY driver, or by providing a .get_features
implementation.
Configuration of the pause advertisement should already be happening
through the core phylib code.
Thanks.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
Powered by blists - more mailing lists