This extends the support for 2.5iG and 5G NIC commonly found today

Signed-off-by: Julien Aube <julien_d...@jaube.fr>
---
 app/test-pmd/cmdline.c                      | 14 +++++++++-----
 app/test-pmd/parameters.c                   |  6 ++++++
 doc/guides/testpmd_app_ug/run_app.rst       |  2 ++
 doc/guides/testpmd_app_ug/testpmd_funcs.rst |  2 +-
 4 files changed, 18 insertions(+), 6 deletions(-)

diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index 7b20bef4e9..727890ef38 100644
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -653,7 +653,7 @@ static void cmd_help_long_parsed(void *parsed_result,
                        "    Detach physical or virtual dev by port_id\n\n"
 
                        "port config (port_id|all)"
-                       " speed 
(10|100|1000|10000|25000|40000|50000|100000|200000|400000|auto)"
+                       " speed 
(10|100|1000|2500|5000|10000|25000|40000|50000|100000|200000|400000|auto)"
                        " duplex (half|full|auto)\n"
                        "    Set speed and duplex for all ports or port_id\n\n"
 
@@ -1344,6 +1344,10 @@ parse_and_check_speed_duplex(char *speedstr, char 
*duplexstr, uint32_t *speed)
                }
                if (!strcmp(speedstr, "1000")) {
                        *speed = RTE_ETH_LINK_SPEED_1G;
+               } else if (!strcmp(speedstr, "2500")) {
+                       *speed = RTE_ETH_LINK_SPEED_2_5G;
+               } else if (!strcmp(speedstr, "5000")) {
+                       *speed = RTE_ETH_LINK_SPEED_5G;
                } else if (!strcmp(speedstr, "10000")) {
                        *speed = RTE_ETH_LINK_SPEED_10G;
                } else if (!strcmp(speedstr, "25000")) {
@@ -1408,7 +1412,7 @@ static cmdline_parse_token_string_t 
cmd_config_speed_all_item1 =
        TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed");
 static cmdline_parse_token_string_t cmd_config_speed_all_value1 =
        TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1,
-                               
"10#100#1000#10000#25000#40000#50000#100000#200000#400000#auto");
+                               
"10#100#1000#2500#5000#10000#25000#40000#50000#100000#200000#400000#auto");
 static cmdline_parse_token_string_t cmd_config_speed_all_item2 =
        TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex");
 static cmdline_parse_token_string_t cmd_config_speed_all_value2 =
@@ -1419,7 +1423,7 @@ static cmdline_parse_inst_t cmd_config_speed_all = {
        .f = cmd_config_speed_all_parsed,
        .data = NULL,
        .help_str = "port config all speed "
-               "10|100|1000|10000|25000|40000|50000|100000|200000|400000|auto 
duplex "
+               
"10|100|1000|2500|5000|10000|25000|40000|50000|100000|200000|400000|auto duplex 
"
                                                        "half|full|auto",
        .tokens = {
                (void *)&cmd_config_speed_all_port,
@@ -1483,7 +1487,7 @@ static cmdline_parse_token_string_t 
cmd_config_speed_specific_item1 =
                                                                "speed");
 static cmdline_parse_token_string_t cmd_config_speed_specific_value1 =
        TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1,
-                               
"10#100#1000#10000#25000#40000#50000#100000#200000#400000#auto");
+                               
"10#100#1000#2500#5000#10000#25000#40000#50000#100000#200000#400000#auto");
 static cmdline_parse_token_string_t cmd_config_speed_specific_item2 =
        TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2,
                                                                "duplex");
@@ -1495,7 +1499,7 @@ static cmdline_parse_inst_t cmd_config_speed_specific = {
        .f = cmd_config_speed_specific_parsed,
        .data = NULL,
        .help_str = "port config <port_id> speed "
-               "10|100|1000|10000|25000|40000|50000|100000|200000|400000|auto 
duplex "
+               
"10|100|1000|2500|5000|10000|25000|40000|50000|100000|200000|400000|auto duplex 
"
                                                        "half|full|auto",
        .tokens = {
                (void *)&cmd_config_speed_specific_port,
diff --git a/app/test-pmd/parameters.c b/app/test-pmd/parameters.c
index 3b37809baf..e38f3dfacd 100644
--- a/app/test-pmd/parameters.c
+++ b/app/test-pmd/parameters.c
@@ -550,6 +550,12 @@ parse_link_speed(int n)
        case 1000:
                speed |= RTE_ETH_LINK_SPEED_1G;
                break;
+       case 2500:
+               speed |= RTE_ETH_LINK_SPEED_2_5G;
+               break;
+       case 5000:
+               speed |= RTE_ETH_LINK_SPEED_5G;
+               break;
        case 10000:
                speed |= RTE_ETH_LINK_SPEED_10G;
                break;
diff --git a/doc/guides/testpmd_app_ug/run_app.rst 
b/doc/guides/testpmd_app_ug/run_app.rst
index 57b23241cf..e60ba4d345 100644
--- a/doc/guides/testpmd_app_ug/run_app.rst
+++ b/doc/guides/testpmd_app_ug/run_app.rst
@@ -388,6 +388,8 @@ The command line options are:
        10 - 10Mbps (not supported)
        100 - 100Mbps (not supported)
        1000 - 1Gbps
+       2500 - 2.5Gbps
+       5000 - 5Gbps
        10000 - 10Gbps
        25000 - 25Gbps
        40000 - 40Gbps
diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst 
b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
index 8f23847859..b727b689c1 100644
--- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst
+++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
@@ -2048,7 +2048,7 @@ port config - speed
 
 Set the speed and duplex mode for all ports or a specific port::
 
-   testpmd> port config (port_id|all) speed 
(10|100|1000|10000|25000|40000|50000|100000|200000|400000|auto) \
+   testpmd> port config (port_id|all) speed 
(10|100|1000|2500|5000|10000|25000|40000|50000|100000|200000|400000|auto) \
             duplex (half|full|auto)
 
 port config - queues/descriptors
-- 
2.30.2

Reply via email to