All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sarosh Arif <sarosh.arif@emumba.com>
To: ferruh.yigit@intel.com
Cc: dev@dpdk.org, Sarosh Arif <sarosh.arif@emumba.com>
Subject: [dpdk-dev] [PATCH v2] testpmd: add speed capability in device info
Date: Mon, 28 Sep 2020 15:01:21 +0500	[thread overview]
Message-ID: <20200928100121.3332768-1-sarosh.arif@emumba.com> (raw)
In-Reply-To: <20200904062339.77430-1-sarosh.arif@emumba.com>

Called rte_eth_dev_info_get() in testpmd, to get device info
so that speed capabilities can be printed under "show device info"
​
Bugzilla ID: 496
Signed-off-by: Sarosh Arif <sarosh.arif@emumba.com>
---
 app/test-pmd/config.c | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 30bee3324..e2b3975a3 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -518,7 +518,9 @@ device_infos_display(const char *identifier)
 	struct rte_device *dev;
 	struct rte_devargs da;
 	portid_t port_id;
+	struct rte_eth_dev_info dev_info;
 	char devstr[128];
+	uint32_t speed_capa;
 
 	memset(&da, 0, sizeof(da));
 	if (!identifier)
@@ -569,6 +571,42 @@ device_infos_display(const char *identifier)
 						      &mac_addr);
 				rte_eth_dev_get_name_by_port(port_id, name);
 				printf("\n\tDevice name: %s", name);
+				rte_eth_dev_info_get(port_id, &dev_info);
+				speed_capa = dev_info.speed_capa;
+
+				printf("\n\tDevice speed capability:");
+				if (speed_capa == ETH_LINK_SPEED_AUTONEG)
+					printf(" Autonegotiate (all speeds)");
+				if (speed_capa & ETH_LINK_SPEED_FIXED)
+					printf(" Disable autonegotiate (fixed speed)  ");
+				if (speed_capa & ETH_LINK_SPEED_10M_HD)
+					printf(" 10 Mbps half-duplex  ");
+				if (speed_capa & ETH_LINK_SPEED_10M)
+					printf(" 10 Mbps full-duplex  ");
+				if (speed_capa & ETH_LINK_SPEED_100M_HD)
+					printf(" 100 Mbps half-duplex  ");
+				if (speed_capa & ETH_LINK_SPEED_100M)
+					printf(" 100 Mbps full-duplex  ");
+				if (speed_capa & ETH_LINK_SPEED_1G)
+					printf(" 1 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_2_5G)
+					printf(" 2.5 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_5G)
+					printf(" 5 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_10G)
+					printf(" 10 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_20G)
+					printf(" 20 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_25G)
+					printf(" 25 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_50G)
+					printf(" 50 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_56G)
+					printf(" 56 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_100G)
+					printf(" 100 Gbps  ");
+				if (speed_capa & ETH_LINK_SPEED_200G)
+					printf(" 200 Gbps  ");
 				printf("\n");
 			}
 		}
-- 
2.25.1


  parent reply	other threads:[~2020-09-28 10:03 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-04  6:23 [dpdk-dev] [PATCH] testpmd: add speed capability in device info Sarosh Arif
2020-09-08  8:36 ` Sarosh Arif
2020-09-08 11:55   ` Ferruh Yigit
2020-09-17 15:56 ` Ferruh Yigit
2020-09-21 11:22   ` Sarosh Arif
2020-09-28 10:01 ` Sarosh Arif [this message]
2020-10-04  8:51   ` [dpdk-dev] [PATCH v2] " Asaf Penso
2020-10-07 15:30     ` Ferruh Yigit
2020-10-08 11:49   ` [dpdk-dev] [PATCH v3] " Sarosh Arif
2020-10-08 16:14     ` Ferruh Yigit
2020-10-08 18:11   ` [dpdk-dev] [PATCH v4] " Sarosh Arif
2020-10-08 18:25   ` [dpdk-dev] [PATCH v5] " Sarosh Arif
2020-10-09  9:27     ` Ferruh Yigit
2020-10-09 11:53       ` Ferruh Yigit

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=20200928100121.3332768-1-sarosh.arif@emumba.com \
    --to=sarosh.arif@emumba.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.