netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next PATCH v2 0/2] Add support to retrieve hardware channel information
@ 2025-09-25 12:51 Sathesh B Edara
  2025-09-25 12:51 ` [net-next PATCH v2 1/2] octeon_ep: " Sathesh B Edara
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Sathesh B Edara @ 2025-09-25 12:51 UTC (permalink / raw)
  To: linux-kernel, sburla, vburru, davem, edumazet, kuba, pabeni,
	netdev, hgani, andrew, srasheed
  Cc: sedara

This patch series introduces support for retrieving hardware channel
configuration through the ethtool interface for both PF and VF.

Sathesh B Edara (2):
  octeon_ep: Add support to retrieve hardware channel information
  octeon_ep_vf: Add support to retrieve hardware channel information

 drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c | 10 ++++++++++
 .../ethernet/marvell/octeon_ep_vf/octep_vf_ethtool.c   | 10 ++++++++++
 2 files changed, 20 insertions(+)

Find V1 here:
https://lore.kernel.org/netdev/20250923094120.13133-1-sedara@marvell.com/

V2:
- Corrected channel counts to combined.

-- 
2.36.0


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

* [net-next PATCH v2 1/2] octeon_ep: Add support to retrieve hardware channel information
  2025-09-25 12:51 [net-next PATCH v2 0/2] Add support to retrieve hardware channel information Sathesh B Edara
@ 2025-09-25 12:51 ` Sathesh B Edara
  2025-09-26 12:58   ` Simon Horman
  2025-09-25 12:51 ` [net-next PATCH v2 2/2] octeon_ep_vf: " Sathesh B Edara
  2025-09-27  1:20 ` [net-next PATCH v2 0/2] " patchwork-bot+netdevbpf
  2 siblings, 1 reply; 6+ messages in thread
From: Sathesh B Edara @ 2025-09-25 12:51 UTC (permalink / raw)
  To: linux-kernel, sburla, vburru, davem, edumazet, kuba, pabeni,
	netdev, hgani, andrew, srasheed
  Cc: sedara, Andrew Lunn

This patch introduces support for retrieving hardware channel
configuration through the ethtool interface.

Signed-off-by: Sathesh B Edara <sedara@marvell.com>
---
Find V1 here:
https://lore.kernel.org/netdev/20250923094120.13133-2-sedara@marvell.com/

V2:
- Corrected channel counts to combined.

 drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c b/drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c
index a88c006ea65b..01c6c0a2f283 100644
--- a/drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c
+++ b/drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c
@@ -437,6 +437,15 @@ static int octep_set_link_ksettings(struct net_device *netdev,
 	return 0;
 }
 
+static void octep_get_channels(struct net_device *dev,
+			       struct ethtool_channels *channel)
+{
+	struct octep_device *oct = netdev_priv(dev);
+
+	channel->max_combined = CFG_GET_PORTS_MAX_IO_RINGS(oct->conf);
+	channel->combined_count = CFG_GET_PORTS_ACTIVE_IO_RINGS(oct->conf);
+}
+
 static const struct ethtool_ops octep_ethtool_ops = {
 	.get_drvinfo = octep_get_drvinfo,
 	.get_link = ethtool_op_get_link,
@@ -445,6 +454,7 @@ static const struct ethtool_ops octep_ethtool_ops = {
 	.get_ethtool_stats = octep_get_ethtool_stats,
 	.get_link_ksettings = octep_get_link_ksettings,
 	.set_link_ksettings = octep_set_link_ksettings,
+	.get_channels = octep_get_channels,
 };
 
 void octep_set_ethtool_ops(struct net_device *netdev)
-- 
2.36.0


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

* [net-next PATCH v2 2/2] octeon_ep_vf: Add support to retrieve hardware channel information
  2025-09-25 12:51 [net-next PATCH v2 0/2] Add support to retrieve hardware channel information Sathesh B Edara
  2025-09-25 12:51 ` [net-next PATCH v2 1/2] octeon_ep: " Sathesh B Edara
