* [PATCH net-next] net: phylink: Add phylinksetfixed_link() to configure fixed link state in phylink
@ 2024-08-19 5:23 Raju Lakkaraju
2024-08-19 16:08 ` Andrew Lunn
2024-08-19 16:23 ` Simon Horman
0 siblings, 2 replies; 5+ messages in thread
From: Raju Lakkaraju @ 2024-08-19 5:23 UTC (permalink / raw)
To: netdev
Cc: davem, linux, kuba, andrew, horms, hkallweit1, richardcochran,
rdunlap, Bryan.Whitehead, edumazet, pabeni, linux-kernel,
UNGLinuxDriver
From: Russell King <linux@armlinux.org.uk>
The function allows for the configuration of a fixed link state for a given
phylink instance. This addition is particularly useful for network devices that
operate with a fixed link configuration, where the link parameters do not change
dynamically. By using `phylink_set_fixed_link()`, drivers can easily set up
the fixed link state during initialization or configuration changes.
Signed-off-by: Russell King <linux@armlinux.org.uk>
Signed-off-by: Raju Lakkaraju <Raju.Lakkaraju@microchip.com>
---
Note: This code was developed by Mr.Russell King.
drivers/net/phy/phylink.c | 42 +++++++++++++++++++++++++++++++++++++++
include/linux/phylink.h | 2 ++
2 files changed, 44 insertions(+)
diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c
index 51c526d227fa..56dc810b8e00 100644
--- a/drivers/net/phy/phylink.c
+++ b/drivers/net/phy/phylink.c
@@ -1635,6 +1635,48 @@ static int phylink_register_sfp(struct phylink *pl,
return ret;
}
+/**
+ * phylink_set_fixed_link() - set the fixed link
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
+ * @state: a pointer to a struct phylink_link_state.
+ *
+ * This function is used when the link parameters are known and do not change,
+ * making it suitable for certain types of network connections.
+ *
+ * Returns zero on success, or negative error code.
+ */
+int phylink_set_fixed_link(struct phylink *pl,
+ const struct phylink_link_state *state)
+{
+ const struct phy_setting *s;
+ unsigned long *adv;
+
+ if (pl->cfg_link_an_mode != MLO_AN_PHY || !state ||
+ !test_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state))
+ return -EINVAL;
+
+ s = phy_lookup_setting(state->speed, state->duplex,
+ pl->supported, true);
+ if (!s)
+ return -EINVAL;
+
+ adv = pl->link_config.advertising;
+ linkmode_zero(adv);
+ linkmode_set_bit(s->bit, adv);
+ linkmode_set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, adv);
+
+ pl->link_config.speed = state->speed;
+ pl->link_config.duplex = state->duplex;
+ pl->link_config.link = 1;
+ pl->link_config.an_complete = 1;
+
+ pl->cfg_link_an_mode = MLO_AN_FIXED;
+ pl->cur_link_an_mode = pl->cfg_link_an_mode;
+
+ return 0;
+}
+EXPORT_SYMBOL_GPL(phylink_set_fixed_link);
+
/**
* phylink_create() - create a phylink instance
* @config: a pointer to the target &struct phylink_config
diff --git a/include/linux/phylink.h b/include/linux/phylink.h
index 2381e07429a2..5c01048860c4 100644
--- a/include/linux/phylink.h
+++ b/include/linux/phylink.h
@@ -598,6 +598,8 @@ int phylink_fwnode_phy_connect(struct phylink *pl,
const struct fwnode_handle *fwnode,
u32 flags);
void phylink_disconnect_phy(struct phylink *);
+int phylink_set_fixed_link(struct phylink *,
+ const struct phylink_link_state *);
void phylink_mac_change(struct phylink *, bool up);
void phylink_pcs_change(struct phylink_pcs *, bool up);
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] net: phylink: Add phylinksetfixed_link() to configure fixed link state in phylink
2024-08-19 5:23 [PATCH net-next] net: phylink: Add phylinksetfixed_link() to configure fixed link state in phylink Raju Lakkaraju
@ 2024-08-19 16:08 ` Andrew Lunn
2024-08-21 7:48 ` Raju.Lakkaraju
2024-08-19 16:23 ` Simon Horman
1 sibling, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2024-08-19 16:08 UTC (permalink / raw)
To: Raju Lakkaraju
Cc: netdev, davem, linux, kuba, horms, hkallweit1, richardcochran,
rdunlap, Bryan.Whitehead, edumazet, pabeni, linux-kernel,
UNGLinuxDriver
> +/**
> + * phylink_set_fixed_link() - set the fixed link
> + * @pl: a pointer to a &struct phylink returned from phylink_create()
> + * @state: a pointer to a struct phylink_link_state.
> + *
> + * This function is used when the link parameters are known and do not change,
> + * making it suitable for certain types of network connections.
> + *
> + * Returns zero on success, or negative error code.
kernel doc requires a : after Returns. The tooling is getting more
picky about this and pointing out this error. But there is a lot of
code which gets this wrong, so you probably cut/paste a bad example.
Andrew
---
pw-bot: cr
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] net: phylink: Add phylinksetfixed_link() to configure fixed link state in phylink
2024-08-19 5:23 [PATCH net-next] net: phylink: Add phylinksetfixed_link() to configure fixed link state in phylink Raju Lakkaraju
2024-08-19 16:08 ` Andrew Lunn
@ 2024-08-19 16:23 ` Simon Horman
2024-08-21 7:55 ` Raju.Lakkaraju
1 sibling, 1 reply; 5+ messages in thread
From: Simon Horman @ 2024-08-19 16:23 UTC (permalink / raw)
To: Raju Lakkaraju
Cc: netdev, davem, linux, kuba, andrew, hkallweit1, richardcochran,
rdunlap, Bryan.Whitehead, edumazet, pabeni, linux-kernel,
UNGLinuxDriver
On Mon, Aug 19, 2024 at 10:53:35AM +0530, Raju Lakkaraju wrote:
> From: Russell King <linux@armlinux.org.uk>
>
> The function allows for the configuration of a fixed link state for a given
> phylink instance. This addition is particularly useful for network devices that
> operate with a fixed link configuration, where the link parameters do not change
> dynamically. By using `phylink_set_fixed_link()`, drivers can easily set up
> the fixed link state during initialization or configuration changes.
>
> Signed-off-by: Russell King <linux@armlinux.org.uk>
> Signed-off-by: Raju Lakkaraju <Raju.Lakkaraju@microchip.com>
> ---
> Note: This code was developed by Mr.Russell King.
Hi,
I am wondering if we need a user of this function in order for this patch
to be accepted, as is often the practice for new features.
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH net-next] net: phylink: Add phylinksetfixed_link() to configure fixed link state in phylink
2024-08-19 16:08 ` Andrew Lunn
@ 2024-08-21 7:48 ` Raju.Lakkaraju
0 siblings, 0 replies; 5+ messages in thread
From: Raju.Lakkaraju @ 2024-08-21 7:48 UTC (permalink / raw)
To: andrew
Cc: netdev, davem, linux, kuba, horms, hkallweit1, richardcochran,
rdunlap, Bryan.Whitehead, edumazet, pabeni, linux-kernel,
UNGLinuxDriver
Hi Andrew,
Thank you for review the patch.
> -----Original Message-----
> From: Andrew Lunn <andrew@lunn.ch>
> Sent: Monday, August 19, 2024 9:39 PM
> To: Raju Lakkaraju - I30499 <Raju.Lakkaraju@microchip.com>
> Cc: netdev@vger.kernel.org; davem@davemloft.net; linux@armlinux.org.uk;
> kuba@kernel.org; horms@kernel.org; hkallweit1@gmail.com;
> richardcochran@gmail.com; rdunlap@infradead.org; Bryan Whitehead -
> C21958 <Bryan.Whitehead@microchip.com>; edumazet@google.com;
> pabeni@redhat.com; linux-kernel@vger.kernel.org; UNGLinuxDriver
> <UNGLinuxDriver@microchip.com>
> Subject: Re: [PATCH net-next] net: phylink: Add phylinksetfixed_link() to
> configure fixed link state in phylink
>
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the
> content is safe
>
> > +/**
> > + * phylink_set_fixed_link() - set the fixed link
> > + * @pl: a pointer to a &struct phylink returned from phylink_create()
> > + * @state: a pointer to a struct phylink_link_state.
> > + *
> > + * This function is used when the link parameters are known and do
> > +not change,
> > + * making it suitable for certain types of network connections.
> > + *
> > + * Returns zero on success, or negative error code.
>
> kernel doc requires a : after Returns. The tooling is getting more picky about
> this and pointing out this error. But there is a lot of code which gets this
> wrong, so you probably cut/paste a bad example.
>
Ok. I will fix.
You are correct. I did copy/paste the string.
> Andrew
>
> ---
> pw-bot: cr
Thanks,
Raju
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH net-next] net: phylink: Add phylinksetfixed_link() to configure fixed link state in phylink
2024-08-19 16:23 ` Simon Horman
@ 2024-08-21 7:55 ` Raju.Lakkaraju
0 siblings, 0 replies; 5+ messages in thread
From: Raju.Lakkaraju @ 2024-08-21 7:55 UTC (permalink / raw)
To: horms
Cc: netdev, davem, linux, kuba, andrew, hkallweit1, richardcochran,
rdunlap, Bryan.Whitehead, edumazet, pabeni, linux-kernel,
UNGLinuxDriver
Hi Simon,
Thank you for review the patch.
> -----Original Message-----
> From: Simon Horman <horms@kernel.org>
> Sent: Monday, August 19, 2024 9:54 PM
> To: Raju Lakkaraju - I30499 <Raju.Lakkaraju@microchip.com>
> Cc: netdev@vger.kernel.org; davem@davemloft.net; linux@armlinux.org.uk;
> kuba@kernel.org; andrew@lunn.ch; hkallweit1@gmail.com;
> richardcochran@gmail.com; rdunlap@infradead.org; Bryan Whitehead -
> C21958 <Bryan.Whitehead@microchip.com>; edumazet@google.com;
> pabeni@redhat.com; linux-kernel@vger.kernel.org; UNGLinuxDriver
> <UNGLinuxDriver@microchip.com>
> Subject: Re: [PATCH net-next] net: phylink: Add phylinksetfixed_link() to
> configure fixed link state in phylink
>
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the
> content is safe
>
> On Mon, Aug 19, 2024 at 10:53:35AM +0530, Raju Lakkaraju wrote:
> > From: Russell King <linux@armlinux.org.uk>
> >
> > The function allows for the configuration of a fixed link state for a
> > given phylink instance. This addition is particularly useful for
> > network devices that operate with a fixed link configuration, where
> > the link parameters do not change dynamically. By using
> > `phylink_set_fixed_link()`, drivers can easily set up the fixed link state during
> initialization or configuration changes.
> >
> > Signed-off-by: Russell King <linux@armlinux.org.uk>
> > Signed-off-by: Raju Lakkaraju <Raju.Lakkaraju@microchip.com>
> > ---
> > Note: This code was developed by Mr.Russell King.
>
> Hi,
>
> I am wondering if we need a user of this function in order for this patch to be
> accepted, as is often the practice for new features.
This patch is Mr. Russell King's developed code which I'm submitting to Linux community for review.
just following Russell's request.
i.e.
https://lore.kernel.org/netdev/ZsCMtARGCOLsbF9h@shell.armlinux.org.uk/
if it is required, I can send both together in a single series. Please confirm
Hi Russell, Do you any concerns about Mr. Simon comments?
Thanks,
Raju
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-08-21 7:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-19 5:23 [PATCH net-next] net: phylink: Add phylinksetfixed_link() to configure fixed link state in phylink Raju Lakkaraju
2024-08-19 16:08 ` Andrew Lunn
2024-08-21 7:48 ` Raju.Lakkaraju
2024-08-19 16:23 ` Simon Horman
2024-08-21 7:55 ` Raju.Lakkaraju
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).