* [net PATCH v1 0/2] Add support to retrieve hardware channel information
@ 2025-09-18 11:26 Sathesh B Edara
2025-09-18 11:26 ` [net PATCH v1 1/2] octeon_ep: " Sathesh B Edara
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Sathesh B Edara @ 2025-09-18 11:26 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
.../net/ethernet/marvell/octeon_ep/octep_ethtool.c | 12 ++++++++++++
.../ethernet/marvell/octeon_ep_vf/octep_vf_ethtool.c | 12 ++++++++++++
2 files changed, 24 insertions(+)
--
2.36.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [net PATCH v1 1/2] octeon_ep: Add support to retrieve hardware channel information
2025-09-18 11:26 [net PATCH v1 0/2] Add support to retrieve hardware channel information Sathesh B Edara
@ 2025-09-18 11:26 ` Sathesh B Edara
2025-09-18 11:26 ` [net PATCH v1 2/2] octeon_ep_vf: " Sathesh B Edara
2025-09-18 14:16 ` [net PATCH v1 0/2] " Jakub Kicinski
2 siblings, 0 replies; 4+ messages in thread
From: Sathesh B Edara @ 2025-09-18 11:26 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>
---
.../net/ethernet/marvell/octeon_ep/octep_ethtool.c | 12 ++++++++++++
1 file changed, 12 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..9d57e2da0b4b 100644
--- a/drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c
+++ b/drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c
@@ -437,6 +437,17 @@ 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_rx = CFG_GET_PORTS_MAX_IO_RINGS(oct->conf);
+ channel->max_tx = CFG_GET_PORTS_MAX_IO_RINGS(oct->conf);
+ channel->rx_count = CFG_GET_PORTS_ACTIVE_IO_RINGS(oct->conf);
+ channel->tx_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 +456,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] 4+ messages in thread
* [net PATCH v1 2/2] octeon_ep_vf: Add support to retrieve hardware channel information
2025-09-18 11:26 [net PATCH v1 0/2] Add support to retrieve hardware channel information Sathesh B Edara
2025-09-18 11:26 ` [net PATCH v1 1/2] octeon_ep: " Sathesh B Edara
@ 2025-09-18 11:26 ` Sathesh B Edara
2025-09-18 14:16 ` [net PATCH v1 0/2] " Jakub Kicinski
2 siblings, 0 replies; 4+ messages in thread
From: Sathesh B Edara @ 2025-09-18 11:26 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>
---
.../ethernet/marvell/octeon_ep_vf/octep_vf_ethtool.c | 12 ++++++++++++
1 file changed, 12 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..2b6a8530cbaa 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,17 @@ 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_rx = CFG_GET_PORTS_MAX_IO_RINGS(oct->conf);
+ channel->max_tx = CFG_GET_PORTS_MAX_IO_RINGS(oct->conf);
+ channel->rx_count = CFG_GET_PORTS_ACTIVE_IO_RINGS(oct->conf);
+ channel->tx_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 +262,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] 4+ messages in thread
* Re: [net PATCH v1 0/2] Add support to retrieve hardware channel information
2025-09-18 11:26 [net PATCH v1 0/2] Add support to retrieve hardware channel information Sathesh B Edara
2025-09-18 11:26 ` [net PATCH v1 1/2] octeon_ep: " Sathesh B Edara
2025-09-18 11:26 ` [net PATCH v1 2/2] octeon_ep_vf: " Sathesh B Edara
@ 2025-09-18 14:16 ` Jakub Kicinski
2 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2025-09-18 14:16 UTC (permalink / raw)
To: Sathesh B Edara
Cc: linux-kernel, sburla, vburru, davem, edumazet, pabeni, netdev,
hgani, andrew, srasheed
On Thu, 18 Sep 2025 04:26:50 -0700 Sathesh B Edara wrote:
> This patch series introduces support for retrieving hardware channel
> configuration through the ethtool interface for both PF and VF.
"net" in the subject means its a fix. This looks like "net-next"
material. Please repost tomorrow and make sure to read:
https://www.kernel.org/doc/html/next/process/maintainer-netdev.html
--
pw-bot: cr
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-09-18 14:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-18 11:26 [net PATCH v1 0/2] Add support to retrieve hardware channel information Sathesh B Edara
2025-09-18 11:26 ` [net PATCH v1 1/2] octeon_ep: " Sathesh B Edara
2025-09-18 11:26 ` [net PATCH v1 2/2] octeon_ep_vf: " Sathesh B Edara
2025-09-18 14:16 ` [net PATCH v1 0/2] " Jakub Kicinski
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).