@ 2025-09-25 12:51 ` Sathesh B Edara
  2025-09-26 12:58   ` Simon Horman
  2025-09-27  1:20 ` [net-next PATCH v2 0/2] " patchwork-bot+netdevbpf
  2 siblings, 1 reply; 6+ messages in thread
From: Sathesh B Edara @ 2025-09-25 12:51 UTC (permalink / raw)
  To: linux-kernel, sburla, vburru, davem, edumazet, kuba, pabeni,
	netdev, hgani, andrew, srasheed
  Cc: sedara, Andrew Lunn

This patch introduces support for retrieving hardware channel
configuration through the ethtool interface.

Signed-off-by: Sathesh B Edara <sedara@marvell.com>
---
Find V1 here:
https://lore.kernel.org/netdev/20250923094120.13133-3-sedara@marvell.com/

V2:
- Corrected channel counts to combined.

 .../ethernet/marvell/octeon_ep_vf/octep_vf_ethtool.c   | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/net/ethernet/marvell/octeon_ep_vf/octep_vf_ethtool.c b/drivers/net/ethernet/marvell/octeon_ep_vf/octep_vf_ethtool.c
index d60441928ba9..241a7e7c7ad2 100644
--- a/drivers/net/ethernet/marvell/octeon_ep_vf/octep_vf_ethtool.c
+++ b/drivers/net/ethernet/marvell/octeon_ep_vf/octep_vf_ethtool.c
@@ -244,6 +244,15 @@ static int octep_vf_get_link_ksettings(struct net_device *netdev,
 	return 0;
 }
 
+static void octep_vf_get_channels(struct net_device *dev,
+				  struct ethtool_channels *channel)
+{
+	struct octep_vf_device *oct = netdev_priv(dev);
+
+	channel->max_combined = CFG_GET_PORTS_MAX_IO_RINGS(oct->conf);
+	channel->combined_count = CFG_GET_PORTS_ACTIVE_IO_RINGS(oct->conf);
+}
+
 static const struct ethtool_ops octep_vf_ethtool_ops = {
 	.get_drvinfo = octep_vf_get_drvinfo,
 	.get_link = ethtool_op_get_link,
@@ -251,6 +260,7 @@ static const struct ethtool_ops octep_vf_ethtool_ops = {
 	.get_sset_count = octep_vf_get_sset_count,
 	.get_ethtool_stats = octep_vf_get_ethtool_stats,
 	.get_link_ksettings = octep_vf_get_link_ksettings,
+	.get_channels = octep_vf_get_channels,
 };
 
 void octep_vf_set_ethtool_ops(struct net_device *netdev)
-- 
2.36.0


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

* Re: [net-next PATCH v2 1/2] octeon_ep: Add support to retrieve hardware channel information
  2025-09-25 12:51 ` [net-next PATCH v2 1/2] octeon_ep: " Sathesh B Edara
@ 2025-09-26 12:58   ` Simon Horman
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2025-09-26 12:58 UTC (permalink / raw)
  To: Sathesh B Edara
  Cc: linux-kernel, sburla, vburru, davem, edumazet, kuba, pabeni,
	netdev, hgani, andrew, srasheed, Andrew Lunn

On Thu, Sep 25, 2025 at 05:51:33AM -0700, Sathesh B Edara wrote:
> This patch introduces support for retrieving hardware channel
> configuration through the ethtool interface.
> 
> Signed-off-by: Sathesh B Edara <sedara@marvell.com>
> ---
> Find V1 here:
> https://lore.kernel.org/netdev/20250923094120.13133-2-sedara@marvell.com/
> 
> V2:
> - Corrected channel counts to combined.

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


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

* Re: [net-next PATCH v2 2/2] octeon_ep_vf: Add support to retrieve hardware channel information
  2025-09-25 12:51 ` [net-next PATCH v2 2/2] octeon_ep_vf: " Sathesh B Edara
@ 2025-09-26 12:58   ` Simon Horman
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2025-09-26 12:58 UTC (permalink / raw)
  To: Sathesh B Edara
  Cc: linux-kernel, sburla, vburru, davem, edumazet, kuba, pabeni,
	netdev, hgani, andrew, srasheed, Andrew Lunn

On Thu, Sep 25, 2025 at 05:51:34AM -0700, Sathesh B Edara wrote:
> This patch introduces support for retrieving hardware channel
> configuration through the ethtool interface.
> 
> Signed-off-by: Sathesh B Edara <sedara@marvell.com>
> ---
> Find V1 here:
> https://lore.kernel.org/netdev/20250923094120.13133-3-sedara@marvell.com/
> 
> V2:
> - Corrected channel counts to combined.

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


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

* Re: [net-next PATCH v2 0/2] Add support to retrieve hardware channel information
  2025-09-25 12:51 [net-next PATCH v2 0/2] Add support to retrieve hardware channel information Sathesh B Edara
  2025-09-25 12:51 ` [net-next PATCH v2 1/2] octeon_ep: " Sathesh B Edara
  2025-09-25 12:51 ` [net-next PATCH v2 2/2] octeon_ep_vf: " Sathesh B Edara
@ 2025-09-27  1:20 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-09-27  1:20 UTC (permalink / raw)
  To: Sathesh B Edara
  Cc: linux-kernel, sburla, vburru, davem, edumazet, kuba, pabeni,
	netdev, hgani, andrew, srasheed

Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Thu, 25 Sep 2025 05:51:32 -0700 you wrote:
> This patch series introduces support for retrieving hardware channel
> configuration through the ethtool interface for both PF and VF.
> 
> Sathesh B Edara (2):
>   octeon_ep: Add support to retrieve hardware channel information
>   octeon_ep_vf: Add support to retrieve hardware channel information
> 
> [...]

Here is the summary with links:
  - [net-next,v2,1/2] octeon_ep: Add support to retrieve hardware channel information
    https://git.kernel.org/netdev/net-next/c/24d15b6a17e2
  - [net-next,v2,2/2] octeon_ep_vf: Add support to retrieve hardware channel information
    https://git.kernel.org/netdev/net-next/c/6294bcd423ae

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2025-09-27  1:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-25 12:51 [net-next PATCH v2 0/2] Add support to retrieve hardware channel information Sathesh B Edara
2025-09-25 12:51 ` [net-next PATCH v2 1/2] octeon_ep: " Sathesh B Edara
2025-09-26 12:58   ` Simon Horman
2025-09-25 12:51 ` [net-next PATCH v2 2/2] octeon_ep_vf: " Sathesh B Edara
2025-09-26 12:58   ` Simon Horman
2025-09-27  1:20 ` [net-next PATCH v2 0/2] " patchwork-bot+netdevbpf

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