app/testpmd: fix port id type
[dpdk.git] / app / test-pmd / cmdline.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
5  *   Copyright(c) 2014 6WIND S.A.
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include <stdarg.h>
36 #include <errno.h>
37 #include <stdio.h>
38 #include <stdint.h>
39 #include <string.h>
40 #include <termios.h>
41 #include <unistd.h>
42 #include <inttypes.h>
43 #ifndef __linux__
44 #ifndef __FreeBSD__
45 #include <net/socket.h>
46 #else
47 #include <sys/socket.h>
48 #endif
49 #endif
50 #include <netinet/in.h>
51
52 #include <sys/queue.h>
53
54 #include <rte_common.h>
55 #include <rte_byteorder.h>
56 #include <rte_log.h>
57 #include <rte_debug.h>
58 #include <rte_cycles.h>
59 #include <rte_memory.h>
60 #include <rte_memzone.h>
61 #include <rte_malloc.h>
62 #include <rte_launch.h>
63 #include <rte_eal.h>
64 #include <rte_per_lcore.h>
65 #include <rte_lcore.h>
66 #include <rte_atomic.h>
67 #include <rte_branch_prediction.h>
68 #include <rte_ring.h>
69 #include <rte_mempool.h>
70 #include <rte_interrupts.h>
71 #include <rte_pci.h>
72 #include <rte_ether.h>
73 #include <rte_ethdev.h>
74 #include <rte_string_fns.h>
75 #include <rte_devargs.h>
76 #include <rte_eth_ctrl.h>
77 #include <rte_flow.h>
78 #include <rte_gro.h>
79
80 #include <cmdline_rdline.h>
81 #include <cmdline_parse.h>
82 #include <cmdline_parse_num.h>
83 #include <cmdline_parse_string.h>
84 #include <cmdline_parse_ipaddr.h>
85 #include <cmdline_parse_etheraddr.h>
86 #include <cmdline_socket.h>
87 #include <cmdline.h>
88 #ifdef RTE_LIBRTE_PMD_BOND
89 #include <rte_eth_bond.h>
90 #include <rte_eth_bond_8023ad.h>
91 #endif
92 #ifdef RTE_LIBRTE_IXGBE_PMD
93 #include <rte_pmd_ixgbe.h>
94 #endif
95 #ifdef RTE_LIBRTE_I40E_PMD
96 #include <rte_pmd_i40e.h>
97 #endif
98 #ifdef RTE_LIBRTE_BNXT_PMD
99 #include <rte_pmd_bnxt.h>
100 #endif
101 #include "testpmd.h"
102
103 static struct cmdline *testpmd_cl;
104
105 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue);
106
107 /* *** Help command with introduction. *** */
108 struct cmd_help_brief_result {
109         cmdline_fixed_string_t help;
110 };
111
112 static void cmd_help_brief_parsed(__attribute__((unused)) void *parsed_result,
113                                   struct cmdline *cl,
114                                   __attribute__((unused)) void *data)
115 {
116         cmdline_printf(
117                 cl,
118                 "\n"
119                 "Help is available for the following sections:\n\n"
120                 "    help control    : Start and stop forwarding.\n"
121                 "    help display    : Displaying port, stats and config "
122                 "information.\n"
123                 "    help config     : Configuration information.\n"
124                 "    help ports      : Configuring ports.\n"
125                 "    help registers  : Reading and setting port registers.\n"
126                 "    help filters    : Filters configuration help.\n"
127                 "    help all        : All of the above sections.\n\n"
128         );
129
130 }
131
132 cmdline_parse_token_string_t cmd_help_brief_help =
133         TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help");
134
135 cmdline_parse_inst_t cmd_help_brief = {
136         .f = cmd_help_brief_parsed,
137         .data = NULL,
138         .help_str = "help: Show help",
139         .tokens = {
140                 (void *)&cmd_help_brief_help,
141                 NULL,
142         },
143 };
144
145 /* *** Help command with help sections. *** */
146 struct cmd_help_long_result {
147         cmdline_fixed_string_t help;
148         cmdline_fixed_string_t section;
149 };
150
151 static void cmd_help_long_parsed(void *parsed_result,
152                                  struct cmdline *cl,
153                                  __attribute__((unused)) void *data)
154 {
155         int show_all = 0;
156         struct cmd_help_long_result *res = parsed_result;
157
158         if (!strcmp(res->section, "all"))
159                 show_all = 1;
160
161         if (show_all || !strcmp(res->section, "control")) {
162
163                 cmdline_printf(
164                         cl,
165                         "\n"
166                         "Control forwarding:\n"
167                         "-------------------\n\n"
168
169                         "start\n"
170                         "    Start packet forwarding with current configuration.\n\n"
171
172                         "start tx_first\n"
173                         "    Start packet forwarding with current config"
174                         " after sending one burst of packets.\n\n"
175
176                         "stop\n"
177                         "    Stop packet forwarding, and display accumulated"
178                         " statistics.\n\n"
179
180                         "quit\n"
181                         "    Quit to prompt.\n\n"
182                 );
183         }
184
185         if (show_all || !strcmp(res->section, "display")) {
186
187                 cmdline_printf(
188                         cl,
189                         "\n"
190                         "Display:\n"
191                         "--------\n\n"
192
193                         "show port (info|stats|xstats|fdir|stat_qmap|dcb_tc|cap) (port_id|all)\n"
194                         "    Display information for port_id, or all.\n\n"
195
196                         "show port X rss reta (size) (mask0,mask1,...)\n"
197                         "    Display the rss redirection table entry indicated"
198                         " by masks on port X. size is used to indicate the"
199                         " hardware supported reta size\n\n"
200
201                         "show port rss-hash ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|"
202                         "ipv4-sctp|ipv4-other|ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|"
203                         "ipv6-other|l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex [key]\n"
204                         "    Display the RSS hash functions and RSS hash key"
205                         " of port X\n\n"
206
207                         "clear port (info|stats|xstats|fdir|stat_qmap) (port_id|all)\n"
208                         "    Clear information for port_id, or all.\n\n"
209
210                         "show (rxq|txq) info (port_id) (queue_id)\n"
211                         "    Display information for configured RX/TX queue.\n\n"
212
213                         "show config (rxtx|cores|fwd|txpkts)\n"
214                         "    Display the given configuration.\n\n"
215
216                         "read rxd (port_id) (queue_id) (rxd_id)\n"
217                         "    Display an RX descriptor of a port RX queue.\n\n"
218
219                         "read txd (port_id) (queue_id) (txd_id)\n"
220                         "    Display a TX descriptor of a port TX queue.\n\n"
221
222                         "ddp get list (port_id)\n"
223                         "    Get ddp profile info list\n\n"
224
225                         "ddp get info (profile_path)\n"
226                         "    Get ddp profile information.\n\n"
227
228                         "show vf stats (port_id) (vf_id)\n"
229                         "    Display a VF's statistics.\n\n"
230
231                         "clear vf stats (port_id) (vf_id)\n"
232                         "    Reset a VF's statistics.\n\n"
233
234                         "show port (port_id) pctype mapping\n"
235                         "    Get flow ptype to pctype mapping on a port\n\n"
236
237                 );
238         }
239
240         if (show_all || !strcmp(res->section, "config")) {
241                 cmdline_printf(
242                         cl,
243                         "\n"
244                         "Configuration:\n"
245                         "--------------\n"
246                         "Configuration changes only become active when"
247                         " forwarding is started/restarted.\n\n"
248
249                         "set default\n"
250                         "    Reset forwarding to the default configuration.\n\n"
251
252                         "set verbose (level)\n"
253                         "    Set the debug verbosity level X.\n\n"
254
255                         "set nbport (num)\n"
256                         "    Set number of ports.\n\n"
257
258                         "set nbcore (num)\n"
259                         "    Set number of cores.\n\n"
260
261                         "set coremask (mask)\n"
262                         "    Set the forwarding cores hexadecimal mask.\n\n"
263
264                         "set portmask (mask)\n"
265                         "    Set the forwarding ports hexadecimal mask.\n\n"
266
267                         "set burst (num)\n"
268                         "    Set number of packets per burst.\n\n"
269
270                         "set burst tx delay (microseconds) retry (num)\n"
271                         "    Set the transmit delay time and number of retries,"
272                         " effective when retry is enabled.\n\n"
273
274                         "set txpkts (x[,y]*)\n"
275                         "    Set the length of each segment of TXONLY"
276                         " and optionally CSUM packets.\n\n"
277
278                         "set txsplit (off|on|rand)\n"
279                         "    Set the split policy for the TX packets."
280                         " Right now only applicable for CSUM and TXONLY"
281                         " modes\n\n"
282
283                         "set corelist (x[,y]*)\n"
284                         "    Set the list of forwarding cores.\n\n"
285
286                         "set portlist (x[,y]*)\n"
287                         "    Set the list of forwarding ports.\n\n"
288
289                         "set tx loopback (port_id) (on|off)\n"
290                         "    Enable or disable tx loopback.\n\n"
291
292                         "set all queues drop (port_id) (on|off)\n"
293                         "    Set drop enable bit for all queues.\n\n"
294
295                         "set vf split drop (port_id) (vf_id) (on|off)\n"
296                         "    Set split drop enable bit for a VF from the PF.\n\n"
297
298                         "set vf mac antispoof (port_id) (vf_id) (on|off).\n"
299                         "    Set MAC antispoof for a VF from the PF.\n\n"
300
301                         "set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n"
302                         "    Enable MACsec offload.\n\n"
303
304                         "set macsec offload (port_id) off\n"
305                         "    Disable MACsec offload.\n\n"
306
307                         "set macsec sc (tx|rx) (port_id) (mac) (pi)\n"
308                         "    Configure MACsec secure connection (SC).\n\n"
309
310                         "set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n"
311                         "    Configure MACsec secure association (SA).\n\n"
312
313                         "set vf broadcast (port_id) (vf_id) (on|off)\n"
314                         "    Set VF broadcast for a VF from the PF.\n\n"
315
316                         "vlan set strip (on|off) (port_id)\n"
317                         "    Set the VLAN strip on a port.\n\n"
318
319                         "vlan set stripq (on|off) (port_id,queue_id)\n"
320                         "    Set the VLAN strip for a queue on a port.\n\n"
321
322                         "set vf vlan stripq (port_id) (vf_id) (on|off)\n"
323                         "    Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n"
324
325                         "set vf vlan insert (port_id) (vf_id) (vlan_id)\n"
326                         "    Set VLAN insert for a VF from the PF.\n\n"
327
328                         "set vf vlan antispoof (port_id) (vf_id) (on|off)\n"
329                         "    Set VLAN antispoof for a VF from the PF.\n\n"
330
331                         "set vf vlan tag (port_id) (vf_id) (on|off)\n"
332                         "    Set VLAN tag for a VF from the PF.\n\n"
333
334                         "set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n"
335                         "    Set a VF's max bandwidth(Mbps).\n\n"
336
337                         "set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n"
338                         "    Set all TCs' min bandwidth(%%) on a VF.\n\n"
339
340                         "set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n"
341                         "    Set a TC's max bandwidth(Mbps) on a VF.\n\n"
342
343                         "set tx strict-link-priority (port_id) (tc_bitmap)\n"
344                         "    Set some TCs' strict link priority mode on a physical port.\n\n"
345
346                         "set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n"
347                         "    Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n"
348
349                         "vlan set filter (on|off) (port_id)\n"
350                         "    Set the VLAN filter on a port.\n\n"
351
352                         "vlan set qinq (on|off) (port_id)\n"
353                         "    Set the VLAN QinQ (extended queue in queue)"
354                         " on a port.\n\n"
355
356                         "vlan set (inner|outer) tpid (value) (port_id)\n"
357                         "    Set the VLAN TPID for Packet Filtering on"
358                         " a port\n\n"
359
360                         "rx_vlan add (vlan_id|all) (port_id)\n"
361                         "    Add a vlan_id, or all identifiers, to the set"
362                         " of VLAN identifiers filtered by port_id.\n\n"
363
364                         "rx_vlan rm (vlan_id|all) (port_id)\n"
365                         "    Remove a vlan_id, or all identifiers, from the set"
366                         " of VLAN identifiers filtered by port_id.\n\n"
367
368                         "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n"
369                         "    Add a vlan_id, to the set of VLAN identifiers"
370                         "filtered for VF(s) from port_id.\n\n"
371
372                         "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n"
373                         "    Remove a vlan_id, to the set of VLAN identifiers"
374                         "filtered for VF(s) from port_id.\n\n"
375
376                         "tunnel_filter add (port_id) (outer_mac) (inner_mac) (ip_addr) "
377                         "(inner_vlan) (vxlan|nvgre|ipingre) (imac-ivlan|imac-ivlan-tenid|"
378                         "imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n"
379                         "   add a tunnel filter of a port.\n\n"
380
381                         "tunnel_filter rm (port_id) (outer_mac) (inner_mac) (ip_addr) "
382                         "(inner_vlan) (vxlan|nvgre|ipingre) (imac-ivlan|imac-ivlan-tenid|"
383                         "imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n"
384                         "   remove a tunnel filter of a port.\n\n"
385
386                         "rx_vxlan_port add (udp_port) (port_id)\n"
387                         "    Add an UDP port for VXLAN packet filter on a port\n\n"
388
389                         "rx_vxlan_port rm (udp_port) (port_id)\n"
390                         "    Remove an UDP port for VXLAN packet filter on a port\n\n"
391
392                         "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n"
393                         "    Set hardware insertion of VLAN IDs (single or double VLAN "
394                         "depends on the number of VLAN IDs) in packets sent on a port.\n\n"
395
396                         "tx_vlan set pvid port_id vlan_id (on|off)\n"
397                         "    Set port based TX VLAN insertion.\n\n"
398
399                         "tx_vlan reset (port_id)\n"
400                         "    Disable hardware insertion of a VLAN header in"
401                         " packets sent on a port.\n\n"
402
403                         "csum set (ip|udp|tcp|sctp|outer-ip) (hw|sw) (port_id)\n"
404                         "    Select hardware or software calculation of the"
405                         " checksum when transmitting a packet using the"
406                         " csum forward engine.\n"
407                         "    ip|udp|tcp|sctp always concern the inner layer.\n"
408                         "    outer-ip concerns the outer IP layer in"
409                         " case the packet is recognized as a tunnel packet by"
410                         " the forward engine (vxlan, gre and ipip are supported)\n"
411                         "    Please check the NIC datasheet for HW limits.\n\n"
412
413                         "csum parse-tunnel (on|off) (tx_port_id)\n"
414                         "    If disabled, treat tunnel packets as non-tunneled"
415                         " packets (treat inner headers as payload). The port\n"
416                         "    argument is the port used for TX in csum forward"
417                         " engine.\n\n"
418
419                         "csum show (port_id)\n"
420                         "    Display tx checksum offload configuration\n\n"
421
422                         "tso set (segsize) (portid)\n"
423                         "    Enable TCP Segmentation Offload in csum forward"
424                         " engine.\n"
425                         "    Please check the NIC datasheet for HW limits.\n\n"
426
427                         "tso show (portid)"
428                         "    Display the status of TCP Segmentation Offload.\n\n"
429
430                         "set port (port_id) gro on|off\n"
431                         "    Enable or disable Generic Receive Offload in"
432                         " csum forwarding engine.\n\n"
433
434                         "show port (port_id) gro\n"
435                         "    Display GRO configuration.\n\n"
436
437                         "set gro flush (cycles)\n"
438                         "    Set the cycle to flush GROed packets from"
439                         " reassembly tables.\n\n"
440
441                         "set port (port_id) gso (on|off)"
442                         "    Enable or disable Generic Segmentation Offload in"
443                         " csum forwarding engine.\n\n"
444
445                         "set gso segsz (length)\n"
446                         "    Set max packet length for output GSO segments,"
447                         " including packet header and payload.\n\n"
448
449                         "show port (port_id) gso\n"
450                         "    Show GSO configuration.\n\n"
451
452                         "set fwd (%s)\n"
453                         "    Set packet forwarding mode.\n\n"
454
455                         "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n"
456                         "    Add a MAC address on port_id.\n\n"
457
458                         "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n"
459                         "    Remove a MAC address from port_id.\n\n"
460
461                         "mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n"
462                         "    Set the default MAC address for port_id.\n\n"
463
464                         "mac_addr add port (port_id) vf (vf_id) (mac_address)\n"
465                         "    Add a MAC address for a VF on the port.\n\n"
466
467                         "set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n"
468                         "    Set the MAC address for a VF from the PF.\n\n"
469
470                         "set port (port_id) uta (mac_address|all) (on|off)\n"
471                         "    Add/Remove a or all unicast hash filter(s)"
472                         "from port X.\n\n"
473
474                         "set promisc (port_id|all) (on|off)\n"
475                         "    Set the promiscuous mode on port_id, or all.\n\n"
476
477                         "set allmulti (port_id|all) (on|off)\n"
478                         "    Set the allmulti mode on port_id, or all.\n\n"
479
480                         "set vf promisc (port_id) (vf_id) (on|off)\n"
481                         "    Set unicast promiscuous mode for a VF from the PF.\n\n"
482
483                         "set vf allmulti (port_id) (vf_id) (on|off)\n"
484                         "    Set multicast promiscuous mode for a VF from the PF.\n\n"
485
486                         "set flow_ctrl rx (on|off) tx (on|off) (high_water)"
487                         " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd"
488                         " (on|off) autoneg (on|off) (port_id)\n"
489                         "set flow_ctrl rx (on|off) (portid)\n"
490                         "set flow_ctrl tx (on|off) (portid)\n"
491                         "set flow_ctrl high_water (high_water) (portid)\n"
492                         "set flow_ctrl low_water (low_water) (portid)\n"
493                         "set flow_ctrl pause_time (pause_time) (portid)\n"
494                         "set flow_ctrl send_xon (send_xon) (portid)\n"
495                         "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n"
496                         "set flow_ctrl autoneg (on|off) (port_id)\n"
497                         "    Set the link flow control parameter on a port.\n\n"
498
499                         "set pfc_ctrl rx (on|off) tx (on|off) (high_water)"
500                         " (low_water) (pause_time) (priority) (port_id)\n"
501                         "    Set the priority flow control parameter on a"
502                         " port.\n\n"
503
504                         "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n"
505                         "    Set statistics mapping (qmapping 0..15) for RX/TX"
506                         " queue on port.\n"
507                         "    e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2"
508                         " on port 0 to mapping 5.\n\n"
509
510                         "set port (port_id) vf (vf_id) rx|tx on|off\n"
511                         "    Enable/Disable a VF receive/tranmit from a port\n\n"
512
513                         "set port (port_id) vf (vf_id) (mac_addr)"
514                         " (exact-mac#exact-mac-vlan#hashmac|hashmac-vlan) on|off\n"
515                         "   Add/Remove unicast or multicast MAC addr filter"
516                         " for a VF.\n\n"
517
518                         "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM"
519                         "|MPE) (on|off)\n"
520                         "    AUPE:accepts untagged VLAN;"
521                         "ROPE:accept unicast hash\n\n"
522                         "    BAM:accepts broadcast packets;"
523                         "MPE:accepts all multicast packets\n\n"
524                         "    Enable/Disable a VF receive mode of a port\n\n"
525
526                         "set port (port_id) queue (queue_id) rate (rate_num)\n"
527                         "    Set rate limit for a queue of a port\n\n"
528
529                         "set port (port_id) vf (vf_id) rate (rate_num) "
530                         "queue_mask (queue_mask_value)\n"
531                         "    Set rate limit for queues in VF of a port\n\n"
532
533                         "set port (port_id) mirror-rule (rule_id)"
534                         " (pool-mirror-up|pool-mirror-down|vlan-mirror)"
535                         " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n"
536                         "   Set pool or vlan type mirror rule on a port.\n"
537                         "   e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1"
538                         " dst-pool 0 on' enable mirror traffic with vlan 0,1"
539                         " to pool 0.\n\n"
540
541                         "set port (port_id) mirror-rule (rule_id)"
542                         " (uplink-mirror|downlink-mirror) dst-pool"
543                         " (pool_id) (on|off)\n"
544                         "   Set uplink or downlink type mirror rule on a port.\n"
545                         "   e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool"
546                         " 0 on' enable mirror income traffic to pool 0.\n\n"
547
548                         "reset port (port_id) mirror-rule (rule_id)\n"
549                         "   Reset a mirror rule.\n\n"
550
551                         "set flush_rx (on|off)\n"
552                         "   Flush (default) or don't flush RX streams before"
553                         " forwarding. Mainly used with PCAP drivers.\n\n"
554
555                         "set bypass mode (normal|bypass|isolate) (port_id)\n"
556                         "   Set the bypass mode for the lowest port on bypass enabled"
557                         " NIC.\n\n"
558
559                         "set bypass event (timeout|os_on|os_off|power_on|power_off) "
560                         "mode (normal|bypass|isolate) (port_id)\n"
561                         "   Set the event required to initiate specified bypass mode for"
562                         " the lowest port on a bypass enabled NIC where:\n"
563                         "       timeout   = enable bypass after watchdog timeout.\n"
564                         "       os_on     = enable bypass when OS/board is powered on.\n"
565                         "       os_off    = enable bypass when OS/board is powered off.\n"
566                         "       power_on  = enable bypass when power supply is turned on.\n"
567                         "       power_off = enable bypass when power supply is turned off."
568                         "\n\n"
569
570                         "set bypass timeout (0|1.5|2|3|4|8|16|32)\n"
571                         "   Set the bypass watchdog timeout to 'n' seconds"
572                         " where 0 = instant.\n\n"
573
574                         "show bypass config (port_id)\n"
575                         "   Show the bypass configuration for a bypass enabled NIC"
576                         " using the lowest port on the NIC.\n\n"
577
578 #ifdef RTE_LIBRTE_PMD_BOND
579                         "create bonded device (mode) (socket)\n"
580                         "       Create a new bonded device with specific bonding mode and socket.\n\n"
581
582                         "add bonding slave (slave_id) (port_id)\n"
583                         "       Add a slave device to a bonded device.\n\n"
584
585                         "remove bonding slave (slave_id) (port_id)\n"
586                         "       Remove a slave device from a bonded device.\n\n"
587
588                         "set bonding mode (value) (port_id)\n"
589                         "       Set the bonding mode on a bonded device.\n\n"
590
591                         "set bonding primary (slave_id) (port_id)\n"
592                         "       Set the primary slave for a bonded device.\n\n"
593
594                         "show bonding config (port_id)\n"
595                         "       Show the bonding config for port_id.\n\n"
596
597                         "set bonding mac_addr (port_id) (address)\n"
598                         "       Set the MAC address of a bonded device.\n\n"
599
600                         "set bonding mode IEEE802.3AD aggregator policy (port_id) (agg_name)"
601                         "       Set Aggregation mode for IEEE802.3AD (mode 4)"
602
603                         "set bonding xmit_balance_policy (port_id) (l2|l23|l34)\n"
604                         "       Set the transmit balance policy for bonded device running in balance mode.\n\n"
605
606                         "set bonding mon_period (port_id) (value)\n"
607                         "       Set the bonding link status monitoring polling period in ms.\n\n"
608
609                         "set bonding lacp dedicated_queues <port_id> (enable|disable)\n"
610                         "       Enable/disable dedicated queues for LACP control traffic.\n\n"
611
612 #endif
613                         "set link-up port (port_id)\n"
614                         "       Set link up for a port.\n\n"
615
616                         "set link-down port (port_id)\n"
617                         "       Set link down for a port.\n\n"
618
619                         "E-tag set insertion on port-tag-id (value)"
620                         " port (port_id) vf (vf_id)\n"
621                         "    Enable E-tag insertion for a VF on a port\n\n"
622
623                         "E-tag set insertion off port (port_id) vf (vf_id)\n"
624                         "    Disable E-tag insertion for a VF on a port\n\n"
625
626                         "E-tag set stripping (on|off) port (port_id)\n"
627                         "    Enable/disable E-tag stripping on a port\n\n"
628
629                         "E-tag set forwarding (on|off) port (port_id)\n"
630                         "    Enable/disable E-tag based forwarding"
631                         " on a port\n\n"
632
633                         "E-tag set filter add e-tag-id (value) dst-pool"
634                         " (pool_id) port (port_id)\n"
635                         "    Add an E-tag forwarding filter on a port\n\n"
636
637                         "E-tag set filter del e-tag-id (value) port (port_id)\n"
638                         "    Delete an E-tag forwarding filter on a port\n\n"
639
640 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED
641                         "set port tm hierarchy default (port_id)\n"
642                         "       Set default traffic Management hierarchy on a port\n\n"
643
644 #endif
645                         "ddp add (port_id) (profile_path[,output_path])\n"
646                         "    Load a profile package on a port\n\n"
647
648                         "ddp del (port_id) (profile_path)\n"
649                         "    Delete a profile package from a port\n\n"
650
651                         "ptype mapping get (port_id) (valid_only)\n"
652                         "    Get ptype mapping on a port\n\n"
653
654                         "ptype mapping replace (port_id) (target) (mask) (pky_type)\n"
655                         "    Replace target with the pkt_type in ptype mapping\n\n"
656
657                         "ptype mapping reset (port_id)\n"
658                         "    Reset ptype mapping on a port\n\n"
659
660                         "ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n"
661                         "    Update a ptype mapping item on a port\n\n"
662
663                         "set port (port_id) queue-region region_id (value) "
664                         "queue_start_index (value) queue_num (value)\n"
665                         "    Set a queue region on a port\n\n"
666
667                         "set port (port_id) queue-region region_id (value) "
668                         "flowtype (value)\n"
669                         "    Set a flowtype region index on a port\n\n"
670
671                         "set port (port_id) queue-region UP (value) region_id (value)\n"
672                         "    Set the mapping of User Priority to "
673                         "queue region on a port\n\n"
674
675                         "set port (port_id) queue-region flush (on|off)\n"
676                         "    flush all queue region related configuration\n\n"
677
678                         "show port (port_id) queue-region\n"
679                         "    show all queue region related configuration info\n\n"
680
681                         , list_pkt_forwarding_modes()
682                 );
683         }
684
685         if (show_all || !strcmp(res->section, "ports")) {
686
687                 cmdline_printf(
688                         cl,
689                         "\n"
690                         "Port Operations:\n"
691                         "----------------\n\n"
692
693                         "port start (port_id|all)\n"
694                         "    Start all ports or port_id.\n\n"
695
696                         "port stop (port_id|all)\n"
697                         "    Stop all ports or port_id.\n\n"
698
699                         "port close (port_id|all)\n"
700                         "    Close all ports or port_id.\n\n"
701
702                         "port attach (ident)\n"
703                         "    Attach physical or virtual dev by pci address or virtual device name\n\n"
704
705                         "port detach (port_id)\n"
706                         "    Detach physical or virtual dev by port_id\n\n"
707
708                         "port config (port_id|all)"
709                         " speed (10|100|1000|10000|25000|40000|50000|100000|auto)"
710                         " duplex (half|full|auto)\n"
711                         "    Set speed and duplex for all ports or port_id\n\n"
712
713                         "port config all (rxq|txq|rxd|txd) (value)\n"
714                         "    Set number for rxq/txq/rxd/txd.\n\n"
715
716                         "port config all max-pkt-len (value)\n"
717                         "    Set the max packet length.\n\n"
718
719                         "port config all (crc-strip|scatter|rx-cksum|rx-timestamp|hw-vlan|hw-vlan-filter|"
720                         "hw-vlan-strip|hw-vlan-extend|drop-en)"
721                         " (on|off)\n"
722                         "    Set crc-strip/scatter/rx-checksum/hardware-vlan/drop_en"
723                         " for ports.\n\n"
724
725                         "port config all rss (all|ip|tcp|udp|sctp|ether|port|vxlan|"
726                         "geneve|nvgre|none|<flowtype_id>)\n"
727                         "    Set the RSS mode.\n\n"
728
729                         "port config port-id rss reta (hash,queue)[,(hash,queue)]\n"
730                         "    Set the RSS redirection table.\n\n"
731
732                         "port config (port_id) dcb vt (on|off) (traffic_class)"
733                         " pfc (on|off)\n"
734                         "    Set the DCB mode.\n\n"
735
736                         "port config all burst (value)\n"
737                         "    Set the number of packets per burst.\n\n"
738
739                         "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)"
740                         " (value)\n"
741                         "    Set the ring prefetch/host/writeback threshold"
742                         " for tx/rx queue.\n\n"
743
744                         "port config all (txfreet|txrst|rxfreet) (value)\n"
745                         "    Set free threshold for rx/tx, or set"
746                         " tx rs bit threshold.\n\n"
747                         "port config mtu X value\n"
748                         "    Set the MTU of port X to a given value\n\n"
749
750                         "port (port_id) (rxq|txq) (queue_id) (start|stop)\n"
751                         "    Start/stop a rx/tx queue of port X. Only take effect"
752                         " when port X is started\n\n"
753
754                         "port config (port_id|all) l2-tunnel E-tag ether-type"
755                         " (value)\n"
756                         "    Set the value of E-tag ether-type.\n\n"
757
758                         "port config (port_id|all) l2-tunnel E-tag"
759                         " (enable|disable)\n"
760                         "    Enable/disable the E-tag support.\n\n"
761
762                         "port config (port_id) pctype mapping reset\n"
763                         "    Reset flow type to pctype mapping on a port\n\n"
764
765                         "port config (port_id) pctype mapping update"
766                         " (pctype_id_0[,pctype_id_1]*) (flow_type_id)\n"
767                         "    Update a flow type to pctype mapping item on a port\n\n"
768                 );
769         }
770
771         if (show_all || !strcmp(res->section, "registers")) {
772
773                 cmdline_printf(
774                         cl,
775                         "\n"
776                         "Registers:\n"
777                         "----------\n\n"
778
779                         "read reg (port_id) (address)\n"
780                         "    Display value of a port register.\n\n"
781
782                         "read regfield (port_id) (address) (bit_x) (bit_y)\n"
783                         "    Display a port register bit field.\n\n"
784
785                         "read regbit (port_id) (address) (bit_x)\n"
786                         "    Display a single port register bit.\n\n"
787
788                         "write reg (port_id) (address) (value)\n"
789                         "    Set value of a port register.\n\n"
790
791                         "write regfield (port_id) (address) (bit_x) (bit_y)"
792                         " (value)\n"
793                         "    Set bit field of a port register.\n\n"
794
795                         "write regbit (port_id) (address) (bit_x) (value)\n"
796                         "    Set single bit value of a port register.\n\n"
797                 );
798         }
799         if (show_all || !strcmp(res->section, "filters")) {
800
801                 cmdline_printf(
802                         cl,
803                         "\n"
804                         "filters:\n"
805                         "--------\n\n"
806
807                         "ethertype_filter (port_id) (add|del)"
808                         " (mac_addr|mac_ignr) (mac_address) ethertype"
809                         " (ether_type) (drop|fwd) queue (queue_id)\n"
810                         "    Add/Del an ethertype filter.\n\n"
811
812                         "2tuple_filter (port_id) (add|del)"
813                         " dst_port (dst_port_value) protocol (protocol_value)"
814                         " mask (mask_value) tcp_flags (tcp_flags_value)"
815                         " priority (prio_value) queue (queue_id)\n"
816                         "    Add/Del a 2tuple filter.\n\n"
817
818                         "5tuple_filter (port_id) (add|del)"
819                         " dst_ip (dst_address) src_ip (src_address)"
820                         " dst_port (dst_port_value) src_port (src_port_value)"
821                         " protocol (protocol_value)"
822                         " mask (mask_value) tcp_flags (tcp_flags_value)"
823                         " priority (prio_value) queue (queue_id)\n"
824                         "    Add/Del a 5tuple filter.\n\n"
825
826                         "syn_filter (port_id) (add|del) priority (high|low) queue (queue_id)"
827                         "    Add/Del syn filter.\n\n"
828
829                         "flex_filter (port_id) (add|del) len (len_value)"
830                         " bytes (bytes_value) mask (mask_value)"
831                         " priority (prio_value) queue (queue_id)\n"
832                         "    Add/Del a flex filter.\n\n"
833
834                         "flow_director_filter (port_id) mode IP (add|del|update)"
835                         " flow (ipv4-other|ipv4-frag|ipv6-other|ipv6-frag)"
836                         " src (src_ip_address) dst (dst_ip_address)"
837                         " tos (tos_value) proto (proto_value) ttl (ttl_value)"
838                         " vlan (vlan_value) flexbytes (flexbytes_value)"
839                         " (drop|fwd) pf|vf(vf_id) queue (queue_id)"
840                         " fd_id (fd_id_value)\n"
841                         "    Add/Del an IP type flow director filter.\n\n"
842
843                         "flow_director_filter (port_id) mode IP (add|del|update)"
844                         " flow (ipv4-tcp|ipv4-udp|ipv6-tcp|ipv6-udp)"
845                         " src (src_ip_address) (src_port)"
846                         " dst (dst_ip_address) (dst_port)"
847                         " tos (tos_value) ttl (ttl_value)"
848                         " vlan (vlan_value) flexbytes (flexbytes_value)"
849                         " (drop|fwd) pf|vf(vf_id) queue (queue_id)"
850                         " fd_id (fd_id_value)\n"
851                         "    Add/Del an UDP/TCP type flow director filter.\n\n"
852
853                         "flow_director_filter (port_id) mode IP (add|del|update)"
854                         " flow (ipv4-sctp|ipv6-sctp)"
855                         " src (src_ip_address) (src_port)"
856                         " dst (dst_ip_address) (dst_port)"
857                         " tag (verification_tag) "
858                         " tos (tos_value) ttl (ttl_value)"
859                         " vlan (vlan_value)"
860                         " flexbytes (flexbytes_value) (drop|fwd)"
861                         " pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n"
862                         "    Add/Del a SCTP type flow director filter.\n\n"
863
864                         "flow_director_filter (port_id) mode IP (add|del|update)"
865                         " flow l2_payload ether (ethertype)"
866                         " flexbytes (flexbytes_value) (drop|fwd)"
867                         " pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n"
868                         "    Add/Del a l2 payload type flow director filter.\n\n"
869
870                         "flow_director_filter (port_id) mode MAC-VLAN (add|del|update)"
871                         " mac (mac_address) vlan (vlan_value)"
872                         " flexbytes (flexbytes_value) (drop|fwd)"
873                         " queue (queue_id) fd_id (fd_id_value)\n"
874                         "    Add/Del a MAC-VLAN flow director filter.\n\n"
875
876                         "flow_director_filter (port_id) mode Tunnel (add|del|update)"
877                         " mac (mac_address) vlan (vlan_value)"
878                         " tunnel (NVGRE|VxLAN) tunnel-id (tunnel_id_value)"
879                         " flexbytes (flexbytes_value) (drop|fwd)"
880                         " queue (queue_id) fd_id (fd_id_value)\n"
881                         "    Add/Del a Tunnel flow director filter.\n\n"
882
883                         "flush_flow_director (port_id)\n"
884                         "    Flush all flow director entries of a device.\n\n"
885
886                         "flow_director_mask (port_id) mode IP vlan (vlan_value)"
887                         " src_mask (ipv4_src) (ipv6_src) (src_port)"
888                         " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n"
889                         "    Set flow director IP mask.\n\n"
890
891                         "flow_director_mask (port_id) mode MAC-VLAN"
892                         " vlan (vlan_value)\n"
893                         "    Set flow director MAC-VLAN mask.\n\n"
894
895                         "flow_director_mask (port_id) mode Tunnel"
896                         " vlan (vlan_value) mac (mac_value)"
897                         " tunnel-type (tunnel_type_value)"
898                         " tunnel-id (tunnel_id_value)\n"
899                         "    Set flow director Tunnel mask.\n\n"
900
901                         "flow_director_flex_mask (port_id)"
902                         " flow (none|ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|"
903                         "ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|l2_payload|all)"
904                         " (mask)\n"
905                         "    Configure mask of flex payload.\n\n"
906
907                         "flow_director_flex_payload (port_id)"
908                         " (raw|l2|l3|l4) (config)\n"
909                         "    Configure flex payload selection.\n\n"
910
911                         "get_sym_hash_ena_per_port (port_id)\n"
912                         "    get symmetric hash enable configuration per port.\n\n"
913
914                         "set_sym_hash_ena_per_port (port_id) (enable|disable)\n"
915                         "    set symmetric hash enable configuration per port"
916                         " to enable or disable.\n\n"
917
918                         "get_hash_global_config (port_id)\n"
919                         "    Get the global configurations of hash filters.\n\n"
920
921                         "set_hash_global_config (port_id) (toeplitz|simple_xor|default)"
922                         " (ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
923                         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload)"
924                         " (enable|disable)\n"
925                         "    Set the global configurations of hash filters.\n\n"
926
927                         "set_hash_input_set (port_id) (ipv4|ipv4-frag|"
928                         "ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
929                         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
930                         "l2_payload|<flowtype_id>) (ovlan|ivlan|src-ipv4|dst-ipv4|"
931                         "src-ipv6|dst-ipv6|ipv4-tos|ipv4-proto|ipv6-tc|"
932                         "ipv6-next-header|udp-src-port|udp-dst-port|"
933                         "tcp-src-port|tcp-dst-port|sctp-src-port|"
934                         "sctp-dst-port|sctp-veri-tag|udp-key|gre-key|fld-1st|"
935                         "fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|fld-7th|"
936                         "fld-8th|none) (select|add)\n"
937                         "    Set the input set for hash.\n\n"
938
939                         "set_fdir_input_set (port_id) "
940                         "(ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
941                         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
942                         "l2_payload) (ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|"
943                         "dst-ipv6|ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|"
944                         "ipv6-next-header|ipv6-hop-limits|udp-src-port|"
945                         "udp-dst-port|tcp-src-port|tcp-dst-port|"
946                         "sctp-src-port|sctp-dst-port|sctp-veri-tag|none)"
947                         " (select|add)\n"
948                         "    Set the input set for FDir.\n\n"
949
950                         "flow validate {port_id}"
951                         " [group {group_id}] [priority {level}]"
952                         " [ingress] [egress]"
953                         " pattern {item} [/ {item} [...]] / end"
954                         " actions {action} [/ {action} [...]] / end\n"
955                         "    Check whether a flow rule can be created.\n\n"
956
957                         "flow create {port_id}"
958                         " [group {group_id}] [priority {level}]"
959                         " [ingress] [egress]"
960                         " pattern {item} [/ {item} [...]] / end"
961                         " actions {action} [/ {action} [...]] / end\n"
962                         "    Create a flow rule.\n\n"
963
964                         "flow destroy {port_id} rule {rule_id} [...]\n"
965                         "    Destroy specific flow rules.\n\n"
966
967                         "flow flush {port_id}\n"
968                         "    Destroy all flow rules.\n\n"
969
970                         "flow query {port_id} {rule_id} {action}\n"
971                         "    Query an existing flow rule.\n\n"
972
973                         "flow list {port_id} [group {group_id}] [...]\n"
974                         "    List existing flow rules sorted by priority,"
975                         " filtered by group identifiers.\n\n"
976
977                         "flow isolate {port_id} {boolean}\n"
978                         "    Restrict ingress traffic to the defined"
979                         " flow rules\n\n"
980                 );
981         }
982 }
983
984 cmdline_parse_token_string_t cmd_help_long_help =
985         TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help");
986
987 cmdline_parse_token_string_t cmd_help_long_section =
988         TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section,
989                         "all#control#display#config#"
990                         "ports#registers#filters");
991
992 cmdline_parse_inst_t cmd_help_long = {
993         .f = cmd_help_long_parsed,
994         .data = NULL,
995         .help_str = "help all|control|display|config|ports|register|filters: "
996                 "Show help",
997         .tokens = {
998                 (void *)&cmd_help_long_help,
999                 (void *)&cmd_help_long_section,
1000                 NULL,
1001         },
1002 };
1003
1004
1005 /* *** start/stop/close all ports *** */
1006 struct cmd_operate_port_result {
1007         cmdline_fixed_string_t keyword;
1008         cmdline_fixed_string_t name;
1009         cmdline_fixed_string_t value;
1010 };
1011
1012 static void cmd_operate_port_parsed(void *parsed_result,
1013                                 __attribute__((unused)) struct cmdline *cl,
1014                                 __attribute__((unused)) void *data)
1015 {
1016         struct cmd_operate_port_result *res = parsed_result;
1017
1018         if (!strcmp(res->name, "start"))
1019                 start_port(RTE_PORT_ALL);
1020         else if (!strcmp(res->name, "stop"))
1021                 stop_port(RTE_PORT_ALL);
1022         else if (!strcmp(res->name, "close"))
1023                 close_port(RTE_PORT_ALL);
1024         else if (!strcmp(res->name, "reset"))
1025                 reset_port(RTE_PORT_ALL);
1026         else
1027                 printf("Unknown parameter\n");
1028 }
1029
1030 cmdline_parse_token_string_t cmd_operate_port_all_cmd =
1031         TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword,
1032                                                                 "port");
1033 cmdline_parse_token_string_t cmd_operate_port_all_port =
1034         TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name,
1035                                                 "start#stop#close#reset");
1036 cmdline_parse_token_string_t cmd_operate_port_all_all =
1037         TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all");
1038
1039 cmdline_parse_inst_t cmd_operate_port = {
1040         .f = cmd_operate_port_parsed,
1041         .data = NULL,
1042         .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports",
1043         .tokens = {
1044                 (void *)&cmd_operate_port_all_cmd,
1045                 (void *)&cmd_operate_port_all_port,
1046                 (void *)&cmd_operate_port_all_all,
1047                 NULL,
1048         },
1049 };
1050
1051 /* *** start/stop/close specific port *** */
1052 struct cmd_operate_specific_port_result {
1053         cmdline_fixed_string_t keyword;
1054         cmdline_fixed_string_t name;
1055         uint8_t value;
1056 };
1057
1058 static void cmd_operate_specific_port_parsed(void *parsed_result,
1059                         __attribute__((unused)) struct cmdline *cl,
1060                                 __attribute__((unused)) void *data)
1061 {
1062         struct cmd_operate_specific_port_result *res = parsed_result;
1063
1064         if (!strcmp(res->name, "start"))
1065                 start_port(res->value);
1066         else if (!strcmp(res->name, "stop"))
1067                 stop_port(res->value);
1068         else if (!strcmp(res->name, "close"))
1069                 close_port(res->value);
1070         else if (!strcmp(res->name, "reset"))
1071                 reset_port(res->value);
1072         else
1073                 printf("Unknown parameter\n");
1074 }
1075
1076 cmdline_parse_token_string_t cmd_operate_specific_port_cmd =
1077         TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1078                                                         keyword, "port");
1079 cmdline_parse_token_string_t cmd_operate_specific_port_port =
1080         TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1081                                                 name, "start#stop#close#reset");
1082 cmdline_parse_token_num_t cmd_operate_specific_port_id =
1083         TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result,
1084                                                         value, UINT8);
1085
1086 cmdline_parse_inst_t cmd_operate_specific_port = {
1087         .f = cmd_operate_specific_port_parsed,
1088         .data = NULL,
1089         .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id",
1090         .tokens = {
1091                 (void *)&cmd_operate_specific_port_cmd,
1092                 (void *)&cmd_operate_specific_port_port,
1093                 (void *)&cmd_operate_specific_port_id,
1094                 NULL,
1095         },
1096 };
1097
1098 /* *** attach a specified port *** */
1099 struct cmd_operate_attach_port_result {
1100         cmdline_fixed_string_t port;
1101         cmdline_fixed_string_t keyword;
1102         cmdline_fixed_string_t identifier;
1103 };
1104
1105 static void cmd_operate_attach_port_parsed(void *parsed_result,
1106                                 __attribute__((unused)) struct cmdline *cl,
1107                                 __attribute__((unused)) void *data)
1108 {
1109         struct cmd_operate_attach_port_result *res = parsed_result;
1110
1111         if (!strcmp(res->keyword, "attach"))
1112                 attach_port(res->identifier);
1113         else
1114                 printf("Unknown parameter\n");
1115 }
1116
1117 cmdline_parse_token_string_t cmd_operate_attach_port_port =
1118         TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1119                         port, "port");
1120 cmdline_parse_token_string_t cmd_operate_attach_port_keyword =
1121         TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1122                         keyword, "attach");
1123 cmdline_parse_token_string_t cmd_operate_attach_port_identifier =
1124         TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1125                         identifier, NULL);
1126
1127 cmdline_parse_inst_t cmd_operate_attach_port = {
1128         .f = cmd_operate_attach_port_parsed,
1129         .data = NULL,
1130         .help_str = "port attach <identifier>: "
1131                 "(identifier: pci address or virtual dev name)",
1132         .tokens = {
1133                 (void *)&cmd_operate_attach_port_port,
1134                 (void *)&cmd_operate_attach_port_keyword,
1135                 (void *)&cmd_operate_attach_port_identifier,
1136                 NULL,
1137         },
1138 };
1139
1140 /* *** detach a specified port *** */
1141 struct cmd_operate_detach_port_result {
1142         cmdline_fixed_string_t port;
1143         cmdline_fixed_string_t keyword;
1144         portid_t port_id;
1145 };
1146
1147 static void cmd_operate_detach_port_parsed(void *parsed_result,
1148                                 __attribute__((unused)) struct cmdline *cl,
1149                                 __attribute__((unused)) void *data)
1150 {
1151         struct cmd_operate_detach_port_result *res = parsed_result;
1152
1153         if (!strcmp(res->keyword, "detach"))
1154                 detach_port(res->port_id);
1155         else
1156                 printf("Unknown parameter\n");
1157 }
1158
1159 cmdline_parse_token_string_t cmd_operate_detach_port_port =
1160         TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1161                         port, "port");
1162 cmdline_parse_token_string_t cmd_operate_detach_port_keyword =
1163         TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1164                         keyword, "detach");
1165 cmdline_parse_token_num_t cmd_operate_detach_port_port_id =
1166         TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result,
1167                         port_id, UINT16);
1168
1169 cmdline_parse_inst_t cmd_operate_detach_port = {
1170         .f = cmd_operate_detach_port_parsed,
1171         .data = NULL,
1172         .help_str = "port detach <port_id>",
1173         .tokens = {
1174                 (void *)&cmd_operate_detach_port_port,
1175                 (void *)&cmd_operate_detach_port_keyword,
1176                 (void *)&cmd_operate_detach_port_port_id,
1177                 NULL,
1178         },
1179 };
1180
1181 /* *** configure speed for all ports *** */
1182 struct cmd_config_speed_all {
1183         cmdline_fixed_string_t port;
1184         cmdline_fixed_string_t keyword;
1185         cmdline_fixed_string_t all;
1186         cmdline_fixed_string_t item1;
1187         cmdline_fixed_string_t item2;
1188         cmdline_fixed_string_t value1;
1189         cmdline_fixed_string_t value2;
1190 };
1191
1192 static int
1193 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
1194 {
1195
1196         int duplex;
1197
1198         if (!strcmp(duplexstr, "half")) {
1199                 duplex = ETH_LINK_HALF_DUPLEX;
1200         } else if (!strcmp(duplexstr, "full")) {
1201                 duplex = ETH_LINK_FULL_DUPLEX;
1202         } else if (!strcmp(duplexstr, "auto")) {
1203                 duplex = ETH_LINK_FULL_DUPLEX;
1204         } else {
1205                 printf("Unknown duplex parameter\n");
1206                 return -1;
1207         }
1208
1209         if (!strcmp(speedstr, "10")) {
1210                 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1211                                 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M;
1212         } else if (!strcmp(speedstr, "100")) {
1213                 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1214                                 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M;
1215         } else {
1216                 if (duplex != ETH_LINK_FULL_DUPLEX) {
1217                         printf("Invalid speed/duplex parameters\n");
1218                         return -1;
1219                 }
1220                 if (!strcmp(speedstr, "1000")) {
1221                         *speed = ETH_LINK_SPEED_1G;
1222                 } else if (!strcmp(speedstr, "10000")) {
1223                         *speed = ETH_LINK_SPEED_10G;
1224                 } else if (!strcmp(speedstr, "25000")) {
1225                         *speed = ETH_LINK_SPEED_25G;
1226                 } else if (!strcmp(speedstr, "40000")) {
1227                         *speed = ETH_LINK_SPEED_40G;
1228                 } else if (!strcmp(speedstr, "50000")) {
1229                         *speed = ETH_LINK_SPEED_50G;
1230                 } else if (!strcmp(speedstr, "100000")) {
1231                         *speed = ETH_LINK_SPEED_100G;
1232                 } else if (!strcmp(speedstr, "auto")) {
1233                         *speed = ETH_LINK_SPEED_AUTONEG;
1234                 } else {
1235                         printf("Unknown speed parameter\n");
1236                         return -1;
1237                 }
1238         }
1239
1240         return 0;
1241 }
1242
1243 static void
1244 cmd_config_speed_all_parsed(void *parsed_result,
1245                         __attribute__((unused)) struct cmdline *cl,
1246                         __attribute__((unused)) void *data)
1247 {
1248         struct cmd_config_speed_all *res = parsed_result;
1249         uint32_t link_speed;
1250         portid_t pid;
1251
1252         if (!all_ports_stopped()) {
1253                 printf("Please stop all ports first\n");
1254                 return;
1255         }
1256
1257         if (parse_and_check_speed_duplex(res->value1, res->value2,
1258                         &link_speed) < 0)
1259                 return;
1260
1261         RTE_ETH_FOREACH_DEV(pid) {
1262                 ports[pid].dev_conf.link_speeds = link_speed;
1263         }
1264
1265         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1266 }
1267
1268 cmdline_parse_token_string_t cmd_config_speed_all_port =
1269         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port");
1270 cmdline_parse_token_string_t cmd_config_speed_all_keyword =
1271         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword,
1272                                                         "config");
1273 cmdline_parse_token_string_t cmd_config_speed_all_all =
1274         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all");
1275 cmdline_parse_token_string_t cmd_config_speed_all_item1 =
1276         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed");
1277 cmdline_parse_token_string_t cmd_config_speed_all_value1 =
1278         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1,
1279                                 "10#100#1000#10000#25000#40000#50000#100000#auto");
1280 cmdline_parse_token_string_t cmd_config_speed_all_item2 =
1281         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex");
1282 cmdline_parse_token_string_t cmd_config_speed_all_value2 =
1283         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2,
1284                                                 "half#full#auto");
1285
1286 cmdline_parse_inst_t cmd_config_speed_all = {
1287         .f = cmd_config_speed_all_parsed,
1288         .data = NULL,
1289         .help_str = "port config all speed "
1290                 "10|100|1000|10000|25000|40000|50000|100000|auto duplex "
1291                                                         "half|full|auto",
1292         .tokens = {
1293                 (void *)&cmd_config_speed_all_port,
1294                 (void *)&cmd_config_speed_all_keyword,
1295                 (void *)&cmd_config_speed_all_all,
1296                 (void *)&cmd_config_speed_all_item1,
1297                 (void *)&cmd_config_speed_all_value1,
1298                 (void *)&cmd_config_speed_all_item2,
1299                 (void *)&cmd_config_speed_all_value2,
1300                 NULL,
1301         },
1302 };
1303
1304 /* *** configure speed for specific port *** */
1305 struct cmd_config_speed_specific {
1306         cmdline_fixed_string_t port;
1307         cmdline_fixed_string_t keyword;
1308         uint8_t id;
1309         cmdline_fixed_string_t item1;
1310         cmdline_fixed_string_t item2;
1311         cmdline_fixed_string_t value1;
1312         cmdline_fixed_string_t value2;
1313 };
1314
1315 static void
1316 cmd_config_speed_specific_parsed(void *parsed_result,
1317                                 __attribute__((unused)) struct cmdline *cl,
1318                                 __attribute__((unused)) void *data)
1319 {
1320         struct cmd_config_speed_specific *res = parsed_result;
1321         uint32_t link_speed;
1322
1323         if (!all_ports_stopped()) {
1324                 printf("Please stop all ports first\n");
1325                 return;
1326         }
1327
1328         if (port_id_is_invalid(res->id, ENABLED_WARN))
1329                 return;
1330
1331         if (parse_and_check_speed_duplex(res->value1, res->value2,
1332                         &link_speed) < 0)
1333                 return;
1334
1335         ports[res->id].dev_conf.link_speeds = link_speed;
1336
1337         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1338 }
1339
1340
1341 cmdline_parse_token_string_t cmd_config_speed_specific_port =
1342         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port,
1343                                                                 "port");
1344 cmdline_parse_token_string_t cmd_config_speed_specific_keyword =
1345         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword,
1346                                                                 "config");
1347 cmdline_parse_token_num_t cmd_config_speed_specific_id =
1348         TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, UINT8);
1349 cmdline_parse_token_string_t cmd_config_speed_specific_item1 =
1350         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1,
1351                                                                 "speed");
1352 cmdline_parse_token_string_t cmd_config_speed_specific_value1 =
1353         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1,
1354                                 "10#100#1000#10000#25000#40000#50000#100000#auto");
1355 cmdline_parse_token_string_t cmd_config_speed_specific_item2 =
1356         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2,
1357                                                                 "duplex");
1358 cmdline_parse_token_string_t cmd_config_speed_specific_value2 =
1359         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2,
1360                                                         "half#full#auto");
1361
1362 cmdline_parse_inst_t cmd_config_speed_specific = {
1363         .f = cmd_config_speed_specific_parsed,
1364         .data = NULL,
1365         .help_str = "port config <port_id> speed "
1366                 "10|100|1000|10000|25000|40000|50000|100000|auto duplex "
1367                                                         "half|full|auto",
1368         .tokens = {
1369                 (void *)&cmd_config_speed_specific_port,
1370                 (void *)&cmd_config_speed_specific_keyword,
1371                 (void *)&cmd_config_speed_specific_id,
1372                 (void *)&cmd_config_speed_specific_item1,
1373                 (void *)&cmd_config_speed_specific_value1,
1374                 (void *)&cmd_config_speed_specific_item2,
1375                 (void *)&cmd_config_speed_specific_value2,
1376                 NULL,
1377         },
1378 };
1379
1380 /* *** configure txq/rxq, txd/rxd *** */
1381 struct cmd_config_rx_tx {
1382         cmdline_fixed_string_t port;
1383         cmdline_fixed_string_t keyword;
1384         cmdline_fixed_string_t all;
1385         cmdline_fixed_string_t name;
1386         uint16_t value;
1387 };
1388
1389 static void
1390 cmd_config_rx_tx_parsed(void *parsed_result,
1391                         __attribute__((unused)) struct cmdline *cl,
1392                         __attribute__((unused)) void *data)
1393 {
1394         struct cmd_config_rx_tx *res = parsed_result;
1395
1396         if (!all_ports_stopped()) {
1397                 printf("Please stop all ports first\n");
1398                 return;
1399         }
1400         if (!strcmp(res->name, "rxq")) {
1401                 if (!res->value && !nb_txq) {
1402                         printf("Warning: Either rx or tx queues should be non zero\n");
1403                         return;
1404                 }
1405                 nb_rxq = res->value;
1406         }
1407         else if (!strcmp(res->name, "txq")) {
1408                 if (!res->value && !nb_rxq) {
1409                         printf("Warning: Either rx or tx queues should be non zero\n");
1410                         return;
1411                 }
1412                 nb_txq = res->value;
1413         }
1414         else if (!strcmp(res->name, "rxd")) {
1415                 if (res->value <= 0 || res->value > RTE_TEST_RX_DESC_MAX) {
1416                         printf("rxd %d invalid - must be > 0 && <= %d\n",
1417                                         res->value, RTE_TEST_RX_DESC_MAX);
1418                         return;
1419                 }
1420                 nb_rxd = res->value;
1421         } else if (!strcmp(res->name, "txd")) {
1422                 if (res->value <= 0 || res->value > RTE_TEST_TX_DESC_MAX) {
1423                         printf("txd %d invalid - must be > 0 && <= %d\n",
1424                                         res->value, RTE_TEST_TX_DESC_MAX);
1425                         return;
1426                 }
1427                 nb_txd = res->value;
1428         } else {
1429                 printf("Unknown parameter\n");
1430                 return;
1431         }
1432
1433         fwd_config_setup();
1434
1435         init_port_config();
1436
1437         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1438 }
1439
1440 cmdline_parse_token_string_t cmd_config_rx_tx_port =
1441         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port");
1442 cmdline_parse_token_string_t cmd_config_rx_tx_keyword =
1443         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config");
1444 cmdline_parse_token_string_t cmd_config_rx_tx_all =
1445         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all");
1446 cmdline_parse_token_string_t cmd_config_rx_tx_name =
1447         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name,
1448                                                 "rxq#txq#rxd#txd");
1449 cmdline_parse_token_num_t cmd_config_rx_tx_value =
1450         TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, UINT16);
1451
1452 cmdline_parse_inst_t cmd_config_rx_tx = {
1453         .f = cmd_config_rx_tx_parsed,
1454         .data = NULL,
1455         .help_str = "port config all rxq|txq|rxd|txd <value>",
1456         .tokens = {
1457                 (void *)&cmd_config_rx_tx_port,
1458                 (void *)&cmd_config_rx_tx_keyword,
1459                 (void *)&cmd_config_rx_tx_all,
1460                 (void *)&cmd_config_rx_tx_name,
1461                 (void *)&cmd_config_rx_tx_value,
1462                 NULL,
1463         },
1464 };
1465
1466 /* *** config max packet length *** */
1467 struct cmd_config_max_pkt_len_result {
1468         cmdline_fixed_string_t port;
1469         cmdline_fixed_string_t keyword;
1470         cmdline_fixed_string_t all;
1471         cmdline_fixed_string_t name;
1472         uint32_t value;
1473 };
1474
1475 static void
1476 cmd_config_max_pkt_len_parsed(void *parsed_result,
1477                                 __attribute__((unused)) struct cmdline *cl,
1478                                 __attribute__((unused)) void *data)
1479 {
1480         struct cmd_config_max_pkt_len_result *res = parsed_result;
1481
1482         if (!all_ports_stopped()) {
1483                 printf("Please stop all ports first\n");
1484                 return;
1485         }
1486
1487         if (!strcmp(res->name, "max-pkt-len")) {
1488                 if (res->value < ETHER_MIN_LEN) {
1489                         printf("max-pkt-len can not be less than %d\n",
1490                                                         ETHER_MIN_LEN);
1491                         return;
1492                 }
1493                 if (res->value == rx_mode.max_rx_pkt_len)
1494                         return;
1495
1496                 rx_mode.max_rx_pkt_len = res->value;
1497                 if (res->value > ETHER_MAX_LEN)
1498                         rx_mode.jumbo_frame = 1;
1499                 else
1500                         rx_mode.jumbo_frame = 0;
1501         } else {
1502                 printf("Unknown parameter\n");
1503                 return;
1504         }
1505
1506         init_port_config();
1507
1508         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1509 }
1510
1511 cmdline_parse_token_string_t cmd_config_max_pkt_len_port =
1512         TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port,
1513                                                                 "port");
1514 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword =
1515         TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword,
1516                                                                 "config");
1517 cmdline_parse_token_string_t cmd_config_max_pkt_len_all =
1518         TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all,
1519                                                                 "all");
1520 cmdline_parse_token_string_t cmd_config_max_pkt_len_name =
1521         TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name,
1522                                                                 "max-pkt-len");
1523 cmdline_parse_token_num_t cmd_config_max_pkt_len_value =
1524         TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value,
1525                                                                 UINT32);
1526
1527 cmdline_parse_inst_t cmd_config_max_pkt_len = {
1528         .f = cmd_config_max_pkt_len_parsed,
1529         .data = NULL,
1530         .help_str = "port config all max-pkt-len <value>",
1531         .tokens = {
1532                 (void *)&cmd_config_max_pkt_len_port,
1533                 (void *)&cmd_config_max_pkt_len_keyword,
1534                 (void *)&cmd_config_max_pkt_len_all,
1535                 (void *)&cmd_config_max_pkt_len_name,
1536                 (void *)&cmd_config_max_pkt_len_value,
1537                 NULL,
1538         },
1539 };
1540
1541 /* *** configure port MTU *** */
1542 struct cmd_config_mtu_result {
1543         cmdline_fixed_string_t port;
1544         cmdline_fixed_string_t keyword;
1545         cmdline_fixed_string_t mtu;
1546         portid_t port_id;
1547         uint16_t value;
1548 };
1549
1550 static void
1551 cmd_config_mtu_parsed(void *parsed_result,
1552                       __attribute__((unused)) struct cmdline *cl,
1553                       __attribute__((unused)) void *data)
1554 {
1555         struct cmd_config_mtu_result *res = parsed_result;
1556
1557         if (res->value < ETHER_MIN_LEN) {
1558                 printf("mtu cannot be less than %d\n", ETHER_MIN_LEN);
1559                 return;
1560         }
1561         port_mtu_set(res->port_id, res->value);
1562 }
1563
1564 cmdline_parse_token_string_t cmd_config_mtu_port =
1565         TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port,
1566                                  "port");
1567 cmdline_parse_token_string_t cmd_config_mtu_keyword =
1568         TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
1569                                  "config");
1570 cmdline_parse_token_string_t cmd_config_mtu_mtu =
1571         TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
1572                                  "mtu");
1573 cmdline_parse_token_num_t cmd_config_mtu_port_id =
1574         TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id, UINT16);
1575 cmdline_parse_token_num_t cmd_config_mtu_value =
1576         TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value, UINT16);
1577
1578 cmdline_parse_inst_t cmd_config_mtu = {
1579         .f = cmd_config_mtu_parsed,
1580         .data = NULL,
1581         .help_str = "port config mtu <port_id> <value>",
1582         .tokens = {
1583                 (void *)&cmd_config_mtu_port,
1584                 (void *)&cmd_config_mtu_keyword,
1585                 (void *)&cmd_config_mtu_mtu,
1586                 (void *)&cmd_config_mtu_port_id,
1587                 (void *)&cmd_config_mtu_value,
1588                 NULL,
1589         },
1590 };
1591
1592 /* *** configure rx mode *** */
1593 struct cmd_config_rx_mode_flag {
1594         cmdline_fixed_string_t port;
1595         cmdline_fixed_string_t keyword;
1596         cmdline_fixed_string_t all;
1597         cmdline_fixed_string_t name;
1598         cmdline_fixed_string_t value;
1599 };
1600
1601 static void
1602 cmd_config_rx_mode_flag_parsed(void *parsed_result,
1603                                 __attribute__((unused)) struct cmdline *cl,
1604                                 __attribute__((unused)) void *data)
1605 {
1606         struct cmd_config_rx_mode_flag *res = parsed_result;
1607
1608         if (!all_ports_stopped()) {
1609                 printf("Please stop all ports first\n");
1610                 return;
1611         }
1612
1613         if (!strcmp(res->name, "crc-strip")) {
1614                 if (!strcmp(res->value, "on"))
1615                         rx_mode.hw_strip_crc = 1;
1616                 else if (!strcmp(res->value, "off"))
1617                         rx_mode.hw_strip_crc = 0;
1618                 else {
1619                         printf("Unknown parameter\n");
1620                         return;
1621                 }
1622         } else if (!strcmp(res->name, "scatter")) {
1623                 if (!strcmp(res->value, "on"))
1624                         rx_mode.enable_scatter = 1;
1625                 else if (!strcmp(res->value, "off"))
1626                         rx_mode.enable_scatter = 0;
1627                 else {
1628                         printf("Unknown parameter\n");
1629                         return;
1630                 }
1631         } else if (!strcmp(res->name, "rx-cksum")) {
1632                 if (!strcmp(res->value, "on"))
1633                         rx_mode.hw_ip_checksum = 1;
1634                 else if (!strcmp(res->value, "off"))
1635                         rx_mode.hw_ip_checksum = 0;
1636                 else {
1637                         printf("Unknown parameter\n");
1638                         return;
1639                 }
1640         } else if (!strcmp(res->name, "rx-timestamp")) {
1641                 if (!strcmp(res->value, "on"))
1642                         rx_mode.hw_timestamp = 1;
1643                 else if (!strcmp(res->value, "off"))
1644                         rx_mode.hw_timestamp = 0;
1645                 else {
1646                         printf("Unknown parameter\n");
1647                         return;
1648                 }
1649         } else if (!strcmp(res->name, "hw-vlan")) {
1650                 if (!strcmp(res->value, "on")) {
1651                         rx_mode.hw_vlan_filter = 1;
1652                         rx_mode.hw_vlan_strip  = 1;
1653                 }
1654                 else if (!strcmp(res->value, "off")) {
1655                         rx_mode.hw_vlan_filter = 0;
1656                         rx_mode.hw_vlan_strip  = 0;
1657                 }
1658                 else {
1659                         printf("Unknown parameter\n");
1660                         return;
1661                 }
1662         } else if (!strcmp(res->name, "hw-vlan-filter")) {
1663                 if (!strcmp(res->value, "on"))
1664                         rx_mode.hw_vlan_filter = 1;
1665                 else if (!strcmp(res->value, "off"))
1666                         rx_mode.hw_vlan_filter = 0;
1667                 else {
1668                         printf("Unknown parameter\n");
1669                         return;
1670                 }
1671         } else if (!strcmp(res->name, "hw-vlan-strip")) {
1672                 if (!strcmp(res->value, "on"))
1673                         rx_mode.hw_vlan_strip  = 1;
1674                 else if (!strcmp(res->value, "off"))
1675                         rx_mode.hw_vlan_strip  = 0;
1676                 else {
1677                         printf("Unknown parameter\n");
1678                         return;
1679                 }
1680         } else if (!strcmp(res->name, "hw-vlan-extend")) {
1681                 if (!strcmp(res->value, "on"))
1682                         rx_mode.hw_vlan_extend = 1;
1683                 else if (!strcmp(res->value, "off"))
1684                         rx_mode.hw_vlan_extend = 0;
1685                 else {
1686                         printf("Unknown parameter\n");
1687                         return;
1688                 }
1689         } else if (!strcmp(res->name, "drop-en")) {
1690                 if (!strcmp(res->value, "on"))
1691                         rx_drop_en = 1;
1692                 else if (!strcmp(res->value, "off"))
1693                         rx_drop_en = 0;
1694                 else {
1695                         printf("Unknown parameter\n");
1696                         return;
1697                 }
1698         } else {
1699                 printf("Unknown parameter\n");
1700                 return;
1701         }
1702
1703         init_port_config();
1704
1705         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1706 }
1707
1708 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port =
1709         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port");
1710 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword =
1711         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword,
1712                                                                 "config");
1713 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all =
1714         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all");
1715 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name =
1716         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name,
1717                                         "crc-strip#scatter#rx-cksum#rx-timestamp#hw-vlan#"
1718                                         "hw-vlan-filter#hw-vlan-strip#hw-vlan-extend");
1719 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value =
1720         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value,
1721                                                         "on#off");
1722
1723 cmdline_parse_inst_t cmd_config_rx_mode_flag = {
1724         .f = cmd_config_rx_mode_flag_parsed,
1725         .data = NULL,
1726         .help_str = "port config all crc-strip|scatter|rx-cksum|rx-timestamp|hw-vlan|"
1727                 "hw-vlan-filter|hw-vlan-strip|hw-vlan-extend on|off",
1728         .tokens = {
1729                 (void *)&cmd_config_rx_mode_flag_port,
1730                 (void *)&cmd_config_rx_mode_flag_keyword,
1731                 (void *)&cmd_config_rx_mode_flag_all,
1732                 (void *)&cmd_config_rx_mode_flag_name,
1733                 (void *)&cmd_config_rx_mode_flag_value,
1734                 NULL,
1735         },
1736 };
1737
1738 /* *** configure rss *** */
1739 struct cmd_config_rss {
1740         cmdline_fixed_string_t port;
1741         cmdline_fixed_string_t keyword;
1742         cmdline_fixed_string_t all;
1743         cmdline_fixed_string_t name;
1744         cmdline_fixed_string_t value;
1745 };
1746
1747 static void
1748 cmd_config_rss_parsed(void *parsed_result,
1749                         __attribute__((unused)) struct cmdline *cl,
1750                         __attribute__((unused)) void *data)
1751 {
1752         struct cmd_config_rss *res = parsed_result;
1753         struct rte_eth_rss_conf rss_conf;
1754         int diag;
1755         uint8_t i;
1756
1757         if (!strcmp(res->value, "all"))
1758                 rss_conf.rss_hf = ETH_RSS_IP | ETH_RSS_TCP |
1759                                 ETH_RSS_UDP | ETH_RSS_SCTP |
1760                                         ETH_RSS_L2_PAYLOAD;
1761         else if (!strcmp(res->value, "ip"))
1762                 rss_conf.rss_hf = ETH_RSS_IP;
1763         else if (!strcmp(res->value, "udp"))
1764                 rss_conf.rss_hf = ETH_RSS_UDP;
1765         else if (!strcmp(res->value, "tcp"))
1766                 rss_conf.rss_hf = ETH_RSS_TCP;
1767         else if (!strcmp(res->value, "sctp"))
1768                 rss_conf.rss_hf = ETH_RSS_SCTP;
1769         else if (!strcmp(res->value, "ether"))
1770                 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD;
1771         else if (!strcmp(res->value, "port"))
1772                 rss_conf.rss_hf = ETH_RSS_PORT;
1773         else if (!strcmp(res->value, "vxlan"))
1774                 rss_conf.rss_hf = ETH_RSS_VXLAN;
1775         else if (!strcmp(res->value, "geneve"))
1776                 rss_conf.rss_hf = ETH_RSS_GENEVE;
1777         else if (!strcmp(res->value, "nvgre"))
1778                 rss_conf.rss_hf = ETH_RSS_NVGRE;
1779         else if (!strcmp(res->value, "none"))
1780                 rss_conf.rss_hf = 0;
1781         else if (isdigit(res->value[0]) && atoi(res->value) > 0 &&
1782                                                 atoi(res->value) < 64)
1783                 rss_conf.rss_hf = 1ULL << atoi(res->value);
1784         else {
1785                 printf("Unknown parameter\n");
1786                 return;
1787         }
1788         rss_conf.rss_key = NULL;
1789         for (i = 0; i < rte_eth_dev_count(); i++) {
1790                 diag = rte_eth_dev_rss_hash_update(i, &rss_conf);
1791                 if (diag < 0)
1792                         printf("Configuration of RSS hash at ethernet port %d "
1793                                 "failed with error (%d): %s.\n",
1794                                 i, -diag, strerror(-diag));
1795         }
1796 }
1797
1798 cmdline_parse_token_string_t cmd_config_rss_port =
1799         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port");
1800 cmdline_parse_token_string_t cmd_config_rss_keyword =
1801         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config");
1802 cmdline_parse_token_string_t cmd_config_rss_all =
1803         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all");
1804 cmdline_parse_token_string_t cmd_config_rss_name =
1805         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss");
1806 cmdline_parse_token_string_t cmd_config_rss_value =
1807         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value, NULL);
1808
1809 cmdline_parse_inst_t cmd_config_rss = {
1810         .f = cmd_config_rss_parsed,
1811         .data = NULL,
1812         .help_str = "port config all rss "
1813                 "all|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|none|<flowtype_id>",
1814         .tokens = {
1815                 (void *)&cmd_config_rss_port,
1816                 (void *)&cmd_config_rss_keyword,
1817                 (void *)&cmd_config_rss_all,
1818                 (void *)&cmd_config_rss_name,
1819                 (void *)&cmd_config_rss_value,
1820                 NULL,
1821         },
1822 };
1823
1824 /* *** configure rss hash key *** */
1825 struct cmd_config_rss_hash_key {
1826         cmdline_fixed_string_t port;
1827         cmdline_fixed_string_t config;
1828         portid_t port_id;
1829         cmdline_fixed_string_t rss_hash_key;
1830         cmdline_fixed_string_t rss_type;
1831         cmdline_fixed_string_t key;
1832 };
1833
1834 static uint8_t
1835 hexa_digit_to_value(char hexa_digit)
1836 {
1837         if ((hexa_digit >= '0') && (hexa_digit <= '9'))
1838                 return (uint8_t) (hexa_digit - '0');
1839         if ((hexa_digit >= 'a') && (hexa_digit <= 'f'))
1840                 return (uint8_t) ((hexa_digit - 'a') + 10);
1841         if ((hexa_digit >= 'A') && (hexa_digit <= 'F'))
1842                 return (uint8_t) ((hexa_digit - 'A') + 10);
1843         /* Invalid hexa digit */
1844         return 0xFF;
1845 }
1846
1847 static uint8_t
1848 parse_and_check_key_hexa_digit(char *key, int idx)
1849 {
1850         uint8_t hexa_v;
1851
1852         hexa_v = hexa_digit_to_value(key[idx]);
1853         if (hexa_v == 0xFF)
1854                 printf("invalid key: character %c at position %d is not a "
1855                        "valid hexa digit\n", key[idx], idx);
1856         return hexa_v;
1857 }
1858
1859 static void
1860 cmd_config_rss_hash_key_parsed(void *parsed_result,
1861                                __attribute__((unused)) struct cmdline *cl,
1862                                __attribute__((unused)) void *data)
1863 {
1864         struct cmd_config_rss_hash_key *res = parsed_result;
1865         uint8_t hash_key[RSS_HASH_KEY_LENGTH];
1866         uint8_t xdgt0;
1867         uint8_t xdgt1;
1868         int i;
1869         struct rte_eth_dev_info dev_info;
1870         uint8_t hash_key_size;
1871         uint32_t key_len;
1872
1873         memset(&dev_info, 0, sizeof(dev_info));
1874         rte_eth_dev_info_get(res->port_id, &dev_info);
1875         if (dev_info.hash_key_size > 0 &&
1876                         dev_info.hash_key_size <= sizeof(hash_key))
1877                 hash_key_size = dev_info.hash_key_size;
1878         else {
1879                 printf("dev_info did not provide a valid hash key size\n");
1880                 return;
1881         }
1882         /* Check the length of the RSS hash key */
1883         key_len = strlen(res->key);
1884         if (key_len != (hash_key_size * 2)) {
1885                 printf("key length: %d invalid - key must be a string of %d"
1886                            " hexa-decimal numbers\n",
1887                            (int) key_len, hash_key_size * 2);
1888                 return;
1889         }
1890         /* Translate RSS hash key into binary representation */
1891         for (i = 0; i < hash_key_size; i++) {
1892                 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
1893                 if (xdgt0 == 0xFF)
1894                         return;
1895                 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
1896                 if (xdgt1 == 0xFF)
1897                         return;
1898                 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
1899         }
1900         port_rss_hash_key_update(res->port_id, res->rss_type, hash_key,
1901                         hash_key_size);
1902 }
1903
1904 cmdline_parse_token_string_t cmd_config_rss_hash_key_port =
1905         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port");
1906 cmdline_parse_token_string_t cmd_config_rss_hash_key_config =
1907         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config,
1908                                  "config");
1909 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id =
1910         TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id, UINT16);
1911 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key =
1912         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key,
1913                                  rss_hash_key, "rss-hash-key");
1914 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
1915         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type,
1916                                  "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
1917                                  "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
1918                                  "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
1919                                  "ipv6-tcp-ex#ipv6-udp-ex");
1920 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
1921         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
1922
1923 cmdline_parse_inst_t cmd_config_rss_hash_key = {
1924         .f = cmd_config_rss_hash_key_parsed,
1925         .data = NULL,
1926         .help_str = "port config <port_id> rss-hash-key "
1927                 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
1928                 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
1929                 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex "
1930                 "<string of hex digits (variable length, NIC dependent)>",
1931         .tokens = {
1932                 (void *)&cmd_config_rss_hash_key_port,
1933                 (void *)&cmd_config_rss_hash_key_config,
1934                 (void *)&cmd_config_rss_hash_key_port_id,
1935                 (void *)&cmd_config_rss_hash_key_rss_hash_key,
1936                 (void *)&cmd_config_rss_hash_key_rss_type,
1937                 (void *)&cmd_config_rss_hash_key_value,
1938                 NULL,
1939         },
1940 };
1941
1942 /* *** configure port rxq/txq start/stop *** */
1943 struct cmd_config_rxtx_queue {
1944         cmdline_fixed_string_t port;
1945         uint8_t portid;
1946         cmdline_fixed_string_t rxtxq;
1947         uint16_t qid;
1948         cmdline_fixed_string_t opname;
1949 };
1950
1951 static void
1952 cmd_config_rxtx_queue_parsed(void *parsed_result,
1953                         __attribute__((unused)) struct cmdline *cl,
1954                         __attribute__((unused)) void *data)
1955 {
1956         struct cmd_config_rxtx_queue *res = parsed_result;
1957         uint8_t isrx;
1958         uint8_t isstart;
1959         int ret = 0;
1960
1961         if (test_done == 0) {
1962                 printf("Please stop forwarding first\n");
1963                 return;
1964         }
1965
1966         if (port_id_is_invalid(res->portid, ENABLED_WARN))
1967                 return;
1968
1969         if (port_is_started(res->portid) != 1) {
1970                 printf("Please start port %u first\n", res->portid);
1971                 return;
1972         }
1973
1974         if (!strcmp(res->rxtxq, "rxq"))
1975                 isrx = 1;
1976         else if (!strcmp(res->rxtxq, "txq"))
1977                 isrx = 0;
1978         else {
1979                 printf("Unknown parameter\n");
1980                 return;
1981         }
1982
1983         if (isrx && rx_queue_id_is_invalid(res->qid))
1984                 return;
1985         else if (!isrx && tx_queue_id_is_invalid(res->qid))
1986                 return;
1987
1988         if (!strcmp(res->opname, "start"))
1989                 isstart = 1;
1990         else if (!strcmp(res->opname, "stop"))
1991                 isstart = 0;
1992         else {
1993                 printf("Unknown parameter\n");
1994                 return;
1995         }
1996
1997         if (isstart && isrx)
1998                 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid);
1999         else if (!isstart && isrx)
2000                 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid);
2001         else if (isstart && !isrx)
2002                 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid);
2003         else
2004                 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid);
2005
2006         if (ret == -ENOTSUP)
2007                 printf("Function not supported in PMD driver\n");
2008 }
2009
2010 cmdline_parse_token_string_t cmd_config_rxtx_queue_port =
2011         TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port");
2012 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid =
2013         TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, UINT8);
2014 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq =
2015         TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq");
2016 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid =
2017         TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, UINT16);
2018 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname =
2019         TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname,
2020                                                 "start#stop");
2021
2022 cmdline_parse_inst_t cmd_config_rxtx_queue = {
2023         .f = cmd_config_rxtx_queue_parsed,
2024         .data = NULL,
2025         .help_str = "port <port_id> rxq|txq <queue_id> start|stop",
2026         .tokens = {
2027                 (void *)&cmd_config_speed_all_port,
2028                 (void *)&cmd_config_rxtx_queue_portid,
2029                 (void *)&cmd_config_rxtx_queue_rxtxq,
2030                 (void *)&cmd_config_rxtx_queue_qid,
2031                 (void *)&cmd_config_rxtx_queue_opname,
2032                 NULL,
2033         },
2034 };
2035
2036 /* *** Configure RSS RETA *** */
2037 struct cmd_config_rss_reta {
2038         cmdline_fixed_string_t port;
2039         cmdline_fixed_string_t keyword;
2040         portid_t port_id;
2041         cmdline_fixed_string_t name;
2042         cmdline_fixed_string_t list_name;
2043         cmdline_fixed_string_t list_of_items;
2044 };
2045
2046 static int
2047 parse_reta_config(const char *str,
2048                   struct rte_eth_rss_reta_entry64 *reta_conf,
2049                   uint16_t nb_entries)
2050 {
2051         int i;
2052         unsigned size;
2053         uint16_t hash_index, idx, shift;
2054         uint16_t nb_queue;
2055         char s[256];
2056         const char *p, *p0 = str;
2057         char *end;
2058         enum fieldnames {
2059                 FLD_HASH_INDEX = 0,
2060                 FLD_QUEUE,
2061                 _NUM_FLD
2062         };
2063         unsigned long int_fld[_NUM_FLD];
2064         char *str_fld[_NUM_FLD];
2065
2066         while ((p = strchr(p0,'(')) != NULL) {
2067                 ++p;
2068                 if((p0 = strchr(p,')')) == NULL)
2069                         return -1;
2070
2071                 size = p0 - p;
2072                 if(size >= sizeof(s))
2073                         return -1;
2074
2075                 snprintf(s, sizeof(s), "%.*s", size, p);
2076                 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
2077                         return -1;
2078                 for (i = 0; i < _NUM_FLD; i++) {
2079                         errno = 0;
2080                         int_fld[i] = strtoul(str_fld[i], &end, 0);
2081                         if (errno != 0 || end == str_fld[i] ||
2082                                         int_fld[i] > 65535)
2083                                 return -1;
2084                 }
2085
2086                 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX];
2087                 nb_queue = (uint16_t)int_fld[FLD_QUEUE];
2088
2089                 if (hash_index >= nb_entries) {
2090                         printf("Invalid RETA hash index=%d\n", hash_index);
2091                         return -1;
2092                 }
2093
2094                 idx = hash_index / RTE_RETA_GROUP_SIZE;
2095                 shift = hash_index % RTE_RETA_GROUP_SIZE;
2096                 reta_conf[idx].mask |= (1ULL << shift);
2097                 reta_conf[idx].reta[shift] = nb_queue;
2098         }
2099
2100         return 0;
2101 }
2102
2103 static void
2104 cmd_set_rss_reta_parsed(void *parsed_result,
2105                         __attribute__((unused)) struct cmdline *cl,
2106                         __attribute__((unused)) void *data)
2107 {
2108         int ret;
2109         struct rte_eth_dev_info dev_info;
2110         struct rte_eth_rss_reta_entry64 reta_conf[8];
2111         struct cmd_config_rss_reta *res = parsed_result;
2112
2113         memset(&dev_info, 0, sizeof(dev_info));
2114         rte_eth_dev_info_get(res->port_id, &dev_info);
2115         if (dev_info.reta_size == 0) {
2116                 printf("Redirection table size is 0 which is "
2117                                         "invalid for RSS\n");
2118                 return;
2119         } else
2120                 printf("The reta size of port %d is %u\n",
2121                         res->port_id, dev_info.reta_size);
2122         if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) {
2123                 printf("Currently do not support more than %u entries of "
2124                         "redirection table\n", ETH_RSS_RETA_SIZE_512);
2125                 return;
2126         }
2127
2128         memset(reta_conf, 0, sizeof(reta_conf));
2129         if (!strcmp(res->list_name, "reta")) {
2130                 if (parse_reta_config(res->list_of_items, reta_conf,
2131                                                 dev_info.reta_size)) {
2132                         printf("Invalid RSS Redirection Table "
2133                                         "config entered\n");
2134                         return;
2135                 }
2136                 ret = rte_eth_dev_rss_reta_update(res->port_id,
2137                                 reta_conf, dev_info.reta_size);
2138                 if (ret != 0)
2139                         printf("Bad redirection table parameter, "
2140                                         "return code = %d \n", ret);
2141         }
2142 }
2143
2144 cmdline_parse_token_string_t cmd_config_rss_reta_port =
2145         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port");
2146 cmdline_parse_token_string_t cmd_config_rss_reta_keyword =
2147         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config");
2148 cmdline_parse_token_num_t cmd_config_rss_reta_port_id =
2149         TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, UINT16);
2150 cmdline_parse_token_string_t cmd_config_rss_reta_name =
2151         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss");
2152 cmdline_parse_token_string_t cmd_config_rss_reta_list_name =
2153         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta");
2154 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items =
2155         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items,
2156                                  NULL);
2157 cmdline_parse_inst_t cmd_config_rss_reta = {
2158         .f = cmd_set_rss_reta_parsed,
2159         .data = NULL,
2160         .help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>",
2161         .tokens = {
2162                 (void *)&cmd_config_rss_reta_port,
2163                 (void *)&cmd_config_rss_reta_keyword,
2164                 (void *)&cmd_config_rss_reta_port_id,
2165                 (void *)&cmd_config_rss_reta_name,
2166                 (void *)&cmd_config_rss_reta_list_name,
2167                 (void *)&cmd_config_rss_reta_list_of_items,
2168                 NULL,
2169         },
2170 };
2171
2172 /* *** SHOW PORT RETA INFO *** */
2173 struct cmd_showport_reta {
2174         cmdline_fixed_string_t show;
2175         cmdline_fixed_string_t port;
2176         portid_t port_id;
2177         cmdline_fixed_string_t rss;
2178         cmdline_fixed_string_t reta;
2179         uint16_t size;
2180         cmdline_fixed_string_t list_of_items;
2181 };
2182
2183 static int
2184 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf,
2185                            uint16_t nb_entries,
2186                            char *str)
2187 {
2188         uint32_t size;
2189         const char *p, *p0 = str;
2190         char s[256];
2191         char *end;
2192         char *str_fld[8];
2193         uint16_t i;
2194         uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) /
2195                         RTE_RETA_GROUP_SIZE;
2196         int ret;
2197
2198         p = strchr(p0, '(');
2199         if (p == NULL)
2200                 return -1;
2201         p++;
2202         p0 = strchr(p, ')');
2203         if (p0 == NULL)
2204                 return -1;
2205         size = p0 - p;
2206         if (size >= sizeof(s)) {
2207                 printf("The string size exceeds the internal buffer size\n");
2208                 return -1;
2209         }
2210         snprintf(s, sizeof(s), "%.*s", size, p);
2211         ret = rte_strsplit(s, sizeof(s), str_fld, num, ',');
2212         if (ret <= 0 || ret != num) {
2213                 printf("The bits of masks do not match the number of "
2214                                         "reta entries: %u\n", num);
2215                 return -1;
2216         }
2217         for (i = 0; i < ret; i++)
2218                 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0);
2219
2220         return 0;
2221 }
2222
2223 static void
2224 cmd_showport_reta_parsed(void *parsed_result,
2225                          __attribute__((unused)) struct cmdline *cl,
2226                          __attribute__((unused)) void *data)
2227 {
2228         struct cmd_showport_reta *res = parsed_result;
2229         struct rte_eth_rss_reta_entry64 reta_conf[8];
2230         struct rte_eth_dev_info dev_info;
2231         uint16_t max_reta_size;
2232
2233         memset(&dev_info, 0, sizeof(dev_info));
2234         rte_eth_dev_info_get(res->port_id, &dev_info);
2235         max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512);
2236         if (res->size == 0 || res->size > max_reta_size) {
2237                 printf("Invalid redirection table size: %u (1-%u)\n",
2238                         res->size, max_reta_size);
2239                 return;
2240         }
2241
2242         memset(reta_conf, 0, sizeof(reta_conf));
2243         if (showport_parse_reta_config(reta_conf, res->size,
2244                                 res->list_of_items) < 0) {
2245                 printf("Invalid string: %s for reta masks\n",
2246                                         res->list_of_items);
2247                 return;
2248         }
2249         port_rss_reta_info(res->port_id, reta_conf, res->size);
2250 }
2251
2252 cmdline_parse_token_string_t cmd_showport_reta_show =
2253         TOKEN_STRING_INITIALIZER(struct  cmd_showport_reta, show, "show");
2254 cmdline_parse_token_string_t cmd_showport_reta_port =
2255         TOKEN_STRING_INITIALIZER(struct  cmd_showport_reta, port, "port");
2256 cmdline_parse_token_num_t cmd_showport_reta_port_id =
2257         TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, UINT16);
2258 cmdline_parse_token_string_t cmd_showport_reta_rss =
2259         TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss");
2260 cmdline_parse_token_string_t cmd_showport_reta_reta =
2261         TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta");
2262 cmdline_parse_token_num_t cmd_showport_reta_size =
2263         TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, UINT16);
2264 cmdline_parse_token_string_t cmd_showport_reta_list_of_items =
2265         TOKEN_STRING_INITIALIZER(struct cmd_showport_reta,
2266                                         list_of_items, NULL);
2267
2268 cmdline_parse_inst_t cmd_showport_reta = {
2269         .f = cmd_showport_reta_parsed,
2270         .data = NULL,
2271         .help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>",
2272         .tokens = {
2273                 (void *)&cmd_showport_reta_show,
2274                 (void *)&cmd_showport_reta_port,
2275                 (void *)&cmd_showport_reta_port_id,
2276                 (void *)&cmd_showport_reta_rss,
2277                 (void *)&cmd_showport_reta_reta,
2278                 (void *)&cmd_showport_reta_size,
2279                 (void *)&cmd_showport_reta_list_of_items,
2280                 NULL,
2281         },
2282 };
2283
2284 /* *** Show RSS hash configuration *** */
2285 struct cmd_showport_rss_hash {
2286         cmdline_fixed_string_t show;
2287         cmdline_fixed_string_t port;
2288         portid_t port_id;
2289         cmdline_fixed_string_t rss_hash;
2290         cmdline_fixed_string_t rss_type;
2291         cmdline_fixed_string_t key; /* optional argument */
2292 };
2293
2294 static void cmd_showport_rss_hash_parsed(void *parsed_result,
2295                                 __attribute__((unused)) struct cmdline *cl,
2296                                 void *show_rss_key)
2297 {
2298         struct cmd_showport_rss_hash *res = parsed_result;
2299
2300         port_rss_hash_conf_show(res->port_id, res->rss_type,
2301                                 show_rss_key != NULL);
2302 }
2303
2304 cmdline_parse_token_string_t cmd_showport_rss_hash_show =
2305         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show");
2306 cmdline_parse_token_string_t cmd_showport_rss_hash_port =
2307         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port");
2308 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id =
2309         TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id, UINT16);
2310 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash =
2311         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash,
2312                                  "rss-hash");
2313 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash_info =
2314         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_type,
2315                                  "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
2316                                  "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
2317                                  "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
2318                                  "ipv6-tcp-ex#ipv6-udp-ex");
2319 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key =
2320         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key");
2321
2322 cmdline_parse_inst_t cmd_showport_rss_hash = {
2323         .f = cmd_showport_rss_hash_parsed,
2324         .data = NULL,
2325         .help_str = "show port <port_id> rss-hash "
2326                 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
2327                 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
2328                 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex",
2329         .tokens = {
2330                 (void *)&cmd_showport_rss_hash_show,
2331                 (void *)&cmd_showport_rss_hash_port,
2332                 (void *)&cmd_showport_rss_hash_port_id,
2333                 (void *)&cmd_showport_rss_hash_rss_hash,
2334                 (void *)&cmd_showport_rss_hash_rss_hash_info,
2335                 NULL,
2336         },
2337 };
2338
2339 cmdline_parse_inst_t cmd_showport_rss_hash_key = {
2340         .f = cmd_showport_rss_hash_parsed,
2341         .data = (void *)1,
2342         .help_str = "show port <port_id> rss-hash "
2343                 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
2344                 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
2345                 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex key",
2346         .tokens = {
2347                 (void *)&cmd_showport_rss_hash_show,
2348                 (void *)&cmd_showport_rss_hash_port,
2349                 (void *)&cmd_showport_rss_hash_port_id,
2350                 (void *)&cmd_showport_rss_hash_rss_hash,
2351                 (void *)&cmd_showport_rss_hash_rss_hash_info,
2352                 (void *)&cmd_showport_rss_hash_rss_key,
2353                 NULL,
2354         },
2355 };
2356
2357 /* *** Configure DCB *** */
2358 struct cmd_config_dcb {
2359         cmdline_fixed_string_t port;
2360         cmdline_fixed_string_t config;
2361         portid_t port_id;
2362         cmdline_fixed_string_t dcb;
2363         cmdline_fixed_string_t vt;
2364         cmdline_fixed_string_t vt_en;
2365         uint8_t num_tcs;
2366         cmdline_fixed_string_t pfc;
2367         cmdline_fixed_string_t pfc_en;
2368 };
2369
2370 static void
2371 cmd_config_dcb_parsed(void *parsed_result,
2372                         __attribute__((unused)) struct cmdline *cl,
2373                         __attribute__((unused)) void *data)
2374 {
2375         struct cmd_config_dcb *res = parsed_result;
2376         portid_t port_id = res->port_id;
2377         struct rte_port *port;
2378         uint8_t pfc_en;
2379         int ret;
2380
2381         port = &ports[port_id];
2382         /** Check if the port is not started **/
2383         if (port->port_status != RTE_PORT_STOPPED) {
2384                 printf("Please stop port %d first\n", port_id);
2385                 return;
2386         }
2387
2388         if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) {
2389                 printf("The invalid number of traffic class,"
2390                         " only 4 or 8 allowed.\n");
2391                 return;
2392         }
2393
2394         if (nb_fwd_lcores < res->num_tcs) {
2395                 printf("nb_cores shouldn't be less than number of TCs.\n");
2396                 return;
2397         }
2398         if (!strncmp(res->pfc_en, "on", 2))
2399                 pfc_en = 1;
2400         else
2401                 pfc_en = 0;
2402
2403         /* DCB in VT mode */
2404         if (!strncmp(res->vt_en, "on", 2))
2405                 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED,
2406                                 (enum rte_eth_nb_tcs)res->num_tcs,
2407                                 pfc_en);
2408         else
2409                 ret = init_port_dcb_config(port_id, DCB_ENABLED,
2410                                 (enum rte_eth_nb_tcs)res->num_tcs,
2411                                 pfc_en);
2412
2413
2414         if (ret != 0) {
2415                 printf("Cannot initialize network ports.\n");
2416                 return;
2417         }
2418
2419         cmd_reconfig_device_queue(port_id, 1, 1);
2420 }
2421
2422 cmdline_parse_token_string_t cmd_config_dcb_port =
2423         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port");
2424 cmdline_parse_token_string_t cmd_config_dcb_config =
2425         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config");
2426 cmdline_parse_token_num_t cmd_config_dcb_port_id =
2427         TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, UINT16);
2428 cmdline_parse_token_string_t cmd_config_dcb_dcb =
2429         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb");
2430 cmdline_parse_token_string_t cmd_config_dcb_vt =
2431         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt");
2432 cmdline_parse_token_string_t cmd_config_dcb_vt_en =
2433         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off");
2434 cmdline_parse_token_num_t cmd_config_dcb_num_tcs =
2435         TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, UINT8);
2436 cmdline_parse_token_string_t cmd_config_dcb_pfc=
2437         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc");
2438 cmdline_parse_token_string_t cmd_config_dcb_pfc_en =
2439         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off");
2440
2441 cmdline_parse_inst_t cmd_config_dcb = {
2442         .f = cmd_config_dcb_parsed,
2443         .data = NULL,
2444         .help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off",
2445         .tokens = {
2446                 (void *)&cmd_config_dcb_port,
2447                 (void *)&cmd_config_dcb_config,
2448                 (void *)&cmd_config_dcb_port_id,
2449                 (void *)&cmd_config_dcb_dcb,
2450                 (void *)&cmd_config_dcb_vt,
2451                 (void *)&cmd_config_dcb_vt_en,
2452                 (void *)&cmd_config_dcb_num_tcs,
2453                 (void *)&cmd_config_dcb_pfc,
2454                 (void *)&cmd_config_dcb_pfc_en,
2455                 NULL,
2456         },
2457 };
2458
2459 /* *** configure number of packets per burst *** */
2460 struct cmd_config_burst {
2461         cmdline_fixed_string_t port;
2462         cmdline_fixed_string_t keyword;
2463         cmdline_fixed_string_t all;
2464         cmdline_fixed_string_t name;
2465         uint16_t value;
2466 };
2467
2468 static void
2469 cmd_config_burst_parsed(void *parsed_result,
2470                         __attribute__((unused)) struct cmdline *cl,
2471                         __attribute__((unused)) void *data)
2472 {
2473         struct cmd_config_burst *res = parsed_result;
2474
2475         if (!all_ports_stopped()) {
2476                 printf("Please stop all ports first\n");
2477                 return;
2478         }
2479
2480         if (!strcmp(res->name, "burst")) {
2481                 if (res->value < 1 || res->value > MAX_PKT_BURST) {
2482                         printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST);
2483                         return;
2484                 }
2485                 nb_pkt_per_burst = res->value;
2486         } else {
2487                 printf("Unknown parameter\n");
2488                 return;
2489         }
2490
2491         init_port_config();
2492
2493         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2494 }
2495
2496 cmdline_parse_token_string_t cmd_config_burst_port =
2497         TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port");
2498 cmdline_parse_token_string_t cmd_config_burst_keyword =
2499         TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config");
2500 cmdline_parse_token_string_t cmd_config_burst_all =
2501         TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all");
2502 cmdline_parse_token_string_t cmd_config_burst_name =
2503         TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst");
2504 cmdline_parse_token_num_t cmd_config_burst_value =
2505         TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, UINT16);
2506
2507 cmdline_parse_inst_t cmd_config_burst = {
2508         .f = cmd_config_burst_parsed,
2509         .data = NULL,
2510         .help_str = "port config all burst <value>",
2511         .tokens = {
2512                 (void *)&cmd_config_burst_port,
2513                 (void *)&cmd_config_burst_keyword,
2514                 (void *)&cmd_config_burst_all,
2515                 (void *)&cmd_config_burst_name,
2516                 (void *)&cmd_config_burst_value,
2517                 NULL,
2518         },
2519 };
2520
2521 /* *** configure rx/tx queues *** */
2522 struct cmd_config_thresh {
2523         cmdline_fixed_string_t port;
2524         cmdline_fixed_string_t keyword;
2525         cmdline_fixed_string_t all;
2526         cmdline_fixed_string_t name;
2527         uint8_t value;
2528 };
2529
2530 static void
2531 cmd_config_thresh_parsed(void *parsed_result,
2532                         __attribute__((unused)) struct cmdline *cl,
2533                         __attribute__((unused)) void *data)
2534 {
2535         struct cmd_config_thresh *res = parsed_result;
2536
2537         if (!all_ports_stopped()) {
2538                 printf("Please stop all ports first\n");
2539                 return;
2540         }
2541
2542         if (!strcmp(res->name, "txpt"))
2543                 tx_pthresh = res->value;
2544         else if(!strcmp(res->name, "txht"))
2545                 tx_hthresh = res->value;
2546         else if(!strcmp(res->name, "txwt"))
2547                 tx_wthresh = res->value;
2548         else if(!strcmp(res->name, "rxpt"))
2549                 rx_pthresh = res->value;
2550         else if(!strcmp(res->name, "rxht"))
2551                 rx_hthresh = res->value;
2552         else if(!strcmp(res->name, "rxwt"))
2553                 rx_wthresh = res->value;
2554         else {
2555                 printf("Unknown parameter\n");
2556                 return;
2557         }
2558
2559         init_port_config();
2560
2561         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2562 }
2563
2564 cmdline_parse_token_string_t cmd_config_thresh_port =
2565         TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port");
2566 cmdline_parse_token_string_t cmd_config_thresh_keyword =
2567         TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config");
2568 cmdline_parse_token_string_t cmd_config_thresh_all =
2569         TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all");
2570 cmdline_parse_token_string_t cmd_config_thresh_name =
2571         TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name,
2572                                 "txpt#txht#txwt#rxpt#rxht#rxwt");
2573 cmdline_parse_token_num_t cmd_config_thresh_value =
2574         TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, UINT8);
2575
2576 cmdline_parse_inst_t cmd_config_thresh = {
2577         .f = cmd_config_thresh_parsed,
2578         .data = NULL,
2579         .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>",
2580         .tokens = {
2581                 (void *)&cmd_config_thresh_port,
2582                 (void *)&cmd_config_thresh_keyword,
2583                 (void *)&cmd_config_thresh_all,
2584                 (void *)&cmd_config_thresh_name,
2585                 (void *)&cmd_config_thresh_value,
2586                 NULL,
2587         },
2588 };
2589
2590 /* *** configure free/rs threshold *** */
2591 struct cmd_config_threshold {
2592         cmdline_fixed_string_t port;
2593         cmdline_fixed_string_t keyword;
2594         cmdline_fixed_string_t all;
2595         cmdline_fixed_string_t name;
2596         uint16_t value;
2597 };
2598
2599 static void
2600 cmd_config_threshold_parsed(void *parsed_result,
2601                         __attribute__((unused)) struct cmdline *cl,
2602                         __attribute__((unused)) void *data)
2603 {
2604         struct cmd_config_threshold *res = parsed_result;
2605
2606         if (!all_ports_stopped()) {
2607                 printf("Please stop all ports first\n");
2608                 return;
2609         }
2610
2611         if (!strcmp(res->name, "txfreet"))
2612                 tx_free_thresh = res->value;
2613         else if (!strcmp(res->name, "txrst"))
2614                 tx_rs_thresh = res->value;
2615         else if (!strcmp(res->name, "rxfreet"))
2616                 rx_free_thresh = res->value;
2617         else {
2618                 printf("Unknown parameter\n");
2619                 return;
2620         }
2621
2622         init_port_config();
2623
2624         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2625 }
2626
2627 cmdline_parse_token_string_t cmd_config_threshold_port =
2628         TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port");
2629 cmdline_parse_token_string_t cmd_config_threshold_keyword =
2630         TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword,
2631                                                                 "config");
2632 cmdline_parse_token_string_t cmd_config_threshold_all =
2633         TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all");
2634 cmdline_parse_token_string_t cmd_config_threshold_name =
2635         TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name,
2636                                                 "txfreet#txrst#rxfreet");
2637 cmdline_parse_token_num_t cmd_config_threshold_value =
2638         TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, UINT16);
2639
2640 cmdline_parse_inst_t cmd_config_threshold = {
2641         .f = cmd_config_threshold_parsed,
2642         .data = NULL,
2643         .help_str = "port config all txfreet|txrst|rxfreet <value>",
2644         .tokens = {
2645                 (void *)&cmd_config_threshold_port,
2646                 (void *)&cmd_config_threshold_keyword,
2647                 (void *)&cmd_config_threshold_all,
2648                 (void *)&cmd_config_threshold_name,
2649                 (void *)&cmd_config_threshold_value,
2650                 NULL,
2651         },
2652 };
2653
2654 /* *** stop *** */
2655 struct cmd_stop_result {
2656         cmdline_fixed_string_t stop;
2657 };
2658
2659 static void cmd_stop_parsed(__attribute__((unused)) void *parsed_result,
2660                             __attribute__((unused)) struct cmdline *cl,
2661                             __attribute__((unused)) void *data)
2662 {
2663         stop_packet_forwarding();
2664 }
2665
2666 cmdline_parse_token_string_t cmd_stop_stop =
2667         TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop");
2668
2669 cmdline_parse_inst_t cmd_stop = {
2670         .f = cmd_stop_parsed,
2671         .data = NULL,
2672         .help_str = "stop: Stop packet forwarding",
2673         .tokens = {
2674                 (void *)&cmd_stop_stop,
2675                 NULL,
2676         },
2677 };
2678
2679 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */
2680
2681 unsigned int
2682 parse_item_list(char* str, const char* item_name, unsigned int max_items,
2683                 unsigned int *parsed_items, int check_unique_values)
2684 {
2685         unsigned int nb_item;
2686         unsigned int value;
2687         unsigned int i;
2688         unsigned int j;
2689         int value_ok;
2690         char c;
2691
2692         /*
2693          * First parse all items in the list and store their value.
2694          */
2695         value = 0;
2696         nb_item = 0;
2697         value_ok = 0;
2698         for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) {
2699                 c = str[i];
2700                 if ((c >= '0') && (c <= '9')) {
2701                         value = (unsigned int) (value * 10 + (c - '0'));
2702                         value_ok = 1;
2703                         continue;
2704                 }
2705                 if (c != ',') {
2706                         printf("character %c is not a decimal digit\n", c);
2707                         return 0;
2708                 }
2709                 if (! value_ok) {
2710                         printf("No valid value before comma\n");
2711                         return 0;
2712                 }
2713                 if (nb_item < max_items) {
2714                         parsed_items[nb_item] = value;
2715                         value_ok = 0;
2716                         value = 0;
2717                 }
2718                 nb_item++;
2719         }
2720         if (nb_item >= max_items) {
2721                 printf("Number of %s = %u > %u (maximum items)\n",
2722                        item_name, nb_item + 1, max_items);
2723                 return 0;
2724         }
2725         parsed_items[nb_item++] = value;
2726         if (! check_unique_values)
2727                 return nb_item;
2728
2729         /*
2730          * Then, check that all values in the list are differents.
2731          * No optimization here...
2732          */
2733         for (i = 0; i < nb_item; i++) {
2734                 for (j = i + 1; j < nb_item; j++) {
2735                         if (parsed_items[j] == parsed_items[i]) {
2736                                 printf("duplicated %s %u at index %u and %u\n",
2737                                        item_name, parsed_items[i], i, j);
2738                                 return 0;
2739                         }
2740                 }
2741         }
2742         return nb_item;
2743 }
2744
2745 struct cmd_set_list_result {
2746         cmdline_fixed_string_t cmd_keyword;
2747         cmdline_fixed_string_t list_name;
2748         cmdline_fixed_string_t list_of_items;
2749 };
2750
2751 static void cmd_set_list_parsed(void *parsed_result,
2752                                 __attribute__((unused)) struct cmdline *cl,
2753                                 __attribute__((unused)) void *data)
2754 {
2755         struct cmd_set_list_result *res;
2756         union {
2757                 unsigned int lcorelist[RTE_MAX_LCORE];
2758                 unsigned int portlist[RTE_MAX_ETHPORTS];
2759         } parsed_items;
2760         unsigned int nb_item;
2761
2762         if (test_done == 0) {
2763                 printf("Please stop forwarding first\n");
2764                 return;
2765         }
2766
2767         res = parsed_result;
2768         if (!strcmp(res->list_name, "corelist")) {
2769                 nb_item = parse_item_list(res->list_of_items, "core",
2770                                           RTE_MAX_LCORE,
2771                                           parsed_items.lcorelist, 1);
2772                 if (nb_item > 0) {
2773                         set_fwd_lcores_list(parsed_items.lcorelist, nb_item);
2774                         fwd_config_setup();
2775                 }
2776                 return;
2777         }
2778         if (!strcmp(res->list_name, "portlist")) {
2779                 nb_item = parse_item_list(res->list_of_items, "port",
2780                                           RTE_MAX_ETHPORTS,
2781                                           parsed_items.portlist, 1);
2782                 if (nb_item > 0) {
2783                         set_fwd_ports_list(parsed_items.portlist, nb_item);
2784                         fwd_config_setup();
2785                 }
2786         }
2787 }
2788
2789 cmdline_parse_token_string_t cmd_set_list_keyword =
2790         TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword,
2791                                  "set");
2792 cmdline_parse_token_string_t cmd_set_list_name =
2793         TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name,
2794                                  "corelist#portlist");
2795 cmdline_parse_token_string_t cmd_set_list_of_items =
2796         TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items,
2797                                  NULL);
2798
2799 cmdline_parse_inst_t cmd_set_fwd_list = {
2800         .f = cmd_set_list_parsed,
2801         .data = NULL,
2802         .help_str = "set corelist|portlist <list0[,list1]*>",
2803         .tokens = {
2804                 (void *)&cmd_set_list_keyword,
2805                 (void *)&cmd_set_list_name,
2806                 (void *)&cmd_set_list_of_items,
2807                 NULL,
2808         },
2809 };
2810
2811 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */
2812
2813 struct cmd_setmask_result {
2814         cmdline_fixed_string_t set;
2815         cmdline_fixed_string_t mask;
2816         uint64_t hexavalue;
2817 };
2818
2819 static void cmd_set_mask_parsed(void *parsed_result,
2820                                 __attribute__((unused)) struct cmdline *cl,
2821                                 __attribute__((unused)) void *data)
2822 {
2823         struct cmd_setmask_result *res = parsed_result;
2824
2825         if (test_done == 0) {
2826                 printf("Please stop forwarding first\n");
2827                 return;
2828         }
2829         if (!strcmp(res->mask, "coremask")) {
2830                 set_fwd_lcores_mask(res->hexavalue);
2831                 fwd_config_setup();
2832         } else if (!strcmp(res->mask, "portmask")) {
2833                 set_fwd_ports_mask(res->hexavalue);
2834                 fwd_config_setup();
2835         }
2836 }
2837
2838 cmdline_parse_token_string_t cmd_setmask_set =
2839         TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set");
2840 cmdline_parse_token_string_t cmd_setmask_mask =
2841         TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask,
2842                                  "coremask#portmask");
2843 cmdline_parse_token_num_t cmd_setmask_value =
2844         TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, UINT64);
2845
2846 cmdline_parse_inst_t cmd_set_fwd_mask = {
2847         .f = cmd_set_mask_parsed,
2848         .data = NULL,
2849         .help_str = "set coremask|portmask <hexadecimal value>",
2850         .tokens = {
2851                 (void *)&cmd_setmask_set,
2852                 (void *)&cmd_setmask_mask,
2853                 (void *)&cmd_setmask_value,
2854                 NULL,
2855         },
2856 };
2857
2858 /*
2859  * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION
2860  */
2861 struct cmd_set_result {
2862         cmdline_fixed_string_t set;
2863         cmdline_fixed_string_t what;
2864         uint16_t value;
2865 };
2866
2867 static void cmd_set_parsed(void *parsed_result,
2868                            __attribute__((unused)) struct cmdline *cl,
2869                            __attribute__((unused)) void *data)
2870 {
2871         struct cmd_set_result *res = parsed_result;
2872         if (!strcmp(res->what, "nbport")) {
2873                 set_fwd_ports_number(res->value);
2874                 fwd_config_setup();
2875         } else if (!strcmp(res->what, "nbcore")) {
2876                 set_fwd_lcores_number(res->value);
2877                 fwd_config_setup();
2878         } else if (!strcmp(res->what, "burst"))
2879                 set_nb_pkt_per_burst(res->value);
2880         else if (!strcmp(res->what, "verbose"))
2881                 set_verbose_level(res->value);
2882 }
2883
2884 cmdline_parse_token_string_t cmd_set_set =
2885         TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set");
2886 cmdline_parse_token_string_t cmd_set_what =
2887         TOKEN_STRING_INITIALIZER(struct cmd_set_result, what,
2888                                  "nbport#nbcore#burst#verbose");
2889 cmdline_parse_token_num_t cmd_set_value =
2890         TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, UINT16);
2891
2892 cmdline_parse_inst_t cmd_set_numbers = {
2893         .f = cmd_set_parsed,
2894         .data = NULL,
2895         .help_str = "set nbport|nbcore|burst|verbose <value>",
2896         .tokens = {
2897                 (void *)&cmd_set_set,
2898                 (void *)&cmd_set_what,
2899                 (void *)&cmd_set_value,
2900                 NULL,
2901         },
2902 };
2903
2904 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */
2905
2906 struct cmd_set_txpkts_result {
2907         cmdline_fixed_string_t cmd_keyword;
2908         cmdline_fixed_string_t txpkts;
2909         cmdline_fixed_string_t seg_lengths;
2910 };
2911
2912 static void
2913 cmd_set_txpkts_parsed(void *parsed_result,
2914                       __attribute__((unused)) struct cmdline *cl,
2915                       __attribute__((unused)) void *data)
2916 {
2917         struct cmd_set_txpkts_result *res;
2918         unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT];
2919         unsigned int nb_segs;
2920
2921         res = parsed_result;
2922         nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
2923                                   RTE_MAX_SEGS_PER_PKT, seg_lengths, 0);
2924         if (nb_segs > 0)
2925                 set_tx_pkt_segments(seg_lengths, nb_segs);
2926 }
2927
2928 cmdline_parse_token_string_t cmd_set_txpkts_keyword =
2929         TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2930                                  cmd_keyword, "set");
2931 cmdline_parse_token_string_t cmd_set_txpkts_name =
2932         TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2933                                  txpkts, "txpkts");
2934 cmdline_parse_token_string_t cmd_set_txpkts_lengths =
2935         TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2936                                  seg_lengths, NULL);
2937
2938 cmdline_parse_inst_t cmd_set_txpkts = {
2939         .f = cmd_set_txpkts_parsed,
2940         .data = NULL,
2941         .help_str = "set txpkts <len0[,len1]*>",
2942         .tokens = {
2943                 (void *)&cmd_set_txpkts_keyword,
2944                 (void *)&cmd_set_txpkts_name,
2945                 (void *)&cmd_set_txpkts_lengths,
2946                 NULL,
2947         },
2948 };
2949
2950 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */
2951
2952 struct cmd_set_txsplit_result {
2953         cmdline_fixed_string_t cmd_keyword;
2954         cmdline_fixed_string_t txsplit;
2955         cmdline_fixed_string_t mode;
2956 };
2957
2958 static void
2959 cmd_set_txsplit_parsed(void *parsed_result,
2960                       __attribute__((unused)) struct cmdline *cl,
2961                       __attribute__((unused)) void *data)
2962 {
2963         struct cmd_set_txsplit_result *res;
2964
2965         res = parsed_result;
2966         set_tx_pkt_split(res->mode);
2967 }
2968
2969 cmdline_parse_token_string_t cmd_set_txsplit_keyword =
2970         TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2971                                  cmd_keyword, "set");
2972 cmdline_parse_token_string_t cmd_set_txsplit_name =
2973         TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2974                                  txsplit, "txsplit");
2975 cmdline_parse_token_string_t cmd_set_txsplit_mode =
2976         TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2977                                  mode, NULL);
2978
2979 cmdline_parse_inst_t cmd_set_txsplit = {
2980         .f = cmd_set_txsplit_parsed,
2981         .data = NULL,
2982         .help_str = "set txsplit on|off|rand",
2983         .tokens = {
2984                 (void *)&cmd_set_txsplit_keyword,
2985                 (void *)&cmd_set_txsplit_name,
2986                 (void *)&cmd_set_txsplit_mode,
2987                 NULL,
2988         },
2989 };
2990
2991 /* *** CONFIG TX QUEUE FLAGS *** */
2992
2993 struct cmd_config_txqflags_result {
2994         cmdline_fixed_string_t port;
2995         cmdline_fixed_string_t config;
2996         cmdline_fixed_string_t all;
2997         cmdline_fixed_string_t what;
2998         int32_t hexvalue;
2999 };
3000
3001 static void cmd_config_txqflags_parsed(void *parsed_result,
3002                                 __attribute__((unused)) struct cmdline *cl,
3003                                 __attribute__((unused)) void *data)
3004 {
3005         struct cmd_config_txqflags_result *res = parsed_result;
3006
3007         if (!all_ports_stopped()) {
3008                 printf("Please stop all ports first\n");
3009                 return;
3010         }
3011
3012         if (strcmp(res->what, "txqflags")) {
3013                 printf("Unknown parameter\n");
3014                 return;
3015         }
3016
3017         if (res->hexvalue >= 0) {
3018                 txq_flags = res->hexvalue;
3019         } else {
3020                 printf("txqflags must be >= 0\n");
3021                 return;
3022         }
3023
3024         init_port_config();
3025
3026         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3027 }
3028
3029 cmdline_parse_token_string_t cmd_config_txqflags_port =
3030         TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, port,
3031                                  "port");
3032 cmdline_parse_token_string_t cmd_config_txqflags_config =
3033         TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, config,
3034                                  "config");
3035 cmdline_parse_token_string_t cmd_config_txqflags_all =
3036         TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, all,
3037                                  "all");
3038 cmdline_parse_token_string_t cmd_config_txqflags_what =
3039         TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, what,
3040                                  "txqflags");
3041 cmdline_parse_token_num_t cmd_config_txqflags_value =
3042         TOKEN_NUM_INITIALIZER(struct cmd_config_txqflags_result,
3043                                 hexvalue, INT32);
3044
3045 cmdline_parse_inst_t cmd_config_txqflags = {
3046         .f = cmd_config_txqflags_parsed,
3047         .data = NULL,
3048         .help_str = "port config all txqflags <value>",
3049         .tokens = {
3050                 (void *)&cmd_config_txqflags_port,
3051                 (void *)&cmd_config_txqflags_config,
3052                 (void *)&cmd_config_txqflags_all,
3053                 (void *)&cmd_config_txqflags_what,
3054                 (void *)&cmd_config_txqflags_value,
3055                 NULL,
3056         },
3057 };
3058
3059 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */
3060 struct cmd_rx_vlan_filter_all_result {
3061         cmdline_fixed_string_t rx_vlan;
3062         cmdline_fixed_string_t what;
3063         cmdline_fixed_string_t all;
3064         portid_t port_id;
3065 };
3066
3067 static void
3068 cmd_rx_vlan_filter_all_parsed(void *parsed_result,
3069                               __attribute__((unused)) struct cmdline *cl,
3070                               __attribute__((unused)) void *data)
3071 {
3072         struct cmd_rx_vlan_filter_all_result *res = parsed_result;
3073
3074         if (!strcmp(res->what, "add"))
3075                 rx_vlan_all_filter_set(res->port_id, 1);
3076         else
3077                 rx_vlan_all_filter_set(res->port_id, 0);
3078 }
3079
3080 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan =
3081         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3082                                  rx_vlan, "rx_vlan");
3083 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what =
3084         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3085                                  what, "add#rm");
3086 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all =
3087         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3088                                  all, "all");
3089 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid =
3090         TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3091                               port_id, UINT16);
3092
3093 cmdline_parse_inst_t cmd_rx_vlan_filter_all = {
3094         .f = cmd_rx_vlan_filter_all_parsed,
3095         .data = NULL,
3096         .help_str = "rx_vlan add|rm all <port_id>: "
3097                 "Add/Remove all identifiers to/from the set of VLAN "
3098                 "identifiers filtered by a port",
3099         .tokens = {
3100                 (void *)&cmd_rx_vlan_filter_all_rx_vlan,
3101                 (void *)&cmd_rx_vlan_filter_all_what,
3102                 (void *)&cmd_rx_vlan_filter_all_all,
3103                 (void *)&cmd_rx_vlan_filter_all_portid,
3104                 NULL,
3105         },
3106 };
3107
3108 /* *** VLAN OFFLOAD SET ON A PORT *** */
3109 struct cmd_vlan_offload_result {
3110         cmdline_fixed_string_t vlan;
3111         cmdline_fixed_string_t set;
3112         cmdline_fixed_string_t vlan_type;
3113         cmdline_fixed_string_t what;
3114         cmdline_fixed_string_t on;
3115         cmdline_fixed_string_t port_id;
3116 };
3117
3118 static void
3119 cmd_vlan_offload_parsed(void *parsed_result,
3120                           __attribute__((unused)) struct cmdline *cl,
3121                           __attribute__((unused)) void *data)
3122 {
3123         int on;
3124         struct cmd_vlan_offload_result *res = parsed_result;
3125         char *str;
3126         int i, len = 0;
3127         portid_t port_id = 0;
3128         unsigned int tmp;
3129
3130         str = res->port_id;
3131         len = strnlen(str, STR_TOKEN_SIZE);
3132         i = 0;
3133         /* Get port_id first */
3134         while(i < len){
3135                 if(str[i] == ',')
3136                         break;
3137
3138                 i++;
3139         }
3140         str[i]='\0';
3141         tmp = strtoul(str, NULL, 0);
3142         /* If port_id greater that what portid_t can represent, return */
3143         if(tmp >= RTE_MAX_ETHPORTS)
3144                 return;
3145         port_id = (portid_t)tmp;
3146
3147         if (!strcmp(res->on, "on"))
3148                 on = 1;
3149         else
3150                 on = 0;
3151
3152         if (!strcmp(res->what, "strip"))
3153                 rx_vlan_strip_set(port_id,  on);
3154         else if(!strcmp(res->what, "stripq")){
3155                 uint16_t queue_id = 0;
3156
3157                 /* No queue_id, return */
3158                 if(i + 1 >= len) {
3159                         printf("must specify (port,queue_id)\n");
3160                         return;
3161                 }
3162                 tmp = strtoul(str + i + 1, NULL, 0);
3163                 /* If queue_id greater that what 16-bits can represent, return */
3164                 if(tmp > 0xffff)
3165                         return;
3166
3167                 queue_id = (uint16_t)tmp;
3168                 rx_vlan_strip_set_on_queue(port_id, queue_id, on);
3169         }
3170         else if (!strcmp(res->what, "filter"))
3171                 rx_vlan_filter_set(port_id, on);
3172         else
3173                 vlan_extend_set(port_id, on);
3174
3175         return;
3176 }
3177
3178 cmdline_parse_token_string_t cmd_vlan_offload_vlan =
3179         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3180                                  vlan, "vlan");
3181 cmdline_parse_token_string_t cmd_vlan_offload_set =
3182         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3183                                  set, "set");
3184 cmdline_parse_token_string_t cmd_vlan_offload_what =
3185         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3186                                  what, "strip#filter#qinq#stripq");
3187 cmdline_parse_token_string_t cmd_vlan_offload_on =
3188         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3189                               on, "on#off");
3190 cmdline_parse_token_string_t cmd_vlan_offload_portid =
3191         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3192                               port_id, NULL);
3193
3194 cmdline_parse_inst_t cmd_vlan_offload = {
3195         .f = cmd_vlan_offload_parsed,
3196         .data = NULL,
3197         .help_str = "vlan set strip|filter|qinq|stripq on|off "
3198                 "<port_id[,queue_id]>: "
3199                 "Filter/Strip for rx side qinq(extended) for both rx/tx sides",
3200         .tokens = {
3201                 (void *)&cmd_vlan_offload_vlan,
3202                 (void *)&cmd_vlan_offload_set,
3203                 (void *)&cmd_vlan_offload_what,
3204                 (void *)&cmd_vlan_offload_on,
3205                 (void *)&cmd_vlan_offload_portid,
3206                 NULL,
3207         },
3208 };
3209
3210 /* *** VLAN TPID SET ON A PORT *** */
3211 struct cmd_vlan_tpid_result {
3212         cmdline_fixed_string_t vlan;
3213         cmdline_fixed_string_t set;
3214         cmdline_fixed_string_t vlan_type;
3215         cmdline_fixed_string_t what;
3216         uint16_t tp_id;
3217         portid_t port_id;
3218 };
3219
3220 static void
3221 cmd_vlan_tpid_parsed(void *parsed_result,
3222                           __attribute__((unused)) struct cmdline *cl,
3223                           __attribute__((unused)) void *data)
3224 {
3225         struct cmd_vlan_tpid_result *res = parsed_result;
3226         enum rte_vlan_type vlan_type;
3227
3228         if (!strcmp(res->vlan_type, "inner"))
3229                 vlan_type = ETH_VLAN_TYPE_INNER;
3230         else if (!strcmp(res->vlan_type, "outer"))
3231                 vlan_type = ETH_VLAN_TYPE_OUTER;
3232         else {
3233                 printf("Unknown vlan type\n");
3234                 return;
3235         }
3236         vlan_tpid_set(res->port_id, vlan_type, res->tp_id);
3237 }
3238
3239 cmdline_parse_token_string_t cmd_vlan_tpid_vlan =
3240         TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3241                                  vlan, "vlan");
3242 cmdline_parse_token_string_t cmd_vlan_tpid_set =
3243         TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3244                                  set, "set");
3245 cmdline_parse_token_string_t cmd_vlan_type =
3246         TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3247                                  vlan_type, "inner#outer");
3248 cmdline_parse_token_string_t cmd_vlan_tpid_what =
3249         TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3250                                  what, "tpid");
3251 cmdline_parse_token_num_t cmd_vlan_tpid_tpid =
3252         TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
3253                               tp_id, UINT16);
3254 cmdline_parse_token_num_t cmd_vlan_tpid_portid =
3255         TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
3256                               port_id, UINT8);
3257
3258 cmdline_parse_inst_t cmd_vlan_tpid = {
3259         .f = cmd_vlan_tpid_parsed,
3260         .data = NULL,
3261         .help_str = "vlan set inner|outer tpid <tp_id> <port_id>: "
3262                 "Set the VLAN Ether type",
3263         .tokens = {
3264                 (void *)&cmd_vlan_tpid_vlan,
3265                 (void *)&cmd_vlan_tpid_set,
3266                 (void *)&cmd_vlan_type,
3267                 (void *)&cmd_vlan_tpid_what,
3268                 (void *)&cmd_vlan_tpid_tpid,
3269                 (void *)&cmd_vlan_tpid_portid,
3270                 NULL,
3271         },
3272 };
3273
3274 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
3275 struct cmd_rx_vlan_filter_result {
3276         cmdline_fixed_string_t rx_vlan;
3277         cmdline_fixed_string_t what;
3278         uint16_t vlan_id;
3279         portid_t port_id;
3280 };
3281
3282 static void
3283 cmd_rx_vlan_filter_parsed(void *parsed_result,
3284                           __attribute__((unused)) struct cmdline *cl,
3285                           __attribute__((unused)) void *data)
3286 {
3287         struct cmd_rx_vlan_filter_result *res = parsed_result;
3288
3289         if (!strcmp(res->what, "add"))
3290                 rx_vft_set(res->port_id, res->vlan_id, 1);
3291         else
3292                 rx_vft_set(res->port_id, res->vlan_id, 0);
3293 }
3294
3295 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan =
3296         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
3297                                  rx_vlan, "rx_vlan");
3298 cmdline_parse_token_string_t cmd_rx_vlan_filter_what =
3299         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
3300                                  what, "add#rm");
3301 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid =
3302         TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
3303                               vlan_id, UINT16);
3304 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid =
3305         TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
3306                               port_id, UINT16);
3307
3308 cmdline_parse_inst_t cmd_rx_vlan_filter = {
3309         .f = cmd_rx_vlan_filter_parsed,
3310         .data = NULL,
3311         .help_str = "rx_vlan add|rm <vlan_id> <port_id>: "
3312                 "Add/Remove a VLAN identifier to/from the set of VLAN "
3313                 "identifiers filtered by a port",
3314         .tokens = {
3315                 (void *)&cmd_rx_vlan_filter_rx_vlan,
3316                 (void *)&cmd_rx_vlan_filter_what,
3317                 (void *)&cmd_rx_vlan_filter_vlanid,
3318                 (void *)&cmd_rx_vlan_filter_portid,
3319                 NULL,
3320         },
3321 };
3322
3323 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
3324 struct cmd_tx_vlan_set_result {
3325         cmdline_fixed_string_t tx_vlan;
3326         cmdline_fixed_string_t set;
3327         portid_t port_id;
3328         uint16_t vlan_id;
3329 };
3330
3331 static void
3332 cmd_tx_vlan_set_parsed(void *parsed_result,
3333                        __attribute__((unused)) struct cmdline *cl,
3334                        __attribute__((unused)) void *data)
3335 {
3336         struct cmd_tx_vlan_set_result *res = parsed_result;
3337
3338         tx_vlan_set(res->port_id, res->vlan_id);
3339 }
3340
3341 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan =
3342         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
3343                                  tx_vlan, "tx_vlan");
3344 cmdline_parse_token_string_t cmd_tx_vlan_set_set =
3345         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
3346                                  set, "set");
3347 cmdline_parse_token_num_t cmd_tx_vlan_set_portid =
3348         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
3349                               port_id, UINT16);
3350 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid =
3351         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
3352                               vlan_id, UINT16);
3353
3354 cmdline_parse_inst_t cmd_tx_vlan_set = {
3355         .f = cmd_tx_vlan_set_parsed,
3356         .data = NULL,
3357         .help_str = "tx_vlan set <port_id> <vlan_id>: "
3358                 "Enable hardware insertion of a single VLAN header "
3359                 "with a given TAG Identifier in packets sent on a port",
3360         .tokens = {
3361                 (void *)&cmd_tx_vlan_set_tx_vlan,
3362                 (void *)&cmd_tx_vlan_set_set,
3363                 (void *)&cmd_tx_vlan_set_portid,
3364                 (void *)&cmd_tx_vlan_set_vlanid,
3365                 NULL,
3366         },
3367 };
3368
3369 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */
3370 struct cmd_tx_vlan_set_qinq_result {
3371         cmdline_fixed_string_t tx_vlan;
3372         cmdline_fixed_string_t set;
3373         portid_t port_id;
3374         uint16_t vlan_id;
3375         uint16_t vlan_id_outer;
3376 };
3377
3378 static void
3379 cmd_tx_vlan_set_qinq_parsed(void *parsed_result,
3380                             __attribute__((unused)) struct cmdline *cl,
3381                             __attribute__((unused)) void *data)
3382 {
3383         struct cmd_tx_vlan_set_qinq_result *res = parsed_result;
3384
3385         tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer);
3386 }
3387
3388 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan =
3389         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3390                 tx_vlan, "tx_vlan");
3391 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set =
3392         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3393                 set, "set");
3394 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid =
3395         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3396                 port_id, UINT16);
3397 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid =
3398         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3399                 vlan_id, UINT16);
3400 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer =
3401         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3402                 vlan_id_outer, UINT16);
3403
3404 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = {
3405         .f = cmd_tx_vlan_set_qinq_parsed,
3406         .data = NULL,
3407         .help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: "
3408                 "Enable hardware insertion of double VLAN header "
3409                 "with given TAG Identifiers in packets sent on a port",
3410         .tokens = {
3411                 (void *)&cmd_tx_vlan_set_qinq_tx_vlan,
3412                 (void *)&cmd_tx_vlan_set_qinq_set,
3413                 (void *)&cmd_tx_vlan_set_qinq_portid,
3414                 (void *)&cmd_tx_vlan_set_qinq_vlanid,
3415                 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer,
3416                 NULL,
3417         },
3418 };
3419
3420 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */
3421 struct cmd_tx_vlan_set_pvid_result {
3422         cmdline_fixed_string_t tx_vlan;
3423         cmdline_fixed_string_t set;
3424         cmdline_fixed_string_t pvid;
3425         portid_t port_id;
3426         uint16_t vlan_id;
3427         cmdline_fixed_string_t mode;
3428 };
3429
3430 static void
3431 cmd_tx_vlan_set_pvid_parsed(void *parsed_result,
3432                             __attribute__((unused)) struct cmdline *cl,
3433                             __attribute__((unused)) void *data)
3434 {
3435         struct cmd_tx_vlan_set_pvid_result *res = parsed_result;
3436
3437         if (strcmp(res->mode, "on") == 0)
3438                 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1);
3439         else
3440                 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0);
3441 }
3442
3443 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan =
3444         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3445                                  tx_vlan, "tx_vlan");
3446 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set =
3447         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3448                                  set, "set");
3449 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid =
3450         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3451                                  pvid, "pvid");
3452 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id =
3453         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3454                              port_id, UINT16);
3455 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id =
3456         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3457                               vlan_id, UINT16);
3458 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode =
3459         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3460                                  mode, "on#off");
3461
3462 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = {
3463         .f = cmd_tx_vlan_set_pvid_parsed,
3464         .data = NULL,
3465         .help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off",
3466         .tokens = {
3467                 (void *)&cmd_tx_vlan_set_pvid_tx_vlan,
3468                 (void *)&cmd_tx_vlan_set_pvid_set,
3469                 (void *)&cmd_tx_vlan_set_pvid_pvid,
3470                 (void *)&cmd_tx_vlan_set_pvid_port_id,
3471                 (void *)&cmd_tx_vlan_set_pvid_vlan_id,
3472                 (void *)&cmd_tx_vlan_set_pvid_mode,
3473                 NULL,
3474         },
3475 };
3476
3477 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
3478 struct cmd_tx_vlan_reset_result {
3479         cmdline_fixed_string_t tx_vlan;
3480         cmdline_fixed_string_t reset;
3481         portid_t port_id;
3482 };
3483
3484 static void
3485 cmd_tx_vlan_reset_parsed(void *parsed_result,
3486                          __attribute__((unused)) struct cmdline *cl,
3487                          __attribute__((unused)) void *data)
3488 {
3489         struct cmd_tx_vlan_reset_result *res = parsed_result;
3490
3491         tx_vlan_reset(res->port_id);
3492 }
3493
3494 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan =
3495         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
3496                                  tx_vlan, "tx_vlan");
3497 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset =
3498         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
3499                                  reset, "reset");
3500 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid =
3501         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result,
3502                               port_id, UINT16);
3503
3504 cmdline_parse_inst_t cmd_tx_vlan_reset = {
3505         .f = cmd_tx_vlan_reset_parsed,
3506         .data = NULL,
3507         .help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a "
3508                 "VLAN header in packets sent on a port",
3509         .tokens = {
3510                 (void *)&cmd_tx_vlan_reset_tx_vlan,
3511                 (void *)&cmd_tx_vlan_reset_reset,
3512                 (void *)&cmd_tx_vlan_reset_portid,
3513                 NULL,
3514         },
3515 };
3516
3517
3518 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */
3519 struct cmd_csum_result {
3520         cmdline_fixed_string_t csum;
3521         cmdline_fixed_string_t mode;
3522         cmdline_fixed_string_t proto;
3523         cmdline_fixed_string_t hwsw;
3524         portid_t port_id;
3525 };
3526
3527 static void
3528 csum_show(int port_id)
3529 {
3530         struct rte_eth_dev_info dev_info;
3531         uint16_t ol_flags;
3532
3533         ol_flags = ports[port_id].tx_ol_flags;
3534         printf("Parse tunnel is %s\n",
3535                 (ol_flags & TESTPMD_TX_OFFLOAD_PARSE_TUNNEL) ? "on" : "off");
3536         printf("IP checksum offload is %s\n",
3537                 (ol_flags & TESTPMD_TX_OFFLOAD_IP_CKSUM) ? "hw" : "sw");
3538         printf("UDP checksum offload is %s\n",
3539                 (ol_flags & TESTPMD_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw");
3540         printf("TCP checksum offload is %s\n",
3541                 (ol_flags & TESTPMD_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw");
3542         printf("SCTP checksum offload is %s\n",
3543                 (ol_flags & TESTPMD_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw");
3544         printf("Outer-Ip checksum offload is %s\n",
3545                 (ol_flags & TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM) ? "hw" : "sw");
3546
3547         /* display warnings if configuration is not supported by the NIC */
3548         rte_eth_dev_info_get(port_id, &dev_info);
3549         if ((ol_flags & TESTPMD_TX_OFFLOAD_IP_CKSUM) &&
3550                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) {
3551                 printf("Warning: hardware IP checksum enabled but not "
3552                         "supported by port %d\n", port_id);
3553         }
3554         if ((ol_flags & TESTPMD_TX_OFFLOAD_UDP_CKSUM) &&
3555                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) {
3556                 printf("Warning: hardware UDP checksum enabled but not "
3557                         "supported by port %d\n", port_id);
3558         }
3559         if ((ol_flags & TESTPMD_TX_OFFLOAD_TCP_CKSUM) &&
3560                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) {
3561                 printf("Warning: hardware TCP checksum enabled but not "
3562                         "supported by port %d\n", port_id);
3563         }
3564         if ((ol_flags & TESTPMD_TX_OFFLOAD_SCTP_CKSUM) &&
3565                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) {
3566                 printf("Warning: hardware SCTP checksum enabled but not "
3567                         "supported by port %d\n", port_id);
3568         }
3569         if ((ol_flags & TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM) &&
3570                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
3571                 printf("Warning: hardware outer IP checksum enabled but not "
3572                         "supported by port %d\n", port_id);
3573         }
3574 }
3575
3576 static void
3577 cmd_csum_parsed(void *parsed_result,
3578                        __attribute__((unused)) struct cmdline *cl,
3579                        __attribute__((unused)) void *data)
3580 {
3581         struct cmd_csum_result *res = parsed_result;
3582         int hw = 0;
3583         uint16_t mask = 0;
3584
3585         if (port_id_is_invalid(res->port_id, ENABLED_WARN)) {
3586                 printf("invalid port %d\n", res->port_id);
3587                 return;
3588         }
3589
3590         if (!strcmp(res->mode, "set")) {
3591
3592                 if (!strcmp(res->hwsw, "hw"))
3593                         hw = 1;
3594
3595                 if (!strcmp(res->proto, "ip")) {
3596                         mask = TESTPMD_TX_OFFLOAD_IP_CKSUM;
3597                 } else if (!strcmp(res->proto, "udp")) {
3598                         mask = TESTPMD_TX_OFFLOAD_UDP_CKSUM;
3599                 } else if (!strcmp(res->proto, "tcp")) {
3600                         mask = TESTPMD_TX_OFFLOAD_TCP_CKSUM;
3601                 } else if (!strcmp(res->proto, "sctp")) {
3602                         mask = TESTPMD_TX_OFFLOAD_SCTP_CKSUM;
3603                 } else if (!strcmp(res->proto, "outer-ip")) {
3604                         mask = TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM;
3605                 }
3606
3607                 if (hw)
3608                         ports[res->port_id].tx_ol_flags |= mask;
3609                 else
3610                         ports[res->port_id].tx_ol_flags &= (~mask);
3611         }
3612         csum_show(res->port_id);
3613 }
3614
3615 cmdline_parse_token_string_t cmd_csum_csum =
3616         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3617                                 csum, "csum");
3618 cmdline_parse_token_string_t cmd_csum_mode =
3619         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3620                                 mode, "set");
3621 cmdline_parse_token_string_t cmd_csum_proto =
3622         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3623                                 proto, "ip#tcp#udp#sctp#outer-ip");
3624 cmdline_parse_token_string_t cmd_csum_hwsw =
3625         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3626                                 hwsw, "hw#sw");
3627 cmdline_parse_token_num_t cmd_csum_portid =
3628         TOKEN_NUM_INITIALIZER(struct cmd_csum_result,
3629                                 port_id, UINT16);
3630
3631 cmdline_parse_inst_t cmd_csum_set = {
3632         .f = cmd_csum_parsed,
3633         .data = NULL,
3634         .help_str = "csum set ip|tcp|udp|sctp|outer-ip hw|sw <port_id>: "
3635                 "Enable/Disable hardware calculation of L3/L4 checksum when "
3636                 "using csum forward engine",
3637         .tokens = {
3638                 (void *)&cmd_csum_csum,
3639                 (void *)&cmd_csum_mode,
3640                 (void *)&cmd_csum_proto,
3641                 (void *)&cmd_csum_hwsw,
3642                 (void *)&cmd_csum_portid,
3643                 NULL,
3644         },
3645 };
3646
3647 cmdline_parse_token_string_t cmd_csum_mode_show =
3648         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3649                                 mode, "show");
3650
3651 cmdline_parse_inst_t cmd_csum_show = {
3652         .f = cmd_csum_parsed,
3653         .data = NULL,
3654         .help_str = "csum show <port_id>: Show checksum offload configuration",
3655         .tokens = {
3656                 (void *)&cmd_csum_csum,
3657                 (void *)&cmd_csum_mode_show,
3658                 (void *)&cmd_csum_portid,
3659                 NULL,
3660         },
3661 };
3662
3663 /* Enable/disable tunnel parsing */
3664 struct cmd_csum_tunnel_result {
3665         cmdline_fixed_string_t csum;
3666         cmdline_fixed_string_t parse;
3667         cmdline_fixed_string_t onoff;
3668         portid_t port_id;
3669 };
3670
3671 static void
3672 cmd_csum_tunnel_parsed(void *parsed_result,
3673                        __attribute__((unused)) struct cmdline *cl,
3674                        __attribute__((unused)) void *data)
3675 {
3676         struct cmd_csum_tunnel_result *res = parsed_result;
3677
3678         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
3679                 return;
3680
3681         if (!strcmp(res->onoff, "on"))
3682                 ports[res->port_id].tx_ol_flags |=
3683                         TESTPMD_TX_OFFLOAD_PARSE_TUNNEL;
3684         else
3685                 ports[res->port_id].tx_ol_flags &=
3686                         (~TESTPMD_TX_OFFLOAD_PARSE_TUNNEL);
3687
3688         csum_show(res->port_id);
3689 }
3690
3691 cmdline_parse_token_string_t cmd_csum_tunnel_csum =
3692         TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3693                                 csum, "csum");
3694 cmdline_parse_token_string_t cmd_csum_tunnel_parse =
3695         TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3696                                 parse, "parse_tunnel");
3697 cmdline_parse_token_string_t cmd_csum_tunnel_onoff =
3698         TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3699                                 onoff, "on#off");
3700 cmdline_parse_token_num_t cmd_csum_tunnel_portid =
3701         TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result,
3702                                 port_id, UINT16);
3703
3704 cmdline_parse_inst_t cmd_csum_tunnel = {
3705         .f = cmd_csum_tunnel_parsed,
3706         .data = NULL,
3707         .help_str = "csum parse_tunnel on|off <port_id>: "
3708                 "Enable/Disable parsing of tunnels for csum engine",
3709         .tokens = {
3710                 (void *)&cmd_csum_tunnel_csum,
3711                 (void *)&cmd_csum_tunnel_parse,
3712                 (void *)&cmd_csum_tunnel_onoff,
3713                 (void *)&cmd_csum_tunnel_portid,
3714                 NULL,
3715         },
3716 };
3717
3718 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */
3719 struct cmd_tso_set_result {
3720         cmdline_fixed_string_t tso;
3721         cmdline_fixed_string_t mode;
3722         uint16_t tso_segsz;
3723         portid_t port_id;
3724 };
3725
3726 static void
3727 cmd_tso_set_parsed(void *parsed_result,
3728                        __attribute__((unused)) struct cmdline *cl,
3729                        __attribute__((unused)) void *data)
3730 {
3731         struct cmd_tso_set_result *res = parsed_result;
3732         struct rte_eth_dev_info dev_info;
3733
3734         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
3735                 return;
3736
3737         if (!strcmp(res->mode, "set"))
3738                 ports[res->port_id].tso_segsz = res->tso_segsz;
3739
3740         if (ports[res->port_id].tso_segsz == 0)
3741                 printf("TSO for non-tunneled packets is disabled\n");
3742         else
3743                 printf("TSO segment size for non-tunneled packets is %d\n",
3744                         ports[res->port_id].tso_segsz);
3745
3746         /* display warnings if configuration is not supported by the NIC */
3747         rte_eth_dev_info_get(res->port_id, &dev_info);
3748         if ((ports[res->port_id].tso_segsz != 0) &&
3749                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
3750                 printf("Warning: TSO enabled but not "
3751                         "supported by port %d\n", res->port_id);
3752         }
3753 }
3754
3755 cmdline_parse_token_string_t cmd_tso_set_tso =
3756         TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3757                                 tso, "tso");
3758 cmdline_parse_token_string_t cmd_tso_set_mode =
3759         TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3760                                 mode, "set");
3761 cmdline_parse_token_num_t cmd_tso_set_tso_segsz =
3762         TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
3763                                 tso_segsz, UINT16);
3764 cmdline_parse_token_num_t cmd_tso_set_portid =
3765         TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
3766                                 port_id, UINT16);
3767
3768 cmdline_parse_inst_t cmd_tso_set = {
3769         .f = cmd_tso_set_parsed,
3770         .data = NULL,
3771         .help_str = "tso set <tso_segsz> <port_id>: "
3772                 "Set TSO segment size of non-tunneled packets for csum engine "
3773                 "(0 to disable)",
3774         .tokens = {
3775                 (void *)&cmd_tso_set_tso,
3776                 (void *)&cmd_tso_set_mode,
3777                 (void *)&cmd_tso_set_tso_segsz,
3778                 (void *)&cmd_tso_set_portid,
3779                 NULL,
3780         },
3781 };
3782
3783 cmdline_parse_token_string_t cmd_tso_show_mode =
3784         TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3785                                 mode, "show");
3786
3787
3788 cmdline_parse_inst_t cmd_tso_show = {
3789         .f = cmd_tso_set_parsed,
3790         .data = NULL,
3791         .help_str = "tso show <port_id>: "
3792                 "Show TSO segment size of non-tunneled packets for csum engine",
3793         .tokens = {
3794                 (void *)&cmd_tso_set_tso,
3795                 (void *)&cmd_tso_show_mode,
3796                 (void *)&cmd_tso_set_portid,
3797                 NULL,
3798         },
3799 };
3800
3801 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */
3802 struct cmd_tunnel_tso_set_result {
3803         cmdline_fixed_string_t tso;
3804         cmdline_fixed_string_t mode;
3805         uint16_t tso_segsz;
3806         portid_t port_id;
3807 };
3808
3809 static void
3810 check_tunnel_tso_nic_support(portid_t port_id)
3811 {
3812         struct rte_eth_dev_info dev_info;
3813
3814         rte_eth_dev_info_get(port_id, &dev_info);
3815         if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO))
3816                 printf("Warning: TSO enabled but VXLAN TUNNEL TSO not "
3817                        "supported by port %d\n", port_id);
3818         if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO))
3819                 printf("Warning: TSO enabled but GRE TUNNEL TSO not "
3820                         "supported by port %d\n", port_id);
3821         if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO))
3822                 printf("Warning: TSO enabled but IPIP TUNNEL TSO not "
3823                        "supported by port %d\n", port_id);
3824         if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO))
3825                 printf("Warning: TSO enabled but GENEVE TUNNEL TSO not "
3826                        "supported by port %d\n", port_id);
3827 }
3828
3829 static void
3830 cmd_tunnel_tso_set_parsed(void *parsed_result,
3831                           __attribute__((unused)) struct cmdline *cl,
3832                           __attribute__((unused)) void *data)
3833 {
3834         struct cmd_tunnel_tso_set_result *res = parsed_result;
3835
3836         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
3837                 return;
3838
3839         if (!strcmp(res->mode, "set"))
3840                 ports[res->port_id].tunnel_tso_segsz = res->tso_segsz;
3841
3842         if (ports[res->port_id].tunnel_tso_segsz == 0)
3843                 printf("TSO for tunneled packets is disabled\n");
3844         else {
3845                 printf("TSO segment size for tunneled packets is %d\n",
3846                         ports[res->port_id].tunnel_tso_segsz);
3847
3848                 /* Below conditions are needed to make it work:
3849                  * (1) tunnel TSO is supported by the NIC;
3850                  * (2) "csum parse_tunnel" must be set so that tunneled pkts
3851                  * are recognized;
3852                  * (3) for tunneled pkts with outer L3 of IPv4,
3853                  * "csum set outer-ip" must be set to hw, because after tso,
3854                  * total_len of outer IP header is changed, and the checksum
3855                  * of outer IP header calculated by sw should be wrong; that
3856                  * is not necessary for IPv6 tunneled pkts because there's no
3857                  * checksum in IP header anymore.
3858                  */
3859                 check_tunnel_tso_nic_support(res->port_id);
3860
3861                 if (!(ports[res->port_id].tx_ol_flags &
3862                       TESTPMD_TX_OFFLOAD_PARSE_TUNNEL))
3863                         printf("Warning: csum parse_tunnel must be set "
3864                                 "so that tunneled packets are recognized\n");
3865                 if (!(ports[res->port_id].tx_ol_flags &
3866                       TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM))
3867                         printf("Warning: csum set outer-ip must be set to hw "
3868                                 "if outer L3 is IPv4; not necessary for IPv6\n");
3869         }
3870 }
3871
3872 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso =
3873         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
3874                                 tso, "tunnel_tso");
3875 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode =
3876         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
3877                                 mode, "set");
3878 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz =
3879         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
3880                                 tso_segsz, UINT16);
3881 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid =
3882         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
3883                                 port_id, UINT16);
3884
3885 cmdline_parse_inst_t cmd_tunnel_tso_set = {
3886         .f = cmd_tunnel_tso_set_parsed,
3887         .data = NULL,
3888         .help_str = "tunnel_tso set <tso_segsz> <port_id>: "
3889                 "Set TSO segment size of tunneled packets for csum engine "
3890                 "(0 to disable)",
3891         .tokens = {
3892                 (void *)&cmd_tunnel_tso_set_tso,
3893                 (void *)&cmd_tunnel_tso_set_mode,
3894                 (void *)&cmd_tunnel_tso_set_tso_segsz,
3895                 (void *)&cmd_tunnel_tso_set_portid,
3896                 NULL,
3897         },
3898 };
3899
3900 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode =
3901         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
3902                                 mode, "show");
3903
3904
3905 cmdline_parse_inst_t cmd_tunnel_tso_show = {
3906         .f = cmd_tunnel_tso_set_parsed,
3907         .data = NULL,
3908         .help_str = "tunnel_tso show <port_id> "
3909                 "Show TSO segment size of tunneled packets for csum engine",
3910         .tokens = {
3911                 (void *)&cmd_tunnel_tso_set_tso,
3912                 (void *)&cmd_tunnel_tso_show_mode,
3913                 (void *)&cmd_tunnel_tso_set_portid,
3914                 NULL,
3915         },
3916 };
3917
3918 /* *** SET GRO FOR A PORT *** */
3919 struct cmd_gro_enable_result {
3920         cmdline_fixed_string_t cmd_set;
3921         cmdline_fixed_string_t cmd_port;
3922         cmdline_fixed_string_t cmd_keyword;
3923         cmdline_fixed_string_t cmd_onoff;
3924         portid_t cmd_pid;
3925 };
3926
3927 static void
3928 cmd_gro_enable_parsed(void *parsed_result,
3929                 __attribute__((unused)) struct cmdline *cl,
3930                 __attribute__((unused)) void *data)
3931 {
3932         struct cmd_gro_enable_result *res;
3933
3934         res = parsed_result;
3935         if (!strcmp(res->cmd_keyword, "gro"))
3936                 setup_gro(res->cmd_onoff, res->cmd_pid);
3937 }
3938
3939 cmdline_parse_token_string_t cmd_gro_enable_set =
3940         TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
3941                         cmd_set, "set");
3942 cmdline_parse_token_string_t cmd_gro_enable_port =
3943         TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
3944                         cmd_keyword, "port");
3945 cmdline_parse_token_num_t cmd_gro_enable_pid =
3946         TOKEN_NUM_INITIALIZER(struct cmd_gro_enable_result,
3947                         cmd_pid, UINT16);
3948 cmdline_parse_token_string_t cmd_gro_enable_keyword =
3949         TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
3950                         cmd_keyword, "gro");
3951 cmdline_parse_token_string_t cmd_gro_enable_onoff =
3952         TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
3953                         cmd_onoff, "on#off");
3954
3955 cmdline_parse_inst_t cmd_gro_enable = {
3956         .f = cmd_gro_enable_parsed,
3957         .data = NULL,
3958         .help_str = "set port <port_id> gro on|off",
3959         .tokens = {
3960                 (void *)&cmd_gro_enable_set,
3961                 (void *)&cmd_gro_enable_port,
3962                 (void *)&cmd_gro_enable_pid,
3963                 (void *)&cmd_gro_enable_keyword,
3964                 (void *)&cmd_gro_enable_onoff,
3965                 NULL,
3966         },
3967 };
3968
3969 /* *** DISPLAY GRO CONFIGURATION *** */
3970 struct cmd_gro_show_result {
3971         cmdline_fixed_string_t cmd_show;
3972         cmdline_fixed_string_t cmd_port;
3973         cmdline_fixed_string_t cmd_keyword;
3974         portid_t cmd_pid;
3975 };
3976
3977 static void
3978 cmd_gro_show_parsed(void *parsed_result,
3979                 __attribute__((unused)) struct cmdline *cl,
3980                 __attribute__((unused)) void *data)
3981 {
3982         struct cmd_gro_show_result *res;
3983
3984         res = parsed_result;
3985         if (!strcmp(res->cmd_keyword, "gro"))
3986                 show_gro(res->cmd_pid);
3987 }
3988
3989 cmdline_parse_token_string_t cmd_gro_show_show =
3990         TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
3991                         cmd_show, "show");
3992 cmdline_parse_token_string_t cmd_gro_show_port =
3993         TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
3994                         cmd_port, "port");
3995 cmdline_parse_token_num_t cmd_gro_show_pid =
3996         TOKEN_NUM_INITIALIZER(struct cmd_gro_show_result,
3997                         cmd_pid, UINT16);
3998 cmdline_parse_token_string_t cmd_gro_show_keyword =
3999         TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
4000                         cmd_keyword, "gro");
4001
4002 cmdline_parse_inst_t cmd_gro_show = {
4003         .f = cmd_gro_show_parsed,
4004         .data = NULL,
4005         .help_str = "show port <port_id> gro",
4006         .tokens = {
4007                 (void *)&cmd_gro_show_show,
4008                 (void *)&cmd_gro_show_port,
4009                 (void *)&cmd_gro_show_pid,
4010                 (void *)&cmd_gro_show_keyword,
4011                 NULL,
4012         },
4013 };
4014
4015 /* *** SET FLUSH CYCLES FOR GRO *** */
4016 struct cmd_gro_flush_result {
4017         cmdline_fixed_string_t cmd_set;
4018         cmdline_fixed_string_t cmd_keyword;
4019         cmdline_fixed_string_t cmd_flush;
4020         uint8_t cmd_cycles;
4021 };
4022
4023 static void
4024 cmd_gro_flush_parsed(void *parsed_result,
4025                 __attribute__((unused)) struct cmdline *cl,
4026                 __attribute__((unused)) void *data)
4027 {
4028         struct cmd_gro_flush_result *res;
4029
4030         res = parsed_result;
4031         if ((!strcmp(res->cmd_keyword, "gro")) &&
4032                         (!strcmp(res->cmd_flush, "flush")))
4033                 setup_gro_flush_cycles(res->cmd_cycles);
4034 }
4035
4036 cmdline_parse_token_string_t cmd_gro_flush_set =
4037         TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
4038                         cmd_set, "set");
4039 cmdline_parse_token_string_t cmd_gro_flush_keyword =
4040         TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
4041                         cmd_keyword, "gro");
4042 cmdline_parse_token_string_t cmd_gro_flush_flush =
4043         TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
4044                         cmd_flush, "flush");
4045 cmdline_parse_token_num_t cmd_gro_flush_cycles =
4046         TOKEN_NUM_INITIALIZER(struct cmd_gro_flush_result,
4047                         cmd_cycles, UINT8);
4048
4049 cmdline_parse_inst_t cmd_gro_flush = {
4050         .f = cmd_gro_flush_parsed,
4051         .data = NULL,
4052         .help_str = "set gro flush <cycles>",
4053         .tokens = {
4054                 (void *)&cmd_gro_flush_set,
4055                 (void *)&cmd_gro_flush_keyword,
4056                 (void *)&cmd_gro_flush_flush,
4057                 (void *)&cmd_gro_flush_cycles,
4058                 NULL,
4059         },
4060 };
4061
4062 /* *** ENABLE/DISABLE GSO *** */
4063 struct cmd_gso_enable_result {
4064         cmdline_fixed_string_t cmd_set;
4065         cmdline_fixed_string_t cmd_port;
4066         cmdline_fixed_string_t cmd_keyword;
4067         cmdline_fixed_string_t cmd_mode;
4068         portid_t cmd_pid;
4069 };
4070
4071 static void
4072 cmd_gso_enable_parsed(void *parsed_result,
4073                 __attribute__((unused)) struct cmdline *cl,
4074                 __attribute__((unused)) void *data)
4075 {
4076         struct cmd_gso_enable_result *res;
4077
4078         res = parsed_result;
4079         if (!strcmp(res->cmd_keyword, "gso"))
4080                 setup_gso(res->cmd_mode, res->cmd_pid);
4081 }
4082
4083 cmdline_parse_token_string_t cmd_gso_enable_set =
4084         TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
4085                         cmd_set, "set");
4086 cmdline_parse_token_string_t cmd_gso_enable_port =
4087         TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
4088                         cmd_port, "port");
4089 cmdline_parse_token_string_t cmd_gso_enable_keyword =
4090         TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
4091                         cmd_keyword, "gso");
4092 cmdline_parse_token_string_t cmd_gso_enable_mode =
4093         TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
4094                         cmd_mode, "on#off");
4095 cmdline_parse_token_num_t cmd_gso_enable_pid =
4096         TOKEN_NUM_INITIALIZER(struct cmd_gso_enable_result,
4097                         cmd_pid, UINT16);
4098
4099 cmdline_parse_inst_t cmd_gso_enable = {
4100         .f = cmd_gso_enable_parsed,
4101         .data = NULL,
4102         .help_str = "set port <port_id> gso on|off",
4103         .tokens = {
4104                 (void *)&cmd_gso_enable_set,
4105                 (void *)&cmd_gso_enable_port,
4106                 (void *)&cmd_gso_enable_pid,
4107                 (void *)&cmd_gso_enable_keyword,
4108                 (void *)&cmd_gso_enable_mode,
4109                 NULL,
4110         },
4111 };
4112
4113 /* *** SET MAX PACKET LENGTH FOR GSO SEGMENTS *** */
4114 struct cmd_gso_size_result {
4115         cmdline_fixed_string_t cmd_set;
4116         cmdline_fixed_string_t cmd_keyword;
4117         cmdline_fixed_string_t cmd_segsz;
4118         uint16_t cmd_size;
4119 };
4120
4121 static void
4122 cmd_gso_size_parsed(void *parsed_result,
4123                        __attribute__((unused)) struct cmdline *cl,
4124                        __attribute__((unused)) void *data)
4125 {
4126         struct cmd_gso_size_result *res = parsed_result;
4127
4128         if (test_done == 0) {
4129                 printf("Before setting GSO segsz, please first"
4130                                 " stop fowarding\n");
4131                 return;
4132         }
4133
4134         if (!strcmp(res->cmd_keyword, "gso") &&
4135                         !strcmp(res->cmd_segsz, "segsz")) {
4136                 if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN)
4137                         printf("gso_size should be larger than %zu."
4138                                         " Please input a legal value\n",
4139                                         RTE_GSO_SEG_SIZE_MIN);
4140                 else
4141                         gso_max_segment_size = res->cmd_size;
4142         }
4143 }
4144
4145 cmdline_parse_token_string_t cmd_gso_size_set =
4146         TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
4147                                 cmd_set, "set");
4148 cmdline_parse_token_string_t cmd_gso_size_keyword =
4149         TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
4150                                 cmd_keyword, "gso");
4151 cmdline_parse_token_string_t cmd_gso_size_segsz =
4152         TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
4153                                 cmd_segsz, "segsz");
4154 cmdline_parse_token_num_t cmd_gso_size_size =
4155         TOKEN_NUM_INITIALIZER(struct cmd_gso_size_result,
4156                                 cmd_size, UINT16);
4157
4158 cmdline_parse_inst_t cmd_gso_size = {
4159         .f = cmd_gso_size_parsed,
4160         .data = NULL,
4161         .help_str = "set gso segsz <length>",
4162         .tokens = {
4163                 (void *)&cmd_gso_size_set,
4164                 (void *)&cmd_gso_size_keyword,
4165                 (void *)&cmd_gso_size_segsz,
4166                 (void *)&cmd_gso_size_size,
4167                 NULL,
4168         },
4169 };
4170
4171 /* *** SHOW GSO CONFIGURATION *** */
4172 struct cmd_gso_show_result {
4173         cmdline_fixed_string_t cmd_show;
4174         cmdline_fixed_string_t cmd_port;
4175         cmdline_fixed_string_t cmd_keyword;
4176         portid_t cmd_pid;
4177 };
4178
4179 static void
4180 cmd_gso_show_parsed(void *parsed_result,
4181                        __attribute__((unused)) struct cmdline *cl,
4182                        __attribute__((unused)) void *data)
4183 {
4184         struct cmd_gso_show_result *res = parsed_result;
4185
4186         if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
4187                 printf("invalid port id %u\n", res->cmd_pid);
4188                 return;
4189         }
4190         if (!strcmp(res->cmd_keyword, "gso")) {
4191                 if (gso_ports[res->cmd_pid].enable) {
4192                         printf("Max GSO'd packet size: %uB\n"
4193                                         "Supported GSO types: TCP/IPv4, "
4194                                         "VxLAN with inner TCP/IPv4 packet, "
4195                                         "GRE with inner TCP/IPv4  packet\n",
4196                                         gso_max_segment_size);
4197                 } else
4198                         printf("GSO is not enabled on Port %u\n", res->cmd_pid);
4199         }
4200 }
4201
4202 cmdline_parse_token_string_t cmd_gso_show_show =
4203 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
4204                 cmd_show, "show");
4205 cmdline_parse_token_string_t cmd_gso_show_port =
4206 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
4207                 cmd_port, "port");
4208 cmdline_parse_token_string_t cmd_gso_show_keyword =
4209         TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
4210                                 cmd_keyword, "gso");
4211 cmdline_parse_token_num_t cmd_gso_show_pid =
4212         TOKEN_NUM_INITIALIZER(struct cmd_gso_show_result,
4213                                 cmd_pid, UINT16);
4214
4215 cmdline_parse_inst_t cmd_gso_show = {
4216         .f = cmd_gso_show_parsed,
4217         .data = NULL,
4218         .help_str = "show port <port_id> gso",
4219         .tokens = {
4220                 (void *)&cmd_gso_show_show,
4221                 (void *)&cmd_gso_show_port,
4222                 (void *)&cmd_gso_show_pid,
4223                 (void *)&cmd_gso_show_keyword,
4224                 NULL,
4225         },
4226 };
4227
4228 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */
4229 struct cmd_set_flush_rx {
4230         cmdline_fixed_string_t set;
4231         cmdline_fixed_string_t flush_rx;
4232         cmdline_fixed_string_t mode;
4233 };
4234
4235 static void
4236 cmd_set_flush_rx_parsed(void *parsed_result,
4237                 __attribute__((unused)) struct cmdline *cl,
4238                 __attribute__((unused)) void *data)
4239 {
4240         struct cmd_set_flush_rx *res = parsed_result;
4241         no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
4242 }
4243
4244 cmdline_parse_token_string_t cmd_setflushrx_set =
4245         TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
4246                         set, "set");
4247 cmdline_parse_token_string_t cmd_setflushrx_flush_rx =
4248         TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
4249                         flush_rx, "flush_rx");
4250 cmdline_parse_token_string_t cmd_setflushrx_mode =
4251         TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
4252                         mode, "on#off");
4253
4254
4255 cmdline_parse_inst_t cmd_set_flush_rx = {
4256         .f = cmd_set_flush_rx_parsed,
4257         .help_str = "set flush_rx on|off: Enable/Disable flush on rx streams",
4258         .data = NULL,
4259         .tokens = {
4260                 (void *)&cmd_setflushrx_set,
4261                 (void *)&cmd_setflushrx_flush_rx,
4262                 (void *)&cmd_setflushrx_mode,
4263                 NULL,
4264         },
4265 };
4266
4267 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */
4268 struct cmd_set_link_check {
4269         cmdline_fixed_string_t set;
4270         cmdline_fixed_string_t link_check;
4271         cmdline_fixed_string_t mode;
4272 };
4273
4274 static void
4275 cmd_set_link_check_parsed(void *parsed_result,
4276                 __attribute__((unused)) struct cmdline *cl,
4277                 __attribute__((unused)) void *data)
4278 {
4279         struct cmd_set_link_check *res = parsed_result;
4280         no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
4281 }
4282
4283 cmdline_parse_token_string_t cmd_setlinkcheck_set =
4284         TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
4285                         set, "set");
4286 cmdline_parse_token_string_t cmd_setlinkcheck_link_check =
4287         TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
4288                         link_check, "link_check");
4289 cmdline_parse_token_string_t cmd_setlinkcheck_mode =
4290         TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
4291                         mode, "on#off");
4292
4293
4294 cmdline_parse_inst_t cmd_set_link_check = {
4295         .f = cmd_set_link_check_parsed,
4296         .help_str = "set link_check on|off: Enable/Disable link status check "
4297                     "when starting/stopping a port",
4298         .data = NULL,
4299         .tokens = {
4300                 (void *)&cmd_setlinkcheck_set,
4301                 (void *)&cmd_setlinkcheck_link_check,
4302                 (void *)&cmd_setlinkcheck_mode,
4303                 NULL,
4304         },
4305 };
4306
4307 /* *** SET NIC BYPASS MODE *** */
4308 struct cmd_set_bypass_mode_result {
4309         cmdline_fixed_string_t set;
4310         cmdline_fixed_string_t bypass;
4311         cmdline_fixed_string_t mode;
4312         cmdline_fixed_string_t value;
4313         portid_t port_id;
4314 };
4315
4316 static void
4317 cmd_set_bypass_mode_parsed(void *parsed_result,
4318                 __attribute__((unused)) struct cmdline *cl,
4319                 __attribute__((unused)) void *data)
4320 {
4321         struct cmd_set_bypass_mode_result *res = parsed_result;
4322         portid_t port_id = res->port_id;
4323         int32_t rc = -EINVAL;
4324
4325 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS
4326         uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
4327
4328         if (!strcmp(res->value, "bypass"))
4329                 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
4330         else if (!strcmp(res->value, "isolate"))
4331                 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
4332         else
4333                 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
4334
4335         /* Set the bypass mode for the relevant port. */
4336         rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode);
4337 #endif
4338         if (rc != 0)
4339                 printf("\t Failed to set bypass mode for port = %d.\n", port_id);
4340 }
4341
4342 cmdline_parse_token_string_t cmd_setbypass_mode_set =
4343         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
4344                         set, "set");
4345 cmdline_parse_token_string_t cmd_setbypass_mode_bypass =
4346         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
4347                         bypass, "bypass");
4348 cmdline_parse_token_string_t cmd_setbypass_mode_mode =
4349         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
4350                         mode, "mode");
4351 cmdline_parse_token_string_t cmd_setbypass_mode_value =
4352         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
4353                         value, "normal#bypass#isolate");
4354 cmdline_parse_token_num_t cmd_setbypass_mode_port =
4355         TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result,
4356                                 port_id, UINT16);
4357
4358 cmdline_parse_inst_t cmd_set_bypass_mode = {
4359         .f = cmd_set_bypass_mode_parsed,
4360         .help_str = "set bypass mode normal|bypass|isolate <port_id>: "
4361                     "Set the NIC bypass mode for port_id",
4362         .data = NULL,
4363         .tokens = {
4364                 (void *)&cmd_setbypass_mode_set,
4365                 (void *)&cmd_setbypass_mode_bypass,
4366                 (void *)&cmd_setbypass_mode_mode,
4367                 (void *)&cmd_setbypass_mode_value,
4368                 (void *)&cmd_setbypass_mode_port,
4369                 NULL,
4370         },
4371 };
4372
4373 /* *** SET NIC BYPASS EVENT *** */
4374 struct cmd_set_bypass_event_result {
4375         cmdline_fixed_string_t set;
4376         cmdline_fixed_string_t bypass;
4377         cmdline_fixed_string_t event;
4378         cmdline_fixed_string_t event_value;
4379         cmdline_fixed_string_t mode;
4380         cmdline_fixed_string_t mode_value;
4381         portid_t port_id;
4382 };
4383
4384 static void
4385 cmd_set_bypass_event_parsed(void *parsed_result,
4386                 __attribute__((unused)) struct cmdline *cl,
4387                 __attribute__((unused)) void *data)
4388 {
4389         int32_t rc = -EINVAL;
4390         struct cmd_set_bypass_event_result *res = parsed_result;
4391         portid_t port_id = res->port_id;
4392
4393 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS
4394         uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
4395         uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
4396
4397         if (!strcmp(res->event_value, "timeout"))
4398                 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT;
4399         else if (!strcmp(res->event_value, "os_on"))
4400                 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON;
4401         else if (!strcmp(res->event_value, "os_off"))
4402                 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF;
4403         else if (!strcmp(res->event_value, "power_on"))
4404                 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON;
4405         else if (!strcmp(res->event_value, "power_off"))
4406                 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF;
4407         else
4408                 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
4409
4410         if (!strcmp(res->mode_value, "bypass"))
4411                 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
4412         else if (!strcmp(res->mode_value, "isolate"))
4413                 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
4414         else
4415                 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
4416
4417         /* Set the watchdog timeout. */
4418         if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) {
4419
4420                 rc = -EINVAL;
4421                 if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) {
4422                         rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id,
4423                                                            bypass_timeout);
4424                 }
4425                 if (rc != 0) {
4426                         printf("Failed to set timeout value %u "
4427                         "for port %d, errto code: %d.\n",
4428                         bypass_timeout, port_id, rc);
4429                 }
4430         }
4431
4432         /* Set the bypass event to transition to bypass mode. */
4433         rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event,
4434                                               bypass_mode);
4435 #endif
4436
4437         if (rc != 0)
4438                 printf("\t Failed to set bypass event for port = %d.\n",
4439                        port_id);
4440 }
4441
4442 cmdline_parse_token_string_t cmd_setbypass_event_set =
4443         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4444                         set, "set");
4445 cmdline_parse_token_string_t cmd_setbypass_event_bypass =
4446         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4447                         bypass, "bypass");
4448 cmdline_parse_token_string_t cmd_setbypass_event_event =
4449         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4450                         event, "event");
4451 cmdline_parse_token_string_t cmd_setbypass_event_event_value =
4452         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4453                         event_value, "none#timeout#os_off#os_on#power_on#power_off");
4454 cmdline_parse_token_string_t cmd_setbypass_event_mode =
4455         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4456                         mode, "mode");
4457 cmdline_parse_token_string_t cmd_setbypass_event_mode_value =
4458         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4459                         mode_value, "normal#bypass#isolate");
4460 cmdline_parse_token_num_t cmd_setbypass_event_port =
4461         TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result,
4462                                 port_id, UINT16);
4463
4464 cmdline_parse_inst_t cmd_set_bypass_event = {
4465         .f = cmd_set_bypass_event_parsed,
4466         .help_str = "set bypass event none|timeout|os_on|os_off|power_on|"
4467                 "power_off mode normal|bypass|isolate <port_id>: "
4468                 "Set the NIC bypass event mode for port_id",
4469         .data = NULL,
4470         .tokens = {
4471                 (void *)&cmd_setbypass_event_set,
4472                 (void *)&cmd_setbypass_event_bypass,
4473                 (void *)&cmd_setbypass_event_event,
4474                 (void *)&cmd_setbypass_event_event_value,
4475                 (void *)&cmd_setbypass_event_mode,
4476                 (void *)&cmd_setbypass_event_mode_value,
4477                 (void *)&cmd_setbypass_event_port,
4478                 NULL,
4479         },
4480 };
4481
4482
4483 /* *** SET NIC BYPASS TIMEOUT *** */
4484 struct cmd_set_bypass_timeout_result {
4485         cmdline_fixed_string_t set;
4486         cmdline_fixed_string_t bypass;
4487         cmdline_fixed_string_t timeout;
4488         cmdline_fixed_string_t value;
4489 };
4490
4491 static void
4492 cmd_set_bypass_timeout_parsed(void *parsed_result,
4493                 __attribute__((unused)) struct cmdline *cl,
4494                 __attribute__((unused)) void *data)
4495 {
4496         __rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result;
4497
4498 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS
4499         if (!strcmp(res->value, "1.5"))
4500                 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC;
4501         else if (!strcmp(res->value, "2"))
4502                 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC;
4503         else if (!strcmp(res->value, "3"))
4504                 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC;
4505         else if (!strcmp(res->value, "4"))
4506                 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC;
4507         else if (!strcmp(res->value, "8"))
4508                 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC;
4509         else if (!strcmp(res->value, "16"))
4510                 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC;
4511         else if (!strcmp(res->value, "32"))
4512                 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC;
4513         else
4514                 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
4515 #endif
4516 }
4517
4518 cmdline_parse_token_string_t cmd_setbypass_timeout_set =
4519         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
4520                         set, "set");
4521 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass =
4522         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
4523                         bypass, "bypass");
4524 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout =
4525         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
4526                         timeout, "timeout");
4527 cmdline_parse_token_string_t cmd_setbypass_timeout_value =
4528         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
4529                         value, "0#1.5#2#3#4#8#16#32");
4530
4531 cmdline_parse_inst_t cmd_set_bypass_timeout = {
4532         .f = cmd_set_bypass_timeout_parsed,
4533         .help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: "
4534                 "Set the NIC bypass watchdog timeout in seconds",
4535         .data = NULL,
4536         .tokens = {
4537                 (void *)&cmd_setbypass_timeout_set,
4538                 (void *)&cmd_setbypass_timeout_bypass,
4539                 (void *)&cmd_setbypass_timeout_timeout,
4540                 (void *)&cmd_setbypass_timeout_value,
4541                 NULL,
4542         },
4543 };
4544
4545 /* *** SHOW NIC BYPASS MODE *** */
4546 struct cmd_show_bypass_config_result {
4547         cmdline_fixed_string_t show;
4548         cmdline_fixed_string_t bypass;
4549         cmdline_fixed_string_t config;
4550         portid_t port_id;
4551 };
4552
4553 static void
4554 cmd_show_bypass_config_parsed(void *parsed_result,
4555                 __attribute__((unused)) struct cmdline *cl,
4556                 __attribute__((unused)) void *data)
4557 {
4558         struct cmd_show_bypass_config_result *res = parsed_result;
4559         portid_t port_id = res->port_id;
4560         int rc = -EINVAL;
4561 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS
4562         uint32_t event_mode;
4563         uint32_t bypass_mode;
4564         uint32_t timeout = bypass_timeout;
4565         int i;
4566
4567         static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] =
4568                 {"off", "1.5", "2", "3", "4", "8", "16", "32"};
4569         static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] =
4570                 {"UNKNOWN", "normal", "bypass", "isolate"};
4571         static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = {
4572                 "NONE",
4573                 "OS/board on",
4574                 "power supply on",
4575                 "OS/board off",
4576                 "power supply off",
4577                 "timeout"};
4578         int num_events = (sizeof events) / (sizeof events[0]);
4579
4580         /* Display the bypass mode.*/
4581         if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) {
4582                 printf("\tFailed to get bypass mode for port = %d\n", port_id);
4583                 return;
4584         }
4585         else {
4586                 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode))
4587                         bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
4588
4589                 printf("\tbypass mode    = %s\n",  modes[bypass_mode]);
4590         }
4591
4592         /* Display the bypass timeout.*/
4593         if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout))
4594                 timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
4595
4596         printf("\tbypass timeout = %s\n", timeouts[timeout]);
4597
4598         /* Display the bypass events and associated modes. */
4599         for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < num_events; i++) {
4600
4601                 if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) {
4602                         printf("\tFailed to get bypass mode for event = %s\n",
4603                                 events[i]);
4604                 } else {
4605                         if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode))
4606                                 event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
4607
4608                         printf("\tbypass event: %-16s = %s\n", events[i],
4609                                 modes[event_mode]);
4610                 }
4611         }
4612 #endif
4613         if (rc != 0)
4614                 printf("\tFailed to get bypass configuration for port = %d\n",
4615                        port_id);
4616 }
4617
4618 cmdline_parse_token_string_t cmd_showbypass_config_show =
4619         TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
4620                         show, "show");
4621 cmdline_parse_token_string_t cmd_showbypass_config_bypass =
4622         TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
4623                         bypass, "bypass");
4624 cmdline_parse_token_string_t cmd_showbypass_config_config =
4625         TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
4626                         config, "config");
4627 cmdline_parse_token_num_t cmd_showbypass_config_port =
4628         TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result,
4629                                 port_id, UINT16);
4630
4631 cmdline_parse_inst_t cmd_show_bypass_config = {
4632         .f = cmd_show_bypass_config_parsed,
4633         .help_str = "show bypass config <port_id>: "
4634                     "Show the NIC bypass config for port_id",
4635         .data = NULL,
4636         .tokens = {
4637                 (void *)&cmd_showbypass_config_show,
4638                 (void *)&cmd_showbypass_config_bypass,
4639                 (void *)&cmd_showbypass_config_config,
4640                 (void *)&cmd_showbypass_config_port,
4641                 NULL,
4642         },
4643 };
4644
4645 #ifdef RTE_LIBRTE_PMD_BOND
4646 /* *** SET BONDING MODE *** */
4647 struct cmd_set_bonding_mode_result {
4648         cmdline_fixed_string_t set;
4649         cmdline_fixed_string_t bonding;
4650         cmdline_fixed_string_t mode;
4651         uint8_t value;
4652         portid_t port_id;
4653 };
4654
4655 static void cmd_set_bonding_mode_parsed(void *parsed_result,
4656                 __attribute__((unused))  struct cmdline *cl,
4657                 __attribute__((unused)) void *data)
4658 {
4659         struct cmd_set_bonding_mode_result *res = parsed_result;
4660         portid_t port_id = res->port_id;
4661
4662         /* Set the bonding mode for the relevant port. */
4663         if (0 != rte_eth_bond_mode_set(port_id, res->value))
4664                 printf("\t Failed to set bonding mode for port = %d.\n", port_id);
4665 }
4666
4667 cmdline_parse_token_string_t cmd_setbonding_mode_set =
4668 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
4669                 set, "set");
4670 cmdline_parse_token_string_t cmd_setbonding_mode_bonding =
4671 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
4672                 bonding, "bonding");
4673 cmdline_parse_token_string_t cmd_setbonding_mode_mode =
4674 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
4675                 mode, "mode");
4676 cmdline_parse_token_num_t cmd_setbonding_mode_value =
4677 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
4678                 value, UINT8);
4679 cmdline_parse_token_num_t cmd_setbonding_mode_port =
4680 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
4681                 port_id, UINT16);
4682
4683 cmdline_parse_inst_t cmd_set_bonding_mode = {
4684                 .f = cmd_set_bonding_mode_parsed,
4685                 .help_str = "set bonding mode <mode_value> <port_id>: "
4686                         "Set the bonding mode for port_id",
4687                 .data = NULL,
4688                 .tokens = {
4689                                 (void *) &cmd_setbonding_mode_set,
4690                                 (void *) &cmd_setbonding_mode_bonding,
4691                                 (void *) &cmd_setbonding_mode_mode,
4692                                 (void *) &cmd_setbonding_mode_value,
4693                                 (void *) &cmd_setbonding_mode_port,
4694                                 NULL
4695                 }
4696 };
4697
4698 /* *** SET BONDING SLOW_QUEUE SW/HW *** */
4699 struct cmd_set_bonding_lacp_dedicated_queues_result {
4700         cmdline_fixed_string_t set;
4701         cmdline_fixed_string_t bonding;
4702         cmdline_fixed_string_t lacp;
4703         cmdline_fixed_string_t dedicated_queues;
4704         portid_t port_id;
4705         cmdline_fixed_string_t mode;
4706 };
4707
4708 static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result,
4709                 __attribute__((unused))  struct cmdline *cl,
4710                 __attribute__((unused)) void *data)
4711 {
4712         struct cmd_set_bonding_lacp_dedicated_queues_result *res = parsed_result;
4713         portid_t port_id = res->port_id;
4714         struct rte_port *port;
4715
4716         port = &ports[port_id];
4717
4718         /** Check if the port is not started **/
4719         if (port->port_status != RTE_PORT_STOPPED) {
4720                 printf("Please stop port %d first\n", port_id);
4721                 return;
4722         }
4723
4724         if (!strcmp(res->mode, "enable")) {
4725                 if (rte_eth_bond_8023ad_dedicated_queues_enable(port_id) == 0)
4726                         printf("Dedicate queues for LACP control packets"
4727                                         " enabled\n");
4728                 else
4729                         printf("Enabling dedicate queues for LACP control "
4730                                         "packets on port %d failed\n", port_id);
4731         } else if (!strcmp(res->mode, "disable")) {
4732                 if (rte_eth_bond_8023ad_dedicated_queues_disable(port_id) == 0)
4733                         printf("Dedicated queues for LACP control packets "
4734                                         "disabled\n");
4735                 else
4736                         printf("Disabling dedicated queues for LACP control "
4737                                         "traffic on port %d failed\n", port_id);
4738         }
4739 }
4740
4741 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_set =
4742 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
4743                 set, "set");
4744 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_bonding =
4745 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
4746                 bonding, "bonding");
4747 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_lacp =
4748 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
4749                 lacp, "lacp");
4750 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_dedicated_queues =
4751 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
4752                 dedicated_queues, "dedicated_queues");
4753 cmdline_parse_token_num_t cmd_setbonding_lacp_dedicated_queues_port_id =
4754 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
4755                 port_id, UINT16);
4756 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_mode =
4757 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
4758                 mode, "enable#disable");
4759
4760 cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = {
4761                 .f = cmd_set_bonding_lacp_dedicated_queues_parsed,
4762                 .help_str = "set bonding lacp dedicated_queues <port_id> "
4763                         "enable|disable: "
4764                         "Enable/disable dedicated queues for LACP control traffic for port_id",
4765                 .data = NULL,
4766                 .tokens = {
4767                         (void *)&cmd_setbonding_lacp_dedicated_queues_set,
4768                         (void *)&cmd_setbonding_lacp_dedicated_queues_bonding,
4769                         (void *)&cmd_setbonding_lacp_dedicated_queues_lacp,
4770                         (void *)&cmd_setbonding_lacp_dedicated_queues_dedicated_queues,
4771                         (void *)&cmd_setbonding_lacp_dedicated_queues_port_id,
4772                         (void *)&cmd_setbonding_lacp_dedicated_queues_mode,
4773                         NULL
4774                 }
4775 };
4776
4777 /* *** SET BALANCE XMIT POLICY *** */
4778 struct cmd_set_bonding_balance_xmit_policy_result {
4779         cmdline_fixed_string_t set;
4780         cmdline_fixed_string_t bonding;
4781         cmdline_fixed_string_t balance_xmit_policy;
4782         portid_t port_id;
4783         cmdline_fixed_string_t policy;
4784 };
4785
4786 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result,
4787                 __attribute__((unused))  struct cmdline *cl,
4788                 __attribute__((unused)) void *data)
4789 {
4790         struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result;
4791         portid_t port_id = res->port_id;
4792         uint8_t policy;
4793
4794         if (!strcmp(res->policy, "l2")) {
4795                 policy = BALANCE_XMIT_POLICY_LAYER2;
4796         } else if (!strcmp(res->policy, "l23")) {
4797                 policy = BALANCE_XMIT_POLICY_LAYER23;
4798         } else if (!strcmp(res->policy, "l34")) {
4799                 policy = BALANCE_XMIT_POLICY_LAYER34;
4800         } else {
4801                 printf("\t Invalid xmit policy selection");
4802                 return;
4803         }
4804
4805         /* Set the bonding mode for the relevant port. */
4806         if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) {
4807                 printf("\t Failed to set bonding balance xmit policy for port = %d.\n",
4808                                 port_id);
4809         }
4810 }
4811
4812 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set =
4813 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4814                 set, "set");
4815 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding =
4816 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4817                 bonding, "bonding");
4818 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy =
4819 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4820                 balance_xmit_policy, "balance_xmit_policy");
4821 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port =
4822 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4823                 port_id, UINT16);
4824 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy =
4825 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4826                 policy, "l2#l23#l34");
4827
4828 cmdline_parse_inst_t cmd_set_balance_xmit_policy = {
4829                 .f = cmd_set_bonding_balance_xmit_policy_parsed,
4830                 .help_str = "set bonding balance_xmit_policy <port_id> "
4831                         "l2|l23|l34: "
4832                         "Set the bonding balance_xmit_policy for port_id",
4833                 .data = NULL,
4834                 .tokens = {
4835                                 (void *)&cmd_setbonding_balance_xmit_policy_set,
4836                                 (void *)&cmd_setbonding_balance_xmit_policy_bonding,
4837                                 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy,
4838                                 (void *)&cmd_setbonding_balance_xmit_policy_port,
4839                                 (void *)&cmd_setbonding_balance_xmit_policy_policy,
4840                                 NULL
4841                 }
4842 };
4843
4844 /* *** SHOW NIC BONDING CONFIGURATION *** */
4845 struct cmd_show_bonding_config_result {
4846         cmdline_fixed_string_t show;
4847         cmdline_fixed_string_t bonding;
4848         cmdline_fixed_string_t config;
4849         portid_t port_id;
4850 };
4851
4852 static void cmd_show_bonding_config_parsed(void *parsed_result,
4853                 __attribute__((unused))  struct cmdline *cl,
4854                 __attribute__((unused)) void *data)
4855 {
4856         struct cmd_show_bonding_config_result *res = parsed_result;
4857         int bonding_mode, agg_mode;
4858         portid_t slaves[RTE_MAX_ETHPORTS];
4859         int num_slaves, num_active_slaves;
4860         int primary_id;
4861         int i;
4862         portid_t port_id = res->port_id;
4863
4864         /* Display the bonding mode.*/
4865         bonding_mode = rte_eth_bond_mode_get(port_id);
4866         if (bonding_mode < 0) {
4867                 printf("\tFailed to get bonding mode for port = %d\n", port_id);
4868                 return;
4869         } else
4870                 printf("\tBonding mode: %d\n", bonding_mode);
4871
4872         if (bonding_mode == BONDING_MODE_BALANCE) {
4873                 int balance_xmit_policy;
4874
4875                 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id);
4876                 if (balance_xmit_policy < 0) {
4877                         printf("\tFailed to get balance xmit policy for port = %d\n",
4878                                         port_id);
4879                         return;
4880                 } else {
4881                         printf("\tBalance Xmit Policy: ");
4882
4883                         switch (balance_xmit_policy) {
4884                         case BALANCE_XMIT_POLICY_LAYER2:
4885                                 printf("BALANCE_XMIT_POLICY_LAYER2");
4886                                 break;
4887                         case BALANCE_XMIT_POLICY_LAYER23:
4888                                 printf("BALANCE_XMIT_POLICY_LAYER23");
4889                                 break;
4890                         case BALANCE_XMIT_POLICY_LAYER34:
4891                                 printf("BALANCE_XMIT_POLICY_LAYER34");
4892                                 break;
4893                         }
4894                         printf("\n");
4895                 }
4896         }
4897
4898         if (bonding_mode == BONDING_MODE_8023AD) {
4899                 agg_mode = rte_eth_bond_8023ad_agg_selection_get(port_id);
4900                 printf("\tIEEE802.3AD Aggregator Mode: ");
4901                 switch (agg_mode) {
4902                 case AGG_BANDWIDTH:
4903                         printf("bandwidth");
4904                         break;
4905                 case AGG_STABLE:
4906                         printf("stable");
4907                         break;
4908                 case AGG_COUNT:
4909                         printf("count");
4910                         break;
4911                 }
4912                 printf("\n");
4913         }
4914
4915         num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS);
4916
4917         if (num_slaves < 0) {
4918                 printf("\tFailed to get slave list for port = %d\n", port_id);
4919                 return;
4920         }
4921         if (num_slaves > 0) {
4922                 printf("\tSlaves (%d): [", num_slaves);
4923                 for (i = 0; i < num_slaves - 1; i++)
4924                         printf("%d ", slaves[i]);
4925
4926                 printf("%d]\n", slaves[num_slaves - 1]);
4927         } else {
4928                 printf("\tSlaves: []\n");
4929
4930         }
4931
4932         num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves,
4933                         RTE_MAX_ETHPORTS);
4934
4935         if (num_active_slaves < 0) {
4936                 printf("\tFailed to get active slave list for port = %d\n", port_id);
4937                 return;
4938         }
4939         if (num_active_slaves > 0) {
4940                 printf("\tActive Slaves (%d): [", num_active_slaves);
4941                 for (i = 0; i < num_active_slaves - 1; i++)
4942                         printf("%d ", slaves[i]);
4943
4944                 printf("%d]\n", slaves[num_active_slaves - 1]);
4945
4946         } else {
4947                 printf("\tActive Slaves: []\n");
4948
4949         }
4950
4951         primary_id = rte_eth_bond_primary_get(port_id);
4952         if (primary_id < 0) {
4953                 printf("\tFailed to get primary slave for port = %d\n", port_id);
4954                 return;
4955         } else
4956                 printf("\tPrimary: [%d]\n", primary_id);
4957
4958 }
4959
4960 cmdline_parse_token_string_t cmd_showbonding_config_show =
4961 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4962                 show, "show");
4963 cmdline_parse_token_string_t cmd_showbonding_config_bonding =
4964 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4965                 bonding, "bonding");
4966 cmdline_parse_token_string_t cmd_showbonding_config_config =
4967 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4968                 config, "config");
4969 cmdline_parse_token_num_t cmd_showbonding_config_port =
4970 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result,
4971                 port_id, UINT16);
4972
4973 cmdline_parse_inst_t cmd_show_bonding_config = {
4974                 .f = cmd_show_bonding_config_parsed,
4975                 .help_str = "show bonding config <port_id>: "
4976                         "Show the bonding config for port_id",
4977                 .data = NULL,
4978                 .tokens = {
4979                                 (void *)&cmd_showbonding_config_show,
4980                                 (void *)&cmd_showbonding_config_bonding,
4981                                 (void *)&cmd_showbonding_config_config,
4982                                 (void *)&cmd_showbonding_config_port,
4983                                 NULL
4984                 }
4985 };
4986
4987 /* *** SET BONDING PRIMARY *** */
4988 struct cmd_set_bonding_primary_result {
4989         cmdline_fixed_string_t set;
4990         cmdline_fixed_string_t bonding;
4991         cmdline_fixed_string_t primary;
4992         portid_t slave_id;
4993         portid_t port_id;
4994 };
4995
4996 static void cmd_set_bonding_primary_parsed(void *parsed_result,
4997                 __attribute__((unused))  struct cmdline *cl,
4998                 __attribute__((unused)) void *data)
4999 {
5000         struct cmd_set_bonding_primary_result *res = parsed_result;
5001         portid_t master_port_id = res->port_id;
5002         portid_t slave_port_id = res->slave_id;
5003
5004         /* Set the primary slave for a bonded device. */
5005         if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) {
5006                 printf("\t Failed to set primary slave for port = %d.\n",
5007                                 master_port_id);
5008                 return;
5009         }
5010         init_port_config();
5011 }
5012
5013 cmdline_parse_token_string_t cmd_setbonding_primary_set =
5014 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
5015                 set, "set");
5016 cmdline_parse_token_string_t cmd_setbonding_primary_bonding =
5017 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
5018                 bonding, "bonding");
5019 cmdline_parse_token_string_t cmd_setbonding_primary_primary =
5020 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
5021                 primary, "primary");
5022 cmdline_parse_token_num_t cmd_setbonding_primary_slave =
5023 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
5024                 slave_id, UINT16);
5025 cmdline_parse_token_num_t cmd_setbonding_primary_port =
5026 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
5027                 port_id, UINT16);
5028
5029 cmdline_parse_inst_t cmd_set_bonding_primary = {
5030                 .f = cmd_set_bonding_primary_parsed,
5031                 .help_str = "set bonding primary <slave_id> <port_id>: "
5032                         "Set the primary slave for port_id",
5033                 .data = NULL,
5034                 .tokens = {
5035                                 (void *)&cmd_setbonding_primary_set,
5036                                 (void *)&cmd_setbonding_primary_bonding,
5037                                 (void *)&cmd_setbonding_primary_primary,
5038                                 (void *)&cmd_setbonding_primary_slave,
5039                                 (void *)&cmd_setbonding_primary_port,
5040                                 NULL
5041                 }
5042 };
5043
5044 /* *** ADD SLAVE *** */
5045 struct cmd_add_bonding_slave_result {
5046         cmdline_fixed_string_t add;
5047         cmdline_fixed_string_t bonding;
5048         cmdline_fixed_string_t slave;
5049         portid_t slave_id;
5050         portid_t port_id;
5051 };
5052
5053 static void cmd_add_bonding_slave_parsed(void *parsed_result,
5054                 __attribute__((unused))  struct cmdline *cl,
5055                 __attribute__((unused)) void *data)
5056 {
5057         struct cmd_add_bonding_slave_result *res = parsed_result;
5058         portid_t master_port_id = res->port_id;
5059         portid_t slave_port_id = res->slave_id;
5060
5061         /* add the slave for a bonded device. */
5062         if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) {
5063                 printf("\t Failed to add slave %d to master port = %d.\n",
5064                                 slave_port_id, master_port_id);
5065                 return;
5066         }
5067         init_port_config();
5068         set_port_slave_flag(slave_port_id);
5069 }
5070
5071 cmdline_parse_token_string_t cmd_addbonding_slave_add =
5072 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
5073                 add, "add");
5074 cmdline_parse_token_string_t cmd_addbonding_slave_bonding =
5075 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
5076                 bonding, "bonding");
5077 cmdline_parse_token_string_t cmd_addbonding_slave_slave =
5078 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
5079                 slave, "slave");
5080 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid =
5081 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
5082                 slave_id, UINT16);
5083 cmdline_parse_token_num_t cmd_addbonding_slave_port =
5084 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
5085                 port_id, UINT16);
5086
5087 cmdline_parse_inst_t cmd_add_bonding_slave = {
5088                 .f = cmd_add_bonding_slave_parsed,
5089                 .help_str = "add bonding slave <slave_id> <port_id>: "
5090                         "Add a slave device to a bonded device",
5091                 .data = NULL,
5092                 .tokens = {
5093                                 (void *)&cmd_addbonding_slave_add,
5094                                 (void *)&cmd_addbonding_slave_bonding,
5095                                 (void *)&cmd_addbonding_slave_slave,
5096                                 (void *)&cmd_addbonding_slave_slaveid,
5097                                 (void *)&cmd_addbonding_slave_port,
5098                                 NULL
5099                 }
5100 };
5101
5102 /* *** REMOVE SLAVE *** */
5103 struct cmd_remove_bonding_slave_result {
5104         cmdline_fixed_string_t remove;
5105         cmdline_fixed_string_t bonding;
5106         cmdline_fixed_string_t slave;
5107         portid_t slave_id;
5108         portid_t port_id;
5109 };
5110
5111 static void cmd_remove_bonding_slave_parsed(void *parsed_result,
5112                 __attribute__((unused))  struct cmdline *cl,
5113                 __attribute__((unused)) void *data)
5114 {
5115         struct cmd_remove_bonding_slave_result *res = parsed_result;
5116         portid_t master_port_id = res->port_id;
5117         portid_t slave_port_id = res->slave_id;
5118
5119         /* remove the slave from a bonded device. */
5120         if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) {
5121                 printf("\t Failed to remove slave %d from master port = %d.\n",
5122                                 slave_port_id, master_port_id);
5123                 return;
5124         }
5125         init_port_config();
5126         clear_port_slave_flag(slave_port_id);
5127 }
5128
5129 cmdline_parse_token_string_t cmd_removebonding_slave_remove =
5130                 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
5131                                 remove, "remove");
5132 cmdline_parse_token_string_t cmd_removebonding_slave_bonding =
5133                 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
5134                                 bonding, "bonding");
5135 cmdline_parse_token_string_t cmd_removebonding_slave_slave =
5136                 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
5137                                 slave, "slave");
5138 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid =
5139                 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
5140                                 slave_id, UINT16);
5141 cmdline_parse_token_num_t cmd_removebonding_slave_port =
5142                 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
5143                                 port_id, UINT16);
5144
5145 cmdline_parse_inst_t cmd_remove_bonding_slave = {
5146                 .f = cmd_remove_bonding_slave_parsed,
5147                 .help_str = "remove bonding slave <slave_id> <port_id>: "
5148                         "Remove a slave device from a bonded device",
5149                 .data = NULL,
5150                 .tokens = {
5151                                 (void *)&cmd_removebonding_slave_remove,
5152                                 (void *)&cmd_removebonding_slave_bonding,
5153                                 (void *)&cmd_removebonding_slave_slave,
5154                                 (void *)&cmd_removebonding_slave_slaveid,
5155                                 (void *)&cmd_removebonding_slave_port,
5156                                 NULL
5157                 }
5158 };
5159
5160 /* *** CREATE BONDED DEVICE *** */
5161 struct cmd_create_bonded_device_result {
5162         cmdline_fixed_string_t create;
5163         cmdline_fixed_string_t bonded;
5164         cmdline_fixed_string_t device;
5165         uint8_t mode;
5166         uint8_t socket;
5167 };
5168
5169 static int bond_dev_num = 0;
5170
5171 static void cmd_create_bonded_device_parsed(void *parsed_result,
5172                 __attribute__((unused))  struct cmdline *cl,
5173                 __attribute__((unused)) void *data)
5174 {
5175         struct cmd_create_bonded_device_result *res = parsed_result;
5176         char ethdev_name[RTE_ETH_NAME_MAX_LEN];
5177         int port_id;
5178
5179         if (test_done == 0) {
5180                 printf("Please stop forwarding first\n");
5181                 return;
5182         }
5183
5184         snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bonding_testpmd_%d",
5185                         bond_dev_num++);
5186
5187         /* Create a new bonded device. */
5188         port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket);
5189         if (port_id < 0) {
5190                 printf("\t Failed to create bonded device.\n");
5191                 return;
5192         } else {
5193                 printf("Created new bonded device %s on (port %d).\n", ethdev_name,
5194                                 port_id);
5195
5196                 /* Update number of ports */
5197                 nb_ports = rte_eth_dev_count();
5198                 reconfig(port_id, res->socket);
5199                 rte_eth_promiscuous_enable(port_id);
5200         }
5201
5202 }
5203
5204 cmdline_parse_token_string_t cmd_createbonded_device_create =
5205                 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
5206                                 create, "create");
5207 cmdline_parse_token_string_t cmd_createbonded_device_bonded =
5208                 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
5209                                 bonded, "bonded");
5210 cmdline_parse_token_string_t cmd_createbonded_device_device =
5211                 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
5212                                 device, "device");
5213 cmdline_parse_token_num_t cmd_createbonded_device_mode =
5214                 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
5215                                 mode, UINT8);
5216 cmdline_parse_token_num_t cmd_createbonded_device_socket =
5217                 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
5218                                 socket, UINT8);
5219
5220 cmdline_parse_inst_t cmd_create_bonded_device = {
5221                 .f = cmd_create_bonded_device_parsed,
5222                 .help_str = "create bonded device <mode> <socket>: "
5223                         "Create a new bonded device with specific bonding mode and socket",
5224                 .data = NULL,
5225                 .tokens = {
5226                                 (void *)&cmd_createbonded_device_create,
5227                                 (void *)&cmd_createbonded_device_bonded,
5228                                 (void *)&cmd_createbonded_device_device,
5229                                 (void *)&cmd_createbonded_device_mode,
5230                                 (void *)&cmd_createbonded_device_socket,
5231                                 NULL
5232                 }
5233 };
5234
5235 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */
5236 struct cmd_set_bond_mac_addr_result {
5237         cmdline_fixed_string_t set;
5238         cmdline_fixed_string_t bonding;
5239         cmdline_fixed_string_t mac_addr;
5240         uint8_t port_num;
5241         struct ether_addr address;
5242 };
5243
5244 static void cmd_set_bond_mac_addr_parsed(void *parsed_result,
5245                 __attribute__((unused))  struct cmdline *cl,
5246                 __attribute__((unused)) void *data)
5247 {
5248         struct cmd_set_bond_mac_addr_result *res = parsed_result;
5249         int ret;
5250
5251         if (port_id_is_invalid(res->port_num, ENABLED_WARN))
5252                 return;
5253
5254         ret = rte_eth_bond_mac_address_set(res->port_num, &res->address);
5255
5256         /* check the return value and print it if is < 0 */
5257         if (ret < 0)
5258                 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
5259 }
5260
5261 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set =
5262                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set");
5263 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding =
5264                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding,
5265                                 "bonding");
5266 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac =
5267                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr,
5268                                 "mac_addr");
5269 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum =
5270                 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result, port_num, UINT8);
5271 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr =
5272                 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address);
5273
5274 cmdline_parse_inst_t cmd_set_bond_mac_addr = {
5275                 .f = cmd_set_bond_mac_addr_parsed,
5276                 .data = (void *) 0,
5277                 .help_str = "set bonding mac_addr <port_id> <mac_addr>",
5278                 .tokens = {
5279                                 (void *)&cmd_set_bond_mac_addr_set,
5280                                 (void *)&cmd_set_bond_mac_addr_bonding,
5281                                 (void *)&cmd_set_bond_mac_addr_mac,
5282                                 (void *)&cmd_set_bond_mac_addr_portnum,
5283                                 (void *)&cmd_set_bond_mac_addr_addr,
5284                                 NULL
5285                 }
5286 };
5287
5288
5289 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */
5290 struct cmd_set_bond_mon_period_result {
5291         cmdline_fixed_string_t set;
5292         cmdline_fixed_string_t bonding;
5293         cmdline_fixed_string_t mon_period;
5294         uint8_t port_num;
5295         uint32_t period_ms;
5296 };
5297
5298 static void cmd_set_bond_mon_period_parsed(void *parsed_result,
5299                 __attribute__((unused))  struct cmdline *cl,
5300                 __attribute__((unused)) void *data)
5301 {
5302         struct cmd_set_bond_mon_period_result *res = parsed_result;
5303         int ret;
5304
5305         if (res->port_num >= nb_ports) {
5306                 printf("Port id %d must be less than %d\n", res->port_num, nb_ports);
5307                 return;
5308         }
5309
5310         ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms);
5311
5312         /* check the return value and print it if is < 0 */
5313         if (ret < 0)
5314                 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
5315 }
5316
5317 cmdline_parse_token_string_t cmd_set_bond_mon_period_set =
5318                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
5319                                 set, "set");
5320 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding =
5321                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
5322                                 bonding, "bonding");
5323 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period =
5324                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
5325                                 mon_period,     "mon_period");
5326 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum =
5327                 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
5328                                 port_num, UINT8);
5329 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms =
5330                 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
5331                                 period_ms, UINT32);
5332
5333 cmdline_parse_inst_t cmd_set_bond_mon_period = {
5334                 .f = cmd_set_bond_mon_period_parsed,
5335                 .data = (void *) 0,
5336                 .help_str = "set bonding mon_period <port_id> <period_ms>",
5337                 .tokens = {
5338                                 (void *)&cmd_set_bond_mon_period_set,
5339                                 (void *)&cmd_set_bond_mon_period_bonding,
5340                                 (void *)&cmd_set_bond_mon_period_mon_period,
5341                                 (void *)&cmd_set_bond_mon_period_portnum,
5342                                 (void *)&cmd_set_bond_mon_period_period_ms,
5343                                 NULL
5344                 }
5345 };
5346
5347
5348
5349 struct cmd_set_bonding_agg_mode_policy_result {
5350         cmdline_fixed_string_t set;
5351         cmdline_fixed_string_t bonding;
5352         cmdline_fixed_string_t agg_mode;
5353         uint8_t port_num;
5354         cmdline_fixed_string_t policy;
5355 };
5356
5357
5358 static void
5359 cmd_set_bonding_agg_mode(void *parsed_result,
5360                 __attribute__((unused)) struct cmdline *cl,
5361                 __attribute__((unused)) void *data)
5362 {
5363         struct cmd_set_bonding_agg_mode_policy_result *res = parsed_result;
5364         uint8_t policy = AGG_BANDWIDTH;
5365
5366         if (res->port_num >= nb_ports) {
5367                 printf("Port id %d must be less than %d\n",
5368                                 res->port_num, nb_ports);
5369                 return;
5370         }
5371
5372         if (!strcmp(res->policy, "bandwidth"))
5373                 policy = AGG_BANDWIDTH;
5374         else if (!strcmp(res->policy, "stable"))
5375                 policy = AGG_STABLE;
5376         else if (!strcmp(res->policy, "count"))
5377                 policy = AGG_COUNT;
5378
5379         rte_eth_bond_8023ad_agg_selection_set(res->port_num, policy);
5380 }
5381
5382
5383 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_set =
5384         TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
5385                                 set, "set");
5386 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_bonding =
5387         TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
5388                                 bonding, "bonding");
5389
5390 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_agg_mode =
5391         TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
5392                                 agg_mode, "agg_mode");
5393
5394 cmdline_parse_token_num_t cmd_set_bonding_agg_mode_portnum =
5395         TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
5396                                 port_num, UINT8);
5397
5398 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_policy_string =
5399         TOKEN_STRING_INITIALIZER(
5400                         struct cmd_set_bonding_balance_xmit_policy_result,
5401                 policy, "stable#bandwidth#count");
5402
5403 cmdline_parse_inst_t cmd_set_bonding_agg_mode_policy = {
5404         .f = cmd_set_bonding_agg_mode,
5405         .data = (void *) 0,
5406         .help_str = "set bonding mode IEEE802.3AD aggregator policy <port_id> <agg_name>",
5407         .tokens = {
5408                         (void *)&cmd_set_bonding_agg_mode_set,
5409                         (void *)&cmd_set_bonding_agg_mode_bonding,
5410                         (void *)&cmd_set_bonding_agg_mode_agg_mode,
5411                         (void *)&cmd_set_bonding_agg_mode_portnum,
5412                         (void *)&cmd_set_bonding_agg_mode_policy_string,
5413                         NULL
5414                 }
5415 };
5416
5417
5418 #endif /* RTE_LIBRTE_PMD_BOND */
5419
5420 /* *** SET FORWARDING MODE *** */
5421 struct cmd_set_fwd_mode_result {
5422         cmdline_fixed_string_t set;
5423         cmdline_fixed_string_t fwd;
5424         cmdline_fixed_string_t mode;
5425 };
5426
5427 static void cmd_set_fwd_mode_parsed(void *parsed_result,
5428                                     __attribute__((unused)) struct cmdline *cl,
5429                                     __attribute__((unused)) void *data)
5430 {
5431         struct cmd_set_fwd_mode_result *res = parsed_result;
5432
5433         retry_enabled = 0;
5434         set_pkt_forwarding_mode(res->mode);
5435 }
5436
5437 cmdline_parse_token_string_t cmd_setfwd_set =
5438         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set");
5439 cmdline_parse_token_string_t cmd_setfwd_fwd =
5440         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd");
5441 cmdline_parse_token_string_t cmd_setfwd_mode =
5442         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode,
5443                 "" /* defined at init */);
5444
5445 cmdline_parse_inst_t cmd_set_fwd_mode = {
5446         .f = cmd_set_fwd_mode_parsed,
5447         .data = NULL,
5448         .help_str = NULL, /* defined at init */
5449         .tokens = {
5450                 (void *)&cmd_setfwd_set,
5451                 (void *)&cmd_setfwd_fwd,
5452                 (void *)&cmd_setfwd_mode,
5453                 NULL,
5454         },
5455 };
5456
5457 static void cmd_set_fwd_mode_init(void)
5458 {
5459         char *modes, *c;
5460         static char token[128];
5461         static char help[256];
5462         cmdline_parse_token_string_t *token_struct;
5463
5464         modes = list_pkt_forwarding_modes();
5465         snprintf(help, sizeof(help), "set fwd %s: "
5466                 "Set packet forwarding mode", modes);
5467         cmd_set_fwd_mode.help_str = help;
5468
5469         /* string token separator is # */
5470         for (c = token; *modes != '\0'; modes++)
5471                 if (*modes == '|')
5472                         *c++ = '#';
5473                 else
5474                         *c++ = *modes;
5475         token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2];
5476         token_struct->string_data.str = token;
5477 }
5478
5479 /* *** SET RETRY FORWARDING MODE *** */
5480 struct cmd_set_fwd_retry_mode_result {
5481         cmdline_fixed_string_t set;
5482         cmdline_fixed_string_t fwd;
5483         cmdline_fixed_string_t mode;
5484         cmdline_fixed_string_t retry;
5485 };
5486
5487 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result,
5488                             __attribute__((unused)) struct cmdline *cl,
5489                             __attribute__((unused)) void *data)
5490 {
5491         struct cmd_set_fwd_retry_mode_result *res = parsed_result;
5492
5493         retry_enabled = 1;
5494         set_pkt_forwarding_mode(res->mode);
5495 }
5496
5497 cmdline_parse_token_string_t cmd_setfwd_retry_set =
5498         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
5499                         set, "set");
5500 cmdline_parse_token_string_t cmd_setfwd_retry_fwd =
5501         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
5502                         fwd, "fwd");
5503 cmdline_parse_token_string_t cmd_setfwd_retry_mode =
5504         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
5505                         mode,
5506                 "" /* defined at init */);
5507 cmdline_parse_token_string_t cmd_setfwd_retry_retry =
5508         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
5509                         retry, "retry");
5510
5511 cmdline_parse_inst_t cmd_set_fwd_retry_mode = {
5512         .f = cmd_set_fwd_retry_mode_parsed,
5513         .data = NULL,
5514         .help_str = NULL, /* defined at init */
5515         .tokens = {
5516                 (void *)&cmd_setfwd_retry_set,
5517                 (void *)&cmd_setfwd_retry_fwd,
5518                 (void *)&cmd_setfwd_retry_mode,
5519                 (void *)&cmd_setfwd_retry_retry,
5520                 NULL,
5521         },
5522 };
5523
5524 static void cmd_set_fwd_retry_mode_init(void)
5525 {
5526         char *modes, *c;
5527         static char token[128];
5528         static char help[256];
5529         cmdline_parse_token_string_t *token_struct;
5530
5531         modes = list_pkt_forwarding_retry_modes();
5532         snprintf(help, sizeof(help), "set fwd %s retry: "
5533                 "Set packet forwarding mode with retry", modes);
5534         cmd_set_fwd_retry_mode.help_str = help;
5535
5536         /* string token separator is # */
5537         for (c = token; *modes != '\0'; modes++)
5538                 if (*modes == '|')
5539                         *c++ = '#';
5540                 else
5541                         *c++ = *modes;
5542         token_struct = (cmdline_parse_token_string_t *)
5543                 cmd_set_fwd_retry_mode.tokens[2];
5544         token_struct->string_data.str = token;
5545 }
5546
5547 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */
5548 struct cmd_set_burst_tx_retry_result {
5549         cmdline_fixed_string_t set;
5550         cmdline_fixed_string_t burst;
5551         cmdline_fixed_string_t tx;
5552         cmdline_fixed_string_t delay;
5553         uint32_t time;
5554         cmdline_fixed_string_t retry;
5555         uint32_t retry_num;
5556 };
5557
5558 static void cmd_set_burst_tx_retry_parsed(void *parsed_result,
5559                                         __attribute__((unused)) struct cmdline *cl,
5560                                         __attribute__((unused)) void *data)
5561 {
5562         struct cmd_set_burst_tx_retry_result *res = parsed_result;
5563
5564         if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst")
5565                 && !strcmp(res->tx, "tx")) {
5566                 if (!strcmp(res->delay, "delay"))
5567                         burst_tx_delay_time = res->time;
5568                 if (!strcmp(res->retry, "retry"))
5569                         burst_tx_retry_num = res->retry_num;
5570         }
5571
5572 }
5573
5574 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set =
5575         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set");
5576 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst =
5577         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst,
5578                                  "burst");
5579 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx =
5580         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx");
5581 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay =
5582         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay");
5583 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time =
5584         TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time, UINT32);
5585 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry =
5586         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry");
5587 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num =
5588         TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num, UINT32);
5589
5590 cmdline_parse_inst_t cmd_set_burst_tx_retry = {
5591         .f = cmd_set_burst_tx_retry_parsed,
5592         .help_str = "set burst tx delay <delay_usec> retry <num_retry>",
5593         .tokens = {
5594                 (void *)&cmd_set_burst_tx_retry_set,
5595                 (void *)&cmd_set_burst_tx_retry_burst,
5596                 (void *)&cmd_set_burst_tx_retry_tx,
5597                 (void *)&cmd_set_burst_tx_retry_delay,
5598                 (void *)&cmd_set_burst_tx_retry_time,
5599                 (void *)&cmd_set_burst_tx_retry_retry,
5600                 (void *)&cmd_set_burst_tx_retry_retry_num,
5601                 NULL,
5602         },
5603 };
5604
5605 /* *** SET PROMISC MODE *** */
5606 struct cmd_set_promisc_mode_result {
5607         cmdline_fixed_string_t set;
5608         cmdline_fixed_string_t promisc;
5609         cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
5610         uint8_t port_num;                /* valid if "allports" argument == 0 */
5611         cmdline_fixed_string_t mode;
5612 };
5613
5614 static void cmd_set_promisc_mode_parsed(void *parsed_result,
5615                                         __attribute__((unused)) struct cmdline *cl,
5616                                         void *allports)
5617 {
5618         struct cmd_set_promisc_mode_result *res = parsed_result;
5619         int enable;
5620         portid_t i;
5621
5622         if (!strcmp(res->mode, "on"))
5623                 enable = 1;
5624         else
5625                 enable = 0;
5626
5627         /* all ports */
5628         if (allports) {
5629                 RTE_ETH_FOREACH_DEV(i) {
5630                         if (enable)
5631                                 rte_eth_promiscuous_enable(i);
5632                         else
5633                                 rte_eth_promiscuous_disable(i);
5634                 }
5635         }
5636         else {
5637                 if (enable)
5638                         rte_eth_promiscuous_enable(res->port_num);
5639                 else
5640                         rte_eth_promiscuous_disable(res->port_num);
5641         }
5642 }
5643
5644 cmdline_parse_token_string_t cmd_setpromisc_set =
5645         TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set");
5646 cmdline_parse_token_string_t cmd_setpromisc_promisc =
5647         TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc,
5648                                  "promisc");
5649 cmdline_parse_token_string_t cmd_setpromisc_portall =
5650         TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all,
5651                                  "all");
5652 cmdline_parse_token_num_t cmd_setpromisc_portnum =
5653         TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num,
5654                               UINT8);
5655 cmdline_parse_token_string_t cmd_setpromisc_mode =
5656         TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode,
5657                                  "on#off");
5658
5659 cmdline_parse_inst_t cmd_set_promisc_mode_all = {
5660         .f = cmd_set_promisc_mode_parsed,
5661         .data = (void *)1,
5662         .help_str = "set promisc all on|off: Set promisc mode for all ports",
5663         .tokens = {
5664                 (void *)&cmd_setpromisc_set,
5665                 (void *)&cmd_setpromisc_promisc,
5666                 (void *)&cmd_setpromisc_portall,
5667                 (void *)&cmd_setpromisc_mode,
5668                 NULL,
5669         },
5670 };
5671
5672 cmdline_parse_inst_t cmd_set_promisc_mode_one = {
5673         .f = cmd_set_promisc_mode_parsed,
5674         .data = (void *)0,
5675         .help_str = "set promisc <port_id> on|off: Set promisc mode on port_id",
5676         .tokens = {
5677                 (void *)&cmd_setpromisc_set,
5678                 (void *)&cmd_setpromisc_promisc,
5679                 (void *)&cmd_setpromisc_portnum,
5680                 (void *)&cmd_setpromisc_mode,
5681                 NULL,
5682         },
5683 };
5684
5685 /* *** SET ALLMULTI MODE *** */
5686 struct cmd_set_allmulti_mode_result {
5687         cmdline_fixed_string_t set;
5688         cmdline_fixed_string_t allmulti;
5689         cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
5690         uint8_t port_num;                /* valid if "allports" argument == 0 */
5691         cmdline_fixed_string_t mode;
5692 };
5693
5694 static void cmd_set_allmulti_mode_parsed(void *parsed_result,
5695                                         __attribute__((unused)) struct cmdline *cl,
5696                                         void *allports)
5697 {
5698         struct cmd_set_allmulti_mode_result *res = parsed_result;
5699         int enable;
5700         portid_t i;
5701
5702         if (!strcmp(res->mode, "on"))
5703                 enable = 1;
5704         else
5705                 enable = 0;
5706
5707         /* all ports */
5708         if (allports) {
5709                 RTE_ETH_FOREACH_DEV(i) {
5710                         if (enable)
5711                                 rte_eth_allmulticast_enable(i);
5712                         else
5713                                 rte_eth_allmulticast_disable(i);
5714                 }
5715         }
5716         else {
5717                 if (enable)
5718                         rte_eth_allmulticast_enable(res->port_num);
5719                 else
5720                         rte_eth_allmulticast_disable(res->port_num);
5721         }
5722 }
5723
5724 cmdline_parse_token_string_t cmd_setallmulti_set =
5725         TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set");
5726 cmdline_parse_token_string_t cmd_setallmulti_allmulti =
5727         TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti,
5728                                  "allmulti");
5729 cmdline_parse_token_string_t cmd_setallmulti_portall =
5730         TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all,
5731                                  "all");
5732 cmdline_parse_token_num_t cmd_setallmulti_portnum =
5733         TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num,
5734                               UINT8);
5735 cmdline_parse_token_string_t cmd_setallmulti_mode =
5736         TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode,
5737                                  "on#off");
5738
5739 cmdline_parse_inst_t cmd_set_allmulti_mode_all = {
5740         .f = cmd_set_allmulti_mode_parsed,
5741         .data = (void *)1,
5742         .help_str = "set allmulti all on|off: Set allmulti mode for all ports",
5743         .tokens = {
5744                 (void *)&cmd_setallmulti_set,
5745                 (void *)&cmd_setallmulti_allmulti,
5746                 (void *)&cmd_setallmulti_portall,
5747                 (void *)&cmd_setallmulti_mode,
5748                 NULL,
5749         },
5750 };
5751
5752 cmdline_parse_inst_t cmd_set_allmulti_mode_one = {
5753         .f = cmd_set_allmulti_mode_parsed,
5754         .data = (void *)0,
5755         .help_str = "set allmulti <port_id> on|off: "
5756                 "Set allmulti mode on port_id",
5757         .tokens = {
5758                 (void *)&cmd_setallmulti_set,
5759                 (void *)&cmd_setallmulti_allmulti,
5760                 (void *)&cmd_setallmulti_portnum,
5761                 (void *)&cmd_setallmulti_mode,
5762                 NULL,
5763         },
5764 };
5765
5766 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */
5767 struct cmd_link_flow_ctrl_set_result {
5768         cmdline_fixed_string_t set;
5769         cmdline_fixed_string_t flow_ctrl;
5770         cmdline_fixed_string_t rx;
5771         cmdline_fixed_string_t rx_lfc_mode;
5772         cmdline_fixed_string_t tx;
5773         cmdline_fixed_string_t tx_lfc_mode;
5774         cmdline_fixed_string_t mac_ctrl_frame_fwd;
5775         cmdline_fixed_string_t mac_ctrl_frame_fwd_mode;
5776         cmdline_fixed_string_t autoneg_str;
5777         cmdline_fixed_string_t autoneg;
5778         cmdline_fixed_string_t hw_str;
5779         uint32_t high_water;
5780         cmdline_fixed_string_t lw_str;
5781         uint32_t low_water;
5782         cmdline_fixed_string_t pt_str;
5783         uint16_t pause_time;
5784         cmdline_fixed_string_t xon_str;
5785         uint16_t send_xon;
5786         portid_t port_id;
5787 };
5788
5789 cmdline_parse_token_string_t cmd_lfc_set_set =
5790         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5791                                 set, "set");
5792 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl =
5793         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5794                                 flow_ctrl, "flow_ctrl");
5795 cmdline_parse_token_string_t cmd_lfc_set_rx =
5796         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5797                                 rx, "rx");
5798 cmdline_parse_token_string_t cmd_lfc_set_rx_mode =
5799         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5800                                 rx_lfc_mode, "on#off");
5801 cmdline_parse_token_string_t cmd_lfc_set_tx =
5802         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5803                                 tx, "tx");
5804 cmdline_parse_token_string_t cmd_lfc_set_tx_mode =
5805         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5806                                 tx_lfc_mode, "on#off");
5807 cmdline_parse_token_string_t cmd_lfc_set_high_water_str =
5808         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5809                                 hw_str, "high_water");
5810 cmdline_parse_token_num_t cmd_lfc_set_high_water =
5811         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5812                                 high_water, UINT32);
5813 cmdline_parse_token_string_t cmd_lfc_set_low_water_str =
5814         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5815                                 lw_str, "low_water");
5816 cmdline_parse_token_num_t cmd_lfc_set_low_water =
5817         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5818                                 low_water, UINT32);
5819 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str =
5820         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5821                                 pt_str, "pause_time");
5822 cmdline_parse_token_num_t cmd_lfc_set_pause_time =
5823         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5824                                 pause_time, UINT16);
5825 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str =
5826         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5827                                 xon_str, "send_xon");
5828 cmdline_parse_token_num_t cmd_lfc_set_send_xon =
5829         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5830                                 send_xon, UINT16);
5831 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode =
5832         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5833                                 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd");
5834 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd =
5835         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5836                                 mac_ctrl_frame_fwd_mode, "on#off");
5837 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str =
5838         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5839                                 autoneg_str, "autoneg");
5840 cmdline_parse_token_string_t cmd_lfc_set_autoneg =
5841         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5842                                 autoneg, "on#off");
5843 cmdline_parse_token_num_t cmd_lfc_set_portid =
5844         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5845                                 port_id, UINT16);
5846
5847 /* forward declaration */
5848 static void
5849 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl,
5850                               void *data);
5851
5852 cmdline_parse_inst_t cmd_link_flow_control_set = {
5853         .f = cmd_link_flow_ctrl_set_parsed,
5854         .data = NULL,
5855         .help_str = "set flow_ctrl rx on|off tx on|off <high_water> "
5856                 "<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off "
5857                 "autoneg on|off <port_id>: Configure the Ethernet flow control",
5858         .tokens = {
5859                 (void *)&cmd_lfc_set_set,
5860                 (void *)&cmd_lfc_set_flow_ctrl,
5861                 (void *)&cmd_lfc_set_rx,
5862                 (void *)&cmd_lfc_set_rx_mode,
5863                 (void *)&cmd_lfc_set_tx,
5864                 (void *)&cmd_lfc_set_tx_mode,
5865                 (void *)&cmd_lfc_set_high_water,
5866                 (void *)&cmd_lfc_set_low_water,
5867                 (void *)&cmd_lfc_set_pause_time,
5868                 (void *)&cmd_lfc_set_send_xon,
5869                 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
5870                 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
5871                 (void *)&cmd_lfc_set_autoneg_str,
5872                 (void *)&cmd_lfc_set_autoneg,
5873                 (void *)&cmd_lfc_set_portid,
5874                 NULL,
5875         },
5876 };
5877
5878 cmdline_parse_inst_t cmd_link_flow_control_set_rx = {
5879         .f = cmd_link_flow_ctrl_set_parsed,
5880         .data = (void *)&cmd_link_flow_control_set_rx,
5881         .help_str = "set flow_ctrl rx on|off <port_id>: "
5882                 "Change rx flow control parameter",
5883         .tokens = {
5884                 (void *)&cmd_lfc_set_set,
5885                 (void *)&cmd_lfc_set_flow_ctrl,
5886                 (void *)&cmd_lfc_set_rx,
5887                 (void *)&cmd_lfc_set_rx_mode,
5888                 (void *)&cmd_lfc_set_portid,
5889                 NULL,
5890         },
5891 };
5892
5893 cmdline_parse_inst_t cmd_link_flow_control_set_tx = {
5894         .f = cmd_link_flow_ctrl_set_parsed,
5895         .data = (void *)&cmd_link_flow_control_set_tx,
5896         .help_str = "set flow_ctrl tx on|off <port_id>: "
5897                 "Change tx flow control parameter",
5898         .tokens = {
5899                 (void *)&cmd_lfc_set_set,
5900                 (void *)&cmd_lfc_set_flow_ctrl,
5901                 (void *)&cmd_lfc_set_tx,
5902                 (void *)&cmd_lfc_set_tx_mode,
5903                 (void *)&cmd_lfc_set_portid,
5904                 NULL,
5905         },
5906 };
5907
5908 cmdline_parse_inst_t cmd_link_flow_control_set_hw = {
5909         .f = cmd_link_flow_ctrl_set_parsed,
5910         .data = (void *)&cmd_link_flow_control_set_hw,
5911         .help_str = "set flow_ctrl high_water <value> <port_id>: "
5912                 "Change high water flow control parameter",
5913         .tokens = {
5914                 (void *)&cmd_lfc_set_set,
5915                 (void *)&cmd_lfc_set_flow_ctrl,
5916                 (void *)&cmd_lfc_set_high_water_str,
5917                 (void *)&cmd_lfc_set_high_water,
5918                 (void *)&cmd_lfc_set_portid,
5919                 NULL,
5920         },
5921 };
5922
5923 cmdline_parse_inst_t cmd_link_flow_control_set_lw = {
5924         .f = cmd_link_flow_ctrl_set_parsed,
5925         .data = (void *)&cmd_link_flow_control_set_lw,
5926         .help_str = "set flow_ctrl low_water <value> <port_id>: "
5927                 "Change low water flow control parameter",
5928         .tokens = {
5929                 (void *)&cmd_lfc_set_set,
5930                 (void *)&cmd_lfc_set_flow_ctrl,
5931                 (void *)&cmd_lfc_set_low_water_str,
5932                 (void *)&cmd_lfc_set_low_water,
5933                 (void *)&cmd_lfc_set_portid,
5934                 NULL,
5935         },
5936 };
5937
5938 cmdline_parse_inst_t cmd_link_flow_control_set_pt = {
5939         .f = cmd_link_flow_ctrl_set_parsed,
5940         .data = (void *)&cmd_link_flow_control_set_pt,
5941         .help_str = "set flow_ctrl pause_time <value> <port_id>: "
5942                 "Change pause time flow control parameter",
5943         .tokens = {
5944                 (void *)&cmd_lfc_set_set,
5945                 (void *)&cmd_lfc_set_flow_ctrl,
5946                 (void *)&cmd_lfc_set_pause_time_str,
5947                 (void *)&cmd_lfc_set_pause_time,
5948                 (void *)&cmd_lfc_set_portid,
5949                 NULL,
5950         },
5951 };
5952
5953 cmdline_parse_inst_t cmd_link_flow_control_set_xon = {
5954         .f = cmd_link_flow_ctrl_set_parsed,
5955         .data = (void *)&cmd_link_flow_control_set_xon,
5956         .help_str = "set flow_ctrl send_xon <value> <port_id>: "
5957                 "Change send_xon flow control parameter",
5958         .tokens = {
5959                 (void *)&cmd_lfc_set_set,
5960                 (void *)&cmd_lfc_set_flow_ctrl,
5961                 (void *)&cmd_lfc_set_send_xon_str,
5962                 (void *)&cmd_lfc_set_send_xon,
5963                 (void *)&cmd_lfc_set_portid,
5964                 NULL,
5965         },
5966 };
5967
5968 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = {
5969         .f = cmd_link_flow_ctrl_set_parsed,
5970         .data = (void *)&cmd_link_flow_control_set_macfwd,
5971         .help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: "
5972                 "Change mac ctrl fwd flow control parameter",
5973         .tokens = {
5974                 (void *)&cmd_lfc_set_set,
5975                 (void *)&cmd_lfc_set_flow_ctrl,
5976                 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
5977                 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
5978                 (void *)&cmd_lfc_set_portid,
5979                 NULL,
5980         },
5981 };
5982
5983 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = {
5984         .f = cmd_link_flow_ctrl_set_parsed,
5985         .data = (void *)&cmd_link_flow_control_set_autoneg,
5986         .help_str = "set flow_ctrl autoneg on|off <port_id>: "
5987                 "Change autoneg flow control parameter",
5988         .tokens = {
5989                 (void *)&cmd_lfc_set_set,
5990                 (void *)&cmd_lfc_set_flow_ctrl,
5991                 (void *)&cmd_lfc_set_autoneg_str,
5992                 (void *)&cmd_lfc_set_autoneg,
5993                 (void *)&cmd_lfc_set_portid,
5994                 NULL,
5995         },
5996 };
5997
5998 static void
5999 cmd_link_flow_ctrl_set_parsed(void *parsed_result,
6000                               __attribute__((unused)) struct cmdline *cl,
6001                               void *data)
6002 {
6003         struct cmd_link_flow_ctrl_set_result *res = parsed_result;
6004         cmdline_parse_inst_t *cmd = data;
6005         struct rte_eth_fc_conf fc_conf;
6006         int rx_fc_en = 0;
6007         int tx_fc_en = 0;
6008         int ret;
6009
6010         /*
6011          * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
6012          * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
6013          * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
6014          * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
6015          */
6016         static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = {
6017                         {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
6018         };
6019
6020         /* Partial command line, retrieve current configuration */
6021         if (cmd) {
6022                 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
6023                 if (ret != 0) {
6024                         printf("cannot get current flow ctrl parameters, return"
6025                                "code = %d\n", ret);
6026                         return;
6027                 }
6028
6029                 if ((fc_conf.mode == RTE_FC_RX_PAUSE) ||
6030                     (fc_conf.mode == RTE_FC_FULL))
6031                         rx_fc_en = 1;
6032                 if ((fc_conf.mode == RTE_FC_TX_PAUSE) ||
6033                     (fc_conf.mode == RTE_FC_FULL))
6034                         tx_fc_en = 1;
6035         }
6036
6037         if (!cmd || cmd == &cmd_link_flow_control_set_rx)
6038                 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0;
6039
6040         if (!cmd || cmd == &cmd_link_flow_control_set_tx)
6041                 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0;
6042
6043         fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en];
6044
6045         if (!cmd || cmd == &cmd_link_flow_control_set_hw)
6046                 fc_conf.high_water = res->high_water;
6047
6048         if (!cmd || cmd == &cmd_link_flow_control_set_lw)
6049                 fc_conf.low_water = res->low_water;
6050
6051         if (!cmd || cmd == &cmd_link_flow_control_set_pt)
6052                 fc_conf.pause_time = res->pause_time;
6053
6054         if (!cmd || cmd == &cmd_link_flow_control_set_xon)
6055                 fc_conf.send_xon = res->send_xon;
6056
6057         if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) {
6058                 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on"))
6059                         fc_conf.mac_ctrl_frame_fwd = 1;
6060                 else
6061                         fc_conf.mac_ctrl_frame_fwd = 0;
6062         }
6063
6064         if (!cmd || cmd == &cmd_link_flow_control_set_autoneg)
6065                 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0;
6066
6067         ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf);
6068         if (ret != 0)
6069                 printf("bad flow contrl parameter, return code = %d \n", ret);
6070 }
6071
6072 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */
6073 struct cmd_priority_flow_ctrl_set_result {
6074         cmdline_fixed_string_t set;
6075         cmdline_fixed_string_t pfc_ctrl;
6076         cmdline_fixed_string_t rx;
6077         cmdline_fixed_string_t rx_pfc_mode;
6078         cmdline_fixed_string_t tx;
6079         cmdline_fixed_string_t tx_pfc_mode;
6080         uint32_t high_water;
6081         uint32_t low_water;
6082         uint16_t pause_time;
6083         uint8_t  priority;
6084         portid_t port_id;
6085 };
6086
6087 static void
6088 cmd_priority_flow_ctrl_set_parsed(void *parsed_result,
6089                        __attribute__((unused)) struct cmdline *cl,
6090                        __attribute__((unused)) void *data)
6091 {
6092         struct cmd_priority_flow_ctrl_set_result *res = parsed_result;
6093         struct rte_eth_pfc_conf pfc_conf;
6094         int rx_fc_enable, tx_fc_enable;
6095         int ret;
6096
6097         /*
6098          * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
6099          * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
6100          * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
6101          * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
6102          */
6103         static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = {
6104                         {RTE_FC_NONE, RTE_FC_RX_PAUSE}, {RTE_FC_TX_PAUSE, RTE_FC_FULL}
6105         };
6106
6107         rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0;
6108         tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0;
6109         pfc_conf.fc.mode       = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable];
6110         pfc_conf.fc.high_water = res->high_water;
6111         pfc_conf.fc.low_water  = res->low_water;
6112         pfc_conf.fc.pause_time = res->pause_time;
6113         pfc_conf.priority      = res->priority;
6114
6115         ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf);
6116         if (ret != 0)
6117                 printf("bad priority flow contrl parameter, return code = %d \n", ret);
6118 }
6119
6120 cmdline_parse_token_string_t cmd_pfc_set_set =
6121         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6122                                 set, "set");
6123 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl =
6124         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6125                                 pfc_ctrl, "pfc_ctrl");
6126 cmdline_parse_token_string_t cmd_pfc_set_rx =
6127         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6128                                 rx, "rx");
6129 cmdline_parse_token_string_t cmd_pfc_set_rx_mode =
6130         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6131                                 rx_pfc_mode, "on#off");
6132 cmdline_parse_token_string_t cmd_pfc_set_tx =
6133         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6134                                 tx, "tx");
6135 cmdline_parse_token_string_t cmd_pfc_set_tx_mode =
6136         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6137                                 tx_pfc_mode, "on#off");
6138 cmdline_parse_token_num_t cmd_pfc_set_high_water =
6139         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6140                                 high_water, UINT32);
6141 cmdline_parse_token_num_t cmd_pfc_set_low_water =
6142         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6143                                 low_water, UINT32);
6144 cmdline_parse_token_num_t cmd_pfc_set_pause_time =
6145         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6146                                 pause_time, UINT16);
6147 cmdline_parse_token_num_t cmd_pfc_set_priority =
6148         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6149                                 priority, UINT8);
6150 cmdline_parse_token_num_t cmd_pfc_set_portid =
6151         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
6152                                 port_id, UINT16);
6153
6154 cmdline_parse_inst_t cmd_priority_flow_control_set = {
6155         .f = cmd_priority_flow_ctrl_set_parsed,
6156         .data = NULL,
6157         .help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> "
6158                 "<pause_time> <priority> <port_id>: "
6159                 "Configure the Ethernet priority flow control",
6160         .tokens = {
6161                 (void *)&cmd_pfc_set_set,
6162                 (void *)&cmd_pfc_set_flow_ctrl,
6163                 (void *)&cmd_pfc_set_rx,
6164                 (void *)&cmd_pfc_set_rx_mode,
6165                 (void *)&cmd_pfc_set_tx,
6166                 (void *)&cmd_pfc_set_tx_mode,
6167                 (void *)&cmd_pfc_set_high_water,
6168                 (void *)&cmd_pfc_set_low_water,
6169                 (void *)&cmd_pfc_set_pause_time,
6170                 (void *)&cmd_pfc_set_priority,
6171                 (void *)&cmd_pfc_set_portid,
6172                 NULL,
6173         },
6174 };
6175
6176 /* *** RESET CONFIGURATION *** */
6177 struct cmd_reset_result {
6178         cmdline_fixed_string_t reset;
6179         cmdline_fixed_string_t def;
6180 };
6181
6182 static void cmd_reset_parsed(__attribute__((unused)) void *parsed_result,
6183                              struct cmdline *cl,
6184                              __attribute__((unused)) void *data)
6185 {
6186         cmdline_printf(cl, "Reset to default forwarding configuration...\n");
6187         set_def_fwd_config();
6188 }
6189
6190 cmdline_parse_token_string_t cmd_reset_set =
6191         TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set");
6192 cmdline_parse_token_string_t cmd_reset_def =
6193         TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def,
6194                                  "default");
6195
6196 cmdline_parse_inst_t cmd_reset = {
6197         .f = cmd_reset_parsed,
6198         .data = NULL,
6199         .help_str = "set default: Reset default forwarding configuration",
6200         .tokens = {
6201                 (void *)&cmd_reset_set,
6202                 (void *)&cmd_reset_def,
6203                 NULL,
6204         },
6205 };
6206
6207 /* *** START FORWARDING *** */
6208 struct cmd_start_result {
6209         cmdline_fixed_string_t start;
6210 };
6211
6212 cmdline_parse_token_string_t cmd_start_start =
6213         TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start");
6214
6215 static void cmd_start_parsed(__attribute__((unused)) void *parsed_result,
6216                              __attribute__((unused)) struct cmdline *cl,
6217                              __attribute__((unused)) void *data)
6218 {
6219         start_packet_forwarding(0);
6220 }
6221
6222 cmdline_parse_inst_t cmd_start = {
6223         .f = cmd_start_parsed,
6224         .data = NULL,
6225         .help_str = "start: Start packet forwarding",
6226         .tokens = {
6227                 (void *)&cmd_start_start,
6228                 NULL,
6229         },
6230 };
6231
6232 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */
6233 struct cmd_start_tx_first_result {
6234         cmdline_fixed_string_t start;
6235         cmdline_fixed_string_t tx_first;
6236 };
6237
6238 static void
6239 cmd_start_tx_first_parsed(__attribute__((unused)) void *parsed_result,
6240                           __attribute__((unused)) struct cmdline *cl,
6241                           __attribute__((unused)) void *data)
6242 {
6243         start_packet_forwarding(1);
6244 }
6245
6246 cmdline_parse_token_string_t cmd_start_tx_first_start =
6247         TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start,
6248                                  "start");
6249 cmdline_parse_token_string_t cmd_start_tx_first_tx_first =
6250         TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result,
6251                                  tx_first, "tx_first");
6252
6253 cmdline_parse_inst_t cmd_start_tx_first = {
6254         .f = cmd_start_tx_first_parsed,
6255         .data = NULL,
6256         .help_str = "start tx_first: Start packet forwarding, "
6257                 "after sending 1 burst of packets",
6258         .tokens = {
6259                 (void *)&cmd_start_tx_first_start,
6260                 (void *)&cmd_start_tx_first_tx_first,
6261                 NULL,
6262         },
6263 };
6264
6265 /* *** START FORWARDING WITH N TX BURST FIRST *** */
6266 struct cmd_start_tx_first_n_result {
6267         cmdline_fixed_string_t start;
6268         cmdline_fixed_string_t tx_first;
6269         uint32_t tx_num;
6270 };
6271
6272 static void
6273 cmd_start_tx_first_n_parsed(void *parsed_result,
6274                           __attribute__((unused)) struct cmdline *cl,
6275                           __attribute__((unused)) void *data)
6276 {
6277         struct cmd_start_tx_first_n_result *res = parsed_result;
6278
6279         start_packet_forwarding(res->tx_num);
6280 }
6281
6282 cmdline_parse_token_string_t cmd_start_tx_first_n_start =
6283         TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
6284                         start, "start");
6285 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first =
6286         TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
6287                         tx_first, "tx_first");
6288 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num =
6289         TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result,
6290                         tx_num, UINT32);
6291
6292 cmdline_parse_inst_t cmd_start_tx_first_n = {
6293         .f = cmd_start_tx_first_n_parsed,
6294         .data = NULL,
6295         .help_str = "start tx_first <num>: "
6296                 "packet forwarding, after sending <num> bursts of packets",
6297         .tokens = {
6298                 (void *)&cmd_start_tx_first_n_start,
6299                 (void *)&cmd_start_tx_first_n_tx_first,
6300                 (void *)&cmd_start_tx_first_n_tx_num,
6301                 NULL,
6302         },
6303 };
6304
6305 /* *** SET LINK UP *** */
6306 struct cmd_set_link_up_result {
6307         cmdline_fixed_string_t set;
6308         cmdline_fixed_string_t link_up;
6309         cmdline_fixed_string_t port;
6310         portid_t port_id;
6311 };
6312
6313 cmdline_parse_token_string_t cmd_set_link_up_set =
6314         TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set");
6315 cmdline_parse_token_string_t cmd_set_link_up_link_up =
6316         TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up,
6317                                 "link-up");
6318 cmdline_parse_token_string_t cmd_set_link_up_port =
6319         TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port");
6320 cmdline_parse_token_num_t cmd_set_link_up_port_id =
6321         TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id, UINT16);
6322
6323 static void cmd_set_link_up_parsed(__attribute__((unused)) void *parsed_result,
6324                              __attribute__((unused)) struct cmdline *cl,
6325                              __attribute__((unused)) void *data)
6326 {
6327         struct cmd_set_link_up_result *res = parsed_result;
6328         dev_set_link_up(res->port_id);
6329 }
6330
6331 cmdline_parse_inst_t cmd_set_link_up = {
6332         .f = cmd_set_link_up_parsed,
6333         .data = NULL,
6334         .help_str = "set link-up port <port id>",
6335         .tokens = {
6336                 (void *)&cmd_set_link_up_set,
6337                 (void *)&cmd_set_link_up_link_up,
6338                 (void *)&cmd_set_link_up_port,
6339                 (void *)&cmd_set_link_up_port_id,
6340                 NULL,
6341         },
6342 };
6343
6344 /* *** SET LINK DOWN *** */
6345 struct cmd_set_link_down_result {
6346         cmdline_fixed_string_t set;
6347         cmdline_fixed_string_t link_down;
6348         cmdline_fixed_string_t port;
6349         portid_t port_id;
6350 };
6351
6352 cmdline_parse_token_string_t cmd_set_link_down_set =
6353         TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set");
6354 cmdline_parse_token_string_t cmd_set_link_down_link_down =
6355         TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down,
6356                                 "link-down");
6357 cmdline_parse_token_string_t cmd_set_link_down_port =
6358         TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port");
6359 cmdline_parse_token_num_t cmd_set_link_down_port_id =
6360         TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id, UINT16);
6361
6362 static void cmd_set_link_down_parsed(
6363                                 __attribute__((unused)) void *parsed_result,
6364                                 __attribute__((unused)) struct cmdline *cl,
6365                                 __attribute__((unused)) void *data)
6366 {
6367         struct cmd_set_link_down_result *res = parsed_result;
6368         dev_set_link_down(res->port_id);
6369 }
6370
6371 cmdline_parse_inst_t cmd_set_link_down = {
6372         .f = cmd_set_link_down_parsed,
6373         .data = NULL,
6374         .help_str = "set link-down port <port id>",
6375         .tokens = {
6376                 (void *)&cmd_set_link_down_set,
6377                 (void *)&cmd_set_link_down_link_down,
6378                 (void *)&cmd_set_link_down_port,
6379                 (void *)&cmd_set_link_down_port_id,
6380                 NULL,
6381         },
6382 };
6383
6384 /* *** SHOW CFG *** */
6385 struct cmd_showcfg_result {
6386         cmdline_fixed_string_t show;
6387         cmdline_fixed_string_t cfg;
6388         cmdline_fixed_string_t what;
6389 };
6390
6391 static void cmd_showcfg_parsed(void *parsed_result,
6392                                __attribute__((unused)) struct cmdline *cl,
6393                                __attribute__((unused)) void *data)
6394 {
6395         struct cmd_showcfg_result *res = parsed_result;
6396         if (!strcmp(res->what, "rxtx"))
6397                 rxtx_config_display();
6398         else if (!strcmp(res->what, "cores"))
6399                 fwd_lcores_config_display();
6400         else if (!strcmp(res->what, "fwd"))
6401                 pkt_fwd_config_display(&cur_fwd_config);
6402         else if (!strcmp(res->what, "txpkts"))
6403                 show_tx_pkt_segments();
6404 }
6405
6406 cmdline_parse_token_string_t cmd_showcfg_show =
6407         TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show");
6408 cmdline_parse_token_string_t cmd_showcfg_port =
6409         TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config");
6410 cmdline_parse_token_string_t cmd_showcfg_what =
6411         TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what,
6412                                  "rxtx#cores#fwd#txpkts");
6413
6414 cmdline_parse_inst_t cmd_showcfg = {
6415         .f = cmd_showcfg_parsed,
6416         .data = NULL,
6417         .help_str = "show config rxtx|cores|fwd|txpkts",
6418         .tokens = {
6419                 (void *)&cmd_showcfg_show,
6420                 (void *)&cmd_showcfg_port,
6421                 (void *)&cmd_showcfg_what,
6422                 NULL,
6423         },
6424 };
6425
6426 /* *** SHOW ALL PORT INFO *** */
6427 struct cmd_showportall_result {
6428         cmdline_fixed_string_t show;
6429         cmdline_fixed_string_t port;
6430         cmdline_fixed_string_t what;
6431         cmdline_fixed_string_t all;
6432 };
6433
6434 static void cmd_showportall_parsed(void *parsed_result,
6435                                 __attribute__((unused)) struct cmdline *cl,
6436                                 __attribute__((unused)) void *data)
6437 {
6438         portid_t i;
6439
6440         struct cmd_showportall_result *res = parsed_result;
6441         if (!strcmp(res->show, "clear")) {
6442                 if (!strcmp(res->what, "stats"))
6443                         RTE_ETH_FOREACH_DEV(i)
6444                                 nic_stats_clear(i);
6445                 else if (!strcmp(res->what, "xstats"))
6446                         RTE_ETH_FOREACH_DEV(i)
6447                                 nic_xstats_clear(i);
6448         } else if (!strcmp(res->what, "info"))
6449                 RTE_ETH_FOREACH_DEV(i)
6450                         port_infos_display(i);
6451         else if (!strcmp(res->what, "stats"))
6452                 RTE_ETH_FOREACH_DEV(i)
6453                         nic_stats_display(i);
6454         else if (!strcmp(res->what, "xstats"))
6455                 RTE_ETH_FOREACH_DEV(i)
6456                         nic_xstats_display(i);
6457         else if (!strcmp(res->what, "fdir"))
6458                 RTE_ETH_FOREACH_DEV(i)
6459                         fdir_get_infos(i);
6460         else if (!strcmp(res->what, "stat_qmap"))
6461                 RTE_ETH_FOREACH_DEV(i)
6462                         nic_stats_mapping_display(i);
6463         else if (!strcmp(res->what, "dcb_tc"))
6464                 RTE_ETH_FOREACH_DEV(i)
6465                         port_dcb_info_display(i);
6466         else if (!strcmp(res->what, "cap"))
6467                 RTE_ETH_FOREACH_DEV(i)
6468                         port_offload_cap_display(i);
6469 }
6470
6471 cmdline_parse_token_string_t cmd_showportall_show =
6472         TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show,
6473                                  "show#clear");
6474 cmdline_parse_token_string_t cmd_showportall_port =
6475         TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port");
6476 cmdline_parse_token_string_t cmd_showportall_what =
6477         TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what,
6478                                  "info#stats#xstats#fdir#stat_qmap#dcb_tc#cap");
6479 cmdline_parse_token_string_t cmd_showportall_all =
6480         TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all");
6481 cmdline_parse_inst_t cmd_showportall = {
6482         .f = cmd_showportall_parsed,
6483         .data = NULL,
6484         .help_str = "show|clear port "
6485                 "info|stats|xstats|fdir|stat_qmap|dcb_tc|cap all",
6486         .tokens = {
6487                 (void *)&cmd_showportall_show,
6488                 (void *)&cmd_showportall_port,
6489                 (void *)&cmd_showportall_what,
6490                 (void *)&cmd_showportall_all,
6491                 NULL,
6492         },
6493 };
6494
6495 /* *** SHOW PORT INFO *** */
6496 struct cmd_showport_result {
6497         cmdline_fixed_string_t show;
6498         cmdline_fixed_string_t port;
6499         cmdline_fixed_string_t what;
6500         uint8_t portnum;
6501 };
6502
6503 static void cmd_showport_parsed(void *parsed_result,
6504                                 __attribute__((unused)) struct cmdline *cl,
6505                                 __attribute__((unused)) void *data)
6506 {
6507         struct cmd_showport_result *res = parsed_result;
6508         if (!strcmp(res->show, "clear")) {
6509                 if (!strcmp(res->what, "stats"))
6510                         nic_stats_clear(res->portnum);
6511                 else if (!strcmp(res->what, "xstats"))
6512                         nic_xstats_clear(res->portnum);
6513         } else if (!strcmp(res->what, "info"))
6514                 port_infos_display(res->portnum);
6515         else if (!strcmp(res->what, "stats"))
6516                 nic_stats_display(res->portnum);
6517         else if (!strcmp(res->what, "xstats"))
6518                 nic_xstats_display(res->portnum);
6519         else if (!strcmp(res->what, "fdir"))
6520                  fdir_get_infos(res->portnum);
6521         else if (!strcmp(res->what, "stat_qmap"))
6522                 nic_stats_mapping_display(res->portnum);
6523         else if (!strcmp(res->what, "dcb_tc"))
6524                 port_dcb_info_display(res->portnum);
6525         else if (!strcmp(res->what, "cap"))
6526                 port_offload_cap_display(res->portnum);
6527 }
6528
6529 cmdline_parse_token_string_t cmd_showport_show =
6530         TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show,
6531                                  "show#clear");
6532 cmdline_parse_token_string_t cmd_showport_port =
6533         TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port");
6534 cmdline_parse_token_string_t cmd_showport_what =
6535         TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what,
6536                                  "info#stats#xstats#fdir#stat_qmap#dcb_tc#cap");
6537 cmdline_parse_token_num_t cmd_showport_portnum =
6538         TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, UINT8);
6539
6540 cmdline_parse_inst_t cmd_showport = {
6541         .f = cmd_showport_parsed,
6542         .data = NULL,
6543         .help_str = "show|clear port "
6544                 "info|stats|xstats|fdir|stat_qmap|dcb_tc|cap "
6545                 "<port_id>",
6546         .tokens = {
6547                 (void *)&cmd_showport_show,
6548                 (void *)&cmd_showport_port,
6549                 (void *)&cmd_showport_what,
6550                 (void *)&cmd_showport_portnum,
6551                 NULL,
6552         },
6553 };
6554
6555 /* *** SHOW QUEUE INFO *** */
6556 struct cmd_showqueue_result {
6557         cmdline_fixed_string_t show;
6558         cmdline_fixed_string_t type;
6559         cmdline_fixed_string_t what;
6560         uint8_t portnum;
6561         uint16_t queuenum;
6562 };
6563
6564 static void
6565 cmd_showqueue_parsed(void *parsed_result,
6566         __attribute__((unused)) struct cmdline *cl,
6567         __attribute__((unused)) void *data)
6568 {
6569         struct cmd_showqueue_result *res = parsed_result;
6570
6571         if (!strcmp(res->type, "rxq"))
6572                 rx_queue_infos_display(res->portnum, res->queuenum);
6573         else if (!strcmp(res->type, "txq"))
6574                 tx_queue_infos_display(res->portnum, res->queuenum);
6575 }
6576
6577 cmdline_parse_token_string_t cmd_showqueue_show =
6578         TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show");
6579 cmdline_parse_token_string_t cmd_showqueue_type =
6580         TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq");
6581 cmdline_parse_token_string_t cmd_showqueue_what =
6582         TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info");
6583 cmdline_parse_token_num_t cmd_showqueue_portnum =
6584         TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum, UINT8);
6585 cmdline_parse_token_num_t cmd_showqueue_queuenum =
6586         TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum, UINT16);
6587
6588 cmdline_parse_inst_t cmd_showqueue = {
6589         .f = cmd_showqueue_parsed,
6590         .data = NULL,
6591         .help_str = "show rxq|txq info <port_id> <queue_id>",
6592         .tokens = {
6593                 (void *)&cmd_showqueue_show,
6594                 (void *)&cmd_showqueue_type,
6595                 (void *)&cmd_showqueue_what,
6596                 (void *)&cmd_showqueue_portnum,
6597                 (void *)&cmd_showqueue_queuenum,
6598                 NULL,
6599         },
6600 };
6601
6602 /* *** READ PORT REGISTER *** */
6603 struct cmd_read_reg_result {
6604         cmdline_fixed_string_t read;
6605         cmdline_fixed_string_t reg;
6606         portid_t port_id;
6607         uint32_t reg_off;
6608 };
6609
6610 static void
6611 cmd_read_reg_parsed(void *parsed_result,
6612                     __attribute__((unused)) struct cmdline *cl,
6613                     __attribute__((unused)) void *data)
6614 {
6615         struct cmd_read_reg_result *res = parsed_result;
6616         port_reg_display(res->port_id, res->reg_off);
6617 }
6618
6619 cmdline_parse_token_string_t cmd_read_reg_read =
6620         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read");
6621 cmdline_parse_token_string_t cmd_read_reg_reg =
6622         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg");
6623 cmdline_parse_token_num_t cmd_read_reg_port_id =
6624         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, UINT16);
6625 cmdline_parse_token_num_t cmd_read_reg_reg_off =
6626         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, UINT32);
6627
6628 cmdline_parse_inst_t cmd_read_reg = {
6629         .f = cmd_read_reg_parsed,
6630         .data = NULL,
6631         .help_str = "read reg <port_id> <reg_off>",
6632         .tokens = {
6633                 (void *)&cmd_read_reg_read,
6634                 (void *)&cmd_read_reg_reg,
6635                 (void *)&cmd_read_reg_port_id,
6636                 (void *)&cmd_read_reg_reg_off,
6637                 NULL,
6638         },
6639 };
6640
6641 /* *** READ PORT REGISTER BIT FIELD *** */
6642 struct cmd_read_reg_bit_field_result {
6643         cmdline_fixed_string_t read;
6644         cmdline_fixed_string_t regfield;
6645         portid_t port_id;
6646         uint32_t reg_off;
6647         uint8_t bit1_pos;
6648         uint8_t bit2_pos;
6649 };
6650
6651 static void
6652 cmd_read_reg_bit_field_parsed(void *parsed_result,
6653                               __attribute__((unused)) struct cmdline *cl,
6654                               __attribute__((unused)) void *data)
6655 {
6656         struct cmd_read_reg_bit_field_result *res = parsed_result;
6657         port_reg_bit_field_display(res->port_id, res->reg_off,
6658                                    res->bit1_pos, res->bit2_pos);
6659 }
6660
6661 cmdline_parse_token_string_t cmd_read_reg_bit_field_read =
6662         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read,
6663                                  "read");
6664 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield =
6665         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result,
6666                                  regfield, "regfield");
6667 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id =
6668         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id,
6669                               UINT16);
6670 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off =
6671         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off,
6672                               UINT32);
6673 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos =
6674         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos,
6675                               UINT8);
6676 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos =
6677         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos,
6678                               UINT8);
6679
6680 cmdline_parse_inst_t cmd_read_reg_bit_field = {
6681         .f = cmd_read_reg_bit_field_parsed,
6682         .data = NULL,
6683         .help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: "
6684         "Read register bit field between bit_x and bit_y included",
6685         .tokens = {
6686                 (void *)&cmd_read_reg_bit_field_read,
6687                 (void *)&cmd_read_reg_bit_field_regfield,
6688                 (void *)&cmd_read_reg_bit_field_port_id,
6689                 (void *)&cmd_read_reg_bit_field_reg_off,
6690                 (void *)&cmd_read_reg_bit_field_bit1_pos,
6691                 (void *)&cmd_read_reg_bit_field_bit2_pos,
6692                 NULL,
6693         },
6694 };
6695
6696 /* *** READ PORT REGISTER BIT *** */
6697 struct cmd_read_reg_bit_result {
6698         cmdline_fixed_string_t read;
6699         cmdline_fixed_string_t regbit;
6700         portid_t port_id;
6701         uint32_t reg_off;
6702         uint8_t bit_pos;
6703 };
6704
6705 static void
6706 cmd_read_reg_bit_parsed(void *parsed_result,
6707                         __attribute__((unused)) struct cmdline *cl,
6708                         __attribute__((unused)) void *data)
6709 {
6710         struct cmd_read_reg_bit_result *res = parsed_result;
6711         port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos);
6712 }
6713
6714 cmdline_parse_token_string_t cmd_read_reg_bit_read =
6715         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read");
6716 cmdline_parse_token_string_t cmd_read_reg_bit_regbit =
6717         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result,
6718                                  regbit, "regbit");
6719 cmdline_parse_token_num_t cmd_read_reg_bit_port_id =
6720         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id, UINT16);
6721 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off =
6722         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off, UINT32);
6723 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos =
6724         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos, UINT8);
6725
6726 cmdline_parse_inst_t cmd_read_reg_bit = {
6727         .f = cmd_read_reg_bit_parsed,
6728         .data = NULL,
6729         .help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31",
6730         .tokens = {
6731                 (void *)&cmd_read_reg_bit_read,
6732                 (void *)&cmd_read_reg_bit_regbit,
6733                 (void *)&cmd_read_reg_bit_port_id,
6734                 (void *)&cmd_read_reg_bit_reg_off,
6735                 (void *)&cmd_read_reg_bit_bit_pos,
6736                 NULL,
6737         },
6738 };
6739
6740 /* *** WRITE PORT REGISTER *** */
6741 struct cmd_write_reg_result {
6742         cmdline_fixed_string_t write;
6743         cmdline_fixed_string_t reg;
6744         portid_t port_id;
6745         uint32_t reg_off;
6746         uint32_t value;
6747 };
6748
6749 static void
6750 cmd_write_reg_parsed(void *parsed_result,
6751                      __attribute__((unused)) struct cmdline *cl,
6752                      __attribute__((unused)) void *data)
6753 {
6754         struct cmd_write_reg_result *res = parsed_result;
6755         port_reg_set(res->port_id, res->reg_off, res->value);
6756 }
6757
6758 cmdline_parse_token_string_t cmd_write_reg_write =
6759         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write");
6760 cmdline_parse_token_string_t cmd_write_reg_reg =
6761         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg");
6762 cmdline_parse_token_num_t cmd_write_reg_port_id =
6763         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, UINT16);
6764 cmdline_parse_token_num_t cmd_write_reg_reg_off =
6765         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, UINT32);
6766 cmdline_parse_token_num_t cmd_write_reg_value =
6767         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, UINT32);
6768
6769 cmdline_parse_inst_t cmd_write_reg = {
6770         .f = cmd_write_reg_parsed,
6771         .data = NULL,
6772         .help_str = "write reg <port_id> <reg_off> <reg_value>",
6773         .tokens = {
6774                 (void *)&cmd_write_reg_write,
6775                 (void *)&cmd_write_reg_reg,
6776                 (void *)&cmd_write_reg_port_id,
6777                 (void *)&cmd_write_reg_reg_off,
6778                 (void *)&cmd_write_reg_value,
6779                 NULL,
6780         },
6781 };
6782
6783 /* *** WRITE PORT REGISTER BIT FIELD *** */
6784 struct cmd_write_reg_bit_field_result {
6785         cmdline_fixed_string_t write;
6786         cmdline_fixed_string_t regfield;
6787         portid_t port_id;
6788         uint32_t reg_off;
6789         uint8_t bit1_pos;
6790         uint8_t bit2_pos;
6791         uint32_t value;
6792 };
6793
6794 static void
6795 cmd_write_reg_bit_field_parsed(void *parsed_result,
6796                                __attribute__((unused)) struct cmdline *cl,
6797                                __attribute__((unused)) void *data)
6798 {
6799         struct cmd_write_reg_bit_field_result *res = parsed_result;
6800         port_reg_bit_field_set(res->port_id, res->reg_off,
6801                           res->bit1_pos, res->bit2_pos, res->value);
6802 }
6803
6804 cmdline_parse_token_string_t cmd_write_reg_bit_field_write =
6805         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write,
6806                                  "write");
6807 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield =
6808         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result,
6809                                  regfield, "regfield");
6810 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id =
6811         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id,
6812                               UINT16);
6813 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off =
6814         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off,
6815                               UINT32);
6816 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos =
6817         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos,
6818                               UINT8);
6819 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos =
6820         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos,
6821                               UINT8);
6822 cmdline_parse_token_num_t cmd_write_reg_bit_field_value =
6823         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value,
6824                               UINT32);
6825
6826 cmdline_parse_inst_t cmd_write_reg_bit_field = {
6827         .f = cmd_write_reg_bit_field_parsed,
6828         .data = NULL,
6829         .help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> "
6830                 "<reg_value>: "
6831                 "Set register bit field between bit_x and bit_y included",
6832         .tokens = {
6833                 (void *)&cmd_write_reg_bit_field_write,
6834                 (void *)&cmd_write_reg_bit_field_regfield,
6835                 (void *)&cmd_write_reg_bit_field_port_id,
6836                 (void *)&cmd_write_reg_bit_field_reg_off,
6837                 (void *)&cmd_write_reg_bit_field_bit1_pos,
6838                 (void *)&cmd_write_reg_bit_field_bit2_pos,
6839                 (void *)&cmd_write_reg_bit_field_value,
6840                 NULL,
6841         },
6842 };
6843
6844 /* *** WRITE PORT REGISTER BIT *** */
6845 struct cmd_write_reg_bit_result {
6846         cmdline_fixed_string_t write;
6847         cmdline_fixed_string_t regbit;
6848         portid_t port_id;
6849         uint32_t reg_off;
6850         uint8_t bit_pos;
6851         uint8_t value;
6852 };
6853
6854 static void
6855 cmd_write_reg_bit_parsed(void *parsed_result,
6856                          __attribute__((unused)) struct cmdline *cl,
6857                          __attribute__((unused)) void *data)
6858 {
6859         struct cmd_write_reg_bit_result *res = parsed_result;
6860         port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value);
6861 }
6862
6863 cmdline_parse_token_string_t cmd_write_reg_bit_write =
6864         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write,
6865                                  "write");
6866 cmdline_parse_token_string_t cmd_write_reg_bit_regbit =
6867         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result,
6868                                  regbit, "regbit");
6869 cmdline_parse_token_num_t cmd_write_reg_bit_port_id =
6870         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id, UINT16);
6871 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off =
6872         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off, UINT32);
6873 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos =
6874         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos, UINT8);
6875 cmdline_parse_token_num_t cmd_write_reg_bit_value =
6876         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value, UINT8);
6877
6878 cmdline_parse_inst_t cmd_write_reg_bit = {
6879         .f = cmd_write_reg_bit_parsed,
6880         .data = NULL,
6881         .help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: "
6882                 "0 <= bit_x <= 31",
6883         .tokens = {
6884                 (void *)&cmd_write_reg_bit_write,
6885                 (void *)&cmd_write_reg_bit_regbit,
6886                 (void *)&cmd_write_reg_bit_port_id,
6887                 (void *)&cmd_write_reg_bit_reg_off,
6888                 (void *)&cmd_write_reg_bit_bit_pos,
6889                 (void *)&cmd_write_reg_bit_value,
6890                 NULL,
6891         },
6892 };
6893
6894 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */
6895 struct cmd_read_rxd_txd_result {
6896         cmdline_fixed_string_t read;
6897         cmdline_fixed_string_t rxd_txd;
6898         portid_t port_id;
6899         uint16_t queue_id;
6900         uint16_t desc_id;
6901 };
6902
6903 static void
6904 cmd_read_rxd_txd_parsed(void *parsed_result,
6905                         __attribute__((unused)) struct cmdline *cl,
6906                         __attribute__((unused)) void *data)
6907 {
6908         struct cmd_read_rxd_txd_result *res = parsed_result;
6909
6910         if (!strcmp(res->rxd_txd, "rxd"))
6911                 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
6912         else if (!strcmp(res->rxd_txd, "txd"))
6913                 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
6914 }
6915
6916 cmdline_parse_token_string_t cmd_read_rxd_txd_read =
6917         TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read");
6918 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd =
6919         TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd,
6920                                  "rxd#txd");
6921 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id =
6922         TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id, UINT16);
6923 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id =
6924         TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id, UINT16);
6925 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id =
6926         TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id, UINT16);
6927
6928 cmdline_parse_inst_t cmd_read_rxd_txd = {
6929         .f = cmd_read_rxd_txd_parsed,
6930         .data = NULL,
6931         .help_str = "read rxd|txd <port_id> <queue_id> <desc_id>",
6932         .tokens = {
6933                 (void *)&cmd_read_rxd_txd_read,
6934                 (void *)&cmd_read_rxd_txd_rxd_txd,
6935                 (void *)&cmd_read_rxd_txd_port_id,
6936                 (void *)&cmd_read_rxd_txd_queue_id,
6937                 (void *)&cmd_read_rxd_txd_desc_id,
6938                 NULL,
6939         },
6940 };
6941
6942 /* *** QUIT *** */
6943 struct cmd_quit_result {
6944         cmdline_fixed_string_t quit;
6945 };
6946
6947 static void cmd_quit_parsed(__attribute__((unused)) void *parsed_result,
6948                             struct cmdline *cl,
6949                             __attribute__((unused)) void *data)
6950 {
6951         pmd_test_exit();
6952         cmdline_quit(cl);
6953 }
6954
6955 cmdline_parse_token_string_t cmd_quit_quit =
6956         TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit");
6957
6958 cmdline_parse_inst_t cmd_quit = {
6959         .f = cmd_quit_parsed,
6960         .data = NULL,
6961         .help_str = "quit: Exit application",
6962         .tokens = {
6963                 (void *)&cmd_quit_quit,
6964                 NULL,
6965         },
6966 };
6967
6968 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */
6969 struct cmd_mac_addr_result {
6970         cmdline_fixed_string_t mac_addr_cmd;
6971         cmdline_fixed_string_t what;
6972         uint8_t port_num;
6973         struct ether_addr address;
6974 };
6975
6976 static void cmd_mac_addr_parsed(void *parsed_result,
6977                 __attribute__((unused)) struct cmdline *cl,
6978                 __attribute__((unused)) void *data)
6979 {
6980         struct cmd_mac_addr_result *res = parsed_result;
6981         int ret;
6982
6983         if (strcmp(res->what, "add") == 0)
6984                 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0);
6985         else if (strcmp(res->what, "set") == 0)
6986                 ret = rte_eth_dev_default_mac_addr_set(res->port_num,
6987                                                        &res->address);
6988         else
6989                 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address);
6990
6991         /* check the return value and print it if is < 0 */
6992         if(ret < 0)
6993                 printf("mac_addr_cmd error: (%s)\n", strerror(-ret));
6994
6995 }
6996
6997 cmdline_parse_token_string_t cmd_mac_addr_cmd =
6998         TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd,
6999                                 "mac_addr");
7000 cmdline_parse_token_string_t cmd_mac_addr_what =
7001         TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what,
7002                                 "add#remove#set");
7003 cmdline_parse_token_num_t cmd_mac_addr_portnum =
7004                 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num, UINT8);
7005 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr =
7006                 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
7007
7008 cmdline_parse_inst_t cmd_mac_addr = {
7009         .f = cmd_mac_addr_parsed,
7010         .data = (void *)0,
7011         .help_str = "mac_addr add|remove|set <port_id> <mac_addr>: "
7012                         "Add/Remove/Set MAC address on port_id",
7013         .tokens = {
7014                 (void *)&cmd_mac_addr_cmd,
7015                 (void *)&cmd_mac_addr_what,
7016                 (void *)&cmd_mac_addr_portnum,
7017                 (void *)&cmd_mac_addr_addr,
7018                 NULL,
7019         },
7020 };
7021
7022
7023 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */
7024 struct cmd_set_qmap_result {
7025         cmdline_fixed_string_t set;
7026         cmdline_fixed_string_t qmap;
7027         cmdline_fixed_string_t what;
7028         portid_t port_id;
7029         uint16_t queue_id;
7030         uint8_t map_value;
7031 };
7032
7033 static void
7034 cmd_set_qmap_parsed(void *parsed_result,
7035                        __attribute__((unused)) struct cmdline *cl,
7036                        __attribute__((unused)) void *data)
7037 {
7038         struct cmd_set_qmap_result *res = parsed_result;
7039         int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1;
7040
7041         set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value);
7042 }
7043
7044 cmdline_parse_token_string_t cmd_setqmap_set =
7045         TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
7046                                  set, "set");
7047 cmdline_parse_token_string_t cmd_setqmap_qmap =
7048         TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
7049                                  qmap, "stat_qmap");
7050 cmdline_parse_token_string_t cmd_setqmap_what =
7051         TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
7052                                  what, "tx#rx");
7053 cmdline_parse_token_num_t cmd_setqmap_portid =
7054         TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
7055                               port_id, UINT16);
7056 cmdline_parse_token_num_t cmd_setqmap_queueid =
7057         TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
7058                               queue_id, UINT16);
7059 cmdline_parse_token_num_t cmd_setqmap_mapvalue =
7060         TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
7061                               map_value, UINT8);
7062
7063 cmdline_parse_inst_t cmd_set_qmap = {
7064         .f = cmd_set_qmap_parsed,
7065         .data = NULL,
7066         .help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: "
7067                 "Set statistics mapping value on tx|rx queue_id of port_id",
7068         .tokens = {
7069                 (void *)&cmd_setqmap_set,
7070                 (void *)&cmd_setqmap_qmap,
7071                 (void *)&cmd_setqmap_what,
7072                 (void *)&cmd_setqmap_portid,
7073                 (void *)&cmd_setqmap_queueid,
7074                 (void *)&cmd_setqmap_mapvalue,
7075                 NULL,
7076         },
7077 };
7078
7079 /* *** CONFIGURE UNICAST HASH TABLE *** */
7080 struct cmd_set_uc_hash_table {
7081         cmdline_fixed_string_t set;
7082         cmdline_fixed_string_t port;
7083         portid_t port_id;
7084         cmdline_fixed_string_t what;
7085         struct ether_addr address;
7086         cmdline_fixed_string_t mode;
7087 };
7088
7089 static void
7090 cmd_set_uc_hash_parsed(void *parsed_result,
7091                        __attribute__((unused)) struct cmdline *cl,
7092                        __attribute__((unused)) void *data)
7093 {
7094         int ret=0;
7095         struct cmd_set_uc_hash_table *res = parsed_result;
7096
7097         int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
7098
7099         if (strcmp(res->what, "uta") == 0)
7100                 ret = rte_eth_dev_uc_hash_table_set(res->port_id,
7101                                                 &res->address,(uint8_t)is_on);
7102         if (ret < 0)
7103                 printf("bad unicast hash table parameter, return code = %d \n", ret);
7104
7105 }
7106
7107 cmdline_parse_token_string_t cmd_set_uc_hash_set =
7108         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
7109                                  set, "set");
7110 cmdline_parse_token_string_t cmd_set_uc_hash_port =
7111         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
7112                                  port, "port");
7113 cmdline_parse_token_num_t cmd_set_uc_hash_portid =
7114         TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table,
7115                               port_id, UINT16);
7116 cmdline_parse_token_string_t cmd_set_uc_hash_what =
7117         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
7118                                  what, "uta");
7119 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac =
7120         TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table,
7121                                 address);
7122 cmdline_parse_token_string_t cmd_set_uc_hash_mode =
7123         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
7124                                  mode, "on#off");
7125
7126 cmdline_parse_inst_t cmd_set_uc_hash_filter = {
7127         .f = cmd_set_uc_hash_parsed,
7128         .data = NULL,
7129         .help_str = "set port <port_id> uta <mac_addr> on|off)",
7130         .tokens = {
7131                 (void *)&cmd_set_uc_hash_set,
7132                 (void *)&cmd_set_uc_hash_port,
7133                 (void *)&cmd_set_uc_hash_portid,
7134                 (void *)&cmd_set_uc_hash_what,
7135                 (void *)&cmd_set_uc_hash_mac,
7136                 (void *)&cmd_set_uc_hash_mode,
7137                 NULL,
7138         },
7139 };
7140
7141 struct cmd_set_uc_all_hash_table {
7142         cmdline_fixed_string_t set;
7143         cmdline_fixed_string_t port;
7144         portid_t port_id;
7145         cmdline_fixed_string_t what;
7146         cmdline_fixed_string_t value;
7147         cmdline_fixed_string_t mode;
7148 };
7149
7150 static void
7151 cmd_set_uc_all_hash_parsed(void *parsed_result,
7152                        __attribute__((unused)) struct cmdline *cl,
7153                        __attribute__((unused)) void *data)
7154 {
7155         int ret=0;
7156         struct cmd_set_uc_all_hash_table *res = parsed_result;
7157
7158         int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
7159
7160         if ((strcmp(res->what, "uta") == 0) &&
7161                 (strcmp(res->value, "all") == 0))
7162                 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on);
7163         if (ret < 0)
7164                 printf("bad unicast hash table parameter,"
7165                         "return code = %d \n", ret);
7166 }
7167
7168 cmdline_parse_token_string_t cmd_set_uc_all_hash_set =
7169         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
7170                                  set, "set");
7171 cmdline_parse_token_string_t cmd_set_uc_all_hash_port =
7172         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
7173                                  port, "port");
7174 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid =
7175         TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table,
7176                               port_id, UINT16);
7177 cmdline_parse_token_string_t cmd_set_uc_all_hash_what =
7178         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
7179                                  what, "uta");
7180 cmdline_parse_token_string_t cmd_set_uc_all_hash_value =
7181         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
7182                                 value,"all");
7183 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode =
7184         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
7185                                  mode, "on#off");
7186
7187 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = {
7188         .f = cmd_set_uc_all_hash_parsed,
7189         .data = NULL,
7190         .help_str = "set port <port_id> uta all on|off",
7191         .tokens = {
7192                 (void *)&cmd_set_uc_all_hash_set,
7193                 (void *)&cmd_set_uc_all_hash_port,
7194                 (void *)&cmd_set_uc_all_hash_portid,
7195                 (void *)&cmd_set_uc_all_hash_what,
7196                 (void *)&cmd_set_uc_all_hash_value,
7197                 (void *)&cmd_set_uc_all_hash_mode,
7198                 NULL,
7199         },
7200 };
7201
7202 /* *** CONFIGURE MACVLAN FILTER FOR VF(s) *** */
7203 struct cmd_set_vf_macvlan_filter {
7204         cmdline_fixed_string_t set;
7205         cmdline_fixed_string_t port;
7206         portid_t port_id;
7207         cmdline_fixed_string_t vf;
7208         uint8_t vf_id;
7209         struct ether_addr address;
7210         cmdline_fixed_string_t filter_type;
7211         cmdline_fixed_string_t mode;
7212 };
7213
7214 static void
7215 cmd_set_vf_macvlan_parsed(void *parsed_result,
7216                        __attribute__((unused)) struct cmdline *cl,
7217                        __attribute__((unused)) void *data)
7218 {
7219         int is_on, ret = 0;
7220         struct cmd_set_vf_macvlan_filter *res = parsed_result;
7221         struct rte_eth_mac_filter filter;
7222
7223         memset(&filter, 0, sizeof(struct rte_eth_mac_filter));
7224
7225         rte_memcpy(&filter.mac_addr, &res->address, ETHER_ADDR_LEN);
7226
7227         /* set VF MAC filter */
7228         filter.is_vf = 1;
7229
7230         /* set VF ID */
7231         filter.dst_id = res->vf_id;
7232
7233         if (!strcmp(res->filter_type, "exact-mac"))
7234                 filter.filter_type = RTE_MAC_PERFECT_MATCH;
7235         else if (!strcmp(res->filter_type, "exact-mac-vlan"))
7236                 filter.filter_type = RTE_MACVLAN_PERFECT_MATCH;
7237         else if (!strcmp(res->filter_type, "hashmac"))
7238                 filter.filter_type = RTE_MAC_HASH_MATCH;
7239         else if (!strcmp(res->filter_type, "hashmac-vlan"))
7240                 filter.filter_type = RTE_MACVLAN_HASH_MATCH;
7241
7242         is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
7243
7244         if (is_on)
7245                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7246                                         RTE_ETH_FILTER_MACVLAN,
7247                                         RTE_ETH_FILTER_ADD,
7248                                          &filter);
7249         else
7250                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7251                                         RTE_ETH_FILTER_MACVLAN,
7252                                         RTE_ETH_FILTER_DELETE,
7253                                         &filter);
7254
7255         if (ret < 0)
7256                 printf("bad set MAC hash parameter, return code = %d\n", ret);
7257
7258 }
7259
7260 cmdline_parse_token_string_t cmd_set_vf_macvlan_set =
7261         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
7262                                  set, "set");
7263 cmdline_parse_token_string_t cmd_set_vf_macvlan_port =
7264         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
7265                                  port, "port");
7266 cmdline_parse_token_num_t cmd_set_vf_macvlan_portid =
7267         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter,
7268                               port_id, UINT16);
7269 cmdline_parse_token_string_t cmd_set_vf_macvlan_vf =
7270         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
7271                                  vf, "vf");
7272 cmdline_parse_token_num_t cmd_set_vf_macvlan_vf_id =
7273         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter,
7274                                 vf_id, UINT8);
7275 cmdline_parse_token_etheraddr_t cmd_set_vf_macvlan_mac =
7276         TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_macvlan_filter,
7277                                 address);
7278 cmdline_parse_token_string_t cmd_set_vf_macvlan_filter_type =
7279         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
7280                                 filter_type, "exact-mac#exact-mac-vlan"
7281                                 "#hashmac#hashmac-vlan");
7282 cmdline_parse_token_string_t cmd_set_vf_macvlan_mode =
7283         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
7284                                  mode, "on#off");
7285
7286 cmdline_parse_inst_t cmd_set_vf_macvlan_filter = {
7287         .f = cmd_set_vf_macvlan_parsed,
7288         .data = NULL,
7289         .help_str = "set port <port_id> vf <vf_id> <mac_addr> "
7290                 "exact-mac|exact-mac-vlan|hashmac|hashmac-vlan on|off: "
7291                 "Exact match rule: exact match of MAC or MAC and VLAN; "
7292                 "hash match rule: hash match of MAC and exact match of VLAN",
7293         .tokens = {
7294                 (void *)&cmd_set_vf_macvlan_set,
7295                 (void *)&cmd_set_vf_macvlan_port,
7296                 (void *)&cmd_set_vf_macvlan_portid,
7297                 (void *)&cmd_set_vf_macvlan_vf,
7298                 (void *)&cmd_set_vf_macvlan_vf_id,
7299                 (void *)&cmd_set_vf_macvlan_mac,
7300                 (void *)&cmd_set_vf_macvlan_filter_type,
7301                 (void *)&cmd_set_vf_macvlan_mode,
7302                 NULL,
7303         },
7304 };
7305
7306 /* *** CONFIGURE VF TRAFFIC CONTROL *** */
7307 struct cmd_set_vf_traffic {
7308         cmdline_fixed_string_t set;
7309         cmdline_fixed_string_t port;
7310         portid_t port_id;
7311         cmdline_fixed_string_t vf;
7312         uint8_t vf_id;
7313         cmdline_fixed_string_t what;
7314         cmdline_fixed_string_t mode;
7315 };
7316
7317 static void
7318 cmd_set_vf_traffic_parsed(void *parsed_result,
7319                        __attribute__((unused)) struct cmdline *cl,
7320                        __attribute__((unused)) void *data)
7321 {
7322         struct cmd_set_vf_traffic *res = parsed_result;
7323         int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0;
7324         int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
7325
7326         set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on);
7327 }
7328
7329 cmdline_parse_token_string_t cmd_setvf_traffic_set =
7330         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
7331                                  set, "set");
7332 cmdline_parse_token_string_t cmd_setvf_traffic_port =
7333         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
7334                                  port, "port");
7335 cmdline_parse_token_num_t cmd_setvf_traffic_portid =
7336         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
7337                               port_id, UINT16);
7338 cmdline_parse_token_string_t cmd_setvf_traffic_vf =
7339         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
7340                                  vf, "vf");
7341 cmdline_parse_token_num_t cmd_setvf_traffic_vfid =
7342         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
7343                               vf_id, UINT8);
7344 cmdline_parse_token_string_t cmd_setvf_traffic_what =
7345         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
7346                                  what, "tx#rx");
7347 cmdline_parse_token_string_t cmd_setvf_traffic_mode =
7348         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
7349                                  mode, "on#off");
7350
7351 cmdline_parse_inst_t cmd_set_vf_traffic = {
7352         .f = cmd_set_vf_traffic_parsed,
7353         .data = NULL,
7354         .help_str = "set port <port_id> vf <vf_id> rx|tx on|off",
7355         .tokens = {
7356                 (void *)&cmd_setvf_traffic_set,
7357                 (void *)&cmd_setvf_traffic_port,
7358                 (void *)&cmd_setvf_traffic_portid,
7359                 (void *)&cmd_setvf_traffic_vf,
7360                 (void *)&cmd_setvf_traffic_vfid,
7361                 (void *)&cmd_setvf_traffic_what,
7362                 (void *)&cmd_setvf_traffic_mode,
7363                 NULL,
7364         },
7365 };
7366
7367 /* *** CONFIGURE VF RECEIVE MODE *** */
7368 struct cmd_set_vf_rxmode {
7369         cmdline_fixed_string_t set;
7370         cmdline_fixed_string_t port;
7371         portid_t port_id;
7372         cmdline_fixed_string_t vf;
7373         uint8_t vf_id;
7374         cmdline_fixed_string_t what;
7375         cmdline_fixed_string_t mode;
7376         cmdline_fixed_string_t on;
7377 };
7378
7379 static void
7380 cmd_set_vf_rxmode_parsed(void *parsed_result,
7381                        __attribute__((unused)) struct cmdline *cl,
7382                        __attribute__((unused)) void *data)
7383 {
7384         int ret = -ENOTSUP;
7385         uint16_t rx_mode = 0;
7386         struct cmd_set_vf_rxmode *res = parsed_result;
7387
7388         int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0;
7389         if (!strcmp(res->what,"rxmode")) {
7390                 if (!strcmp(res->mode, "AUPE"))
7391                         rx_mode |= ETH_VMDQ_ACCEPT_UNTAG;
7392                 else if (!strcmp(res->mode, "ROPE"))
7393                         rx_mode |= ETH_VMDQ_ACCEPT_HASH_UC;
7394                 else if (!strcmp(res->mode, "BAM"))
7395                         rx_mode |= ETH_VMDQ_ACCEPT_BROADCAST;
7396                 else if (!strncmp(res->mode, "MPE",3))
7397                         rx_mode |= ETH_VMDQ_ACCEPT_MULTICAST;
7398         }
7399
7400 #ifdef RTE_LIBRTE_IXGBE_PMD
7401         if (ret == -ENOTSUP)
7402                 ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id,
7403                                                   rx_mode, (uint8_t)is_on);
7404 #endif
7405 #ifdef RTE_LIBRTE_BNXT_PMD
7406         if (ret == -ENOTSUP)
7407                 ret = rte_pmd_bnxt_set_vf_rxmode(res->port_id, res->vf_id,
7408                                                  rx_mode, (uint8_t)is_on);
7409 #endif
7410         if (ret < 0)
7411                 printf("bad VF receive mode parameter, return code = %d \n",
7412                 ret);
7413 }
7414
7415 cmdline_parse_token_string_t cmd_set_vf_rxmode_set =
7416         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
7417                                  set, "set");
7418 cmdline_parse_token_string_t cmd_set_vf_rxmode_port =
7419         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
7420                                  port, "port");
7421 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid =
7422         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
7423                               port_id, UINT16);
7424 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf =
7425         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
7426                                  vf, "vf");
7427 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid =
7428         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
7429                               vf_id, UINT8);
7430 cmdline_parse_token_string_t cmd_set_vf_rxmode_what =
7431         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
7432                                  what, "rxmode");
7433 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode =
7434         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
7435                                  mode, "AUPE#ROPE#BAM#MPE");
7436 cmdline_parse_token_string_t cmd_set_vf_rxmode_on =
7437         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
7438                                  on, "on#off");
7439
7440 cmdline_parse_inst_t cmd_set_vf_rxmode = {
7441         .f = cmd_set_vf_rxmode_parsed,
7442         .data = NULL,
7443         .help_str = "set port <port_id> vf <vf_id> rxmode "
7444                 "AUPE|ROPE|BAM|MPE on|off",
7445         .tokens = {
7446                 (void *)&cmd_set_vf_rxmode_set,
7447                 (void *)&cmd_set_vf_rxmode_port,
7448                 (void *)&cmd_set_vf_rxmode_portid,
7449                 (void *)&cmd_set_vf_rxmode_vf,
7450                 (void *)&cmd_set_vf_rxmode_vfid,
7451                 (void *)&cmd_set_vf_rxmode_what,
7452                 (void *)&cmd_set_vf_rxmode_mode,
7453                 (void *)&cmd_set_vf_rxmode_on,
7454                 NULL,
7455         },
7456 };
7457
7458 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */
7459 struct cmd_vf_mac_addr_result {
7460         cmdline_fixed_string_t mac_addr_cmd;
7461         cmdline_fixed_string_t what;
7462         cmdline_fixed_string_t port;
7463         uint8_t port_num;
7464         cmdline_fixed_string_t vf;
7465         uint8_t vf_num;
7466         struct ether_addr address;
7467 };
7468
7469 static void cmd_vf_mac_addr_parsed(void *parsed_result,
7470                 __attribute__((unused)) struct cmdline *cl,
7471                 __attribute__((unused)) void *data)
7472 {
7473         struct cmd_vf_mac_addr_result *res = parsed_result;
7474         int ret = -ENOTSUP;
7475
7476         if (strcmp(res->what, "add") != 0)
7477                 return;
7478
7479 #ifdef RTE_LIBRTE_I40E_PMD
7480         if (ret == -ENOTSUP)
7481                 ret = rte_pmd_i40e_add_vf_mac_addr(res->port_num, res->vf_num,
7482                                                    &res->address);
7483 #endif
7484 #ifdef RTE_LIBRTE_BNXT_PMD
7485         if (ret == -ENOTSUP)
7486                 ret = rte_pmd_bnxt_mac_addr_add(res->port_num, &res->address,
7487                                                 res->vf_num);
7488 #endif
7489
7490         if(ret < 0)
7491                 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
7492
7493 }
7494
7495 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd =
7496         TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
7497                                 mac_addr_cmd,"mac_addr");
7498 cmdline_parse_token_string_t cmd_vf_mac_addr_what =
7499         TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
7500                                 what,"add");
7501 cmdline_parse_token_string_t cmd_vf_mac_addr_port =
7502         TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
7503                                 port,"port");
7504 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum =
7505         TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
7506                                 port_num, UINT8);
7507 cmdline_parse_token_string_t cmd_vf_mac_addr_vf =
7508         TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
7509                                 vf,"vf");
7510 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum =
7511         TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
7512                                 vf_num, UINT8);
7513 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr =
7514         TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result,
7515                                 address);
7516
7517 cmdline_parse_inst_t cmd_vf_mac_addr_filter = {
7518         .f = cmd_vf_mac_addr_parsed,
7519         .data = (void *)0,
7520         .help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: "
7521                 "Add MAC address filtering for a VF on port_id",
7522         .tokens = {
7523                 (void *)&cmd_vf_mac_addr_cmd,
7524                 (void *)&cmd_vf_mac_addr_what,
7525                 (void *)&cmd_vf_mac_addr_port,
7526                 (void *)&cmd_vf_mac_addr_portnum,
7527                 (void *)&cmd_vf_mac_addr_vf,
7528                 (void *)&cmd_vf_mac_addr_vfnum,
7529                 (void *)&cmd_vf_mac_addr_addr,
7530                 NULL,
7531         },
7532 };
7533
7534 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
7535 struct cmd_vf_rx_vlan_filter {
7536         cmdline_fixed_string_t rx_vlan;
7537         cmdline_fixed_string_t what;
7538         uint16_t vlan_id;
7539         cmdline_fixed_string_t port;
7540         portid_t port_id;
7541         cmdline_fixed_string_t vf;
7542         uint64_t vf_mask;
7543 };
7544
7545 static void
7546 cmd_vf_rx_vlan_filter_parsed(void *parsed_result,
7547                           __attribute__((unused)) struct cmdline *cl,
7548                           __attribute__((unused)) void *data)
7549 {
7550         struct cmd_vf_rx_vlan_filter *res = parsed_result;
7551         int ret = -ENOTSUP;
7552
7553         __rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0;
7554
7555 #ifdef RTE_LIBRTE_IXGBE_PMD
7556         if (ret == -ENOTSUP)
7557                 ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id,
7558                                 res->vlan_id, res->vf_mask, is_add);
7559 #endif
7560 #ifdef RTE_LIBRTE_I40E_PMD
7561         if (ret == -ENOTSUP)
7562                 ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id,
7563                                 res->vlan_id, res->vf_mask, is_add);
7564 #endif
7565 #ifdef RTE_LIBRTE_BNXT_PMD
7566         if (ret == -ENOTSUP)
7567                 ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id,
7568                                 res->vlan_id, res->vf_mask, is_add);
7569 #endif
7570
7571         switch (ret) {
7572         case 0:
7573                 break;
7574         case -EINVAL:
7575                 printf("invalid vlan_id %d or vf_mask %"PRIu64"\n",
7576                                 res->vlan_id, res->vf_mask);
7577                 break;
7578         case -ENODEV:
7579                 printf("invalid port_id %d\n", res->port_id);
7580                 break;
7581         case -ENOTSUP:
7582                 printf("function not implemented or supported\n");
7583                 break;
7584         default:
7585                 printf("programming error: (%s)\n", strerror(-ret));
7586         }
7587 }
7588
7589 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan =
7590         TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7591                                  rx_vlan, "rx_vlan");
7592 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what =
7593         TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7594                                  what, "add#rm");
7595 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid =
7596         TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7597                               vlan_id, UINT16);
7598 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port =
7599         TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7600                                  port, "port");
7601 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid =
7602         TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7603                               port_id, UINT16);
7604 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf =
7605         TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7606                                  vf, "vf");
7607 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask =
7608         TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7609                               vf_mask, UINT64);
7610
7611 cmdline_parse_inst_t cmd_vf_rxvlan_filter = {
7612         .f = cmd_vf_rx_vlan_filter_parsed,
7613         .data = NULL,
7614         .help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: "
7615                 "(vf_mask = hexadecimal VF mask)",
7616         .tokens = {
7617                 (void *)&cmd_vf_rx_vlan_filter_rx_vlan,
7618                 (void *)&cmd_vf_rx_vlan_filter_what,
7619                 (void *)&cmd_vf_rx_vlan_filter_vlanid,
7620                 (void *)&cmd_vf_rx_vlan_filter_port,
7621                 (void *)&cmd_vf_rx_vlan_filter_portid,
7622                 (void *)&cmd_vf_rx_vlan_filter_vf,
7623                 (void *)&cmd_vf_rx_vlan_filter_vf_mask,
7624                 NULL,
7625         },
7626 };
7627
7628 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */
7629 struct cmd_queue_rate_limit_result {
7630         cmdline_fixed_string_t set;
7631         cmdline_fixed_string_t port;
7632         uint8_t port_num;
7633         cmdline_fixed_string_t queue;
7634         uint8_t queue_num;
7635         cmdline_fixed_string_t rate;
7636         uint16_t rate_num;
7637 };
7638
7639 static void cmd_queue_rate_limit_parsed(void *parsed_result,
7640                 __attribute__((unused)) struct cmdline *cl,
7641                 __attribute__((unused)) void *data)
7642 {
7643         struct cmd_queue_rate_limit_result *res = parsed_result;
7644         int ret = 0;
7645
7646         if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
7647                 && (strcmp(res->queue, "queue") == 0)
7648                 && (strcmp(res->rate, "rate") == 0))
7649                 ret = set_queue_rate_limit(res->port_num, res->queue_num,
7650                                         res->rate_num);
7651         if (ret < 0)
7652                 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret));
7653
7654 }
7655
7656 cmdline_parse_token_string_t cmd_queue_rate_limit_set =
7657         TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
7658                                 set, "set");
7659 cmdline_parse_token_string_t cmd_queue_rate_limit_port =
7660         TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
7661                                 port, "port");
7662 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum =
7663         TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
7664                                 port_num, UINT8);
7665 cmdline_parse_token_string_t cmd_queue_rate_limit_queue =
7666         TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
7667                                 queue, "queue");
7668 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum =
7669         TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
7670                                 queue_num, UINT8);
7671 cmdline_parse_token_string_t cmd_queue_rate_limit_rate =
7672         TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
7673                                 rate, "rate");
7674 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum =
7675         TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
7676                                 rate_num, UINT16);
7677
7678 cmdline_parse_inst_t cmd_queue_rate_limit = {
7679         .f = cmd_queue_rate_limit_parsed,
7680         .data = (void *)0,
7681         .help_str = "set port <port_id> queue <queue_id> rate <rate_value>: "
7682                 "Set rate limit for a queue on port_id",
7683         .tokens = {
7684                 (void *)&cmd_queue_rate_limit_set,
7685                 (void *)&cmd_queue_rate_limit_port,
7686                 (void *)&cmd_queue_rate_limit_portnum,
7687                 (void *)&cmd_queue_rate_limit_queue,
7688                 (void *)&cmd_queue_rate_limit_queuenum,
7689                 (void *)&cmd_queue_rate_limit_rate,
7690                 (void *)&cmd_queue_rate_limit_ratenum,
7691                 NULL,
7692         },
7693 };
7694
7695 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */
7696 struct cmd_vf_rate_limit_result {
7697         cmdline_fixed_string_t set;
7698         cmdline_fixed_string_t port;
7699         uint8_t port_num;
7700         cmdline_fixed_string_t vf;
7701         uint8_t vf_num;
7702         cmdline_fixed_string_t rate;
7703         uint16_t rate_num;
7704         cmdline_fixed_string_t q_msk;
7705         uint64_t q_msk_val;
7706 };
7707
7708 static void cmd_vf_rate_limit_parsed(void *parsed_result,
7709                 __attribute__((unused)) struct cmdline *cl,
7710                 __attribute__((unused)) void *data)
7711 {
7712         struct cmd_vf_rate_limit_result *res = parsed_result;
7713         int ret = 0;
7714
7715         if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
7716                 && (strcmp(res->vf, "vf") == 0)
7717                 && (strcmp(res->rate, "rate") == 0)
7718                 && (strcmp(res->q_msk, "queue_mask") == 0))
7719                 ret = set_vf_rate_limit(res->port_num, res->vf_num,
7720                                         res->rate_num, res->q_msk_val);
7721         if (ret < 0)
7722                 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret));
7723
7724 }
7725
7726 cmdline_parse_token_string_t cmd_vf_rate_limit_set =
7727         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7728                                 set, "set");
7729 cmdline_parse_token_string_t cmd_vf_rate_limit_port =
7730         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7731                                 port, "port");
7732 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum =
7733         TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
7734                                 port_num, UINT8);
7735 cmdline_parse_token_string_t cmd_vf_rate_limit_vf =
7736         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7737                                 vf, "vf");
7738 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum =
7739         TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
7740                                 vf_num, UINT8);
7741 cmdline_parse_token_string_t cmd_vf_rate_limit_rate =
7742         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7743                                 rate, "rate");
7744 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum =
7745         TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
7746                                 rate_num, UINT16);
7747 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk =
7748         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7749                                 q_msk, "queue_mask");
7750 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val =
7751         TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
7752                                 q_msk_val, UINT64);
7753
7754 cmdline_parse_inst_t cmd_vf_rate_limit = {
7755         .f = cmd_vf_rate_limit_parsed,
7756         .data = (void *)0,
7757         .help_str = "set port <port_id> vf <vf_id> rate <rate_value> "
7758                 "queue_mask <queue_mask_value>: "
7759                 "Set rate limit for queues of VF on port_id",
7760         .tokens = {
7761                 (void *)&cmd_vf_rate_limit_set,
7762                 (void *)&cmd_vf_rate_limit_port,
7763                 (void *)&cmd_vf_rate_limit_portnum,
7764                 (void *)&cmd_vf_rate_limit_vf,
7765                 (void *)&cmd_vf_rate_limit_vfnum,
7766                 (void *)&cmd_vf_rate_limit_rate,
7767                 (void *)&cmd_vf_rate_limit_ratenum,
7768                 (void *)&cmd_vf_rate_limit_q_msk,
7769                 (void *)&cmd_vf_rate_limit_q_msk_val,
7770                 NULL,
7771         },
7772 };
7773
7774 /* *** ADD TUNNEL FILTER OF A PORT *** */
7775 struct cmd_tunnel_filter_result {
7776         cmdline_fixed_string_t cmd;
7777         cmdline_fixed_string_t what;
7778         portid_t port_id;
7779         struct ether_addr outer_mac;
7780         struct ether_addr inner_mac;
7781         cmdline_ipaddr_t ip_value;
7782         uint16_t inner_vlan;
7783         cmdline_fixed_string_t tunnel_type;
7784         cmdline_fixed_string_t filter_type;
7785         uint32_t tenant_id;
7786         uint16_t queue_num;
7787 };
7788
7789 static void
7790 cmd_tunnel_filter_parsed(void *parsed_result,
7791                           __attribute__((unused)) struct cmdline *cl,
7792                           __attribute__((unused)) void *data)
7793 {
7794         struct cmd_tunnel_filter_result *res = parsed_result;
7795         struct rte_eth_tunnel_filter_conf tunnel_filter_conf;
7796         int ret = 0;
7797
7798         memset(&tunnel_filter_conf, 0, sizeof(tunnel_filter_conf));
7799
7800         ether_addr_copy(&res->outer_mac, &tunnel_filter_conf.outer_mac);
7801         ether_addr_copy(&res->inner_mac, &tunnel_filter_conf.inner_mac);
7802         tunnel_filter_conf.inner_vlan = res->inner_vlan;
7803
7804         if (res->ip_value.family == AF_INET) {
7805                 tunnel_filter_conf.ip_addr.ipv4_addr =
7806                         res->ip_value.addr.ipv4.s_addr;
7807                 tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV4;
7808         } else {
7809                 memcpy(&(tunnel_filter_conf.ip_addr.ipv6_addr),
7810                         &(res->ip_value.addr.ipv6),
7811                         sizeof(struct in6_addr));
7812                 tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV6;
7813         }
7814
7815         if (!strcmp(res->filter_type, "imac-ivlan"))
7816                 tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_IVLAN;
7817         else if (!strcmp(res->filter_type, "imac-ivlan-tenid"))
7818                 tunnel_filter_conf.filter_type =
7819                         RTE_TUNNEL_FILTER_IMAC_IVLAN_TENID;
7820         else if (!strcmp(res->filter_type, "imac-tenid"))
7821                 tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_TENID;
7822         else if (!strcmp(res->filter_type, "imac"))
7823                 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IMAC;
7824         else if (!strcmp(res->filter_type, "omac-imac-tenid"))
7825                 tunnel_filter_conf.filter_type =
7826                         RTE_TUNNEL_FILTER_OMAC_TENID_IMAC;
7827         else if (!strcmp(res->filter_type, "oip"))
7828                 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_OIP;
7829         else if (!strcmp(res->filter_type, "iip"))
7830                 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IIP;
7831         else {
7832                 printf("The filter type is not supported");
7833                 return;
7834         }
7835
7836         if (!strcmp(res->tunnel_type, "vxlan"))
7837                 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_VXLAN;
7838         else if (!strcmp(res->tunnel_type, "nvgre"))
7839                 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_NVGRE;
7840         else if (!strcmp(res->tunnel_type, "ipingre"))
7841                 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_IP_IN_GRE;
7842         else {
7843                 printf("The tunnel type %s not supported.\n", res->tunnel_type);
7844                 return;
7845         }
7846
7847         tunnel_filter_conf.tenant_id = res->tenant_id;
7848         tunnel_filter_conf.queue_id = res->queue_num;
7849         if (!strcmp(res->what, "add"))
7850                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7851                                         RTE_ETH_FILTER_TUNNEL,
7852                                         RTE_ETH_FILTER_ADD,
7853                                         &tunnel_filter_conf);
7854         else
7855                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7856                                         RTE_ETH_FILTER_TUNNEL,
7857                                         RTE_ETH_FILTER_DELETE,
7858                                         &tunnel_filter_conf);
7859         if (ret < 0)
7860                 printf("cmd_tunnel_filter_parsed error: (%s)\n",
7861                                 strerror(-ret));
7862
7863 }
7864 cmdline_parse_token_string_t cmd_tunnel_filter_cmd =
7865         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
7866         cmd, "tunnel_filter");
7867 cmdline_parse_token_string_t cmd_tunnel_filter_what =
7868         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
7869         what, "add#rm");
7870 cmdline_parse_token_num_t cmd_tunnel_filter_port_id =
7871         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
7872         port_id, UINT16);
7873 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_outer_mac =
7874         TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result,
7875         outer_mac);
7876 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_inner_mac =
7877         TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result,
7878         inner_mac);
7879 cmdline_parse_token_num_t cmd_tunnel_filter_innner_vlan =
7880         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
7881         inner_vlan, UINT16);
7882 cmdline_parse_token_ipaddr_t cmd_tunnel_filter_ip_value =
7883         TOKEN_IPADDR_INITIALIZER(struct cmd_tunnel_filter_result,
7884         ip_value);
7885 cmdline_parse_token_string_t cmd_tunnel_filter_tunnel_type =
7886         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
7887         tunnel_type, "vxlan#nvgre#ipingre");
7888
7889 cmdline_parse_token_string_t cmd_tunnel_filter_filter_type =
7890         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
7891         filter_type, "oip#iip#imac-ivlan#imac-ivlan-tenid#imac-tenid#"
7892                 "imac#omac-imac-tenid");
7893 cmdline_parse_token_num_t cmd_tunnel_filter_tenant_id =
7894         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
7895         tenant_id, UINT32);
7896 cmdline_parse_token_num_t cmd_tunnel_filter_queue_num =
7897         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
7898         queue_num, UINT16);
7899
7900 cmdline_parse_inst_t cmd_tunnel_filter = {
7901         .f = cmd_tunnel_filter_parsed,
7902         .data = (void *)0,
7903         .help_str = "tunnel_filter add|rm <port_id> <outer_mac> <inner_mac> "
7904                 "<ip> <inner_vlan> vxlan|nvgre|ipingre oip|iip|imac-ivlan|"
7905                 "imac-ivlan-tenid|imac-tenid|imac|omac-imac-tenid <tenant_id> "
7906                 "<queue_id>: Add/Rm tunnel filter of a port",
7907         .tokens = {
7908                 (void *)&cmd_tunnel_filter_cmd,
7909                 (void *)&cmd_tunnel_filter_what,
7910                 (void *)&cmd_tunnel_filter_port_id,
7911                 (void *)&cmd_tunnel_filter_outer_mac,
7912                 (void *)&cmd_tunnel_filter_inner_mac,
7913                 (void *)&cmd_tunnel_filter_ip_value,
7914                 (void *)&cmd_tunnel_filter_innner_vlan,
7915                 (void *)&cmd_tunnel_filter_tunnel_type,
7916                 (void *)&cmd_tunnel_filter_filter_type,
7917                 (void *)&cmd_tunnel_filter_tenant_id,
7918                 (void *)&cmd_tunnel_filter_queue_num,
7919                 NULL,
7920         },
7921 };
7922
7923 /* *** CONFIGURE TUNNEL UDP PORT *** */
7924 struct cmd_tunnel_udp_config {
7925         cmdline_fixed_string_t cmd;
7926         cmdline_fixed_string_t what;
7927         uint16_t udp_port;
7928         portid_t port_id;
7929 };
7930
7931 static void
7932 cmd_tunnel_udp_config_parsed(void *parsed_result,
7933                           __attribute__((unused)) struct cmdline *cl,
7934                           __attribute__((unused)) void *data)
7935 {
7936         struct cmd_tunnel_udp_config *res = parsed_result;
7937         struct rte_eth_udp_tunnel tunnel_udp;
7938         int ret;
7939
7940         tunnel_udp.udp_port = res->udp_port;
7941
7942         if (!strcmp(res->cmd, "rx_vxlan_port"))
7943                 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
7944
7945         if (!strcmp(res->what, "add"))
7946                 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
7947                                                       &tunnel_udp);
7948         else
7949                 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
7950                                                          &tunnel_udp);
7951
7952         if (ret < 0)
7953                 printf("udp tunneling add error: (%s)\n", strerror(-ret));
7954 }
7955
7956 cmdline_parse_token_string_t cmd_tunnel_udp_config_cmd =
7957         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
7958                                 cmd, "rx_vxlan_port");
7959 cmdline_parse_token_string_t cmd_tunnel_udp_config_what =
7960         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
7961                                 what, "add#rm");
7962 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port =
7963         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
7964                                 udp_port, UINT16);
7965 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id =
7966         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
7967                                 port_id, UINT16);
7968
7969 cmdline_parse_inst_t cmd_tunnel_udp_config = {
7970         .f = cmd_tunnel_udp_config_parsed,
7971         .data = (void *)0,
7972         .help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: "
7973                 "Add/Remove a tunneling UDP port filter",
7974         .tokens = {
7975                 (void *)&cmd_tunnel_udp_config_cmd,
7976                 (void *)&cmd_tunnel_udp_config_what,
7977                 (void *)&cmd_tunnel_udp_config_udp_port,
7978                 (void *)&cmd_tunnel_udp_config_port_id,
7979                 NULL,
7980         },
7981 };
7982
7983 /* *** GLOBAL CONFIG *** */
7984 struct cmd_global_config_result {
7985         cmdline_fixed_string_t cmd;
7986         portid_t port_id;
7987         cmdline_fixed_string_t cfg_type;
7988         uint8_t len;
7989 };
7990
7991 static void
7992 cmd_global_config_parsed(void *parsed_result,
7993                          __attribute__((unused)) struct cmdline *cl,
7994                          __attribute__((unused)) void *data)
7995 {
7996         struct cmd_global_config_result *res = parsed_result;
7997         struct rte_eth_global_cfg conf;
7998         int ret;
7999
8000         memset(&conf, 0, sizeof(conf));
8001         conf.cfg_type = RTE_ETH_GLOBAL_CFG_TYPE_GRE_KEY_LEN;
8002         conf.cfg.gre_key_len = res->len;
8003         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_NONE,
8004                                       RTE_ETH_FILTER_SET, &conf);
8005         if (ret != 0)
8006                 printf("Global config error\n");
8007 }
8008
8009 cmdline_parse_token_string_t cmd_global_config_cmd =
8010         TOKEN_STRING_INITIALIZER(struct cmd_global_config_result, cmd,
8011                 "global_config");
8012 cmdline_parse_token_num_t cmd_global_config_port_id =
8013         TOKEN_NUM_INITIALIZER(struct cmd_global_config_result, port_id,
8014                                UINT16);
8015 cmdline_parse_token_string_t cmd_global_config_type =
8016         TOKEN_STRING_INITIALIZER(struct cmd_global_config_result,
8017                 cfg_type, "gre-key-len");
8018 cmdline_parse_token_num_t cmd_global_config_gre_key_len =
8019         TOKEN_NUM_INITIALIZER(struct cmd_global_config_result,
8020                 len, UINT8);
8021
8022 cmdline_parse_inst_t cmd_global_config = {
8023         .f = cmd_global_config_parsed,
8024         .data = (void *)NULL,
8025         .help_str = "global_config <port_id> gre-key-len <key_len>",
8026         .tokens = {
8027                 (void *)&cmd_global_config_cmd,
8028                 (void *)&cmd_global_config_port_id,
8029                 (void *)&cmd_global_config_type,
8030                 (void *)&cmd_global_config_gre_key_len,
8031                 NULL,
8032         },
8033 };
8034
8035 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */
8036 struct cmd_set_mirror_mask_result {
8037         cmdline_fixed_string_t set;
8038         cmdline_fixed_string_t port;
8039         portid_t port_id;
8040         cmdline_fixed_string_t mirror;
8041         uint8_t rule_id;
8042         cmdline_fixed_string_t what;
8043         cmdline_fixed_string_t value;
8044         cmdline_fixed_string_t dstpool;
8045         uint8_t dstpool_id;
8046         cmdline_fixed_string_t on;
8047 };
8048
8049 cmdline_parse_token_string_t cmd_mirror_mask_set =
8050         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
8051                                 set, "set");
8052 cmdline_parse_token_string_t cmd_mirror_mask_port =
8053         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
8054                                 port, "port");
8055 cmdline_parse_token_num_t cmd_mirror_mask_portid =
8056         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
8057                                 port_id, UINT16);
8058 cmdline_parse_token_string_t cmd_mirror_mask_mirror =
8059         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
8060                                 mirror, "mirror-rule");
8061 cmdline_parse_token_num_t cmd_mirror_mask_ruleid =
8062         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
8063                                 rule_id, UINT8);
8064 cmdline_parse_token_string_t cmd_mirror_mask_what =
8065         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
8066                                 what, "pool-mirror-up#pool-mirror-down"
8067                                       "#vlan-mirror");
8068 cmdline_parse_token_string_t cmd_mirror_mask_value =
8069         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
8070                                 value, NULL);
8071 cmdline_parse_token_string_t cmd_mirror_mask_dstpool =
8072         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
8073                                 dstpool, "dst-pool");
8074 cmdline_parse_token_num_t cmd_mirror_mask_poolid =
8075         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
8076                                 dstpool_id, UINT8);
8077 cmdline_parse_token_string_t cmd_mirror_mask_on =
8078         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
8079                                 on, "on#off");
8080
8081 static void
8082 cmd_set_mirror_mask_parsed(void *parsed_result,
8083                        __attribute__((unused)) struct cmdline *cl,
8084                        __attribute__((unused)) void *data)
8085 {
8086         int ret,nb_item,i;
8087         struct cmd_set_mirror_mask_result *res = parsed_result;
8088         struct rte_eth_mirror_conf mr_conf;
8089
8090         memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
8091
8092         unsigned int vlan_list[ETH_MIRROR_MAX_VLANS];
8093
8094         mr_conf.dst_pool = res->dstpool_id;
8095
8096         if (!strcmp(res->what, "pool-mirror-up")) {
8097                 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
8098                 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP;
8099         } else if (!strcmp(res->what, "pool-mirror-down")) {
8100                 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
8101                 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN;
8102         } else if (!strcmp(res->what, "vlan-mirror")) {
8103                 mr_conf.rule_type = ETH_MIRROR_VLAN;
8104                 nb_item = parse_item_list(res->value, "vlan",
8105                                 ETH_MIRROR_MAX_VLANS, vlan_list, 1);
8106                 if (nb_item <= 0)
8107                         return;
8108
8109                 for (i = 0; i < nb_item; i++) {
8110                         if (vlan_list[i] > ETHER_MAX_VLAN_ID) {
8111                                 printf("Invalid vlan_id: must be < 4096\n");
8112                                 return;
8113                         }
8114
8115                         mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i];
8116                         mr_conf.vlan.vlan_mask |= 1ULL << i;
8117                 }
8118         }
8119
8120         if (!strcmp(res->on, "on"))
8121                 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
8122                                                 res->rule_id, 1);
8123         else
8124                 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
8125                                                 res->rule_id, 0);
8126         if (ret < 0)
8127                 printf("mirror rule add error: (%s)\n", strerror(-ret));
8128 }
8129
8130 cmdline_parse_inst_t cmd_set_mirror_mask = {
8131                 .f = cmd_set_mirror_mask_parsed,
8132                 .data = NULL,
8133                 .help_str = "set port <port_id> mirror-rule <rule_id> "
8134                         "pool-mirror-up|pool-mirror-down|vlan-mirror "
8135                         "<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off",
8136                 .tokens = {
8137                         (void *)&cmd_mirror_mask_set,
8138                         (void *)&cmd_mirror_mask_port,
8139                         (void *)&cmd_mirror_mask_portid,
8140                         (void *)&cmd_mirror_mask_mirror,
8141                         (void *)&cmd_mirror_mask_ruleid,
8142                         (void *)&cmd_mirror_mask_what,
8143                         (void *)&cmd_mirror_mask_value,
8144                         (void *)&cmd_mirror_mask_dstpool,
8145                         (void *)&cmd_mirror_mask_poolid,
8146                         (void *)&cmd_mirror_mask_on,
8147                         NULL,
8148                 },
8149 };
8150
8151 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */
8152 struct cmd_set_mirror_link_result {
8153         cmdline_fixed_string_t set;
8154         cmdline_fixed_string_t port;
8155         portid_t port_id;
8156         cmdline_fixed_string_t mirror;
8157         uint8_t rule_id;
8158         cmdline_fixed_string_t what;
8159         cmdline_fixed_string_t dstpool;
8160         uint8_t dstpool_id;
8161         cmdline_fixed_string_t on;
8162 };
8163
8164 cmdline_parse_token_string_t cmd_mirror_link_set =
8165         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
8166                                  set, "set");
8167 cmdline_parse_token_string_t cmd_mirror_link_port =
8168         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
8169                                 port, "port");
8170 cmdline_parse_token_num_t cmd_mirror_link_portid =
8171         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
8172                                 port_id, UINT16);
8173 cmdline_parse_token_string_t cmd_mirror_link_mirror =
8174         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
8175                                 mirror, "mirror-rule");
8176 cmdline_parse_token_num_t cmd_mirror_link_ruleid =
8177         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
8178                             rule_id, UINT8);
8179 cmdline_parse_token_string_t cmd_mirror_link_what =
8180         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
8181                                 what, "uplink-mirror#downlink-mirror");
8182 cmdline_parse_token_string_t cmd_mirror_link_dstpool =
8183         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
8184                                 dstpool, "dst-pool");
8185 cmdline_parse_token_num_t cmd_mirror_link_poolid =
8186         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
8187                                 dstpool_id, UINT8);
8188 cmdline_parse_token_string_t cmd_mirror_link_on =
8189         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
8190                                 on, "on#off");
8191
8192 static void
8193 cmd_set_mirror_link_parsed(void *parsed_result,
8194                        __attribute__((unused)) struct cmdline *cl,
8195                        __attribute__((unused)) void *data)
8196 {
8197         int ret;
8198         struct cmd_set_mirror_link_result *res = parsed_result;
8199         struct rte_eth_mirror_conf mr_conf;
8200
8201         memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
8202         if (!strcmp(res->what, "uplink-mirror"))
8203                 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT;
8204         else
8205                 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT;
8206
8207         mr_conf.dst_pool = res->dstpool_id;
8208
8209         if (!strcmp(res->on, "on"))
8210                 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
8211                                                 res->rule_id, 1);
8212         else
8213                 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
8214                                                 res->rule_id, 0);
8215
8216         /* check the return value and print it if is < 0 */
8217         if (ret < 0)
8218                 printf("mirror rule add error: (%s)\n", strerror(-ret));
8219
8220 }
8221
8222 cmdline_parse_inst_t cmd_set_mirror_link = {
8223                 .f = cmd_set_mirror_link_parsed,
8224                 .data = NULL,
8225                 .help_str = "set port <port_id> mirror-rule <rule_id> "
8226                         "uplink-mirror|downlink-mirror dst-pool <pool_id> on|off",
8227                 .tokens = {
8228                         (void *)&cmd_mirror_link_set,
8229                         (void *)&cmd_mirror_link_port,
8230                         (void *)&cmd_mirror_link_portid,
8231                         (void *)&cmd_mirror_link_mirror,
8232                         (void *)&cmd_mirror_link_ruleid,
8233                         (void *)&cmd_mirror_link_what,
8234                         (void *)&cmd_mirror_link_dstpool,
8235                         (void *)&cmd_mirror_link_poolid,
8236                         (void *)&cmd_mirror_link_on,
8237                         NULL,
8238                 },
8239 };
8240
8241 /* *** RESET VM MIRROR RULE *** */
8242 struct cmd_rm_mirror_rule_result {
8243         cmdline_fixed_string_t reset;
8244         cmdline_fixed_string_t port;
8245         portid_t port_id;
8246         cmdline_fixed_string_t mirror;
8247         uint8_t rule_id;
8248 };
8249
8250 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset =
8251         TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
8252                                  reset, "reset");
8253 cmdline_parse_token_string_t cmd_rm_mirror_rule_port =
8254         TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
8255                                 port, "port");
8256 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid =
8257         TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
8258                                 port_id, UINT16);
8259 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror =
8260         TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
8261                                 mirror, "mirror-rule");
8262 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid =
8263         TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
8264                                 rule_id, UINT8);
8265
8266 static void
8267 cmd_reset_mirror_rule_parsed(void *parsed_result,
8268                        __attribute__((unused)) struct cmdline *cl,
8269                        __attribute__((unused)) void *data)
8270 {
8271         int ret;
8272         struct cmd_set_mirror_link_result *res = parsed_result;
8273         /* check rule_id */
8274         ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id);
8275         if(ret < 0)
8276                 printf("mirror rule remove error: (%s)\n", strerror(-ret));
8277 }
8278
8279 cmdline_parse_inst_t cmd_reset_mirror_rule = {
8280                 .f = cmd_reset_mirror_rule_parsed,
8281                 .data = NULL,
8282                 .help_str = "reset port <port_id> mirror-rule <rule_id>",
8283                 .tokens = {
8284                         (void *)&cmd_rm_mirror_rule_reset,
8285                         (void *)&cmd_rm_mirror_rule_port,
8286                         (void *)&cmd_rm_mirror_rule_portid,
8287                         (void *)&cmd_rm_mirror_rule_mirror,
8288                         (void *)&cmd_rm_mirror_rule_ruleid,
8289                         NULL,
8290                 },
8291 };
8292
8293 /* ******************************************************************************** */
8294
8295 struct cmd_dump_result {
8296         cmdline_fixed_string_t dump;
8297 };
8298
8299 static void
8300 dump_struct_sizes(void)
8301 {
8302 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
8303         DUMP_SIZE(struct rte_mbuf);
8304         DUMP_SIZE(struct rte_mempool);
8305         DUMP_SIZE(struct rte_ring);
8306 #undef DUMP_SIZE
8307 }
8308
8309 static void cmd_dump_parsed(void *parsed_result,
8310                             __attribute__((unused)) struct cmdline *cl,
8311                             __attribute__((unused)) void *data)
8312 {
8313         struct cmd_dump_result *res = parsed_result;
8314
8315         if (!strcmp(res->dump, "dump_physmem"))
8316                 rte_dump_physmem_layout(stdout);
8317         else if (!strcmp(res->dump, "dump_memzone"))
8318                 rte_memzone_dump(stdout);
8319         else if (!strcmp(res->dump, "dump_struct_sizes"))
8320                 dump_struct_sizes();
8321         else if (!strcmp(res->dump, "dump_ring"))
8322                 rte_ring_list_dump(stdout);
8323         else if (!strcmp(res->dump, "dump_mempool"))
8324                 rte_mempool_list_dump(stdout);
8325         else if (!strcmp(res->dump, "dump_devargs"))
8326                 rte_eal_devargs_dump(stdout);
8327         else if (!strcmp(res->dump, "dump_log_types"))
8328                 rte_log_dump(stdout);
8329 }
8330
8331 cmdline_parse_token_string_t cmd_dump_dump =
8332         TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
8333                 "dump_physmem#"
8334                 "dump_memzone#"
8335                 "dump_struct_sizes#"
8336                 "dump_ring#"
8337                 "dump_mempool#"
8338                 "dump_devargs#"
8339                 "dump_log_types");
8340
8341 cmdline_parse_inst_t cmd_dump = {
8342         .f = cmd_dump_parsed,  /* function to call */
8343         .data = NULL,      /* 2nd arg of func */
8344         .help_str = "Dump status",
8345         .tokens = {        /* token list, NULL terminated */
8346                 (void *)&cmd_dump_dump,
8347                 NULL,
8348         },
8349 };
8350
8351 /* ******************************************************************************** */
8352
8353 struct cmd_dump_one_result {
8354         cmdline_fixed_string_t dump;
8355         cmdline_fixed_string_t name;
8356 };
8357
8358 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl,
8359                                 __attribute__((unused)) void *data)
8360 {
8361         struct cmd_dump_one_result *res = parsed_result;
8362
8363         if (!strcmp(res->dump, "dump_ring")) {
8364                 struct rte_ring *r;
8365                 r = rte_ring_lookup(res->name);
8366                 if (r == NULL) {
8367                         cmdline_printf(cl, "Cannot find ring\n");
8368                         return;
8369                 }
8370                 rte_ring_dump(stdout, r);
8371         } else if (!strcmp(res->dump, "dump_mempool")) {
8372                 struct rte_mempool *mp;
8373                 mp = rte_mempool_lookup(res->name);
8374                 if (mp == NULL) {
8375                         cmdline_printf(cl, "Cannot find mempool\n");
8376                         return;
8377                 }
8378                 rte_mempool_dump(stdout, mp);
8379         }
8380 }
8381
8382 cmdline_parse_token_string_t cmd_dump_one_dump =
8383         TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump,
8384                                  "dump_ring#dump_mempool");
8385
8386 cmdline_parse_token_string_t cmd_dump_one_name =
8387         TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL);
8388
8389 cmdline_parse_inst_t cmd_dump_one = {
8390         .f = cmd_dump_one_parsed,  /* function to call */
8391         .data = NULL,      /* 2nd arg of func */
8392         .help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool",
8393         .tokens = {        /* token list, NULL terminated */
8394                 (void *)&cmd_dump_one_dump,
8395                 (void *)&cmd_dump_one_name,
8396                 NULL,
8397         },
8398 };
8399
8400 /* *** Add/Del syn filter *** */
8401 struct cmd_syn_filter_result {
8402         cmdline_fixed_string_t filter;
8403         portid_t port_id;
8404         cmdline_fixed_string_t ops;
8405         cmdline_fixed_string_t priority;
8406         cmdline_fixed_string_t high;
8407         cmdline_fixed_string_t queue;
8408         uint16_t queue_id;
8409 };
8410
8411 static void
8412 cmd_syn_filter_parsed(void *parsed_result,
8413                         __attribute__((unused)) struct cmdline *cl,
8414                         __attribute__((unused)) void *data)
8415 {
8416         struct cmd_syn_filter_result *res = parsed_result;
8417         struct rte_eth_syn_filter syn_filter;
8418         int ret = 0;
8419
8420         ret = rte_eth_dev_filter_supported(res->port_id,
8421                                         RTE_ETH_FILTER_SYN);
8422         if (ret < 0) {
8423                 printf("syn filter is not supported on port %u.\n",
8424                                 res->port_id);
8425                 return;
8426         }
8427
8428         memset(&syn_filter, 0, sizeof(syn_filter));
8429
8430         if (!strcmp(res->ops, "add")) {
8431                 if (!strcmp(res->high, "high"))
8432                         syn_filter.hig_pri = 1;
8433                 else
8434                         syn_filter.hig_pri = 0;
8435
8436                 syn_filter.queue = res->queue_id;
8437                 ret = rte_eth_dev_filter_ctrl(res->port_id,
8438                                                 RTE_ETH_FILTER_SYN,
8439                                                 RTE_ETH_FILTER_ADD,
8440                                                 &syn_filter);
8441         } else
8442                 ret = rte_eth_dev_filter_ctrl(res->port_id,
8443                                                 RTE_ETH_FILTER_SYN,
8444                                                 RTE_ETH_FILTER_DELETE,
8445                                                 &syn_filter);
8446
8447         if (ret < 0)
8448                 printf("syn filter programming error: (%s)\n",
8449                                 strerror(-ret));
8450 }
8451
8452 cmdline_parse_token_string_t cmd_syn_filter_filter =
8453         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
8454         filter, "syn_filter");
8455 cmdline_parse_token_num_t cmd_syn_filter_port_id =
8456         TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result,
8457         port_id, UINT16);
8458 cmdline_parse_token_string_t cmd_syn_filter_ops =
8459         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
8460         ops, "add#del");
8461 cmdline_parse_token_string_t cmd_syn_filter_priority =
8462         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
8463                                 priority, "priority");
8464 cmdline_parse_token_string_t cmd_syn_filter_high =
8465         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
8466                                 high, "high#low");
8467 cmdline_parse_token_string_t cmd_syn_filter_queue =
8468         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
8469                                 queue, "queue");
8470 cmdline_parse_token_num_t cmd_syn_filter_queue_id =
8471         TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result,
8472                                 queue_id, UINT16);
8473
8474 cmdline_parse_inst_t cmd_syn_filter = {
8475         .f = cmd_syn_filter_parsed,
8476         .data = NULL,
8477         .help_str = "syn_filter <port_id> add|del priority high|low queue "
8478                 "<queue_id>: Add/Delete syn filter",
8479         .tokens = {
8480                 (void *)&cmd_syn_filter_filter,
8481                 (void *)&cmd_syn_filter_port_id,
8482                 (void *)&cmd_syn_filter_ops,
8483                 (void *)&cmd_syn_filter_priority,
8484                 (void *)&cmd_syn_filter_high,
8485                 (void *)&cmd_syn_filter_queue,
8486                 (void *)&cmd_syn_filter_queue_id,
8487                 NULL,
8488         },
8489 };
8490
8491 /* *** queue region set *** */
8492 struct cmd_queue_region_result {
8493         cmdline_fixed_string_t set;
8494         cmdline_fixed_string_t port;
8495         portid_t port_id;
8496         cmdline_fixed_string_t cmd;
8497         cmdline_fixed_string_t region;
8498         uint8_t  region_id;
8499         cmdline_fixed_string_t queue_start_index;
8500         uint8_t  queue_id;
8501         cmdline_fixed_string_t queue_num;
8502         uint8_t  queue_num_value;
8503 };
8504
8505 static void
8506 cmd_queue_region_parsed(void *parsed_result,
8507                         __attribute__((unused)) struct cmdline *cl,
8508                         __attribute__((unused)) void *data)
8509 {
8510         struct cmd_queue_region_result *res = parsed_result;
8511         int ret = -ENOTSUP;
8512 #ifdef RTE_LIBRTE_I40E_PMD
8513         struct rte_pmd_i40e_queue_region_conf region_conf;
8514         enum rte_pmd_i40e_queue_region_op op_type;
8515 #endif
8516
8517         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
8518                 return;
8519
8520 #ifdef RTE_LIBRTE_I40E_PMD
8521         memset(&region_conf, 0, sizeof(region_conf));
8522         op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_SET;
8523         region_conf.region_id = res->region_id;
8524         region_conf.queue_num = res->queue_num_value;
8525         region_conf.queue_start_index = res->queue_id;
8526
8527         ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
8528                                 op_type, &region_conf);
8529 #endif
8530
8531         switch (ret) {
8532         case 0:
8533                 break;
8534         case -ENOTSUP:
8535                 printf("function not implemented or supported\n");
8536                 break;
8537         default:
8538                 printf("queue region config error: (%s)\n", strerror(-ret));
8539         }
8540 }
8541
8542 cmdline_parse_token_string_t cmd_queue_region_set =
8543 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
8544                 set, "set");
8545 cmdline_parse_token_string_t cmd_queue_region_port =
8546         TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, port, "port");
8547 cmdline_parse_token_num_t cmd_queue_region_port_id =
8548         TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
8549                                 port_id, UINT16);
8550 cmdline_parse_token_string_t cmd_queue_region_cmd =
8551         TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
8552                                  cmd, "queue-region");
8553 cmdline_parse_token_string_t cmd_queue_region_id =
8554         TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
8555                                 region, "region_id");
8556 cmdline_parse_token_num_t cmd_queue_region_index =
8557         TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
8558                                 region_id, UINT8);
8559 cmdline_parse_token_string_t cmd_queue_region_queue_start_index =
8560         TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
8561                                 queue_start_index, "queue_start_index");
8562 cmdline_parse_token_num_t cmd_queue_region_queue_id =
8563         TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
8564                                 queue_id, UINT8);
8565 cmdline_parse_token_string_t cmd_queue_region_queue_num =
8566         TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
8567                                 queue_num, "queue_num");
8568 cmdline_parse_token_num_t cmd_queue_region_queue_num_value =
8569         TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
8570                                 queue_num_value, UINT8);
8571
8572 cmdline_parse_inst_t cmd_queue_region = {
8573         .f = cmd_queue_region_parsed,
8574         .data = NULL,
8575         .help_str = "set port <port_id> queue-region region_id <value> "
8576                 "queue_start_index <value> queue_num <value>: Set a queue region",
8577         .tokens = {
8578                 (void *)&cmd_queue_region_set,
8579                 (void *)&cmd_queue_region_port,
8580                 (void *)&cmd_queue_region_port_id,
8581                 (void *)&cmd_queue_region_cmd,
8582                 (void *)&cmd_queue_region_id,
8583                 (void *)&cmd_queue_region_index,
8584                 (void *)&cmd_queue_region_queue_start_index,
8585                 (void *)&cmd_queue_region_queue_id,
8586                 (void *)&cmd_queue_region_queue_num,
8587                 (void *)&cmd_queue_region_queue_num_value,
8588                 NULL,
8589         },
8590 };
8591
8592 /* *** queue region and flowtype set *** */
8593 struct cmd_region_flowtype_result {
8594         cmdline_fixed_string_t set;
8595         cmdline_fixed_string_t port;
8596         portid_t port_id;
8597         cmdline_fixed_string_t cmd;
8598         cmdline_fixed_string_t region;
8599         uint8_t  region_id;
8600         cmdline_fixed_string_t flowtype;
8601         uint8_t  flowtype_id;
8602 };
8603
8604 static void
8605 cmd_region_flowtype_parsed(void *parsed_result,
8606                         __attribute__((unused)) struct cmdline *cl,
8607                         __attribute__((unused)) void *data)
8608 {
8609         struct cmd_region_flowtype_result *res = parsed_result;
8610         int ret = -ENOTSUP;
8611 #ifdef RTE_LIBRTE_I40E_PMD
8612         struct rte_pmd_i40e_queue_region_conf region_conf;
8613         enum rte_pmd_i40e_queue_region_op op_type;
8614 #endif
8615
8616         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
8617                 return;
8618
8619 #ifdef RTE_LIBRTE_I40E_PMD
8620         memset(&region_conf, 0, sizeof(region_conf));
8621
8622         op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_FLOWTYPE_SET;
8623         region_conf.region_id = res->region_id;
8624         region_conf.hw_flowtype = res->flowtype_id;
8625
8626         ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
8627                         op_type, &region_conf);
8628 #endif
8629
8630         switch (ret) {
8631         case 0:
8632                 break;
8633         case -ENOTSUP:
8634                 printf("function not implemented or supported\n");
8635                 break;
8636         default:
8637                 printf("region flowtype config error: (%s)\n", strerror(-ret));
8638         }
8639 }
8640
8641 cmdline_parse_token_string_t cmd_region_flowtype_set =
8642 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
8643                                 set, "set");
8644 cmdline_parse_token_string_t cmd_region_flowtype_port =
8645         TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
8646                                 port, "port");
8647 cmdline_parse_token_num_t cmd_region_flowtype_port_index =
8648         TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
8649                                 port_id, UINT16);
8650 cmdline_parse_token_string_t cmd_region_flowtype_cmd =
8651         TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
8652                                 cmd, "queue-region");
8653 cmdline_parse_token_string_t cmd_region_flowtype_index =
8654         TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
8655                                 region, "region_id");
8656 cmdline_parse_token_num_t cmd_region_flowtype_id =
8657         TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
8658                                 region_id, UINT8);
8659 cmdline_parse_token_string_t cmd_region_flowtype_flow_index =
8660         TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
8661                                 flowtype, "flowtype");
8662 cmdline_parse_token_num_t cmd_region_flowtype_flow_id =
8663         TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
8664                                 flowtype_id, UINT8);
8665 cmdline_parse_inst_t cmd_region_flowtype = {
8666         .f = cmd_region_flowtype_parsed,
8667         .data = NULL,
8668         .help_str = "set port <port_id> queue-region region_id <value> "
8669                 "flowtype <value>: Set a flowtype region index",
8670         .tokens = {
8671                 (void *)&cmd_region_flowtype_set,
8672                 (void *)&cmd_region_flowtype_port,
8673                 (void *)&cmd_region_flowtype_port_index,
8674                 (void *)&cmd_region_flowtype_cmd,
8675                 (void *)&cmd_region_flowtype_index,
8676                 (void *)&cmd_region_flowtype_id,
8677                 (void *)&cmd_region_flowtype_flow_index,
8678                 (void *)&cmd_region_flowtype_flow_id,
8679                 NULL,
8680         },
8681 };
8682
8683 /* *** User Priority (UP) to queue region (region_id) set *** */
8684 struct cmd_user_priority_region_result {
8685         cmdline_fixed_string_t set;
8686         cmdline_fixed_string_t port;
8687         portid_t port_id;
8688         cmdline_fixed_string_t cmd;
8689         cmdline_fixed_string_t user_priority;
8690         uint8_t  user_priority_id;
8691         cmdline_fixed_string_t region;
8692         uint8_t  region_id;
8693 };
8694
8695 static void
8696 cmd_user_priority_region_parsed(void *parsed_result,
8697                         __attribute__((unused)) struct cmdline *cl,
8698                         __attribute__((unused)) void *data)
8699 {
8700         struct cmd_user_priority_region_result *res = parsed_result;
8701         int ret = -ENOTSUP;
8702 #ifdef RTE_LIBRTE_I40E_PMD
8703         struct rte_pmd_i40e_queue_region_conf region_conf;
8704         enum rte_pmd_i40e_queue_region_op op_type;
8705 #endif
8706
8707         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
8708                 return;
8709
8710 #ifdef RTE_LIBRTE_I40E_PMD
8711         memset(&region_conf, 0, sizeof(region_conf));
8712         op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_USER_PRIORITY_SET;
8713         region_conf.user_priority = res->user_priority_id;
8714         region_conf.region_id = res->region_id;
8715
8716         ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
8717                                 op_type, &region_conf);
8718 #endif
8719
8720         switch (ret) {
8721         case 0:
8722                 break;
8723         case -ENOTSUP:
8724                 printf("function not implemented or supported\n");
8725                 break;
8726         default:
8727                 printf("user_priority region config error: (%s)\n",
8728                                 strerror(-ret));
8729         }
8730 }
8731
8732 cmdline_parse_token_string_t cmd_user_priority_region_set =
8733         TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
8734                                 set, "set");
8735 cmdline_parse_token_string_t cmd_user_priority_region_port =
8736         TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
8737                                 port, "port");
8738 cmdline_parse_token_num_t cmd_user_priority_region_port_index =
8739         TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
8740                                 port_id, UINT16);
8741 cmdline_parse_token_string_t cmd_user_priority_region_cmd =
8742         TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
8743                                 cmd, "queue-region");
8744 cmdline_parse_token_string_t cmd_user_priority_region_UP =
8745         TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
8746                                 user_priority, "UP");
8747 cmdline_parse_token_num_t cmd_user_priority_region_UP_id =
8748         TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
8749                                 user_priority_id, UINT8);
8750 cmdline_parse_token_string_t cmd_user_priority_region_region =
8751         TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
8752                                 region, "region_id");
8753 cmdline_parse_token_num_t cmd_user_priority_region_region_id =
8754         TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
8755                                 region_id, UINT8);
8756
8757 cmdline_parse_inst_t cmd_user_priority_region = {
8758         .f = cmd_user_priority_region_parsed,
8759         .data = NULL,
8760         .help_str = "set port <port_id> queue-region UP <value> "
8761                 "region_id <value>: Set the mapping of User Priority (UP) "
8762                 "to queue region (region_id) ",
8763         .tokens = {
8764                 (void *)&cmd_user_priority_region_set,
8765                 (void *)&cmd_user_priority_region_port,
8766                 (void *)&cmd_user_priority_region_port_index,
8767                 (void *)&cmd_user_priority_region_cmd,
8768                 (void *)&cmd_user_priority_region_UP,
8769                 (void *)&cmd_user_priority_region_UP_id,
8770                 (void *)&cmd_user_priority_region_region,
8771                 (void *)&cmd_user_priority_region_region_id,
8772                 NULL,
8773         },
8774 };
8775
8776 /* *** flush all queue region related configuration *** */
8777 struct cmd_flush_queue_region_result {
8778         cmdline_fixed_string_t set;
8779         cmdline_fixed_string_t port;
8780         portid_t port_id;
8781         cmdline_fixed_string_t cmd;
8782         cmdline_fixed_string_t flush;
8783         cmdline_fixed_string_t what;
8784 };
8785
8786 static void
8787 cmd_flush_queue_region_parsed(void *parsed_result,
8788                         __attribute__((unused)) struct cmdline *cl,
8789                         __attribute__((unused)) void *data)
8790 {
8791         struct cmd_flush_queue_region_result *res = parsed_result;
8792         int ret = -ENOTSUP;
8793 #ifdef RTE_LIBRTE_I40E_PMD
8794         struct rte_pmd_i40e_queue_region_conf region_conf;
8795         enum rte_pmd_i40e_queue_region_op op_type;
8796 #endif
8797
8798         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
8799                 return;
8800
8801 #ifdef RTE_LIBRTE_I40E_PMD
8802         memset(&region_conf, 0, sizeof(region_conf));
8803
8804         if (strcmp(res->what, "on") == 0)
8805                 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_ON;
8806         else
8807                 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_OFF;
8808
8809         ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
8810                                 op_type, &region_conf);
8811 #endif
8812
8813         switch (ret) {
8814         case 0:
8815                 break;
8816         case -ENOTSUP:
8817                 printf("function not implemented or supported\n");
8818                 break;
8819         default:
8820                 printf("queue region config flush error: (%s)\n",
8821                                 strerror(-ret));
8822         }
8823 }
8824
8825 cmdline_parse_token_string_t cmd_flush_queue_region_set =
8826         TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
8827                                 set, "set");
8828 cmdline_parse_token_string_t cmd_flush_queue_region_port =
8829         TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
8830                                 port, "port");
8831 cmdline_parse_token_num_t cmd_flush_queue_region_port_index =
8832         TOKEN_NUM_INITIALIZER(struct cmd_flush_queue_region_result,
8833                                 port_id, UINT16);
8834 cmdline_parse_token_string_t cmd_flush_queue_region_cmd =
8835         TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
8836                                 cmd, "queue-region");
8837 cmdline_parse_token_string_t cmd_flush_queue_region_flush =
8838         TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
8839                                 flush, "flush");
8840 cmdline_parse_token_string_t cmd_flush_queue_region_what =
8841         TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
8842                                 what, "on#off");
8843
8844 cmdline_parse_inst_t cmd_flush_queue_region = {
8845         .f = cmd_flush_queue_region_parsed,
8846         .data = NULL,
8847         .help_str = "set port <port_id> queue-region flush on|off"
8848                 ": flush all queue region related configuration",
8849         .tokens = {
8850                 (void *)&cmd_flush_queue_region_set,
8851                 (void *)&cmd_flush_queue_region_port,
8852                 (void *)&cmd_flush_queue_region_port_index,
8853                 (void *)&cmd_flush_queue_region_cmd,
8854                 (void *)&cmd_flush_queue_region_flush,
8855                 (void *)&cmd_flush_queue_region_what,
8856                 NULL,
8857         },
8858 };
8859
8860 /* *** get all queue region related configuration info *** */
8861 struct cmd_show_queue_region_info {
8862         cmdline_fixed_string_t show;
8863         cmdline_fixed_string_t port;
8864         portid_t port_id;
8865         cmdline_fixed_string_t cmd;
8866 };
8867
8868 static void
8869 cmd_show_queue_region_info_parsed(void *parsed_result,
8870                         __attribute__((unused)) struct cmdline *cl,
8871                         __attribute__((unused)) void *data)
8872 {
8873         struct cmd_show_queue_region_info *res = parsed_result;
8874         int ret = -ENOTSUP;
8875 #ifdef RTE_LIBRTE_I40E_PMD
8876         struct rte_pmd_i40e_queue_regions rte_pmd_regions;
8877         enum rte_pmd_i40e_queue_region_op op_type;
8878 #endif
8879
8880         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
8881                 return;
8882
8883 #ifdef RTE_LIBRTE_I40E_PMD
8884         memset(&rte_pmd_regions, 0, sizeof(rte_pmd_regions));
8885
8886         op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_INFO_GET;
8887
8888         ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
8889                                         op_type, &rte_pmd_regions);
8890
8891         port_queue_region_info_display(res->port_id, &rte_pmd_regions);
8892 #endif
8893
8894         switch (ret) {
8895         case 0:
8896                 break;
8897         case -ENOTSUP:
8898                 printf("function not implemented or supported\n");
8899                 break;
8900         default:
8901                 printf("queue region config info show error: (%s)\n",
8902                                 strerror(-ret));
8903         }
8904 }
8905
8906 cmdline_parse_token_string_t cmd_show_queue_region_info_get =
8907 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
8908                                 show, "show");
8909 cmdline_parse_token_string_t cmd_show_queue_region_info_port =
8910         TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
8911                                 port, "port");
8912 cmdline_parse_token_num_t cmd_show_queue_region_info_port_index =
8913         TOKEN_NUM_INITIALIZER(struct cmd_show_queue_region_info,
8914                                 port_id, UINT16);
8915 cmdline_parse_token_string_t cmd_show_queue_region_info_cmd =
8916         TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
8917                                 cmd, "queue-region");
8918
8919 cmdline_parse_inst_t cmd_show_queue_region_info_all = {
8920         .f = cmd_show_queue_region_info_parsed,
8921         .data = NULL,
8922         .help_str = "show port <port_id> queue-region"
8923                 ": show all queue region related configuration info",
8924         .tokens = {
8925                 (void *)&cmd_show_queue_region_info_get,
8926                 (void *)&cmd_show_queue_region_info_port,
8927                 (void *)&cmd_show_queue_region_info_port_index,
8928                 (void *)&cmd_show_queue_region_info_cmd,
8929                 NULL,
8930         },
8931 };
8932
8933 /* *** ADD/REMOVE A 2tuple FILTER *** */
8934 struct cmd_2tuple_filter_result {
8935         cmdline_fixed_string_t filter;
8936         portid_t port_id;
8937         cmdline_fixed_string_t ops;
8938         cmdline_fixed_string_t dst_port;
8939         uint16_t dst_port_value;
8940         cmdline_fixed_string_t protocol;
8941         uint8_t protocol_value;
8942         cmdline_fixed_string_t mask;
8943         uint8_t  mask_value;
8944         cmdline_fixed_string_t tcp_flags;
8945         uint8_t tcp_flags_value;
8946         cmdline_fixed_string_t priority;
8947         uint8_t  priority_value;
8948         cmdline_fixed_string_t queue;
8949         uint16_t  queue_id;
8950 };
8951
8952 static void
8953 cmd_2tuple_filter_parsed(void *parsed_result,
8954                         __attribute__((unused)) struct cmdline *cl,
8955                         __attribute__((unused)) void *data)
8956 {
8957         struct rte_eth_ntuple_filter filter;
8958         struct cmd_2tuple_filter_result *res = parsed_result;
8959         int ret = 0;
8960
8961         ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE);
8962         if (ret < 0) {
8963                 printf("ntuple filter is not supported on port %u.\n",
8964                         res->port_id);
8965                 return;
8966         }
8967
8968         memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter));
8969
8970         filter.flags = RTE_2TUPLE_FLAGS;
8971         filter.dst_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0;
8972         filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0;
8973         filter.proto = res->protocol_value;
8974         filter.priority = res->priority_value;
8975         if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) {
8976                 printf("nonzero tcp_flags is only meaningful"
8977                         " when protocol is TCP.\n");
8978                 return;
8979         }
8980         if (res->tcp_flags_value > TCP_FLAG_ALL) {
8981                 printf("invalid TCP flags.\n");
8982                 return;
8983         }
8984
8985         if (res->tcp_flags_value != 0) {
8986                 filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG;
8987                 filter.tcp_flags = res->tcp_flags_value;
8988         }
8989
8990         /* need convert to big endian. */
8991         filter.dst_port = rte_cpu_to_be_16(res->dst_port_value);
8992         filter.queue = res->queue_id;
8993
8994         if (!strcmp(res->ops, "add"))
8995                 ret = rte_eth_dev_filter_ctrl(res->port_id,
8996                                 RTE_ETH_FILTER_NTUPLE,
8997                                 RTE_ETH_FILTER_ADD,
8998                                 &filter);
8999         else
9000                 ret = rte_eth_dev_filter_ctrl(res->port_id,
9001                                 RTE_ETH_FILTER_NTUPLE,
9002                                 RTE_ETH_FILTER_DELETE,
9003                                 &filter);
9004         if (ret < 0)
9005                 printf("2tuple filter programming error: (%s)\n",
9006                         strerror(-ret));
9007
9008 }
9009
9010 cmdline_parse_token_string_t cmd_2tuple_filter_filter =
9011         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
9012                                  filter, "2tuple_filter");
9013 cmdline_parse_token_num_t cmd_2tuple_filter_port_id =
9014         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
9015                                 port_id, UINT16);
9016 cmdline_parse_token_string_t cmd_2tuple_filter_ops =
9017         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
9018                                  ops, "add#del");
9019 cmdline_parse_token_string_t cmd_2tuple_filter_dst_port =
9020         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
9021                                 dst_port, "dst_port");
9022 cmdline_parse_token_num_t cmd_2tuple_filter_dst_port_value =
9023         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
9024                                 dst_port_value, UINT16);
9025 cmdline_parse_token_string_t cmd_2tuple_filter_protocol =
9026         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
9027                                 protocol, "protocol");
9028 cmdline_parse_token_num_t cmd_2tuple_filter_protocol_value =
9029         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
9030                                 protocol_value, UINT8);
9031 cmdline_parse_token_string_t cmd_2tuple_filter_mask =
9032         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
9033                                 mask, "mask");
9034 cmdline_parse_token_num_t cmd_2tuple_filter_mask_value =
9035         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
9036                                 mask_value, INT8);
9037 cmdline_parse_token_string_t cmd_2tuple_filter_tcp_flags =
9038         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
9039                                 tcp_flags, "tcp_flags");
9040 cmdline_parse_token_num_t cmd_2tuple_filter_tcp_flags_value =
9041         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
9042                                 tcp_flags_value, UINT8);
9043 cmdline_parse_token_string_t cmd_2tuple_filter_priority =
9044         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
9045                                 priority, "priority");
9046 cmdline_parse_token_num_t cmd_2tuple_filter_priority_value =
9047         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
9048                                 priority_value, UINT8);
9049 cmdline_parse_token_string_t cmd_2tuple_filter_queue =
9050         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
9051                                 queue, "queue");
9052 cmdline_parse_token_num_t cmd_2tuple_filter_queue_id =
9053         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
9054                                 queue_id, UINT16);
9055
9056 cmdline_parse_inst_t cmd_2tuple_filter = {
9057         .f = cmd_2tuple_filter_parsed,
9058         .data = NULL,
9059         .help_str = "2tuple_filter <port_id> add|del dst_port <value> protocol "
9060                 "<value> mask <value> tcp_flags <value> priority <value> queue "
9061                 "<queue_id>: Add a 2tuple filter",
9062         .tokens = {
9063                 (void *)&cmd_2tuple_filter_filter,
9064                 (void *)&cmd_2tuple_filter_port_id,
9065                 (void *)&cmd_2tuple_filter_ops,
9066                 (void *)&cmd_2tuple_filter_dst_port,
9067                 (void *)&cmd_2tuple_filter_dst_port_value,
9068                 (void *)&cmd_2tuple_filter_protocol,
9069                 (void *)&cmd_2tuple_filter_protocol_value,
9070                 (void *)&cmd_2tuple_filter_mask,
9071                 (void *)&cmd_2tuple_filter_mask_value,
9072                 (void *)&cmd_2tuple_filter_tcp_flags,
9073                 (void *)&cmd_2tuple_filter_tcp_flags_value,
9074                 (void *)&cmd_2tuple_filter_priority,
9075                 (void *)&cmd_2tuple_filter_priority_value,
9076                 (void *)&cmd_2tuple_filter_queue,
9077                 (void *)&cmd_2tuple_filter_queue_id,
9078                 NULL,
9079         },
9080 };
9081
9082 /* *** ADD/REMOVE A 5tuple FILTER *** */
9083 struct cmd_5tuple_filter_result {
9084         cmdline_fixed_string_t filter;
9085         portid_t port_id;
9086         cmdline_fixed_string_t ops;
9087         cmdline_fixed_string_t dst_ip;
9088         cmdline_ipaddr_t dst_ip_value;
9089         cmdline_fixed_string_t src_ip;
9090         cmdline_ipaddr_t src_ip_value;
9091         cmdline_fixed_string_t dst_port;
9092         uint16_t dst_port_value;
9093         cmdline_fixed_string_t src_port;
9094         uint16_t src_port_value;
9095         cmdline_fixed_string_t protocol;
9096         uint8_t protocol_value;
9097         cmdline_fixed_string_t mask;
9098         uint8_t  mask_value;
9099         cmdline_fixed_string_t tcp_flags;
9100         uint8_t tcp_flags_value;
9101         cmdline_fixed_string_t priority;
9102         uint8_t  priority_value;
9103         cmdline_fixed_string_t queue;
9104         uint16_t  queue_id;
9105 };
9106
9107 static void
9108 cmd_5tuple_filter_parsed(void *parsed_result,
9109                         __attribute__((unused)) struct cmdline *cl,
9110                         __attribute__((unused)) void *data)
9111 {
9112         struct rte_eth_ntuple_filter filter;
9113         struct cmd_5tuple_filter_result *res = parsed_result;
9114         int ret = 0;
9115
9116         ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE);
9117         if (ret < 0) {
9118                 printf("ntuple filter is not supported on port %u.\n",
9119                         res->port_id);
9120                 return;
9121         }
9122
9123         memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter));
9124
9125         filter.flags = RTE_5TUPLE_FLAGS;
9126         filter.dst_ip_mask = (res->mask_value & 0x10) ? UINT32_MAX : 0;
9127         filter.src_ip_mask = (res->mask_value & 0x08) ? UINT32_MAX : 0;
9128         filter.dst_port_mask = (res->mask_value & 0x04) ? UINT16_MAX : 0;
9129         filter.src_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0;
9130         filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0;
9131         filter.proto = res->protocol_value;
9132         filter.priority = res->priority_value;
9133         if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) {
9134                 printf("nonzero tcp_flags is only meaningful"
9135                         " when protocol is TCP.\n");
9136                 return;
9137         }
9138         if (res->tcp_flags_value > TCP_FLAG_ALL) {
9139                 printf("invalid TCP flags.\n");
9140                 return;
9141         }
9142
9143         if (res->tcp_flags_value != 0) {
9144                 filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG;
9145                 filter.tcp_flags = res->tcp_flags_value;
9146         }
9147
9148         if (res->dst_ip_value.family == AF_INET)
9149                 /* no need to convert, already big endian. */
9150                 filter.dst_ip = res->dst_ip_value.addr.ipv4.s_addr;
9151         else {
9152                 if (filter.dst_ip_mask == 0) {
9153                         printf("can not support ipv6 involved compare.\n");
9154                         return;
9155                 }
9156                 filter.dst_ip = 0;
9157         }
9158
9159         if (res->src_ip_value.family == AF_INET)
9160                 /* no need to convert, already big endian. */
9161                 filter.src_ip = res->src_ip_value.addr.ipv4.s_addr;
9162         else {
9163                 if (filter.src_ip_mask == 0) {
9164                         printf("can not support ipv6 involved compare.\n");
9165                         return;
9166                 }
9167                 filter.src_ip = 0;
9168         }
9169         /* need convert to big endian. */
9170         filter.dst_port = rte_cpu_to_be_16(res->dst_port_value);
9171         filter.src_port = rte_cpu_to_be_16(res->src_port_value);
9172         filter.queue = res->queue_id;
9173
9174         if (!strcmp(res->ops, "add"))
9175                 ret = rte_eth_dev_filter_ctrl(res->port_id,
9176                                 RTE_ETH_FILTER_NTUPLE,
9177                                 RTE_ETH_FILTER_ADD,
9178                                 &filter);
9179         else
9180                 ret = rte_eth_dev_filter_ctrl(res->port_id,
9181                                 RTE_ETH_FILTER_NTUPLE,
9182                                 RTE_ETH_FILTER_DELETE,
9183                                 &filter);
9184         if (ret < 0)
9185                 printf("5tuple filter programming error: (%s)\n",
9186                         strerror(-ret));
9187 }
9188
9189 cmdline_parse_token_string_t cmd_5tuple_filter_filter =
9190         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9191                                  filter, "5tuple_filter");
9192 cmdline_parse_token_num_t cmd_5tuple_filter_port_id =
9193         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
9194                                 port_id, UINT16);
9195 cmdline_parse_token_string_t cmd_5tuple_filter_ops =
9196         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9197                                  ops, "add#del");
9198 cmdline_parse_token_string_t cmd_5tuple_filter_dst_ip =
9199         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9200                                 dst_ip, "dst_ip");
9201 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_dst_ip_value =
9202         TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result,
9203                                 dst_ip_value);
9204 cmdline_parse_token_string_t cmd_5tuple_filter_src_ip =
9205         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9206                                 src_ip, "src_ip");
9207 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_src_ip_value =
9208         TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result,
9209                                 src_ip_value);
9210 cmdline_parse_token_string_t cmd_5tuple_filter_dst_port =
9211         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9212                                 dst_port, "dst_port");
9213 cmdline_parse_token_num_t cmd_5tuple_filter_dst_port_value =
9214         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
9215                                 dst_port_value, UINT16);
9216 cmdline_parse_token_string_t cmd_5tuple_filter_src_port =
9217         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9218                                 src_port, "src_port");
9219 cmdline_parse_token_num_t cmd_5tuple_filter_src_port_value =
9220         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
9221                                 src_port_value, UINT16);
9222 cmdline_parse_token_string_t cmd_5tuple_filter_protocol =
9223         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9224                                 protocol, "protocol");
9225 cmdline_parse_token_num_t cmd_5tuple_filter_protocol_value =
9226         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
9227                                 protocol_value, UINT8);
9228 cmdline_parse_token_string_t cmd_5tuple_filter_mask =
9229         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9230                                 mask, "mask");
9231 cmdline_parse_token_num_t cmd_5tuple_filter_mask_value =
9232         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
9233                                 mask_value, INT8);
9234 cmdline_parse_token_string_t cmd_5tuple_filter_tcp_flags =
9235         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9236                                 tcp_flags, "tcp_flags");
9237 cmdline_parse_token_num_t cmd_5tuple_filter_tcp_flags_value =
9238         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
9239                                 tcp_flags_value, UINT8);
9240 cmdline_parse_token_string_t cmd_5tuple_filter_priority =
9241         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9242                                 priority, "priority");
9243 cmdline_parse_token_num_t cmd_5tuple_filter_priority_value =
9244         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
9245                                 priority_value, UINT8);
9246 cmdline_parse_token_string_t cmd_5tuple_filter_queue =
9247         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
9248                                 queue, "queue");
9249 cmdline_parse_token_num_t cmd_5tuple_filter_queue_id =
9250         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
9251                                 queue_id, UINT16);
9252
9253 cmdline_parse_inst_t cmd_5tuple_filter = {
9254         .f = cmd_5tuple_filter_parsed,
9255         .data = NULL,
9256         .help_str = "5tuple_filter <port_id> add|del dst_ip <value> "
9257                 "src_ip <value> dst_port <value> src_port <value> "
9258                 "protocol <value>  mask <value> tcp_flags <value> "
9259                 "priority <value> queue <queue_id>: Add/Del a 5tuple filter",
9260         .tokens = {
9261                 (void *)&cmd_5tuple_filter_filter,
9262                 (void *)&cmd_5tuple_filter_port_id,
9263                 (void *)&cmd_5tuple_filter_ops,
9264                 (void *)&cmd_5tuple_filter_dst_ip,
9265                 (void *)&cmd_5tuple_filter_dst_ip_value,
9266                 (void *)&cmd_5tuple_filter_src_ip,
9267                 (void *)&cmd_5tuple_filter_src_ip_value,
9268                 (void *)&cmd_5tuple_filter_dst_port,
9269                 (void *)&cmd_5tuple_filter_dst_port_value,
9270                 (void *)&cmd_5tuple_filter_src_port,
9271                 (void *)&cmd_5tuple_filter_src_port_value,
9272                 (void *)&cmd_5tuple_filter_protocol,
9273                 (void *)&cmd_5tuple_filter_protocol_value,
9274                 (void *)&cmd_5tuple_filter_mask,
9275                 (void *)&cmd_5tuple_filter_mask_value,
9276                 (void *)&cmd_5tuple_filter_tcp_flags,
9277                 (void *)&cmd_5tuple_filter_tcp_flags_value,
9278                 (void *)&cmd_5tuple_filter_priority,
9279                 (void *)&cmd_5tuple_filter_priority_value,
9280                 (void *)&cmd_5tuple_filter_queue,
9281                 (void *)&cmd_5tuple_filter_queue_id,
9282                 NULL,
9283         },
9284 };
9285
9286 /* *** ADD/REMOVE A flex FILTER *** */
9287 struct cmd_flex_filter_result {
9288         cmdline_fixed_string_t filter;
9289         cmdline_fixed_string_t ops;
9290         portid_t port_id;
9291         cmdline_fixed_string_t len;
9292         uint8_t len_value;
9293         cmdline_fixed_string_t bytes;
9294         cmdline_fixed_string_t bytes_value;
9295         cmdline_fixed_string_t mask;
9296         cmdline_fixed_string_t mask_value;
9297         cmdline_fixed_string_t priority;
9298         uint8_t priority_value;
9299         cmdline_fixed_string_t queue;
9300         uint16_t queue_id;
9301 };
9302
9303 static int xdigit2val(unsigned char c)
9304 {
9305         int val;
9306         if (isdigit(c))
9307                 val = c - '0';
9308         else if (isupper(c))
9309                 val = c - 'A' + 10;
9310         else
9311                 val = c - 'a' + 10;
9312         return val;
9313 }
9314
9315 static void
9316 cmd_flex_filter_parsed(void *parsed_result,
9317                           __attribute__((unused)) struct cmdline *cl,
9318                           __attribute__((unused)) void *data)
9319 {
9320         int ret = 0;
9321         struct rte_eth_flex_filter filter;
9322         struct cmd_flex_filter_result *res = parsed_result;
9323         char *bytes_ptr, *mask_ptr;
9324         uint16_t len, i, j = 0;
9325         char c;
9326         int val;
9327         uint8_t byte = 0;
9328
9329         if (res->len_value > RTE_FLEX_FILTER_MAXLEN) {
9330                 printf("the len exceed the max length 128\n");
9331                 return;
9332         }
9333         memset(&filter, 0, sizeof(struct rte_eth_flex_filter));
9334         filter.len = res->len_value;
9335         filter.priority = res->priority_value;
9336         filter.queue = res->queue_id;
9337         bytes_ptr = res->bytes_value;
9338         mask_ptr = res->mask_value;
9339
9340          /* translate bytes string to array. */
9341         if (bytes_ptr[0] == '0' && ((bytes_ptr[1] == 'x') ||
9342                 (bytes_ptr[1] == 'X')))
9343                 bytes_ptr += 2;
9344         len = strnlen(bytes_ptr, res->len_value * 2);
9345         if (len == 0 || (len % 8 != 0)) {
9346                 printf("please check len and bytes input\n");
9347                 return;
9348         }
9349         for (i = 0; i < len; i++) {
9350                 c = bytes_ptr[i];
9351                 if (isxdigit(c) == 0) {
9352                         /* invalid characters. */
9353                         printf("invalid input\n");
9354                         return;
9355                 }
9356                 val = xdigit2val(c);
9357                 if (i % 2) {
9358                         byte |= val;
9359                         filter.bytes[j] = byte;
9360                         printf("bytes[%d]:%02x ", j, filter.bytes[j]);
9361                         j++;
9362                         byte = 0;
9363                 } else
9364                         byte |= val << 4;
9365         }
9366         printf("\n");
9367          /* translate mask string to uint8_t array. */
9368         if (mask_ptr[0] == '0' && ((mask_ptr[1] == 'x') ||
9369                 (mask_ptr[1] == 'X')))
9370                 mask_ptr += 2;
9371         len = strnlen(mask_ptr, (res->len_value + 3) / 4);
9372         if (len == 0) {
9373                 printf("invalid input\n");
9374                 return;
9375         }
9376         j = 0;
9377         byte = 0;
9378         for (i = 0; i < len; i++) {
9379                 c = mask_ptr[i];
9380                 if (isxdigit(c) == 0) {
9381                         /* invalid characters. */
9382                         printf("invalid input\n");
9383                         return;
9384                 }
9385                 val = xdigit2val(c);
9386                 if (i % 2) {
9387                         byte |= val;
9388                         filter.mask[j] = byte;
9389                         printf("mask[%d]:%02x ", j, filter.mask[j]);
9390                         j++;
9391                         byte = 0;
9392                 } else
9393                         byte |= val << 4;
9394         }
9395         printf("\n");
9396
9397         if (!strcmp(res->ops, "add"))
9398                 ret = rte_eth_dev_filter_ctrl(res->port_id,
9399                                 RTE_ETH_FILTER_FLEXIBLE,
9400                                 RTE_ETH_FILTER_ADD,
9401                                 &filter);
9402         else
9403                 ret = rte_eth_dev_filter_ctrl(res->port_id,
9404                                 RTE_ETH_FILTER_FLEXIBLE,
9405                                 RTE_ETH_FILTER_DELETE,
9406                                 &filter);
9407
9408         if (ret < 0)
9409                 printf("flex filter setting error: (%s)\n", strerror(-ret));
9410 }
9411
9412 cmdline_parse_token_string_t cmd_flex_filter_filter =
9413         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9414                                 filter, "flex_filter");
9415 cmdline_parse_token_num_t cmd_flex_filter_port_id =
9416         TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
9417                                 port_id, UINT16);
9418 cmdline_parse_token_string_t cmd_flex_filter_ops =
9419         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9420                                 ops, "add#del");
9421 cmdline_parse_token_string_t cmd_flex_filter_len =
9422         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9423                                 len, "len");
9424 cmdline_parse_token_num_t cmd_flex_filter_len_value =
9425         TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
9426                                 len_value, UINT8);
9427 cmdline_parse_token_string_t cmd_flex_filter_bytes =
9428         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9429                                 bytes, "bytes");
9430 cmdline_parse_token_string_t cmd_flex_filter_bytes_value =
9431         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9432                                 bytes_value, NULL);
9433 cmdline_parse_token_string_t cmd_flex_filter_mask =
9434         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9435                                 mask, "mask");
9436 cmdline_parse_token_string_t cmd_flex_filter_mask_value =
9437         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9438                                 mask_value, NULL);
9439 cmdline_parse_token_string_t cmd_flex_filter_priority =
9440         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9441                                 priority, "priority");
9442 cmdline_parse_token_num_t cmd_flex_filter_priority_value =
9443         TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
9444                                 priority_value, UINT8);
9445 cmdline_parse_token_string_t cmd_flex_filter_queue =
9446         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
9447                                 queue, "queue");
9448 cmdline_parse_token_num_t cmd_flex_filter_queue_id =
9449         TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
9450                                 queue_id, UINT16);
9451 cmdline_parse_inst_t cmd_flex_filter = {
9452         .f = cmd_flex_filter_parsed,
9453         .data = NULL,
9454         .help_str = "flex_filter <port_id> add|del len <value> bytes "
9455                 "<value> mask <value> priority <value> queue <queue_id>: "
9456                 "Add/Del a flex filter",
9457         .tokens = {
9458                 (void *)&cmd_flex_filter_filter,
9459                 (void *)&cmd_flex_filter_port_id,
9460                 (void *)&cmd_flex_filter_ops,
9461                 (void *)&cmd_flex_filter_len,
9462                 (void *)&cmd_flex_filter_len_value,
9463                 (void *)&cmd_flex_filter_bytes,
9464                 (void *)&cmd_flex_filter_bytes_value,
9465                 (void *)&cmd_flex_filter_mask,
9466                 (void *)&cmd_flex_filter_mask_value,
9467                 (void *)&cmd_flex_filter_priority,
9468                 (void *)&cmd_flex_filter_priority_value,
9469                 (void *)&cmd_flex_filter_queue,
9470                 (void *)&cmd_flex_filter_queue_id,
9471                 NULL,
9472         },
9473 };
9474
9475 /* *** Filters Control *** */
9476
9477 /* *** deal with ethertype filter *** */
9478 struct cmd_ethertype_filter_result {
9479         cmdline_fixed_string_t filter;
9480         portid_t port_id;
9481         cmdline_fixed_string_t ops;
9482         cmdline_fixed_string_t mac;
9483         struct ether_addr mac_addr;
9484         cmdline_fixed_string_t ethertype;
9485         uint16_t ethertype_value;
9486         cmdline_fixed_string_t drop;
9487         cmdline_fixed_string_t queue;
9488         uint16_t  queue_id;
9489 };
9490
9491 cmdline_parse_token_string_t cmd_ethertype_filter_filter =
9492         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
9493                                  filter, "ethertype_filter");
9494 cmdline_parse_token_num_t cmd_ethertype_filter_port_id =
9495         TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
9496                               port_id, UINT16);
9497 cmdline_parse_token_string_t cmd_ethertype_filter_ops =
9498         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
9499                                  ops, "add#del");
9500 cmdline_parse_token_string_t cmd_ethertype_filter_mac =
9501         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
9502                                  mac, "mac_addr#mac_ignr");
9503 cmdline_parse_token_etheraddr_t cmd_ethertype_filter_mac_addr =
9504         TOKEN_ETHERADDR_INITIALIZER(struct cmd_ethertype_filter_result,
9505                                      mac_addr);
9506 cmdline_parse_token_string_t cmd_ethertype_filter_ethertype =
9507         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
9508                                  ethertype, "ethertype");
9509 cmdline_parse_token_num_t cmd_ethertype_filter_ethertype_value =
9510         TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
9511                               ethertype_value, UINT16);
9512 cmdline_parse_token_string_t cmd_ethertype_filter_drop =
9513         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
9514                                  drop, "drop#fwd");
9515 cmdline_parse_token_string_t cmd_ethertype_filter_queue =
9516         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
9517                                  queue, "queue");
9518 cmdline_parse_token_num_t cmd_ethertype_filter_queue_id =
9519         TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
9520                               queue_id, UINT16);
9521
9522 static void
9523 cmd_ethertype_filter_parsed(void *parsed_result,
9524                           __attribute__((unused)) struct cmdline *cl,
9525                           __attribute__((unused)) void *data)
9526 {
9527         struct cmd_ethertype_filter_result *res = parsed_result;
9528         struct rte_eth_ethertype_filter filter;
9529         int ret = 0;
9530
9531         ret = rte_eth_dev_filter_supported(res->port_id,
9532                         RTE_ETH_FILTER_ETHERTYPE);
9533         if (ret < 0) {
9534                 printf("ethertype filter is not supported on port %u.\n",
9535                         res->port_id);
9536                 return;
9537         }
9538
9539         memset(&filter, 0, sizeof(filter));
9540         if (!strcmp(res->mac, "mac_addr")) {
9541                 filter.flags |= RTE_ETHTYPE_FLAGS_MAC;
9542                 rte_memcpy(&filter.mac_addr, &res->mac_addr,
9543                         sizeof(struct ether_addr));
9544         }
9545         if (!strcmp(res->drop, "drop"))
9546                 filter.flags |= RTE_ETHTYPE_FLAGS_DROP;
9547         filter.ether_type = res->ethertype_value;
9548         filter.queue = res->queue_id;
9549
9550         if (!strcmp(res->ops, "add"))
9551                 ret = rte_eth_dev_filter_ctrl(res->port_id,
9552                                 RTE_ETH_FILTER_ETHERTYPE,
9553                                 RTE_ETH_FILTER_ADD,
9554                                 &filter);
9555         else
9556                 ret = rte_eth_dev_filter_ctrl(res->port_id,
9557                                 RTE_ETH_FILTER_ETHERTYPE,
9558                                 RTE_ETH_FILTER_DELETE,
9559                                 &filter);
9560         if (ret < 0)
9561                 printf("ethertype filter programming error: (%s)\n",
9562                         strerror(-ret));
9563 }
9564
9565 cmdline_parse_inst_t cmd_ethertype_filter = {
9566         .f = cmd_ethertype_filter_parsed,
9567         .data = NULL,
9568         .help_str = "ethertype_filter <port_id> add|del mac_addr|mac_ignr "
9569                 "<mac_addr> ethertype <value> drop|fw queue <queue_id>: "
9570                 "Add or delete an ethertype filter entry",
9571         .tokens = {
9572                 (void *)&cmd_ethertype_filter_filter,
9573                 (void *)&cmd_ethertype_filter_port_id,
9574                 (void *)&cmd_ethertype_filter_ops,
9575                 (void *)&cmd_ethertype_filter_mac,
9576                 (void *)&cmd_ethertype_filter_mac_addr,
9577                 (void *)&cmd_ethertype_filter_ethertype,
9578                 (void *)&cmd_ethertype_filter_ethertype_value,
9579                 (void *)&cmd_ethertype_filter_drop,
9580                 (void *)&cmd_ethertype_filter_queue,
9581                 (void *)&cmd_ethertype_filter_queue_id,
9582                 NULL,
9583         },
9584 };
9585
9586 /* *** deal with flow director filter *** */
9587 struct cmd_flow_director_result {
9588         cmdline_fixed_string_t flow_director_filter;
9589         portid_t port_id;
9590         cmdline_fixed_string_t mode;
9591         cmdline_fixed_string_t mode_value;
9592         cmdline_fixed_string_t ops;
9593         cmdline_fixed_string_t flow;
9594         cmdline_fixed_string_t flow_type;
9595         cmdline_fixed_string_t ether;
9596         uint16_t ether_type;
9597         cmdline_fixed_string_t src;
9598         cmdline_ipaddr_t ip_src;
9599         uint16_t port_src;
9600         cmdline_fixed_string_t dst;
9601         cmdline_ipaddr_t ip_dst;
9602         uint16_t port_dst;
9603         cmdline_fixed_string_t verify_tag;
9604         uint32_t verify_tag_value;
9605         cmdline_ipaddr_t tos;
9606         uint8_t tos_value;
9607         cmdline_ipaddr_t proto;
9608         uint8_t proto_value;
9609         cmdline_ipaddr_t ttl;
9610         uint8_t ttl_value;
9611         cmdline_fixed_string_t vlan;
9612         uint16_t vlan_value;
9613         cmdline_fixed_string_t flexbytes;
9614         cmdline_fixed_string_t flexbytes_value;
9615         cmdline_fixed_string_t pf_vf;
9616         cmdline_fixed_string_t drop;
9617         cmdline_fixed_string_t queue;
9618         uint16_t  queue_id;
9619         cmdline_fixed_string_t fd_id;
9620         uint32_t  fd_id_value;
9621         cmdline_fixed_string_t mac;
9622         struct ether_addr mac_addr;
9623         cmdline_fixed_string_t tunnel;
9624         cmdline_fixed_string_t tunnel_type;
9625         cmdline_fixed_string_t tunnel_id;
9626         uint32_t tunnel_id_value;
9627 };
9628
9629 static inline int
9630 parse_flexbytes(const char *q_arg, uint8_t *flexbytes, uint16_t max_num)
9631 {
9632         char s[256];
9633         const char *p, *p0 = q_arg;
9634         char *end;
9635         unsigned long int_fld;
9636         char *str_fld[max_num];
9637         int i;
9638         unsigned size;
9639         int ret = -1;
9640
9641         p = strchr(p0, '(');
9642         if (p == NULL)
9643                 return -1;
9644         ++p;
9645         p0 = strchr(p, ')');
9646         if (p0 == NULL)
9647                 return -1;
9648
9649         size = p0 - p;
9650         if (size >= sizeof(s))
9651                 return -1;
9652
9653         snprintf(s, sizeof(s), "%.*s", size, p);
9654         ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
9655         if (ret < 0 || ret > max_num)
9656                 return -1;
9657         for (i = 0; i < ret; i++) {
9658                 errno = 0;
9659                 int_fld = strtoul(str_fld[i], &end, 0);
9660                 if (errno != 0 || *end != '\0' || int_fld > UINT8_MAX)
9661                         return -1;
9662                 flexbytes[i] = (uint8_t)int_fld;
9663         }
9664         return ret;
9665 }
9666
9667 static uint16_t
9668 str2flowtype(char *string)
9669 {
9670         uint8_t i = 0;
9671         static const struct {
9672                 char str[32];
9673                 uint16_t type;
9674         } flowtype_str[] = {
9675                 {"raw", RTE_ETH_FLOW_RAW},
9676                 {"ipv4", RTE_ETH_FLOW_IPV4},
9677                 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
9678                 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
9679                 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
9680                 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
9681                 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
9682                 {"ipv6", RTE_ETH_FLOW_IPV6},
9683                 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
9684                 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
9685                 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
9686                 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
9687                 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
9688                 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
9689         };
9690
9691         for (i = 0; i < RTE_DIM(flowtype_str); i++) {
9692                 if (!strcmp(flowtype_str[i].str, string))
9693                         return flowtype_str[i].type;
9694         }
9695
9696         if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64)
9697                 return (uint16_t)atoi(string);
9698
9699         return RTE_ETH_FLOW_UNKNOWN;
9700 }
9701
9702 static enum rte_eth_fdir_tunnel_type
9703 str2fdir_tunneltype(char *string)
9704 {
9705         uint8_t i = 0;
9706
9707         static const struct {
9708                 char str[32];
9709                 enum rte_eth_fdir_tunnel_type type;
9710         } tunneltype_str[] = {
9711                 {"NVGRE", RTE_FDIR_TUNNEL_TYPE_NVGRE},
9712                 {"VxLAN", RTE_FDIR_TUNNEL_TYPE_VXLAN},
9713         };
9714
9715         for (i = 0; i < RTE_DIM(tunneltype_str); i++) {
9716                 if (!strcmp(tunneltype_str[i].str, string))
9717                         return tunneltype_str[i].type;
9718         }
9719         return RTE_FDIR_TUNNEL_TYPE_UNKNOWN;
9720 }
9721
9722 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \
9723 do { \
9724         if ((ip_addr).family == AF_INET) \
9725                 (ip) = (ip_addr).addr.ipv4.s_addr; \
9726         else { \
9727                 printf("invalid parameter.\n"); \
9728                 return; \
9729         } \
9730 } while (0)
9731
9732 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \
9733 do { \
9734         if ((ip_addr).family == AF_INET6) \
9735                 rte_memcpy(&(ip), \
9736                                  &((ip_addr).addr.ipv6), \
9737                                  sizeof(struct in6_addr)); \
9738         else { \
9739                 printf("invalid parameter.\n"); \
9740                 return; \
9741         } \
9742 } while (0)
9743
9744 static void
9745 cmd_flow_director_filter_parsed(void *parsed_result,
9746                           __attribute__((unused)) struct cmdline *cl,
9747                           __attribute__((unused)) void *data)
9748 {
9749         struct cmd_flow_director_result *res = parsed_result;
9750         struct rte_eth_fdir_filter entry;
9751         uint8_t flexbytes[RTE_ETH_FDIR_MAX_FLEXLEN];
9752         char *end;
9753         unsigned long vf_id;
9754         int ret = 0;
9755
9756         ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR);
9757         if (ret < 0) {
9758                 printf("flow director is not supported on port %u.\n",
9759                         res->port_id);
9760                 return;
9761         }
9762         memset(flexbytes, 0, sizeof(flexbytes));
9763         memset(&entry, 0, sizeof(struct rte_eth_fdir_filter));
9764
9765         if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
9766                 if (strcmp(res->mode_value, "MAC-VLAN")) {
9767                         printf("Please set mode to MAC-VLAN.\n");
9768                         return;
9769                 }
9770         } else if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
9771                 if (strcmp(res->mode_value, "Tunnel")) {
9772                         printf("Please set mode to Tunnel.\n");
9773                         return;
9774                 }
9775         } else {
9776                 if (strcmp(res->mode_value, "IP")) {
9777                         printf("Please set mode to IP.\n");
9778                         return;
9779                 }
9780                 entry.input.flow_type = str2flowtype(res->flow_type);
9781         }
9782
9783         ret = parse_flexbytes(res->flexbytes_value,
9784                                         flexbytes,
9785                                         RTE_ETH_FDIR_MAX_FLEXLEN);
9786         if (ret < 0) {
9787                 printf("error: Cannot parse flexbytes input.\n");
9788                 return;
9789         }
9790
9791         switch (entry.input.flow_type) {
9792         case RTE_ETH_FLOW_FRAG_IPV4:
9793         case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER:
9794                 entry.input.flow.ip4_flow.proto = res->proto_value;
9795                 /* fall-through */
9796         case RTE_ETH_FLOW_NONFRAG_IPV4_UDP:
9797         case RTE_ETH_FLOW_NONFRAG_IPV4_TCP:
9798                 IPV4_ADDR_TO_UINT(res->ip_dst,
9799                         entry.input.flow.ip4_flow.dst_ip);
9800                 IPV4_ADDR_TO_UINT(res->ip_src,
9801                         entry.input.flow.ip4_flow.src_ip);
9802                 entry.input.flow.ip4_flow.tos = res->tos_value;
9803                 entry.input.flow.ip4_flow.ttl = res->ttl_value;
9804                 /* need convert to big endian. */
9805                 entry.input.flow.udp4_flow.dst_port =
9806                                 rte_cpu_to_be_16(res->port_dst);
9807                 entry.input.flow.udp4_flow.src_port =
9808                                 rte_cpu_to_be_16(res->port_src);
9809                 break;
9810         case RTE_ETH_FLOW_NONFRAG_IPV4_SCTP:
9811                 IPV4_ADDR_TO_UINT(res->ip_dst,
9812                         entry.input.flow.sctp4_flow.ip.dst_ip);
9813                 IPV4_ADDR_TO_UINT(res->ip_src,
9814                         entry.input.flow.sctp4_flow.ip.src_ip);
9815                 entry.input.flow.ip4_flow.tos = res->tos_value;
9816                 entry.input.flow.ip4_flow.ttl = res->ttl_value;
9817                 /* need convert to big endian. */
9818                 entry.input.flow.sctp4_flow.dst_port =
9819                                 rte_cpu_to_be_16(res->port_dst);
9820                 entry.input.flow.sctp4_flow.src_port =
9821                                 rte_cpu_to_be_16(res->port_src);
9822                 entry.input.flow.sctp4_flow.verify_tag =
9823                                 rte_cpu_to_be_32(res->verify_tag_value);
9824                 break;
9825         case RTE_ETH_FLOW_FRAG_IPV6:
9826         case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER:
9827                 entry.input.flow.ipv6_flow.proto = res->proto_value;
9828                 /* fall-through */
9829         case RTE_ETH_FLOW_NONFRAG_IPV6_UDP:
9830         case RTE_ETH_FLOW_NONFRAG_IPV6_TCP:
9831                 IPV6_ADDR_TO_ARRAY(res->ip_dst,
9832                         entry.input.flow.ipv6_flow.dst_ip);
9833                 IPV6_ADDR_TO_ARRAY(res->ip_src,
9834                         entry.input.flow.ipv6_flow.src_ip);
9835                 entry.input.flow.ipv6_flow.tc = res->tos_value;
9836                 entry.input.flow.ipv6_flow.hop_limits = res->ttl_value;
9837                 /* need convert to big endian. */
9838                 entry.input.flow.udp6_flow.dst_port =
9839                                 rte_cpu_to_be_16(res->port_dst);
9840                 entry.input.flow.udp6_flow.src_port =
9841                                 rte_cpu_to_be_16(res->port_src);
9842                 break;
9843         case RTE_ETH_FLOW_NONFRAG_IPV6_SCTP:
9844                 IPV6_ADDR_TO_ARRAY(res->ip_dst,
9845                         entry.input.flow.sctp6_flow.ip.dst_ip);
9846                 IPV6_ADDR_TO_ARRAY(res->ip_src,
9847                         entry.input.flow.sctp6_flow.ip.src_ip);
9848                 entry.input.flow.ipv6_flow.tc = res->tos_value;
9849                 entry.input.flow.ipv6_flow.hop_limits = res->ttl_value;
9850                 /* need convert to big endian. */
9851                 entry.input.flow.sctp6_flow.dst_port =
9852                                 rte_cpu_to_be_16(res->port_dst);
9853                 entry.input.flow.sctp6_flow.src_port =
9854                                 rte_cpu_to_be_16(res->port_src);
9855                 entry.input.flow.sctp6_flow.verify_tag =
9856                                 rte_cpu_to_be_32(res->verify_tag_value);
9857                 break;
9858         case RTE_ETH_FLOW_L2_PAYLOAD:
9859                 entry.input.flow.l2_flow.ether_type =
9860                         rte_cpu_to_be_16(res->ether_type);
9861                 break;
9862         default:
9863                 break;
9864         }
9865
9866         if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN)
9867                 rte_memcpy(&entry.input.flow.mac_vlan_flow.mac_addr,
9868                                  &res->mac_addr,
9869                                  sizeof(struct ether_addr));
9870
9871         if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
9872                 rte_memcpy(&entry.input.flow.tunnel_flow.mac_addr,
9873                                  &res->mac_addr,
9874                                  sizeof(struct ether_addr));
9875                 entry.input.flow.tunnel_flow.tunnel_type =
9876                         str2fdir_tunneltype(res->tunnel_type);
9877                 entry.input.flow.tunnel_flow.tunnel_id =
9878                         rte_cpu_to_be_32(res->tunnel_id_value);
9879         }
9880
9881         rte_memcpy(entry.input.flow_ext.flexbytes,
9882                    flexbytes,
9883                    RTE_ETH_FDIR_MAX_FLEXLEN);
9884
9885         entry.input.flow_ext.vlan_tci = rte_cpu_to_be_16(res->vlan_value);
9886
9887         entry.action.flex_off = 0;  /*use 0 by default */
9888         if (!strcmp(res->drop, "drop"))
9889                 entry.action.behavior = RTE_ETH_FDIR_REJECT;
9890         else
9891                 entry.action.behavior = RTE_ETH_FDIR_ACCEPT;
9892
9893         if (fdir_conf.mode !=  RTE_FDIR_MODE_PERFECT_MAC_VLAN &&
9894             fdir_conf.mode !=  RTE_FDIR_MODE_PERFECT_TUNNEL) {
9895                 if (!strcmp(res->pf_vf, "pf"))
9896                         entry.input.flow_ext.is_vf = 0;
9897                 else if (!strncmp(res->pf_vf, "vf", 2)) {
9898                         struct rte_eth_dev_info dev_info;
9899
9900                         memset(&dev_info, 0, sizeof(dev_info));
9901                         rte_eth_dev_info_get(res->port_id, &dev_info);
9902                         errno = 0;
9903                         vf_id = strtoul(res->pf_vf + 2, &end, 10);
9904                         if (errno != 0 || *end != '\0' ||
9905                             vf_id >= dev_info.max_vfs) {
9906                                 printf("invalid parameter %s.\n", res->pf_vf);
9907                                 return;
9908                         }
9909                         entry.input.flow_ext.is_vf = 1;
9910                         entry.input.flow_ext.dst_id = (uint16_t)vf_id;
9911                 } else {
9912                         printf("invalid parameter %s.\n", res->pf_vf);
9913                         return;
9914                 }
9915         }
9916
9917         /* set to report FD ID by default */
9918         entry.action.report_status = RTE_ETH_FDIR_REPORT_ID;
9919         entry.action.rx_queue = res->queue_id;
9920         entry.soft_id = res->fd_id_value;
9921         if (!strcmp(res->ops, "add"))
9922                 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
9923                                              RTE_ETH_FILTER_ADD, &entry);
9924         else if (!strcmp(res->ops, "del"))
9925                 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
9926                                              RTE_ETH_FILTER_DELETE, &entry);
9927         else
9928                 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
9929                                              RTE_ETH_FILTER_UPDATE, &entry);
9930         if (ret < 0)
9931                 printf("flow director programming error: (%s)\n",
9932                         strerror(-ret));
9933 }
9934
9935 cmdline_parse_token_string_t cmd_flow_director_filter =
9936         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9937                                  flow_director_filter, "flow_director_filter");
9938 cmdline_parse_token_num_t cmd_flow_director_port_id =
9939         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9940                               port_id, UINT16);
9941 cmdline_parse_token_string_t cmd_flow_director_ops =
9942         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9943                                  ops, "add#del#update");
9944 cmdline_parse_token_string_t cmd_flow_director_flow =
9945         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9946                                  flow, "flow");
9947 cmdline_parse_token_string_t cmd_flow_director_flow_type =
9948         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9949                 flow_type, "ipv4-other#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
9950                 "ipv6-other#ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#l2_payload");
9951 cmdline_parse_token_string_t cmd_flow_director_ether =
9952         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9953                                  ether, "ether");
9954 cmdline_parse_token_num_t cmd_flow_director_ether_type =
9955         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9956                               ether_type, UINT16);
9957 cmdline_parse_token_string_t cmd_flow_director_src =
9958         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9959                                  src, "src");
9960 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_src =
9961         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result,
9962                                  ip_src);
9963 cmdline_parse_token_num_t cmd_flow_director_port_src =
9964         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9965                               port_src, UINT16);
9966 cmdline_parse_token_string_t cmd_flow_director_dst =
9967         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9968                                  dst, "dst");
9969 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_dst =
9970         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result,
9971                                  ip_dst);
9972 cmdline_parse_token_num_t cmd_flow_director_port_dst =
9973         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9974                               port_dst, UINT16);
9975 cmdline_parse_token_string_t cmd_flow_director_verify_tag =
9976         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9977                                   verify_tag, "verify_tag");
9978 cmdline_parse_token_num_t cmd_flow_director_verify_tag_value =
9979         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9980                               verify_tag_value, UINT32);
9981 cmdline_parse_token_string_t cmd_flow_director_tos =
9982         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9983                                  tos, "tos");
9984 cmdline_parse_token_num_t cmd_flow_director_tos_value =
9985         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9986                               tos_value, UINT8);
9987 cmdline_parse_token_string_t cmd_flow_director_proto =
9988         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9989                                  proto, "proto");
9990 cmdline_parse_token_num_t cmd_flow_director_proto_value =
9991         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9992                               proto_value, UINT8);
9993 cmdline_parse_token_string_t cmd_flow_director_ttl =
9994         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9995                                  ttl, "ttl");
9996 cmdline_parse_token_num_t cmd_flow_director_ttl_value =
9997         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9998                               ttl_value, UINT8);
9999 cmdline_parse_token_string_t cmd_flow_director_vlan =
10000         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10001                                  vlan, "vlan");
10002 cmdline_parse_token_num_t cmd_flow_director_vlan_value =
10003         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10004                               vlan_value, UINT16);
10005 cmdline_parse_token_string_t cmd_flow_director_flexbytes =
10006         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10007                                  flexbytes, "flexbytes");
10008 cmdline_parse_token_string_t cmd_flow_director_flexbytes_value =
10009         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10010                               flexbytes_value, NULL);
10011 cmdline_parse_token_string_t cmd_flow_director_drop =
10012         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10013                                  drop, "drop#fwd");
10014 cmdline_parse_token_string_t cmd_flow_director_pf_vf =
10015         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10016                               pf_vf, NULL);
10017 cmdline_parse_token_string_t cmd_flow_director_queue =
10018         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10019                                  queue, "queue");
10020 cmdline_parse_token_num_t cmd_flow_director_queue_id =
10021         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10022                               queue_id, UINT16);
10023 cmdline_parse_token_string_t cmd_flow_director_fd_id =
10024         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10025                                  fd_id, "fd_id");
10026 cmdline_parse_token_num_t cmd_flow_director_fd_id_value =
10027         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10028                               fd_id_value, UINT32);
10029
10030 cmdline_parse_token_string_t cmd_flow_director_mode =
10031         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10032                                  mode, "mode");
10033 cmdline_parse_token_string_t cmd_flow_director_mode_ip =
10034         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10035                                  mode_value, "IP");
10036 cmdline_parse_token_string_t cmd_flow_director_mode_mac_vlan =
10037         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10038                                  mode_value, "MAC-VLAN");
10039 cmdline_parse_token_string_t cmd_flow_director_mode_tunnel =
10040         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10041                                  mode_value, "Tunnel");
10042 cmdline_parse_token_string_t cmd_flow_director_mac =
10043         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10044                                  mac, "mac");
10045 cmdline_parse_token_etheraddr_t cmd_flow_director_mac_addr =
10046         TOKEN_ETHERADDR_INITIALIZER(struct cmd_flow_director_result,
10047                                     mac_addr);
10048 cmdline_parse_token_string_t cmd_flow_director_tunnel =
10049         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10050                                  tunnel, "tunnel");
10051 cmdline_parse_token_string_t cmd_flow_director_tunnel_type =
10052         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10053                                  tunnel_type, "NVGRE#VxLAN");
10054 cmdline_parse_token_string_t cmd_flow_director_tunnel_id =
10055         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10056                                  tunnel_id, "tunnel-id");
10057 cmdline_parse_token_num_t cmd_flow_director_tunnel_id_value =
10058         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10059                               tunnel_id_value, UINT32);
10060
10061 cmdline_parse_inst_t cmd_add_del_ip_flow_director = {
10062         .f = cmd_flow_director_filter_parsed,
10063         .data = NULL,
10064         .help_str = "flow_director_filter <port_id> mode IP add|del|update flow"
10065                 " ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|"
10066                 "ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|"
10067                 "l2_payload src <src_ip> dst <dst_ip> tos <tos_value> "
10068                 "proto <proto_value> ttl <ttl_value> vlan <vlan_value> "
10069                 "flexbytes <flexbyte_vaues> drop|fw <pf_vf> queue <queue_id> "
10070                 "fd_id <fd_id_value>: "
10071                 "Add or delete an ip flow director entry on NIC",
10072         .tokens = {
10073                 (void *)&cmd_flow_director_filter,
10074                 (void *)&cmd_flow_director_port_id,
10075                 (void *)&cmd_flow_director_mode,
10076                 (void *)&cmd_flow_director_mode_ip,
10077                 (void *)&cmd_flow_director_ops,
10078                 (void *)&cmd_flow_director_flow,
10079                 (void *)&cmd_flow_director_flow_type,
10080                 (void *)&cmd_flow_director_src,
10081                 (void *)&cmd_flow_director_ip_src,
10082                 (void *)&cmd_flow_director_dst,
10083                 (void *)&cmd_flow_director_ip_dst,
10084                 (void *)&cmd_flow_director_tos,
10085                 (void *)&cmd_flow_director_tos_value,
10086                 (void *)&cmd_flow_director_proto,
10087                 (void *)&cmd_flow_director_proto_value,
10088                 (void *)&cmd_flow_director_ttl,
10089                 (void *)&cmd_flow_director_ttl_value,
10090                 (void *)&cmd_flow_director_vlan,
10091                 (void *)&cmd_flow_director_vlan_value,
10092                 (void *)&cmd_flow_director_flexbytes,
10093                 (void *)&cmd_flow_director_flexbytes_value,
10094                 (void *)&cmd_flow_director_drop,
10095                 (void *)&cmd_flow_director_pf_vf,
10096                 (void *)&cmd_flow_director_queue,
10097                 (void *)&cmd_flow_director_queue_id,
10098                 (void *)&cmd_flow_director_fd_id,
10099                 (void *)&cmd_flow_director_fd_id_value,
10100                 NULL,
10101         },
10102 };
10103
10104 cmdline_parse_inst_t cmd_add_del_udp_flow_director = {
10105         .f = cmd_flow_director_filter_parsed,
10106         .data = NULL,
10107         .help_str = "flow_director_filter ... : Add or delete an udp/tcp flow "
10108                 "director entry on NIC",
10109         .tokens = {
10110                 (void *)&cmd_flow_director_filter,
10111                 (void *)&cmd_flow_director_port_id,
10112                 (void *)&cmd_flow_director_mode,
10113                 (void *)&cmd_flow_director_mode_ip,
10114                 (void *)&cmd_flow_director_ops,
10115                 (void *)&cmd_flow_director_flow,
10116                 (void *)&cmd_flow_director_flow_type,
10117                 (void *)&cmd_flow_director_src,
10118                 (void *)&cmd_flow_director_ip_src,
10119                 (void *)&cmd_flow_director_port_src,
10120                 (void *)&cmd_flow_director_dst,
10121                 (void *)&cmd_flow_director_ip_dst,
10122                 (void *)&cmd_flow_director_port_dst,
10123                 (void *)&cmd_flow_director_tos,
10124                 (void *)&cmd_flow_director_tos_value,
10125                 (void *)&cmd_flow_director_ttl,
10126                 (void *)&cmd_flow_director_ttl_value,
10127                 (void *)&cmd_flow_director_vlan,
10128                 (void *)&cmd_flow_director_vlan_value,
10129                 (void *)&cmd_flow_director_flexbytes,
10130                 (void *)&cmd_flow_director_flexbytes_value,
10131                 (void *)&cmd_flow_director_drop,
10132                 (void *)&cmd_flow_director_pf_vf,
10133                 (void *)&cmd_flow_director_queue,
10134                 (void *)&cmd_flow_director_queue_id,
10135                 (void *)&cmd_flow_director_fd_id,
10136                 (void *)&cmd_flow_director_fd_id_value,
10137                 NULL,
10138         },
10139 };
10140
10141 cmdline_parse_inst_t cmd_add_del_sctp_flow_director = {
10142         .f = cmd_flow_director_filter_parsed,
10143         .data = NULL,
10144         .help_str = "flow_director_filter ... : Add or delete a sctp flow "
10145                 "director entry on NIC",
10146         .tokens = {
10147                 (void *)&cmd_flow_director_filter,
10148                 (void *)&cmd_flow_director_port_id,
10149                 (void *)&cmd_flow_director_mode,
10150                 (void *)&cmd_flow_director_mode_ip,
10151                 (void *)&cmd_flow_director_ops,
10152                 (void *)&cmd_flow_director_flow,
10153                 (void *)&cmd_flow_director_flow_type,
10154                 (void *)&cmd_flow_director_src,
10155                 (void *)&cmd_flow_director_ip_src,
10156                 (void *)&cmd_flow_director_port_dst,
10157                 (void *)&cmd_flow_director_dst,
10158                 (void *)&cmd_flow_director_ip_dst,
10159                 (void *)&cmd_flow_director_port_dst,
10160                 (void *)&cmd_flow_director_verify_tag,
10161                 (void *)&cmd_flow_director_verify_tag_value,
10162                 (void *)&cmd_flow_director_tos,
10163                 (void *)&cmd_flow_director_tos_value,
10164                 (void *)&cmd_flow_director_ttl,
10165                 (void *)&cmd_flow_director_ttl_value,
10166                 (void *)&cmd_flow_director_vlan,
10167                 (void *)&cmd_flow_director_vlan_value,
10168                 (void *)&cmd_flow_director_flexbytes,
10169                 (void *)&cmd_flow_director_flexbytes_value,
10170                 (void *)&cmd_flow_director_drop,
10171                 (void *)&cmd_flow_director_pf_vf,
10172                 (void *)&cmd_flow_director_queue,
10173                 (void *)&cmd_flow_director_queue_id,
10174                 (void *)&cmd_flow_director_fd_id,
10175                 (void *)&cmd_flow_director_fd_id_value,
10176                 NULL,
10177         },
10178 };
10179
10180 cmdline_parse_inst_t cmd_add_del_l2_flow_director = {
10181         .f = cmd_flow_director_filter_parsed,
10182         .data = NULL,
10183         .help_str = "flow_director_filter ... : Add or delete a L2 flow "
10184                 "director entry on NIC",
10185         .tokens = {
10186                 (void *)&cmd_flow_director_filter,
10187                 (void *)&cmd_flow_director_port_id,
10188                 (void *)&cmd_flow_director_mode,
10189                 (void *)&cmd_flow_director_mode_ip,
10190                 (void *)&cmd_flow_director_ops,
10191                 (void *)&cmd_flow_director_flow,
10192                 (void *)&cmd_flow_director_flow_type,
10193                 (void *)&cmd_flow_director_ether,
10194                 (void *)&cmd_flow_director_ether_type,
10195                 (void *)&cmd_flow_director_flexbytes,
10196                 (void *)&cmd_flow_director_flexbytes_value,
10197                 (void *)&cmd_flow_director_drop,
10198                 (void *)&cmd_flow_director_pf_vf,
10199                 (void *)&cmd_flow_director_queue,
10200                 (void *)&cmd_flow_director_queue_id,
10201                 (void *)&cmd_flow_director_fd_id,
10202                 (void *)&cmd_flow_director_fd_id_value,
10203                 NULL,
10204         },
10205 };
10206
10207 cmdline_parse_inst_t cmd_add_del_mac_vlan_flow_director = {
10208         .f = cmd_flow_director_filter_parsed,
10209         .data = NULL,
10210         .help_str = "flow_director_filter ... : Add or delete a MAC VLAN flow "
10211                 "director entry on NIC",
10212         .tokens = {
10213                 (void *)&cmd_flow_director_filter,
10214                 (void *)&cmd_flow_director_port_id,
10215                 (void *)&cmd_flow_director_mode,
10216                 (void *)&cmd_flow_director_mode_mac_vlan,
10217                 (void *)&cmd_flow_director_ops,
10218                 (void *)&cmd_flow_director_mac,
10219                 (void *)&cmd_flow_director_mac_addr,
10220                 (void *)&cmd_flow_director_vlan,
10221                 (void *)&cmd_flow_director_vlan_value,
10222                 (void *)&cmd_flow_director_flexbytes,
10223                 (void *)&cmd_flow_director_flexbytes_value,
10224                 (void *)&cmd_flow_director_drop,
10225                 (void *)&cmd_flow_director_queue,
10226                 (void *)&cmd_flow_director_queue_id,
10227                 (void *)&cmd_flow_director_fd_id,
10228                 (void *)&cmd_flow_director_fd_id_value,
10229                 NULL,
10230         },
10231 };
10232
10233 cmdline_parse_inst_t cmd_add_del_tunnel_flow_director = {
10234         .f = cmd_flow_director_filter_parsed,
10235         .data = NULL,
10236         .help_str = "flow_director_filter ... : Add or delete a tunnel flow "
10237                 "director entry on NIC",
10238         .tokens = {
10239                 (void *)&cmd_flow_director_filter,
10240                 (void *)&cmd_flow_director_port_id,
10241                 (void *)&cmd_flow_director_mode,
10242                 (void *)&cmd_flow_director_mode_tunnel,
10243                 (void *)&cmd_flow_director_ops,
10244                 (void *)&cmd_flow_director_mac,
10245                 (void *)&cmd_flow_director_mac_addr,
10246                 (void *)&cmd_flow_director_vlan,
10247                 (void *)&cmd_flow_director_vlan_value,
10248                 (void *)&cmd_flow_director_tunnel,
10249                 (void *)&cmd_flow_director_tunnel_type,
10250                 (void *)&cmd_flow_director_tunnel_id,
10251                 (void *)&cmd_flow_director_tunnel_id_value,
10252                 (void *)&cmd_flow_director_flexbytes,
10253                 (void *)&cmd_flow_director_flexbytes_value,
10254                 (void *)&cmd_flow_director_drop,
10255                 (void *)&cmd_flow_director_queue,
10256                 (void *)&cmd_flow_director_queue_id,
10257                 (void *)&cmd_flow_director_fd_id,
10258                 (void *)&cmd_flow_director_fd_id_value,
10259                 NULL,
10260         },
10261 };
10262
10263 struct cmd_flush_flow_director_result {
10264         cmdline_fixed_string_t flush_flow_director;
10265         portid_t port_id;
10266 };
10267
10268 cmdline_parse_token_string_t cmd_flush_flow_director_flush =
10269         TOKEN_STRING_INITIALIZER(struct cmd_flush_flow_director_result,
10270                                  flush_flow_director, "flush_flow_director");
10271 cmdline_parse_token_num_t cmd_flush_flow_director_port_id =
10272         TOKEN_NUM_INITIALIZER(struct cmd_flush_flow_director_result,
10273                               port_id, UINT16);
10274
10275 static void
10276 cmd_flush_flow_director_parsed(void *parsed_result,
10277                           __attribute__((unused)) struct cmdline *cl,
10278                           __attribute__((unused)) void *data)
10279 {
10280         struct cmd_flow_director_result *res = parsed_result;
10281         int ret = 0;
10282
10283         ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR);
10284         if (ret < 0) {
10285                 printf("flow director is not supported on port %u.\n",
10286                         res->port_id);
10287                 return;
10288         }
10289
10290         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
10291                         RTE_ETH_FILTER_FLUSH, NULL);
10292         if (ret < 0)
10293                 printf("flow director table flushing error: (%s)\n",
10294                         strerror(-ret));
10295 }
10296
10297 cmdline_parse_inst_t cmd_flush_flow_director = {
10298         .f = cmd_flush_flow_director_parsed,
10299         .data = NULL,
10300         .help_str = "flush_flow_director <port_id>: "
10301                 "Flush all flow director entries of a device on NIC",
10302         .tokens = {
10303                 (void *)&cmd_flush_flow_director_flush,
10304                 (void *)&cmd_flush_flow_director_port_id,
10305                 NULL,
10306         },
10307 };
10308
10309 /* *** deal with flow director mask *** */
10310 struct cmd_flow_director_mask_result {
10311         cmdline_fixed_string_t flow_director_mask;
10312         portid_t port_id;
10313         cmdline_fixed_string_t mode;
10314         cmdline_fixed_string_t mode_value;
10315         cmdline_fixed_string_t vlan;
10316         uint16_t vlan_mask;
10317         cmdline_fixed_string_t src_mask;
10318         cmdline_ipaddr_t ipv4_src;
10319         cmdline_ipaddr_t ipv6_src;
10320         uint16_t port_src;
10321         cmdline_fixed_string_t dst_mask;
10322         cmdline_ipaddr_t ipv4_dst;
10323         cmdline_ipaddr_t ipv6_dst;
10324         uint16_t port_dst;
10325         cmdline_fixed_string_t mac;
10326         uint8_t mac_addr_byte_mask;
10327         cmdline_fixed_string_t tunnel_id;
10328         uint32_t tunnel_id_mask;
10329         cmdline_fixed_string_t tunnel_type;
10330         uint8_t tunnel_type_mask;
10331 };
10332
10333 static void
10334 cmd_flow_director_mask_parsed(void *parsed_result,
10335                           __attribute__((unused)) struct cmdline *cl,
10336                           __attribute__((unused)) void *data)
10337 {
10338         struct cmd_flow_director_mask_result *res = parsed_result;
10339         struct rte_eth_fdir_masks *mask;
10340         struct rte_port *port;
10341
10342         if (res->port_id > nb_ports) {
10343                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
10344                 return;
10345         }
10346
10347         port = &ports[res->port_id];
10348         /** Check if the port is not started **/
10349         if (port->port_status != RTE_PORT_STOPPED) {
10350                 printf("Please stop port %d first\n", res->port_id);
10351                 return;
10352         }
10353
10354         mask = &port->dev_conf.fdir_conf.mask;
10355
10356         if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
10357                 if (strcmp(res->mode_value, "MAC-VLAN")) {
10358                         printf("Please set mode to MAC-VLAN.\n");
10359                         return;
10360                 }
10361
10362                 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10363         } else if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
10364                 if (strcmp(res->mode_value, "Tunnel")) {
10365                         printf("Please set mode to Tunnel.\n");
10366                         return;
10367                 }
10368
10369                 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10370                 mask->mac_addr_byte_mask = res->mac_addr_byte_mask;
10371                 mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask);
10372                 mask->tunnel_type_mask = res->tunnel_type_mask;
10373         } else {
10374                 if (strcmp(res->mode_value, "IP")) {
10375                         printf("Please set mode to IP.\n");
10376                         return;
10377                 }
10378
10379                 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10380                 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip);
10381                 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip);
10382                 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip);
10383                 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip);
10384                 mask->src_port_mask = rte_cpu_to_be_16(res->port_src);
10385                 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst);
10386         }
10387
10388         cmd_reconfig_device_queue(res->port_id, 1, 1);
10389 }
10390
10391 cmdline_parse_token_string_t cmd_flow_director_mask =
10392         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10393                                  flow_director_mask, "flow_director_mask");
10394 cmdline_parse_token_num_t cmd_flow_director_mask_port_id =
10395         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10396                               port_id, UINT16);
10397 cmdline_parse_token_string_t cmd_flow_director_mask_vlan =
10398         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10399                                  vlan, "vlan");
10400 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value =
10401         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10402                               vlan_mask, UINT16);
10403 cmdline_parse_token_string_t cmd_flow_director_mask_src =
10404         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10405                                  src_mask, "src_mask");
10406 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src =
10407         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10408                                  ipv4_src);
10409 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src =
10410         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10411                                  ipv6_src);
10412 cmdline_parse_token_num_t cmd_flow_director_mask_port_src =
10413         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10414                               port_src, UINT16);
10415 cmdline_parse_token_string_t cmd_flow_director_mask_dst =
10416         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10417                                  dst_mask, "dst_mask");
10418 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst =
10419         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10420                                  ipv4_dst);
10421 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst =
10422         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10423                                  ipv6_dst);
10424 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst =
10425         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10426                               port_dst, UINT16);
10427
10428 cmdline_parse_token_string_t cmd_flow_director_mask_mode =
10429         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10430                                  mode, "mode");
10431 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip =
10432         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10433                                  mode_value, "IP");
10434 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan =
10435         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10436                                  mode_value, "MAC-VLAN");
10437 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel =
10438         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10439                                  mode_value, "Tunnel");
10440 cmdline_parse_token_string_t cmd_flow_director_mask_mac =
10441         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10442                                  mac, "mac");
10443 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value =
10444         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10445                               mac_addr_byte_mask, UINT8);
10446 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type =
10447         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10448                                  tunnel_type, "tunnel-type");
10449 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value =
10450         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10451                               tunnel_type_mask, UINT8);
10452 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id =
10453         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10454                                  tunnel_id, "tunnel-id");
10455 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value =
10456         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10457                               tunnel_id_mask, UINT32);
10458
10459 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = {
10460         .f = cmd_flow_director_mask_parsed,
10461         .data = NULL,
10462         .help_str = "flow_director_mask ... : "
10463                 "Set IP mode flow director's mask on NIC",
10464         .tokens = {
10465                 (void *)&cmd_flow_director_mask,
10466                 (void *)&cmd_flow_director_mask_port_id,
10467                 (void *)&cmd_flow_director_mask_mode,
10468                 (void *)&cmd_flow_director_mask_mode_ip,
10469                 (void *)&cmd_flow_director_mask_vlan,
10470                 (void *)&cmd_flow_director_mask_vlan_value,
10471                 (void *)&cmd_flow_director_mask_src,
10472                 (void *)&cmd_flow_director_mask_ipv4_src,
10473                 (void *)&cmd_flow_director_mask_ipv6_src,
10474                 (void *)&cmd_flow_director_mask_port_src,
10475                 (void *)&cmd_flow_director_mask_dst,
10476                 (void *)&cmd_flow_director_mask_ipv4_dst,
10477                 (void *)&cmd_flow_director_mask_ipv6_dst,
10478                 (void *)&cmd_flow_director_mask_port_dst,
10479                 NULL,
10480         },
10481 };
10482
10483 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = {
10484         .f = cmd_flow_director_mask_parsed,
10485         .data = NULL,
10486         .help_str = "flow_director_mask ... : Set MAC VLAN mode "
10487                 "flow director's mask on NIC",
10488         .tokens = {
10489                 (void *)&cmd_flow_director_mask,
10490                 (void *)&cmd_flow_director_mask_port_id,
10491                 (void *)&cmd_flow_director_mask_mode,
10492                 (void *)&cmd_flow_director_mask_mode_mac_vlan,
10493                 (void *)&cmd_flow_director_mask_vlan,
10494                 (void *)&cmd_flow_director_mask_vlan_value,
10495                 NULL,
10496         },
10497 };
10498
10499 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = {
10500         .f = cmd_flow_director_mask_parsed,
10501         .data = NULL,
10502         .help_str = "flow_director_mask ... : Set tunnel mode "
10503                 "flow director's mask on NIC",
10504         .tokens = {
10505                 (void *)&cmd_flow_director_mask,
10506                 (void *)&cmd_flow_director_mask_port_id,
10507                 (void *)&cmd_flow_director_mask_mode,
10508                 (void *)&cmd_flow_director_mask_mode_tunnel,
10509                 (void *)&cmd_flow_director_mask_vlan,
10510                 (void *)&cmd_flow_director_mask_vlan_value,
10511                 (void *)&cmd_flow_director_mask_mac,
10512                 (void *)&cmd_flow_director_mask_mac_value,
10513                 (void *)&cmd_flow_director_mask_tunnel_type,
10514                 (void *)&cmd_flow_director_mask_tunnel_type_value,
10515                 (void *)&cmd_flow_director_mask_tunnel_id,
10516                 (void *)&cmd_flow_director_mask_tunnel_id_value,
10517                 NULL,
10518         },
10519 };
10520
10521 /* *** deal with flow director mask on flexible payload *** */
10522 struct cmd_flow_director_flex_mask_result {
10523         cmdline_fixed_string_t flow_director_flexmask;
10524         portid_t port_id;
10525         cmdline_fixed_string_t flow;
10526         cmdline_fixed_string_t flow_type;
10527         cmdline_fixed_string_t mask;
10528 };
10529
10530 static void
10531 cmd_flow_director_flex_mask_parsed(void *parsed_result,
10532                           __attribute__((unused)) struct cmdline *cl,
10533                           __attribute__((unused)) void *data)
10534 {
10535         struct cmd_flow_director_flex_mask_result *res = parsed_result;
10536         struct rte_eth_fdir_info fdir_info;
10537         struct rte_eth_fdir_flex_mask flex_mask;
10538         struct rte_port *port;
10539         uint32_t flow_type_mask;
10540         uint16_t i;
10541         int ret;
10542
10543         if (res->port_id > nb_ports) {
10544                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
10545                 return;
10546         }
10547
10548         port = &ports[res->port_id];
10549         /** Check if the port is not started **/
10550         if (port->port_status != RTE_PORT_STOPPED) {
10551                 printf("Please stop port %d first\n", res->port_id);
10552                 return;
10553         }
10554
10555         memset(&flex_mask, 0, sizeof(struct rte_eth_fdir_flex_mask));
10556         ret = parse_flexbytes(res->mask,
10557                         flex_mask.mask,
10558                         RTE_ETH_FDIR_MAX_FLEXLEN);
10559         if (ret < 0) {
10560                 printf("error: Cannot parse mask input.\n");
10561                 return;
10562         }
10563
10564         memset(&fdir_info, 0, sizeof(fdir_info));
10565         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
10566                                 RTE_ETH_FILTER_INFO, &fdir_info);
10567         if (ret < 0) {
10568                 printf("Cannot get FDir filter info\n");
10569                 return;
10570         }
10571
10572         if (!strcmp(res->flow_type, "none")) {
10573                 /* means don't specify the flow type */
10574                 flex_mask.flow_type = RTE_ETH_FLOW_UNKNOWN;
10575                 for (i = 0; i < RTE_ETH_FLOW_MAX; i++)
10576                         memset(&port->dev_conf.fdir_conf.flex_conf.flex_mask[i],
10577                                0, sizeof(struct rte_eth_fdir_flex_mask));
10578                 port->dev_conf.fdir_conf.flex_conf.nb_flexmasks = 1;
10579                 rte_memcpy(&port->dev_conf.fdir_conf.flex_conf.flex_mask[0],
10580                                  &flex_mask,
10581                                  sizeof(struct rte_eth_fdir_flex_mask));
10582                 cmd_reconfig_device_queue(res->port_id, 1, 1);
10583                 return;
10584         }
10585         flow_type_mask = fdir_info.flow_types_mask[0];
10586         if (!strcmp(res->flow_type, "all")) {
10587                 if (!flow_type_mask) {
10588                         printf("No flow type supported\n");
10589                         return;
10590                 }
10591                 for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
10592                         if (flow_type_mask & (1 << i)) {
10593                                 flex_mask.flow_type = i;
10594                                 fdir_set_flex_mask(res->port_id, &flex_mask);
10595                         }
10596                 }
10597                 cmd_reconfig_device_queue(res->port_id, 1, 1);
10598                 return;
10599         }
10600         flex_mask.flow_type = str2flowtype(res->flow_type);
10601         if (!(flow_type_mask & (1 << flex_mask.flow_type))) {
10602                 printf("Flow type %s not supported on port %d\n",
10603                                 res->flow_type, res->port_id);
10604                 return;
10605         }
10606         fdir_set_flex_mask(res->port_id, &flex_mask);
10607         cmd_reconfig_device_queue(res->port_id, 1, 1);
10608 }
10609
10610 cmdline_parse_token_string_t cmd_flow_director_flexmask =
10611         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
10612                                  flow_director_flexmask,
10613                                  "flow_director_flex_mask");
10614 cmdline_parse_token_num_t cmd_flow_director_flexmask_port_id =
10615         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flex_mask_result,
10616                               port_id, UINT16);
10617 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow =
10618         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
10619                                  flow, "flow");
10620 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow_type =
10621         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
10622                 flow_type, "none#ipv4-other#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
10623                 "ipv6-other#ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#l2_payload#all");
10624 cmdline_parse_token_string_t cmd_flow_director_flexmask_mask =
10625         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
10626                                  mask, NULL);
10627
10628 cmdline_parse_inst_t cmd_set_flow_director_flex_mask = {
10629         .f = cmd_flow_director_flex_mask_parsed,
10630         .data = NULL,
10631         .help_str = "flow_director_flex_mask ... : "
10632                 "Set flow director's flex mask on NIC",
10633         .tokens = {
10634                 (void *)&cmd_flow_director_flexmask,
10635                 (void *)&cmd_flow_director_flexmask_port_id,
10636                 (void *)&cmd_flow_director_flexmask_flow,
10637                 (void *)&cmd_flow_director_flexmask_flow_type,
10638                 (void *)&cmd_flow_director_flexmask_mask,
10639                 NULL,
10640         },
10641 };
10642
10643 /* *** deal with flow director flexible payload configuration *** */
10644 struct cmd_flow_director_flexpayload_result {
10645         cmdline_fixed_string_t flow_director_flexpayload;
10646         portid_t port_id;
10647         cmdline_fixed_string_t payload_layer;
10648         cmdline_fixed_string_t payload_cfg;
10649 };
10650
10651 static inline int
10652 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num)
10653 {
10654         char s[256];
10655         const char *p, *p0 = q_arg;
10656         char *end;
10657         unsigned long int_fld;
10658         char *str_fld[max_num];
10659         int i;
10660         unsigned size;
10661         int ret = -1;
10662
10663         p = strchr(p0, '(');
10664         if (p == NULL)
10665                 return -1;
10666         ++p;
10667         p0 = strchr(p, ')');
10668         if (p0 == NULL)
10669                 return -1;
10670
10671         size = p0 - p;
10672         if (size >= sizeof(s))
10673                 return -1;
10674
10675         snprintf(s, sizeof(s), "%.*s", size, p);
10676         ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
10677         if (ret < 0 || ret > max_num)
10678                 return -1;
10679         for (i = 0; i < ret; i++) {
10680                 errno = 0;
10681                 int_fld = strtoul(str_fld[i], &end, 0);
10682                 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX)
10683                         return -1;
10684                 offsets[i] = (uint16_t)int_fld;
10685         }
10686         return ret;
10687 }
10688
10689 static void
10690 cmd_flow_director_flxpld_parsed(void *parsed_result,
10691                           __attribute__((unused)) struct cmdline *cl,
10692                           __attribute__((unused)) void *data)
10693 {
10694         struct cmd_flow_director_flexpayload_result *res = parsed_result;
10695         struct rte_eth_flex_payload_cfg flex_cfg;
10696         struct rte_port *port;
10697         int ret = 0;
10698
10699         if (res->port_id > nb_ports) {
10700                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
10701                 return;
10702         }
10703
10704         port = &ports[res->port_id];
10705         /** Check if the port is not started **/
10706         if (port->port_status != RTE_PORT_STOPPED) {
10707                 printf("Please stop port %d first\n", res->port_id);
10708                 return;
10709         }
10710
10711         memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg));
10712
10713         if (!strcmp(res->payload_layer, "raw"))
10714                 flex_cfg.type = RTE_ETH_RAW_PAYLOAD;
10715         else if (!strcmp(res->payload_layer, "l2"))
10716                 flex_cfg.type = RTE_ETH_L2_PAYLOAD;
10717         else if (!strcmp(res->payload_layer, "l3"))
10718                 flex_cfg.type = RTE_ETH_L3_PAYLOAD;
10719         else if (!strcmp(res->payload_layer, "l4"))
10720                 flex_cfg.type = RTE_ETH_L4_PAYLOAD;
10721
10722         ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset,
10723                             RTE_ETH_FDIR_MAX_FLEXLEN);
10724         if (ret < 0) {
10725                 printf("error: Cannot parse flex payload input.\n");
10726                 return;
10727         }
10728
10729         fdir_set_flex_payload(res->port_id, &flex_cfg);
10730         cmd_reconfig_device_queue(res->port_id, 1, 1);
10731 }
10732
10733 cmdline_parse_token_string_t cmd_flow_director_flexpayload =
10734         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10735                                  flow_director_flexpayload,
10736                                  "flow_director_flex_payload");
10737 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id =
10738         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10739                               port_id, UINT16);
10740 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer =
10741         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10742                                  payload_layer, "raw#l2#l3#l4");
10743 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg =
10744         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10745                                  payload_cfg, NULL);
10746
10747 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = {
10748         .f = cmd_flow_director_flxpld_parsed,
10749         .data = NULL,
10750         .help_str = "flow_director_flexpayload ... : "
10751                 "Set flow director's flex payload on NIC",
10752         .tokens = {
10753                 (void *)&cmd_flow_director_flexpayload,
10754                 (void *)&cmd_flow_director_flexpayload_port_id,
10755                 (void *)&cmd_flow_director_flexpayload_payload_layer,
10756                 (void *)&cmd_flow_director_flexpayload_payload_cfg,
10757                 NULL,
10758         },
10759 };
10760
10761 /* Generic flow interface command. */
10762 extern cmdline_parse_inst_t cmd_flow;
10763
10764 /* *** Classification Filters Control *** */
10765 /* *** Get symmetric hash enable per port *** */
10766 struct cmd_get_sym_hash_ena_per_port_result {
10767         cmdline_fixed_string_t get_sym_hash_ena_per_port;
10768         portid_t port_id;
10769 };
10770
10771 static void
10772 cmd_get_sym_hash_per_port_parsed(void *parsed_result,
10773                                  __rte_unused struct cmdline *cl,
10774                                  __rte_unused void *data)
10775 {
10776         struct cmd_get_sym_hash_ena_per_port_result *res = parsed_result;
10777         struct rte_eth_hash_filter_info info;
10778         int ret;
10779
10780         if (rte_eth_dev_filter_supported(res->port_id,
10781                                 RTE_ETH_FILTER_HASH) < 0) {
10782                 printf("RTE_ETH_FILTER_HASH not supported on port: %d\n",
10783                                                         res->port_id);
10784                 return;
10785         }
10786
10787         memset(&info, 0, sizeof(info));
10788         info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT;
10789         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
10790                                                 RTE_ETH_FILTER_GET, &info);
10791
10792         if (ret < 0) {
10793                 printf("Cannot get symmetric hash enable per port "
10794                                         "on port %u\n", res->port_id);
10795                 return;
10796         }
10797
10798         printf("Symmetric hash is %s on port %u\n", info.info.enable ?
10799                                 "enabled" : "disabled", res->port_id);
10800 }
10801
10802 cmdline_parse_token_string_t cmd_get_sym_hash_ena_per_port_all =
10803         TOKEN_STRING_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result,
10804                 get_sym_hash_ena_per_port, "get_sym_hash_ena_per_port");
10805 cmdline_parse_token_num_t cmd_get_sym_hash_ena_per_port_port_id =
10806         TOKEN_NUM_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result,
10807                 port_id, UINT16);
10808
10809 cmdline_parse_inst_t cmd_get_sym_hash_ena_per_port = {
10810         .f = cmd_get_sym_hash_per_port_parsed,
10811         .data = NULL,
10812         .help_str = "get_sym_hash_ena_per_port <port_id>",
10813         .tokens = {
10814                 (void *)&cmd_get_sym_hash_ena_per_port_all,
10815                 (void *)&cmd_get_sym_hash_ena_per_port_port_id,
10816                 NULL,
10817         },
10818 };
10819
10820 /* *** Set symmetric hash enable per port *** */
10821 struct cmd_set_sym_hash_ena_per_port_result {
10822         cmdline_fixed_string_t set_sym_hash_ena_per_port;
10823         cmdline_fixed_string_t enable;
10824         portid_t port_id;
10825 };
10826
10827 static void
10828 cmd_set_sym_hash_per_port_parsed(void *parsed_result,
10829                                  __rte_unused struct cmdline *cl,
10830                                  __rte_unused void *data)
10831 {
10832         struct cmd_set_sym_hash_ena_per_port_result *res = parsed_result;
10833         struct rte_eth_hash_filter_info info;
10834         int ret;
10835
10836         if (rte_eth_dev_filter_supported(res->port_id,
10837                                 RTE_ETH_FILTER_HASH) < 0) {
10838                 printf("RTE_ETH_FILTER_HASH not supported on port: %d\n",
10839                                                         res->port_id);
10840                 return;
10841         }
10842
10843         memset(&info, 0, sizeof(info));
10844         info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT;
10845         if (!strcmp(res->enable, "enable"))
10846                 info.info.enable = 1;
10847         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
10848                                         RTE_ETH_FILTER_SET, &info);
10849         if (ret < 0) {
10850                 printf("Cannot set symmetric hash enable per port on "
10851                                         "port %u\n", res->port_id);
10852                 return;
10853         }
10854         printf("Symmetric hash has been set to %s on port %u\n",
10855                                         res->enable, res->port_id);
10856 }
10857
10858 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_all =
10859         TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
10860                 set_sym_hash_ena_per_port, "set_sym_hash_ena_per_port");
10861 cmdline_parse_token_num_t cmd_set_sym_hash_ena_per_port_port_id =
10862         TOKEN_NUM_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
10863                 port_id, UINT16);
10864 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_enable =
10865         TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
10866                 enable, "enable#disable");
10867
10868 cmdline_parse_inst_t cmd_set_sym_hash_ena_per_port = {
10869         .f = cmd_set_sym_hash_per_port_parsed,
10870         .data = NULL,
10871         .help_str = "set_sym_hash_ena_per_port <port_id> enable|disable",
10872         .tokens = {
10873                 (void *)&cmd_set_sym_hash_ena_per_port_all,
10874                 (void *)&cmd_set_sym_hash_ena_per_port_port_id,
10875                 (void *)&cmd_set_sym_hash_ena_per_port_enable,
10876                 NULL,
10877         },
10878 };
10879
10880 /* Get global config of hash function */
10881 struct cmd_get_hash_global_config_result {
10882         cmdline_fixed_string_t get_hash_global_config;
10883         portid_t port_id;
10884 };
10885
10886 static char *
10887 flowtype_to_str(uint16_t ftype)
10888 {
10889         uint16_t i;
10890         static struct {
10891                 char str[16];
10892                 uint16_t ftype;
10893         } ftype_table[] = {
10894                 {"ipv4", RTE_ETH_FLOW_IPV4},
10895                 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
10896                 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
10897                 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
10898                 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
10899                 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
10900                 {"ipv6", RTE_ETH_FLOW_IPV6},
10901                 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
10902                 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
10903                 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
10904                 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
10905                 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
10906                 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
10907                 {"port", RTE_ETH_FLOW_PORT},
10908                 {"vxlan", RTE_ETH_FLOW_VXLAN},
10909                 {"geneve", RTE_ETH_FLOW_GENEVE},
10910                 {"nvgre", RTE_ETH_FLOW_NVGRE},
10911         };
10912
10913         for (i = 0; i < RTE_DIM(ftype_table); i++) {
10914                 if (ftype_table[i].ftype == ftype)
10915                         return ftype_table[i].str;
10916         }
10917
10918         return NULL;
10919 }
10920
10921 static void
10922 cmd_get_hash_global_config_parsed(void *parsed_result,
10923                                   __rte_unused struct cmdline *cl,
10924                                   __rte_unused void *data)
10925 {
10926         struct cmd_get_hash_global_config_result *res = parsed_result;
10927         struct rte_eth_hash_filter_info info;
10928         uint32_t idx, offset;
10929         uint16_t i;
10930         char *str;
10931         int ret;
10932
10933         if (rte_eth_dev_filter_supported(res->port_id,
10934                         RTE_ETH_FILTER_HASH) < 0) {
10935                 printf("RTE_ETH_FILTER_HASH not supported on port %d\n",
10936                                                         res->port_id);
10937                 return;
10938         }
10939
10940         memset(&info, 0, sizeof(info));
10941         info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG;
10942         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
10943                                         RTE_ETH_FILTER_GET, &info);
10944         if (ret < 0) {
10945                 printf("Cannot get hash global configurations by port %d\n",
10946                                                         res->port_id);
10947                 return;
10948         }
10949
10950         switch (info.info.global_conf.hash_func) {
10951         case RTE_ETH_HASH_FUNCTION_TOEPLITZ:
10952                 printf("Hash function is Toeplitz\n");
10953                 break;
10954         case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR:
10955                 printf("Hash function is Simple XOR\n");
10956                 break;
10957         default:
10958                 printf("Unknown hash function\n");
10959                 break;
10960         }
10961
10962         for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
10963                 idx = i / UINT32_BIT;
10964                 offset = i % UINT32_BIT;
10965                 if (!(info.info.global_conf.valid_bit_mask[idx] &
10966                                                 (1UL << offset)))
10967                         continue;
10968                 str = flowtype_to_str(i);
10969                 if (!str)
10970                         continue;
10971                 printf("Symmetric hash is %s globally for flow type %s "
10972                                                         "by port %d\n",
10973                         ((info.info.global_conf.sym_hash_enable_mask[idx] &
10974                         (1UL << offset)) ? "enabled" : "disabled"), str,
10975                                                         res->port_id);
10976         }
10977 }
10978
10979 cmdline_parse_token_string_t cmd_get_hash_global_config_all =
10980         TOKEN_STRING_INITIALIZER(struct cmd_get_hash_global_config_result,
10981                 get_hash_global_config, "get_hash_global_config");
10982 cmdline_parse_token_num_t cmd_get_hash_global_config_port_id =
10983         TOKEN_NUM_INITIALIZER(struct cmd_get_hash_global_config_result,
10984                 port_id, UINT16);
10985
10986 cmdline_parse_inst_t cmd_get_hash_global_config = {
10987         .f = cmd_get_hash_global_config_parsed,
10988         .data = NULL,
10989         .help_str = "get_hash_global_config <port_id>",
10990         .tokens = {
10991                 (void *)&cmd_get_hash_global_config_all,
10992                 (void *)&cmd_get_hash_global_config_port_id,
10993                 NULL,
10994         },
10995 };
10996
10997 /* Set global config of hash function */
10998 struct cmd_set_hash_global_config_result {
10999         cmdline_fixed_string_t set_hash_global_config;
11000         portid_t port_id;
11001         cmdline_fixed_string_t hash_func;
11002         cmdline_fixed_string_t flow_type;
11003         cmdline_fixed_string_t enable;
11004 };
11005
11006 static void
11007 cmd_set_hash_global_config_parsed(void *parsed_result,
11008                                   __rte_unused struct cmdline *cl,
11009                                   __rte_unused void *data)
11010 {
11011         struct cmd_set_hash_global_config_result *res = parsed_result;
11012         struct rte_eth_hash_filter_info info;
11013         uint32_t ftype, idx, offset;
11014         int ret;
11015
11016         if (rte_eth_dev_filter_supported(res->port_id,
11017                                 RTE_ETH_FILTER_HASH) < 0) {
11018                 printf("RTE_ETH_FILTER_HASH not supported on port %d\n",
11019                                                         res->port_id);
11020                 return;
11021         }
11022         memset(&info, 0, sizeof(info));
11023         info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG;
11024         if (!strcmp(res->hash_func, "toeplitz"))
11025                 info.info.global_conf.hash_func =
11026                         RTE_ETH_HASH_FUNCTION_TOEPLITZ;
11027         else if (!strcmp(res->hash_func, "simple_xor"))
11028                 info.info.global_conf.hash_func =
11029                         RTE_ETH_HASH_FUNCTION_SIMPLE_XOR;
11030         else if (!strcmp(res->hash_func, "default"))
11031                 info.info.global_conf.hash_func =
11032                         RTE_ETH_HASH_FUNCTION_DEFAULT;
11033
11034         ftype = str2flowtype(res->flow_type);
11035         idx = ftype / (CHAR_BIT * sizeof(uint32_t));
11036         offset = ftype % (CHAR_BIT * sizeof(uint32_t));
11037         info.info.global_conf.valid_bit_mask[idx] |= (1UL << offset);
11038         if (!strcmp(res->enable, "enable"))
11039                 info.info.global_conf.sym_hash_enable_mask[idx] |=
11040                                                 (1UL << offset);
11041         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
11042                                         RTE_ETH_FILTER_SET, &info);
11043         if (ret < 0)
11044                 printf("Cannot set global hash configurations by port %d\n",
11045                                                         res->port_id);
11046         else
11047                 printf("Global hash configurations have been set "
11048                         "succcessfully by port %d\n", res->port_id);
11049 }
11050
11051 cmdline_parse_token_string_t cmd_set_hash_global_config_all =
11052         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
11053                 set_hash_global_config, "set_hash_global_config");
11054 cmdline_parse_token_num_t cmd_set_hash_global_config_port_id =
11055         TOKEN_NUM_INITIALIZER(struct cmd_set_hash_global_config_result,
11056                 port_id, UINT16);
11057 cmdline_parse_token_string_t cmd_set_hash_global_config_hash_func =
11058         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
11059                 hash_func, "toeplitz#simple_xor#default");
11060 cmdline_parse_token_string_t cmd_set_hash_global_config_flow_type =
11061         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
11062                 flow_type,
11063                 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#ipv6#"
11064                 "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
11065 cmdline_parse_token_string_t cmd_set_hash_global_config_enable =
11066         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
11067                 enable, "enable#disable");
11068
11069 cmdline_parse_inst_t cmd_set_hash_global_config = {
11070         .f = cmd_set_hash_global_config_parsed,
11071         .data = NULL,
11072         .help_str = "set_hash_global_config <port_id> "
11073                 "toeplitz|simple_xor|default "
11074                 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
11075                 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
11076                 "l2_payload enable|disable",
11077         .tokens = {
11078                 (void *)&cmd_set_hash_global_config_all,
11079                 (void *)&cmd_set_hash_global_config_port_id,
11080                 (void *)&cmd_set_hash_global_config_hash_func,
11081                 (void *)&cmd_set_hash_global_config_flow_type,
11082                 (void *)&cmd_set_hash_global_config_enable,
11083                 NULL,
11084         },
11085 };
11086
11087 /* Set hash input set */
11088 struct cmd_set_hash_input_set_result {
11089         cmdline_fixed_string_t set_hash_input_set;
11090         portid_t port_id;
11091         cmdline_fixed_string_t flow_type;
11092         cmdline_fixed_string_t inset_field;
11093         cmdline_fixed_string_t select;
11094 };
11095
11096 static enum rte_eth_input_set_field
11097 str2inset(char *string)
11098 {
11099         uint16_t i;
11100
11101         static const struct {
11102                 char str[32];
11103                 enum rte_eth_input_set_field inset;
11104         } inset_table[] = {
11105                 {"ethertype", RTE_ETH_INPUT_SET_L2_ETHERTYPE},
11106                 {"ovlan", RTE_ETH_INPUT_SET_L2_OUTER_VLAN},
11107                 {"ivlan", RTE_ETH_INPUT_SET_L2_INNER_VLAN},
11108                 {"src-ipv4", RTE_ETH_INPUT_SET_L3_SRC_IP4},
11109                 {"dst-ipv4", RTE_ETH_INPUT_SET_L3_DST_IP4},
11110                 {"ipv4-tos", RTE_ETH_INPUT_SET_L3_IP4_TOS},
11111                 {"ipv4-proto", RTE_ETH_INPUT_SET_L3_IP4_PROTO},
11112                 {"ipv4-ttl", RTE_ETH_INPUT_SET_L3_IP4_TTL},
11113                 {"src-ipv6", RTE_ETH_INPUT_SET_L3_SRC_IP6},
11114                 {"dst-ipv6", RTE_ETH_INPUT_SET_L3_DST_IP6},
11115                 {"ipv6-tc", RTE_ETH_INPUT_SET_L3_IP6_TC},
11116                 {"ipv6-next-header", RTE_ETH_INPUT_SET_L3_IP6_NEXT_HEADER},
11117                 {"ipv6-hop-limits", RTE_ETH_INPUT_SET_L3_IP6_HOP_LIMITS},
11118                 {"udp-src-port", RTE_ETH_INPUT_SET_L4_UDP_SRC_PORT},
11119                 {"udp-dst-port", RTE_ETH_INPUT_SET_L4_UDP_DST_PORT},
11120                 {"tcp-src-port", RTE_ETH_INPUT_SET_L4_TCP_SRC_PORT},
11121                 {"tcp-dst-port", RTE_ETH_INPUT_SET_L4_TCP_DST_PORT},
11122                 {"sctp-src-port", RTE_ETH_INPUT_SET_L4_SCTP_SRC_PORT},
11123                 {"sctp-dst-port", RTE_ETH_INPUT_SET_L4_SCTP_DST_PORT},
11124                 {"sctp-veri-tag", RTE_ETH_INPUT_SET_L4_SCTP_VERIFICATION_TAG},
11125                 {"udp-key", RTE_ETH_INPUT_SET_TUNNEL_L4_UDP_KEY},
11126                 {"gre-key", RTE_ETH_INPUT_SET_TUNNEL_GRE_KEY},
11127                 {"fld-1st", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_1ST_WORD},
11128                 {"fld-2nd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_2ND_WORD},
11129                 {"fld-3rd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_3RD_WORD},
11130                 {"fld-4th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_4TH_WORD},
11131                 {"fld-5th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_5TH_WORD},
11132                 {"fld-6th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_6TH_WORD},
11133                 {"fld-7th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_7TH_WORD},
11134                 {"fld-8th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_8TH_WORD},
11135                 {"none", RTE_ETH_INPUT_SET_NONE},
11136         };
11137
11138         for (i = 0; i < RTE_DIM(inset_table); i++) {
11139                 if (!strcmp(string, inset_table[i].str))
11140                         return inset_table[i].inset;
11141         }
11142
11143         return RTE_ETH_INPUT_SET_UNKNOWN;
11144 }
11145
11146 static void
11147 cmd_set_hash_input_set_parsed(void *parsed_result,
11148                               __rte_unused struct cmdline *cl,
11149                               __rte_unused void *data)
11150 {
11151         struct cmd_set_hash_input_set_result *res = parsed_result;
11152         struct rte_eth_hash_filter_info info;
11153
11154         memset(&info, 0, sizeof(info));
11155         info.info_type = RTE_ETH_HASH_FILTER_INPUT_SET_SELECT;
11156         info.info.input_set_conf.flow_type = str2flowtype(res->flow_type);
11157         info.info.input_set_conf.field[0] = str2inset(res->inset_field);
11158         info.info.input_set_conf.inset_size = 1;
11159         if (!strcmp(res->select, "select"))
11160                 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT;
11161         else if (!strcmp(res->select, "add"))
11162                 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;
11163         rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
11164                                 RTE_ETH_FILTER_SET, &info);
11165 }
11166
11167 cmdline_parse_token_string_t cmd_set_hash_input_set_cmd =
11168         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
11169                 set_hash_input_set, "set_hash_input_set");
11170 cmdline_parse_token_num_t cmd_set_hash_input_set_port_id =
11171         TOKEN_NUM_INITIALIZER(struct cmd_set_hash_input_set_result,
11172                 port_id, UINT16);
11173 cmdline_parse_token_string_t cmd_set_hash_input_set_flow_type =
11174         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
11175                 flow_type, NULL);
11176 cmdline_parse_token_string_t cmd_set_hash_input_set_field =
11177         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
11178                 inset_field,
11179                 "ovlan#ivlan#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#"
11180                 "ipv4-tos#ipv4-proto#ipv6-tc#ipv6-next-header#udp-src-port#"
11181                 "udp-dst-port#tcp-src-port#tcp-dst-port#sctp-src-port#"
11182                 "sctp-dst-port#sctp-veri-tag#udp-key#gre-key#fld-1st#"
11183                 "fld-2nd#fld-3rd#fld-4th#fld-5th#fld-6th#fld-7th#"
11184                 "fld-8th#none");
11185 cmdline_parse_token_string_t cmd_set_hash_input_set_select =
11186         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
11187                 select, "select#add");
11188
11189 cmdline_parse_inst_t cmd_set_hash_input_set = {
11190         .f = cmd_set_hash_input_set_parsed,
11191         .data = NULL,
11192         .help_str = "set_hash_input_set <port_id> "
11193         "ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
11194         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload|<flowtype_id> "
11195         "ovlan|ivlan|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|ipv4-tos|ipv4-proto|"
11196         "ipv6-tc|ipv6-next-header|udp-src-port|udp-dst-port|tcp-src-port|"
11197         "tcp-dst-port|sctp-src-port|sctp-dst-port|sctp-veri-tag|udp-key|"
11198         "gre-key|fld-1st|fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|"
11199         "fld-7th|fld-8th|none select|add",
11200         .tokens = {
11201                 (void *)&cmd_set_hash_input_set_cmd,
11202                 (void *)&cmd_set_hash_input_set_port_id,
11203                 (void *)&cmd_set_hash_input_set_flow_type,
11204                 (void *)&cmd_set_hash_input_set_field,
11205                 (void *)&cmd_set_hash_input_set_select,
11206                 NULL,
11207         },
11208 };
11209
11210 /* Set flow director input set */
11211 struct cmd_set_fdir_input_set_result {
11212         cmdline_fixed_string_t set_fdir_input_set;
11213         portid_t port_id;
11214         cmdline_fixed_string_t flow_type;
11215         cmdline_fixed_string_t inset_field;
11216         cmdline_fixed_string_t select;
11217 };
11218
11219 static void
11220 cmd_set_fdir_input_set_parsed(void *parsed_result,
11221         __rte_unused struct cmdline *cl,
11222         __rte_unused void *data)
11223 {
11224         struct cmd_set_fdir_input_set_result *res = parsed_result;
11225         struct rte_eth_fdir_filter_info info;
11226
11227         memset(&info, 0, sizeof(info));
11228         info.info_type = RTE_ETH_FDIR_FILTER_INPUT_SET_SELECT;
11229         info.info.input_set_conf.flow_type = str2flowtype(res->flow_type);
11230         info.info.input_set_conf.field[0] = str2inset(res->inset_field);
11231         info.info.input_set_conf.inset_size = 1;
11232         if (!strcmp(res->select, "select"))
11233                 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT;
11234         else if (!strcmp(res->select, "add"))
11235                 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;
11236         rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
11237                 RTE_ETH_FILTER_SET, &info);
11238 }
11239
11240 cmdline_parse_token_string_t cmd_set_fdir_input_set_cmd =
11241         TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
11242         set_fdir_input_set, "set_fdir_input_set");
11243 cmdline_parse_token_num_t cmd_set_fdir_input_set_port_id =
11244         TOKEN_NUM_INITIALIZER(struct cmd_set_fdir_input_set_result,
11245         port_id, UINT16);
11246 cmdline_parse_token_string_t cmd_set_fdir_input_set_flow_type =
11247         TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
11248         flow_type,
11249         "ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#"
11250         "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
11251 cmdline_parse_token_string_t cmd_set_fdir_input_set_field =
11252         TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
11253         inset_field,
11254         "ivlan#ethertype#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#"
11255         "ipv4-tos#ipv4-proto#ipv4-ttl#ipv6-tc#ipv6-next-header#"
11256         "ipv6-hop-limits#udp-src-port#udp-dst-port#"
11257         "tcp-src-port#tcp-dst-port#sctp-src-port#sctp-dst-port#"
11258         "sctp-veri-tag#none");
11259 cmdline_parse_token_string_t cmd_set_fdir_input_set_select =
11260         TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
11261         select, "select#add");
11262
11263 cmdline_parse_inst_t cmd_set_fdir_input_set = {
11264         .f = cmd_set_fdir_input_set_parsed,
11265         .data = NULL,
11266         .help_str = "set_fdir_input_set <port_id> "
11267         "ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
11268         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload "
11269         "ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|"
11270         "ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|ipv6-next-header|"
11271         "ipv6-hop-limits|udp-src-port|udp-dst-port|"
11272         "tcp-src-port|tcp-dst-port|sctp-src-port|sctp-dst-port|"
11273         "sctp-veri-tag|none select|add",
11274         .tokens = {
11275                 (void *)&cmd_set_fdir_input_set_cmd,
11276                 (void *)&cmd_set_fdir_input_set_port_id,
11277                 (void *)&cmd_set_fdir_input_set_flow_type,
11278                 (void *)&cmd_set_fdir_input_set_field,
11279                 (void *)&cmd_set_fdir_input_set_select,
11280                 NULL,
11281         },
11282 };
11283
11284 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */
11285 struct cmd_mcast_addr_result {
11286         cmdline_fixed_string_t mcast_addr_cmd;
11287         cmdline_fixed_string_t what;
11288         uint8_t port_num;
11289         struct ether_addr mc_addr;
11290 };
11291
11292 static void cmd_mcast_addr_parsed(void *parsed_result,
11293                 __attribute__((unused)) struct cmdline *cl,
11294                 __attribute__((unused)) void *data)
11295 {
11296         struct cmd_mcast_addr_result *res = parsed_result;
11297
11298         if (!is_multicast_ether_addr(&res->mc_addr)) {
11299                 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n",
11300                        res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1],
11301                        res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3],
11302                        res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]);
11303                 return;
11304         }
11305         if (strcmp(res->what, "add") == 0)
11306                 mcast_addr_add(res->port_num, &res->mc_addr);
11307         else
11308                 mcast_addr_remove(res->port_num, &res->mc_addr);
11309 }
11310
11311 cmdline_parse_token_string_t cmd_mcast_addr_cmd =
11312         TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result,
11313                                  mcast_addr_cmd, "mcast_addr");
11314 cmdline_parse_token_string_t cmd_mcast_addr_what =
11315         TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what,
11316                                  "add#remove");
11317 cmdline_parse_token_num_t cmd_mcast_addr_portnum =
11318         TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num, UINT8);
11319 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr =
11320         TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
11321
11322 cmdline_parse_inst_t cmd_mcast_addr = {
11323         .f = cmd_mcast_addr_parsed,
11324         .data = (void *)0,
11325         .help_str = "mcast_addr add|remove <port_id> <mcast_addr>: "
11326                 "Add/Remove multicast MAC address on port_id",
11327         .tokens = {
11328                 (void *)&cmd_mcast_addr_cmd,
11329                 (void *)&cmd_mcast_addr_what,
11330                 (void *)&cmd_mcast_addr_portnum,
11331                 (void *)&cmd_mcast_addr_addr,
11332                 NULL,
11333         },
11334 };
11335
11336 /* l2 tunnel config
11337  * only support E-tag now.
11338  */
11339
11340 /* Ether type config */
11341 struct cmd_config_l2_tunnel_eth_type_result {
11342         cmdline_fixed_string_t port;
11343         cmdline_fixed_string_t config;
11344         cmdline_fixed_string_t all;
11345         uint8_t id;
11346         cmdline_fixed_string_t l2_tunnel;
11347         cmdline_fixed_string_t l2_tunnel_type;
11348         cmdline_fixed_string_t eth_type;
11349         uint16_t eth_type_val;
11350 };
11351
11352 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_port =
11353         TOKEN_STRING_INITIALIZER
11354                 (struct cmd_config_l2_tunnel_eth_type_result,
11355                  port, "port");
11356 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_config =
11357         TOKEN_STRING_INITIALIZER
11358                 (struct cmd_config_l2_tunnel_eth_type_result,
11359                  config, "config");
11360 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_all_str =
11361         TOKEN_STRING_INITIALIZER
11362                 (struct cmd_config_l2_tunnel_eth_type_result,
11363                  all, "all");
11364 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_id =
11365         TOKEN_NUM_INITIALIZER
11366                 (struct cmd_config_l2_tunnel_eth_type_result,
11367                  id, UINT8);
11368 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel =
11369         TOKEN_STRING_INITIALIZER
11370                 (struct cmd_config_l2_tunnel_eth_type_result,
11371                  l2_tunnel, "l2-tunnel");
11372 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel_type =
11373         TOKEN_STRING_INITIALIZER
11374                 (struct cmd_config_l2_tunnel_eth_type_result,
11375                  l2_tunnel_type, "E-tag");
11376 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_eth_type =
11377         TOKEN_STRING_INITIALIZER
11378                 (struct cmd_config_l2_tunnel_eth_type_result,
11379                  eth_type, "ether-type");
11380 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_eth_type_val =
11381         TOKEN_NUM_INITIALIZER
11382                 (struct cmd_config_l2_tunnel_eth_type_result,
11383                  eth_type_val, UINT16);
11384
11385 static enum rte_eth_tunnel_type
11386 str2fdir_l2_tunnel_type(char *string)
11387 {
11388         uint32_t i = 0;
11389
11390         static const struct {
11391                 char str[32];
11392                 enum rte_eth_tunnel_type type;
11393         } l2_tunnel_type_str[] = {
11394                 {"E-tag", RTE_L2_TUNNEL_TYPE_E_TAG},
11395         };
11396
11397         for (i = 0; i < RTE_DIM(l2_tunnel_type_str); i++) {
11398                 if (!strcmp(l2_tunnel_type_str[i].str, string))
11399                         return l2_tunnel_type_str[i].type;
11400         }
11401         return RTE_TUNNEL_TYPE_NONE;
11402 }
11403
11404 /* ether type config for all ports */
11405 static void
11406 cmd_config_l2_tunnel_eth_type_all_parsed
11407         (void *parsed_result,
11408          __attribute__((unused)) struct cmdline *cl,
11409          __attribute__((unused)) void *data)
11410 {
11411         struct cmd_config_l2_tunnel_eth_type_result *res = parsed_result;
11412         struct rte_eth_l2_tunnel_conf entry;
11413         portid_t pid;
11414
11415         entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
11416         entry.ether_type = res->eth_type_val;
11417
11418         RTE_ETH_FOREACH_DEV(pid) {
11419                 rte_eth_dev_l2_tunnel_eth_type_conf(pid, &entry);
11420         }
11421 }
11422
11423 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_all = {
11424         .f = cmd_config_l2_tunnel_eth_type_all_parsed,
11425         .data = NULL,
11426         .help_str = "port config all l2-tunnel E-tag ether-type <value>",
11427         .tokens = {
11428                 (void *)&cmd_config_l2_tunnel_eth_type_port,
11429                 (void *)&cmd_config_l2_tunnel_eth_type_config,
11430                 (void *)&cmd_config_l2_tunnel_eth_type_all_str,
11431                 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel,
11432                 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type,
11433                 (void *)&cmd_config_l2_tunnel_eth_type_eth_type,
11434                 (void *)&cmd_config_l2_tunnel_eth_type_eth_type_val,
11435                 NULL,
11436         },
11437 };
11438
11439 /* ether type config for a specific port */
11440 static void
11441 cmd_config_l2_tunnel_eth_type_specific_parsed(
11442         void *parsed_result,
11443         __attribute__((unused)) struct cmdline *cl,
11444         __attribute__((unused)) void *data)
11445 {
11446         struct cmd_config_l2_tunnel_eth_type_result *res =
11447                  parsed_result;
11448         struct rte_eth_l2_tunnel_conf entry;
11449
11450         if (port_id_is_invalid(res->id, ENABLED_WARN))
11451                 return;
11452
11453         entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
11454         entry.ether_type = res->eth_type_val;
11455
11456         rte_eth_dev_l2_tunnel_eth_type_conf(res->id, &entry);
11457 }
11458
11459 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_specific = {
11460         .f = cmd_config_l2_tunnel_eth_type_specific_parsed,
11461         .data = NULL,
11462         .help_str = "port config <port_id> l2-tunnel E-tag ether-type <value>",
11463         .tokens = {
11464                 (void *)&cmd_config_l2_tunnel_eth_type_port,
11465                 (void *)&cmd_config_l2_tunnel_eth_type_config,
11466                 (void *)&cmd_config_l2_tunnel_eth_type_id,
11467                 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel,
11468                 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type,
11469                 (void *)&cmd_config_l2_tunnel_eth_type_eth_type,
11470                 (void *)&cmd_config_l2_tunnel_eth_type_eth_type_val,
11471                 NULL,
11472         },
11473 };
11474
11475 /* Enable/disable l2 tunnel */
11476 struct cmd_config_l2_tunnel_en_dis_result {
11477         cmdline_fixed_string_t port;
11478         cmdline_fixed_string_t config;
11479         cmdline_fixed_string_t all;
11480         uint8_t id;
11481         cmdline_fixed_string_t l2_tunnel;
11482         cmdline_fixed_string_t l2_tunnel_type;
11483         cmdline_fixed_string_t en_dis;
11484 };
11485
11486 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_port =
11487         TOKEN_STRING_INITIALIZER
11488                 (struct cmd_config_l2_tunnel_en_dis_result,
11489                  port, "port");
11490 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_config =
11491         TOKEN_STRING_INITIALIZER
11492                 (struct cmd_config_l2_tunnel_en_dis_result,
11493                  config, "config");
11494 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_all_str =
11495         TOKEN_STRING_INITIALIZER
11496                 (struct cmd_config_l2_tunnel_en_dis_result,
11497                  all, "all");
11498 cmdline_parse_token_num_t cmd_config_l2_tunnel_en_dis_id =
11499         TOKEN_NUM_INITIALIZER
11500                 (struct cmd_config_l2_tunnel_en_dis_result,
11501                  id, UINT8);
11502 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel =
11503         TOKEN_STRING_INITIALIZER
11504                 (struct cmd_config_l2_tunnel_en_dis_result,
11505                  l2_tunnel, "l2-tunnel");
11506 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel_type =
11507         TOKEN_STRING_INITIALIZER
11508                 (struct cmd_config_l2_tunnel_en_dis_result,
11509                  l2_tunnel_type, "E-tag");
11510 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_en_dis =
11511         TOKEN_STRING_INITIALIZER
11512                 (struct cmd_config_l2_tunnel_en_dis_result,
11513                  en_dis, "enable#disable");
11514
11515 /* enable/disable l2 tunnel for all ports */
11516 static void
11517 cmd_config_l2_tunnel_en_dis_all_parsed(
11518         void *parsed_result,
11519         __attribute__((unused)) struct cmdline *cl,
11520         __attribute__((unused)) void *data)
11521 {
11522         struct cmd_config_l2_tunnel_en_dis_result *res = parsed_result;
11523         struct rte_eth_l2_tunnel_conf entry;
11524         portid_t pid;
11525         uint8_t en;
11526
11527         entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
11528
11529         if (!strcmp("enable", res->en_dis))
11530                 en = 1;
11531         else
11532                 en = 0;
11533
11534         RTE_ETH_FOREACH_DEV(pid) {
11535                 rte_eth_dev_l2_tunnel_offload_set(pid,
11536                                                   &entry,
11537                                                   ETH_L2_TUNNEL_ENABLE_MASK,
11538                                                   en);
11539         }
11540 }
11541
11542 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_all = {
11543         .f = cmd_config_l2_tunnel_en_dis_all_parsed,
11544         .data = NULL,
11545         .help_str = "port config all l2-tunnel E-tag enable|disable",
11546         .tokens = {
11547                 (void *)&cmd_config_l2_tunnel_en_dis_port,
11548                 (void *)&cmd_config_l2_tunnel_en_dis_config,
11549                 (void *)&cmd_config_l2_tunnel_en_dis_all_str,
11550                 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel,
11551                 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type,
11552                 (void *)&cmd_config_l2_tunnel_en_dis_en_dis,
11553                 NULL,
11554         },
11555 };
11556
11557 /* enable/disable l2 tunnel for a port */
11558 static void
11559 cmd_config_l2_tunnel_en_dis_specific_parsed(
11560         void *parsed_result,
11561         __attribute__((unused)) struct cmdline *cl,
11562         __attribute__((unused)) void *data)
11563 {
11564         struct cmd_config_l2_tunnel_en_dis_result *res =
11565                 parsed_result;
11566         struct rte_eth_l2_tunnel_conf entry;
11567
11568         if (port_id_is_invalid(res->id, ENABLED_WARN))
11569                 return;
11570
11571         entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
11572
11573         if (!strcmp("enable", res->en_dis))
11574                 rte_eth_dev_l2_tunnel_offload_set(res->id,
11575                                                   &entry,
11576                                                   ETH_L2_TUNNEL_ENABLE_MASK,
11577                                                   1);
11578         else
11579                 rte_eth_dev_l2_tunnel_offload_set(res->id,
11580                                                   &entry,
11581                                                   ETH_L2_TUNNEL_ENABLE_MASK,
11582                                                   0);
11583 }
11584
11585 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_specific = {
11586         .f = cmd_config_l2_tunnel_en_dis_specific_parsed,
11587         .data = NULL,
11588         .help_str = "port config <port_id> l2-tunnel E-tag enable|disable",
11589         .tokens = {
11590                 (void *)&cmd_config_l2_tunnel_en_dis_port,
11591                 (void *)&cmd_config_l2_tunnel_en_dis_config,
11592                 (void *)&cmd_config_l2_tunnel_en_dis_id,
11593                 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel,
11594                 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type,
11595                 (void *)&cmd_config_l2_tunnel_en_dis_en_dis,
11596                 NULL,
11597         },
11598 };
11599
11600 /* E-tag configuration */
11601
11602 /* Common result structure for all E-tag configuration */
11603 struct cmd_config_e_tag_result {
11604         cmdline_fixed_string_t e_tag;
11605         cmdline_fixed_string_t set;
11606         cmdline_fixed_string_t insertion;
11607         cmdline_fixed_string_t stripping;
11608         cmdline_fixed_string_t forwarding;
11609         cmdline_fixed_string_t filter;
11610         cmdline_fixed_string_t add;
11611         cmdline_fixed_string_t del;
11612         cmdline_fixed_string_t on;
11613         cmdline_fixed_string_t off;
11614         cmdline_fixed_string_t on_off;
11615         cmdline_fixed_string_t port_tag_id;
11616         uint32_t port_tag_id_val;
11617         cmdline_fixed_string_t e_tag_id;
11618         uint16_t e_tag_id_val;
11619         cmdline_fixed_string_t dst_pool;
11620         uint8_t dst_pool_val;
11621         cmdline_fixed_string_t port;
11622         portid_t port_id;
11623         cmdline_fixed_string_t vf;
11624         uint8_t vf_id;
11625 };
11626
11627 /* Common CLI fields for all E-tag configuration */
11628 cmdline_parse_token_string_t cmd_config_e_tag_e_tag =
11629         TOKEN_STRING_INITIALIZER
11630                 (struct cmd_config_e_tag_result,
11631                  e_tag, "E-tag");
11632 cmdline_parse_token_string_t cmd_config_e_tag_set =
11633         TOKEN_STRING_INITIALIZER
11634                 (struct cmd_config_e_tag_result,
11635                  set, "set");
11636 cmdline_parse_token_string_t cmd_config_e_tag_insertion =
11637         TOKEN_STRING_INITIALIZER
11638                 (struct cmd_config_e_tag_result,
11639                  insertion, "insertion");
11640 cmdline_parse_token_string_t cmd_config_e_tag_stripping =
11641         TOKEN_STRING_INITIALIZER
11642                 (struct cmd_config_e_tag_result,
11643                  stripping, "stripping");
11644 cmdline_parse_token_string_t cmd_config_e_tag_forwarding =
11645         TOKEN_STRING_INITIALIZER
11646                 (struct cmd_config_e_tag_result,
11647                  forwarding, "forwarding");
11648 cmdline_parse_token_string_t cmd_config_e_tag_filter =
11649         TOKEN_STRING_INITIALIZER
11650                 (struct cmd_config_e_tag_result,
11651                  filter, "filter");
11652 cmdline_parse_token_string_t cmd_config_e_tag_add =
11653         TOKEN_STRING_INITIALIZER
11654                 (struct cmd_config_e_tag_result,
11655                  add, "add");
11656 cmdline_parse_token_string_t cmd_config_e_tag_del =
11657         TOKEN_STRING_INITIALIZER
11658                 (struct cmd_config_e_tag_result,
11659                  del, "del");
11660 cmdline_parse_token_string_t cmd_config_e_tag_on =
11661         TOKEN_STRING_INITIALIZER
11662                 (struct cmd_config_e_tag_result,
11663                  on, "on");
11664 cmdline_parse_token_string_t cmd_config_e_tag_off =
11665         TOKEN_STRING_INITIALIZER
11666                 (struct cmd_config_e_tag_result,
11667                  off, "off");
11668 cmdline_parse_token_string_t cmd_config_e_tag_on_off =
11669         TOKEN_STRING_INITIALIZER
11670                 (struct cmd_config_e_tag_result,
11671                  on_off, "on#off");
11672 cmdline_parse_token_string_t cmd_config_e_tag_port_tag_id =
11673         TOKEN_STRING_INITIALIZER
11674                 (struct cmd_config_e_tag_result,
11675                  port_tag_id, "port-tag-id");
11676 cmdline_parse_token_num_t cmd_config_e_tag_port_tag_id_val =
11677         TOKEN_NUM_INITIALIZER
11678                 (struct cmd_config_e_tag_result,
11679                  port_tag_id_val, UINT32);
11680 cmdline_parse_token_string_t cmd_config_e_tag_e_tag_id =
11681         TOKEN_STRING_INITIALIZER
11682                 (struct cmd_config_e_tag_result,
11683                  e_tag_id, "e-tag-id");
11684 cmdline_parse_token_num_t cmd_config_e_tag_e_tag_id_val =
11685         TOKEN_NUM_INITIALIZER
11686                 (struct cmd_config_e_tag_result,
11687                  e_tag_id_val, UINT16);
11688 cmdline_parse_token_string_t cmd_config_e_tag_dst_pool =
11689         TOKEN_STRING_INITIALIZER
11690                 (struct cmd_config_e_tag_result,
11691                  dst_pool, "dst-pool");
11692 cmdline_parse_token_num_t cmd_config_e_tag_dst_pool_val =
11693         TOKEN_NUM_INITIALIZER
11694                 (struct cmd_config_e_tag_result,
11695                  dst_pool_val, UINT8);
11696 cmdline_parse_token_string_t cmd_config_e_tag_port =
11697         TOKEN_STRING_INITIALIZER
11698                 (struct cmd_config_e_tag_result,
11699                  port, "port");
11700 cmdline_parse_token_num_t cmd_config_e_tag_port_id =
11701         TOKEN_NUM_INITIALIZER
11702                 (struct cmd_config_e_tag_result,
11703                  port_id, UINT16);
11704 cmdline_parse_token_string_t cmd_config_e_tag_vf =
11705         TOKEN_STRING_INITIALIZER
11706                 (struct cmd_config_e_tag_result,
11707                  vf, "vf");
11708 cmdline_parse_token_num_t cmd_config_e_tag_vf_id =
11709         TOKEN_NUM_INITIALIZER
11710                 (struct cmd_config_e_tag_result,
11711                  vf_id, UINT8);
11712
11713 /* E-tag insertion configuration */
11714 static void
11715 cmd_config_e_tag_insertion_en_parsed(
11716         void *parsed_result,
11717         __attribute__((unused)) struct cmdline *cl,
11718         __attribute__((unused)) void *data)
11719 {
11720         struct cmd_config_e_tag_result *res =
11721                 parsed_result;
11722         struct rte_eth_l2_tunnel_conf entry;
11723
11724         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11725                 return;
11726
11727         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
11728         entry.tunnel_id = res->port_tag_id_val;
11729         entry.vf_id = res->vf_id;
11730         rte_eth_dev_l2_tunnel_offload_set(res->port_id,
11731                                           &entry,
11732                                           ETH_L2_TUNNEL_INSERTION_MASK,
11733                                           1);
11734 }
11735
11736 static void
11737 cmd_config_e_tag_insertion_dis_parsed(
11738         void *parsed_result,
11739         __attribute__((unused)) struct cmdline *cl,
11740         __attribute__((unused)) void *data)
11741 {
11742         struct cmd_config_e_tag_result *res =
11743                 parsed_result;
11744         struct rte_eth_l2_tunnel_conf entry;
11745
11746         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11747                 return;
11748
11749         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
11750         entry.vf_id = res->vf_id;
11751
11752         rte_eth_dev_l2_tunnel_offload_set(res->port_id,
11753                                           &entry,
11754                                           ETH_L2_TUNNEL_INSERTION_MASK,
11755                                           0);
11756 }
11757
11758 cmdline_parse_inst_t cmd_config_e_tag_insertion_en = {
11759         .f = cmd_config_e_tag_insertion_en_parsed,
11760         .data = NULL,
11761         .help_str = "E-tag ... : E-tag insertion enable",
11762         .tokens = {
11763                 (void *)&cmd_config_e_tag_e_tag,
11764                 (void *)&cmd_config_e_tag_set,
11765                 (void *)&cmd_config_e_tag_insertion,
11766                 (void *)&cmd_config_e_tag_on,
11767                 (void *)&cmd_config_e_tag_port_tag_id,
11768                 (void *)&cmd_config_e_tag_port_tag_id_val,
11769                 (void *)&cmd_config_e_tag_port,
11770                 (void *)&cmd_config_e_tag_port_id,
11771                 (void *)&cmd_config_e_tag_vf,
11772                 (void *)&cmd_config_e_tag_vf_id,
11773                 NULL,
11774         },
11775 };
11776
11777 cmdline_parse_inst_t cmd_config_e_tag_insertion_dis = {
11778         .f = cmd_config_e_tag_insertion_dis_parsed,
11779         .data = NULL,
11780         .help_str = "E-tag ... : E-tag insertion disable",
11781         .tokens = {
11782                 (void *)&cmd_config_e_tag_e_tag,
11783                 (void *)&cmd_config_e_tag_set,
11784                 (void *)&cmd_config_e_tag_insertion,
11785                 (void *)&cmd_config_e_tag_off,
11786                 (void *)&cmd_config_e_tag_port,
11787                 (void *)&cmd_config_e_tag_port_id,
11788                 (void *)&cmd_config_e_tag_vf,
11789                 (void *)&cmd_config_e_tag_vf_id,
11790                 NULL,
11791         },
11792 };
11793
11794 /* E-tag stripping configuration */
11795 static void
11796 cmd_config_e_tag_stripping_parsed(
11797         void *parsed_result,
11798         __attribute__((unused)) struct cmdline *cl,
11799         __attribute__((unused)) void *data)
11800 {
11801         struct cmd_config_e_tag_result *res =
11802                 parsed_result;
11803         struct rte_eth_l2_tunnel_conf entry;
11804
11805         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11806                 return;
11807
11808         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
11809
11810         if (!strcmp(res->on_off, "on"))
11811                 rte_eth_dev_l2_tunnel_offload_set
11812                         (res->port_id,
11813                          &entry,
11814                          ETH_L2_TUNNEL_STRIPPING_MASK,
11815                          1);
11816         else
11817                 rte_eth_dev_l2_tunnel_offload_set
11818                         (res->port_id,
11819                          &entry,
11820                          ETH_L2_TUNNEL_STRIPPING_MASK,
11821                          0);
11822 }
11823
11824 cmdline_parse_inst_t cmd_config_e_tag_stripping_en_dis = {
11825         .f = cmd_config_e_tag_stripping_parsed,
11826         .data = NULL,
11827         .help_str = "E-tag ... : E-tag stripping enable/disable",
11828         .tokens = {
11829                 (void *)&cmd_config_e_tag_e_tag,
11830                 (void *)&cmd_config_e_tag_set,
11831                 (void *)&cmd_config_e_tag_stripping,
11832                 (void *)&cmd_config_e_tag_on_off,
11833                 (void *)&cmd_config_e_tag_port,
11834                 (void *)&cmd_config_e_tag_port_id,
11835                 NULL,
11836         },
11837 };
11838
11839 /* E-tag forwarding configuration */
11840 static void
11841 cmd_config_e_tag_forwarding_parsed(
11842         void *parsed_result,
11843         __attribute__((unused)) struct cmdline *cl,
11844         __attribute__((unused)) void *data)
11845 {
11846         struct cmd_config_e_tag_result *res = parsed_result;
11847         struct rte_eth_l2_tunnel_conf entry;
11848
11849         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11850                 return;
11851
11852         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
11853
11854         if (!strcmp(res->on_off, "on"))
11855                 rte_eth_dev_l2_tunnel_offload_set
11856                         (res->port_id,
11857                          &entry,
11858                          ETH_L2_TUNNEL_FORWARDING_MASK,
11859                          1);
11860         else
11861                 rte_eth_dev_l2_tunnel_offload_set
11862                         (res->port_id,
11863                          &entry,
11864                          ETH_L2_TUNNEL_FORWARDING_MASK,
11865                          0);
11866 }
11867
11868 cmdline_parse_inst_t cmd_config_e_tag_forwarding_en_dis = {
11869         .f = cmd_config_e_tag_forwarding_parsed,
11870         .data = NULL,
11871         .help_str = "E-tag ... : E-tag forwarding enable/disable",
11872         .tokens = {
11873                 (void *)&cmd_config_e_tag_e_tag,
11874                 (void *)&cmd_config_e_tag_set,
11875                 (void *)&cmd_config_e_tag_forwarding,
11876                 (void *)&cmd_config_e_tag_on_off,
11877                 (void *)&cmd_config_e_tag_port,
11878                 (void *)&cmd_config_e_tag_port_id,
11879                 NULL,
11880         },
11881 };
11882
11883 /* E-tag filter configuration */
11884 static void
11885 cmd_config_e_tag_filter_add_parsed(
11886         void *parsed_result,
11887         __attribute__((unused)) struct cmdline *cl,
11888         __attribute__((unused)) void *data)
11889 {
11890         struct cmd_config_e_tag_result *res = parsed_result;
11891         struct rte_eth_l2_tunnel_conf entry;
11892         int ret = 0;
11893
11894         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11895                 return;
11896
11897         if (res->e_tag_id_val > 0x3fff) {
11898                 printf("e-tag-id must be equal or less than 0x3fff.\n");
11899                 return;
11900         }
11901
11902         ret = rte_eth_dev_filter_supported(res->port_id,
11903                                            RTE_ETH_FILTER_L2_TUNNEL);
11904         if (ret < 0) {
11905                 printf("E-tag filter is not supported on port %u.\n",
11906                        res->port_id);
11907                 return;
11908         }
11909
11910         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
11911         entry.tunnel_id = res->e_tag_id_val;
11912         entry.pool = res->dst_pool_val;
11913
11914         ret = rte_eth_dev_filter_ctrl(res->port_id,
11915                                       RTE_ETH_FILTER_L2_TUNNEL,
11916                                       RTE_ETH_FILTER_ADD,
11917                                       &entry);
11918         if (ret < 0)
11919                 printf("E-tag filter programming error: (%s)\n",
11920                        strerror(-ret));
11921 }
11922
11923 cmdline_parse_inst_t cmd_config_e_tag_filter_add = {
11924         .f = cmd_config_e_tag_filter_add_parsed,
11925         .data = NULL,
11926         .help_str = "E-tag ... : E-tag filter add",
11927         .tokens = {
11928                 (void *)&cmd_config_e_tag_e_tag,
11929                 (void *)&cmd_config_e_tag_set,
11930                 (void *)&cmd_config_e_tag_filter,
11931                 (void *)&cmd_config_e_tag_add,
11932                 (void *)&cmd_config_e_tag_e_tag_id,
11933                 (void *)&cmd_config_e_tag_e_tag_id_val,
11934                 (void *)&cmd_config_e_tag_dst_pool,
11935                 (void *)&cmd_config_e_tag_dst_pool_val,
11936                 (void *)&cmd_config_e_tag_port,
11937                 (void *)&cmd_config_e_tag_port_id,
11938                 NULL,
11939         },
11940 };
11941
11942 static void
11943 cmd_config_e_tag_filter_del_parsed(
11944         void *parsed_result,
11945         __attribute__((unused)) struct cmdline *cl,
11946         __attribute__((unused)) void *data)
11947 {
11948         struct cmd_config_e_tag_result *res = parsed_result;
11949         struct rte_eth_l2_tunnel_conf entry;
11950         int ret = 0;
11951
11952         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11953                 return;
11954
11955         if (res->e_tag_id_val > 0x3fff) {
11956                 printf("e-tag-id must be less than 0x3fff.\n");
11957                 return;
11958         }
11959
11960         ret = rte_eth_dev_filter_supported(res->port_id,
11961                                            RTE_ETH_FILTER_L2_TUNNEL);
11962         if (ret < 0) {
11963                 printf("E-tag filter is not supported on port %u.\n",
11964                        res->port_id);
11965                 return;
11966         }
11967
11968         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
11969         entry.tunnel_id = res->e_tag_id_val;
11970
11971         ret = rte_eth_dev_filter_ctrl(res->port_id,
11972                                       RTE_ETH_FILTER_L2_TUNNEL,
11973                                       RTE_ETH_FILTER_DELETE,
11974                                       &entry);
11975         if (ret < 0)
11976                 printf("E-tag filter programming error: (%s)\n",
11977                        strerror(-ret));
11978 }
11979
11980 cmdline_parse_inst_t cmd_config_e_tag_filter_del = {
11981         .f = cmd_config_e_tag_filter_del_parsed,
11982         .data = NULL,
11983         .help_str = "E-tag ... : E-tag filter delete",
11984         .tokens = {
11985                 (void *)&cmd_config_e_tag_e_tag,
11986                 (void *)&cmd_config_e_tag_set,
11987                 (void *)&cmd_config_e_tag_filter,
11988                 (void *)&cmd_config_e_tag_del,
11989                 (void *)&cmd_config_e_tag_e_tag_id,
11990                 (void *)&cmd_config_e_tag_e_tag_id_val,
11991                 (void *)&cmd_config_e_tag_port,
11992                 (void *)&cmd_config_e_tag_port_id,
11993                 NULL,
11994         },
11995 };
11996
11997 /* vf vlan anti spoof configuration */
11998
11999 /* Common result structure for vf vlan anti spoof */
12000 struct cmd_vf_vlan_anti_spoof_result {
12001         cmdline_fixed_string_t set;
12002         cmdline_fixed_string_t vf;
12003         cmdline_fixed_string_t vlan;
12004         cmdline_fixed_string_t antispoof;
12005         portid_t port_id;
12006         uint32_t vf_id;
12007         cmdline_fixed_string_t on_off;
12008 };
12009
12010 /* Common CLI fields for vf vlan anti spoof enable disable */
12011 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set =
12012         TOKEN_STRING_INITIALIZER
12013                 (struct cmd_vf_vlan_anti_spoof_result,
12014                  set, "set");
12015 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf =
12016         TOKEN_STRING_INITIALIZER
12017                 (struct cmd_vf_vlan_anti_spoof_result,
12018                  vf, "vf");
12019 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan =
12020         TOKEN_STRING_INITIALIZER
12021                 (struct cmd_vf_vlan_anti_spoof_result,
12022                  vlan, "vlan");
12023 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof =
12024         TOKEN_STRING_INITIALIZER
12025                 (struct cmd_vf_vlan_anti_spoof_result,
12026                  antispoof, "antispoof");
12027 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id =
12028         TOKEN_NUM_INITIALIZER
12029                 (struct cmd_vf_vlan_anti_spoof_result,
12030                  port_id, UINT16);
12031 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id =
12032         TOKEN_NUM_INITIALIZER
12033                 (struct cmd_vf_vlan_anti_spoof_result,
12034                  vf_id, UINT32);
12035 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off =
12036         TOKEN_STRING_INITIALIZER
12037                 (struct cmd_vf_vlan_anti_spoof_result,
12038                  on_off, "on#off");
12039
12040 static void
12041 cmd_set_vf_vlan_anti_spoof_parsed(
12042         void *parsed_result,
12043         __attribute__((unused)) struct cmdline *cl,
12044         __attribute__((unused)) void *data)
12045 {
12046         struct cmd_vf_vlan_anti_spoof_result *res = parsed_result;
12047         int ret = -ENOTSUP;
12048
12049         __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12050
12051         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12052                 return;
12053
12054 #ifdef RTE_LIBRTE_IXGBE_PMD
12055         if (ret == -ENOTSUP)
12056                 ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id,
12057                                 res->vf_id, is_on);
12058 #endif
12059 #ifdef RTE_LIBRTE_I40E_PMD
12060         if (ret == -ENOTSUP)
12061                 ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id,
12062                                 res->vf_id, is_on);
12063 #endif
12064 #ifdef RTE_LIBRTE_BNXT_PMD
12065         if (ret == -ENOTSUP)
12066                 ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id,
12067                                 res->vf_id, is_on);
12068 #endif
12069
12070         switch (ret) {
12071         case 0:
12072                 break;
12073         case -EINVAL:
12074                 printf("invalid vf_id %d\n", res->vf_id);
12075                 break;
12076         case -ENODEV:
12077                 printf("invalid port_id %d\n", res->port_id);
12078                 break;
12079         case -ENOTSUP:
12080                 printf("function not implemented\n");
12081                 break;
12082         default:
12083                 printf("programming error: (%s)\n", strerror(-ret));
12084         }
12085 }
12086
12087 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = {
12088         .f = cmd_set_vf_vlan_anti_spoof_parsed,
12089         .data = NULL,
12090         .help_str = "set vf vlan antispoof <port_id> <vf_id> on|off",
12091         .tokens = {
12092                 (void *)&cmd_vf_vlan_anti_spoof_set,
12093                 (void *)&cmd_vf_vlan_anti_spoof_vf,
12094                 (void *)&cmd_vf_vlan_anti_spoof_vlan,
12095                 (void *)&cmd_vf_vlan_anti_spoof_antispoof,
12096                 (void *)&cmd_vf_vlan_anti_spoof_port_id,
12097                 (void *)&cmd_vf_vlan_anti_spoof_vf_id,
12098                 (void *)&cmd_vf_vlan_anti_spoof_on_off,
12099                 NULL,
12100         },
12101 };
12102
12103 /* vf mac anti spoof configuration */
12104
12105 /* Common result structure for vf mac anti spoof */
12106 struct cmd_vf_mac_anti_spoof_result {
12107         cmdline_fixed_string_t set;
12108         cmdline_fixed_string_t vf;
12109         cmdline_fixed_string_t mac;
12110         cmdline_fixed_string_t antispoof;
12111         portid_t port_id;
12112         uint32_t vf_id;
12113         cmdline_fixed_string_t on_off;
12114 };
12115
12116 /* Common CLI fields for vf mac anti spoof enable disable */
12117 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set =
12118         TOKEN_STRING_INITIALIZER
12119                 (struct cmd_vf_mac_anti_spoof_result,
12120                  set, "set");
12121 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf =
12122         TOKEN_STRING_INITIALIZER
12123                 (struct cmd_vf_mac_anti_spoof_result,
12124                  vf, "vf");
12125 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac =
12126         TOKEN_STRING_INITIALIZER
12127                 (struct cmd_vf_mac_anti_spoof_result,
12128                  mac, "mac");
12129 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof =
12130         TOKEN_STRING_INITIALIZER
12131                 (struct cmd_vf_mac_anti_spoof_result,
12132                  antispoof, "antispoof");
12133 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id =
12134         TOKEN_NUM_INITIALIZER
12135                 (struct cmd_vf_mac_anti_spoof_result,
12136                  port_id, UINT16);
12137 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id =
12138         TOKEN_NUM_INITIALIZER
12139                 (struct cmd_vf_mac_anti_spoof_result,
12140                  vf_id, UINT32);
12141 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off =
12142         TOKEN_STRING_INITIALIZER
12143                 (struct cmd_vf_mac_anti_spoof_result,
12144                  on_off, "on#off");
12145
12146 static void
12147 cmd_set_vf_mac_anti_spoof_parsed(
12148         void *parsed_result,
12149         __attribute__((unused)) struct cmdline *cl,
12150         __attribute__((unused)) void *data)
12151 {
12152         struct cmd_vf_mac_anti_spoof_result *res = parsed_result;
12153         int ret = -ENOTSUP;
12154
12155         __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12156
12157         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12158                 return;
12159
12160 #ifdef RTE_LIBRTE_IXGBE_PMD
12161         if (ret == -ENOTSUP)
12162                 ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id,
12163                         res->vf_id, is_on);
12164 #endif
12165 #ifdef RTE_LIBRTE_I40E_PMD
12166         if (ret == -ENOTSUP)
12167                 ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id,
12168                         res->vf_id, is_on);
12169 #endif
12170 #ifdef RTE_LIBRTE_BNXT_PMD
12171         if (ret == -ENOTSUP)
12172                 ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id,
12173                         res->vf_id, is_on);
12174 #endif
12175
12176         switch (ret) {
12177         case 0:
12178                 break;
12179         case -EINVAL:
12180                 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12181                 break;
12182         case -ENODEV:
12183                 printf("invalid port_id %d\n", res->port_id);
12184                 break;
12185         case -ENOTSUP:
12186                 printf("function not implemented\n");
12187                 break;
12188         default:
12189                 printf("programming error: (%s)\n", strerror(-ret));
12190         }
12191 }
12192
12193 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = {
12194         .f = cmd_set_vf_mac_anti_spoof_parsed,
12195         .data = NULL,
12196         .help_str = "set vf mac antispoof <port_id> <vf_id> on|off",
12197         .tokens = {
12198                 (void *)&cmd_vf_mac_anti_spoof_set,
12199                 (void *)&cmd_vf_mac_anti_spoof_vf,
12200                 (void *)&cmd_vf_mac_anti_spoof_mac,
12201                 (void *)&cmd_vf_mac_anti_spoof_antispoof,
12202                 (void *)&cmd_vf_mac_anti_spoof_port_id,
12203                 (void *)&cmd_vf_mac_anti_spoof_vf_id,
12204                 (void *)&cmd_vf_mac_anti_spoof_on_off,
12205                 NULL,
12206         },
12207 };
12208
12209 /* vf vlan strip queue configuration */
12210
12211 /* Common result structure for vf mac anti spoof */
12212 struct cmd_vf_vlan_stripq_result {
12213         cmdline_fixed_string_t set;
12214         cmdline_fixed_string_t vf;
12215         cmdline_fixed_string_t vlan;
12216         cmdline_fixed_string_t stripq;
12217         portid_t port_id;
12218         uint16_t vf_id;
12219         cmdline_fixed_string_t on_off;
12220 };
12221
12222 /* Common CLI fields for vf vlan strip enable disable */
12223 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set =
12224         TOKEN_STRING_INITIALIZER
12225                 (struct cmd_vf_vlan_stripq_result,
12226                  set, "set");
12227 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf =
12228         TOKEN_STRING_INITIALIZER
12229                 (struct cmd_vf_vlan_stripq_result,
12230                  vf, "vf");
12231 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan =
12232         TOKEN_STRING_INITIALIZER
12233                 (struct cmd_vf_vlan_stripq_result,
12234                  vlan, "vlan");
12235 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq =
12236         TOKEN_STRING_INITIALIZER
12237                 (struct cmd_vf_vlan_stripq_result,
12238                  stripq, "stripq");
12239 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id =
12240         TOKEN_NUM_INITIALIZER
12241                 (struct cmd_vf_vlan_stripq_result,
12242                  port_id, UINT16);
12243 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id =
12244         TOKEN_NUM_INITIALIZER
12245                 (struct cmd_vf_vlan_stripq_result,
12246                  vf_id, UINT16);
12247 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off =
12248         TOKEN_STRING_INITIALIZER
12249                 (struct cmd_vf_vlan_stripq_result,
12250                  on_off, "on#off");
12251
12252 static void
12253 cmd_set_vf_vlan_stripq_parsed(
12254         void *parsed_result,
12255         __attribute__((unused)) struct cmdline *cl,
12256         __attribute__((unused)) void *data)
12257 {
12258         struct cmd_vf_vlan_stripq_result *res = parsed_result;
12259         int ret = -ENOTSUP;
12260
12261         __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12262
12263         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12264                 return;
12265
12266 #ifdef RTE_LIBRTE_IXGBE_PMD
12267         if (ret == -ENOTSUP)
12268                 ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id,
12269                         res->vf_id, is_on);
12270 #endif
12271 #ifdef RTE_LIBRTE_I40E_PMD
12272         if (ret == -ENOTSUP)
12273                 ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id,
12274                         res->vf_id, is_on);
12275 #endif
12276 #ifdef RTE_LIBRTE_BNXT_PMD
12277         if (ret == -ENOTSUP)
12278                 ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id,
12279                         res->vf_id, is_on);
12280 #endif
12281
12282         switch (ret) {
12283         case 0:
12284                 break;
12285         case -EINVAL:
12286                 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12287                 break;
12288         case -ENODEV:
12289                 printf("invalid port_id %d\n", res->port_id);
12290                 break;
12291         case -ENOTSUP:
12292                 printf("function not implemented\n");
12293                 break;
12294         default:
12295                 printf("programming error: (%s)\n", strerror(-ret));
12296         }
12297 }
12298
12299 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = {
12300         .f = cmd_set_vf_vlan_stripq_parsed,
12301         .data = NULL,
12302         .help_str = "set vf vlan stripq <port_id> <vf_id> on|off",
12303         .tokens = {
12304                 (void *)&cmd_vf_vlan_stripq_set,
12305                 (void *)&cmd_vf_vlan_stripq_vf,
12306                 (void *)&cmd_vf_vlan_stripq_vlan,
12307                 (void *)&cmd_vf_vlan_stripq_stripq,
12308                 (void *)&cmd_vf_vlan_stripq_port_id,
12309                 (void *)&cmd_vf_vlan_stripq_vf_id,
12310                 (void *)&cmd_vf_vlan_stripq_on_off,
12311                 NULL,
12312         },
12313 };
12314
12315 /* vf vlan insert configuration */
12316
12317 /* Common result structure for vf vlan insert */
12318 struct cmd_vf_vlan_insert_result {
12319         cmdline_fixed_string_t set;
12320         cmdline_fixed_string_t vf;
12321         cmdline_fixed_string_t vlan;
12322         cmdline_fixed_string_t insert;
12323         portid_t port_id;
12324         uint16_t vf_id;
12325         uint16_t vlan_id;
12326 };
12327
12328 /* Common CLI fields for vf vlan insert enable disable */
12329 cmdline_parse_token_string_t cmd_vf_vlan_insert_set =
12330         TOKEN_STRING_INITIALIZER
12331                 (struct cmd_vf_vlan_insert_result,
12332                  set, "set");
12333 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf =
12334         TOKEN_STRING_INITIALIZER
12335                 (struct cmd_vf_vlan_insert_result,
12336                  vf, "vf");
12337 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan =
12338         TOKEN_STRING_INITIALIZER
12339                 (struct cmd_vf_vlan_insert_result,
12340                  vlan, "vlan");
12341 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert =
12342         TOKEN_STRING_INITIALIZER
12343                 (struct cmd_vf_vlan_insert_result,
12344                  insert, "insert");
12345 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id =
12346         TOKEN_NUM_INITIALIZER
12347                 (struct cmd_vf_vlan_insert_result,
12348                  port_id, UINT16);
12349 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id =
12350         TOKEN_NUM_INITIALIZER
12351                 (struct cmd_vf_vlan_insert_result,
12352                  vf_id, UINT16);
12353 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id =
12354         TOKEN_NUM_INITIALIZER
12355                 (struct cmd_vf_vlan_insert_result,
12356                  vlan_id, UINT16);
12357
12358 static void
12359 cmd_set_vf_vlan_insert_parsed(
12360         void *parsed_result,
12361         __attribute__((unused)) struct cmdline *cl,
12362         __attribute__((unused)) void *data)
12363 {
12364         struct cmd_vf_vlan_insert_result *res = parsed_result;
12365         int ret = -ENOTSUP;
12366
12367         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12368                 return;
12369
12370 #ifdef RTE_LIBRTE_IXGBE_PMD
12371         if (ret == -ENOTSUP)
12372                 ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id,
12373                         res->vlan_id);
12374 #endif
12375 #ifdef RTE_LIBRTE_I40E_PMD
12376         if (ret == -ENOTSUP)
12377                 ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id,
12378                         res->vlan_id);
12379 #endif
12380 #ifdef RTE_LIBRTE_BNXT_PMD
12381         if (ret == -ENOTSUP)
12382                 ret = rte_pmd_bnxt_set_vf_vlan_insert(res->port_id, res->vf_id,
12383                         res->vlan_id);
12384 #endif
12385
12386         switch (ret) {
12387         case 0:
12388                 break;
12389         case -EINVAL:
12390                 printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id);
12391                 break;
12392         case -ENODEV:
12393                 printf("invalid port_id %d\n", res->port_id);
12394                 break;
12395         case -ENOTSUP:
12396                 printf("function not implemented\n");
12397                 break;
12398         default:
12399                 printf("programming error: (%s)\n", strerror(-ret));
12400         }
12401 }
12402
12403 cmdline_parse_inst_t cmd_set_vf_vlan_insert = {
12404         .f = cmd_set_vf_vlan_insert_parsed,
12405         .data = NULL,
12406         .help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>",
12407         .tokens = {
12408                 (void *)&cmd_vf_vlan_insert_set,
12409                 (void *)&cmd_vf_vlan_insert_vf,
12410                 (void *)&cmd_vf_vlan_insert_vlan,
12411                 (void *)&cmd_vf_vlan_insert_insert,
12412                 (void *)&cmd_vf_vlan_insert_port_id,
12413                 (void *)&cmd_vf_vlan_insert_vf_id,
12414                 (void *)&cmd_vf_vlan_insert_vlan_id,
12415                 NULL,
12416         },
12417 };
12418
12419 /* tx loopback configuration */
12420
12421 /* Common result structure for tx loopback */
12422 struct cmd_tx_loopback_result {
12423         cmdline_fixed_string_t set;
12424         cmdline_fixed_string_t tx;
12425         cmdline_fixed_string_t loopback;
12426         portid_t port_id;
12427         cmdline_fixed_string_t on_off;
12428 };
12429
12430 /* Common CLI fields for tx loopback enable disable */
12431 cmdline_parse_token_string_t cmd_tx_loopback_set =
12432         TOKEN_STRING_INITIALIZER
12433                 (struct cmd_tx_loopback_result,
12434                  set, "set");
12435 cmdline_parse_token_string_t cmd_tx_loopback_tx =
12436         TOKEN_STRING_INITIALIZER
12437                 (struct cmd_tx_loopback_result,
12438                  tx, "tx");
12439 cmdline_parse_token_string_t cmd_tx_loopback_loopback =
12440         TOKEN_STRING_INITIALIZER
12441                 (struct cmd_tx_loopback_result,
12442                  loopback, "loopback");
12443 cmdline_parse_token_num_t cmd_tx_loopback_port_id =
12444         TOKEN_NUM_INITIALIZER
12445                 (struct cmd_tx_loopback_result,
12446                  port_id, UINT16);
12447 cmdline_parse_token_string_t cmd_tx_loopback_on_off =
12448         TOKEN_STRING_INITIALIZER
12449                 (struct cmd_tx_loopback_result,
12450                  on_off, "on#off");
12451
12452 static void
12453 cmd_set_tx_loopback_parsed(
12454         void *parsed_result,
12455         __attribute__((unused)) struct cmdline *cl,
12456         __attribute__((unused)) void *data)
12457 {
12458         struct cmd_tx_loopback_result *res = parsed_result;
12459         int ret = -ENOTSUP;
12460
12461         __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12462
12463         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12464                 return;
12465
12466 #ifdef RTE_LIBRTE_IXGBE_PMD
12467         if (ret == -ENOTSUP)
12468                 ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on);
12469 #endif
12470 #ifdef RTE_LIBRTE_I40E_PMD
12471         if (ret == -ENOTSUP)
12472                 ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on);
12473 #endif
12474 #ifdef RTE_LIBRTE_BNXT_PMD
12475         if (ret == -ENOTSUP)
12476                 ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on);
12477 #endif
12478
12479         switch (ret) {
12480         case 0:
12481                 break;
12482         case -EINVAL:
12483                 printf("invalid is_on %d\n", is_on);
12484                 break;
12485         case -ENODEV:
12486                 printf("invalid port_id %d\n", res->port_id);
12487                 break;
12488         case -ENOTSUP:
12489                 printf("function not implemented\n");
12490                 break;
12491         default:
12492                 printf("programming error: (%s)\n", strerror(-ret));
12493         }
12494 }
12495
12496 cmdline_parse_inst_t cmd_set_tx_loopback = {
12497         .f = cmd_set_tx_loopback_parsed,
12498         .data = NULL,
12499         .help_str = "set tx loopback <port_id> on|off",
12500         .tokens = {
12501                 (void *)&cmd_tx_loopback_set,
12502                 (void *)&cmd_tx_loopback_tx,
12503                 (void *)&cmd_tx_loopback_loopback,
12504                 (void *)&cmd_tx_loopback_port_id,
12505                 (void *)&cmd_tx_loopback_on_off,
12506                 NULL,
12507         },
12508 };
12509
12510 /* all queues drop enable configuration */
12511
12512 /* Common result structure for all queues drop enable */
12513 struct cmd_all_queues_drop_en_result {
12514         cmdline_fixed_string_t set;
12515         cmdline_fixed_string_t all;
12516         cmdline_fixed_string_t queues;
12517         cmdline_fixed_string_t drop;
12518         portid_t port_id;
12519         cmdline_fixed_string_t on_off;
12520 };
12521
12522 /* Common CLI fields for tx loopback enable disable */
12523 cmdline_parse_token_string_t cmd_all_queues_drop_en_set =
12524         TOKEN_STRING_INITIALIZER
12525                 (struct cmd_all_queues_drop_en_result,
12526                  set, "set");
12527 cmdline_parse_token_string_t cmd_all_queues_drop_en_all =
12528         TOKEN_STRING_INITIALIZER
12529                 (struct cmd_all_queues_drop_en_result,
12530                  all, "all");
12531 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues =
12532         TOKEN_STRING_INITIALIZER
12533                 (struct cmd_all_queues_drop_en_result,
12534                  queues, "queues");
12535 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop =
12536         TOKEN_STRING_INITIALIZER
12537                 (struct cmd_all_queues_drop_en_result,
12538                  drop, "drop");
12539 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id =
12540         TOKEN_NUM_INITIALIZER
12541                 (struct cmd_all_queues_drop_en_result,
12542                  port_id, UINT16);
12543 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off =
12544         TOKEN_STRING_INITIALIZER
12545                 (struct cmd_all_queues_drop_en_result,
12546                  on_off, "on#off");
12547
12548 static void
12549 cmd_set_all_queues_drop_en_parsed(
12550         void *parsed_result,
12551         __attribute__((unused)) struct cmdline *cl,
12552         __attribute__((unused)) void *data)
12553 {
12554         struct cmd_all_queues_drop_en_result *res = parsed_result;
12555         int ret = -ENOTSUP;
12556         int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12557
12558         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12559                 return;
12560
12561 #ifdef RTE_LIBRTE_IXGBE_PMD
12562         if (ret == -ENOTSUP)
12563                 ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on);
12564 #endif
12565 #ifdef RTE_LIBRTE_BNXT_PMD
12566         if (ret == -ENOTSUP)
12567                 ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on);
12568 #endif
12569         switch (ret) {
12570         case 0:
12571                 break;
12572         case -EINVAL:
12573                 printf("invalid is_on %d\n", is_on);
12574                 break;
12575         case -ENODEV:
12576                 printf("invalid port_id %d\n", res->port_id);
12577                 break;
12578         case -ENOTSUP:
12579                 printf("function not implemented\n");
12580                 break;
12581         default:
12582                 printf("programming error: (%s)\n", strerror(-ret));
12583         }
12584 }
12585
12586 cmdline_parse_inst_t cmd_set_all_queues_drop_en = {
12587         .f = cmd_set_all_queues_drop_en_parsed,
12588         .data = NULL,
12589         .help_str = "set all queues drop <port_id> on|off",
12590         .tokens = {
12591                 (void *)&cmd_all_queues_drop_en_set,
12592                 (void *)&cmd_all_queues_drop_en_all,
12593                 (void *)&cmd_all_queues_drop_en_queues,
12594                 (void *)&cmd_all_queues_drop_en_drop,
12595                 (void *)&cmd_all_queues_drop_en_port_id,
12596                 (void *)&cmd_all_queues_drop_en_on_off,
12597                 NULL,
12598         },
12599 };
12600
12601 /* vf split drop enable configuration */
12602
12603 /* Common result structure for vf split drop enable */
12604 struct cmd_vf_split_drop_en_result {
12605         cmdline_fixed_string_t set;
12606         cmdline_fixed_string_t vf;
12607         cmdline_fixed_string_t split;
12608         cmdline_fixed_string_t drop;
12609         portid_t port_id;
12610         uint16_t vf_id;
12611         cmdline_fixed_string_t on_off;
12612 };
12613
12614 /* Common CLI fields for vf split drop enable disable */
12615 cmdline_parse_token_string_t cmd_vf_split_drop_en_set =
12616         TOKEN_STRING_INITIALIZER
12617                 (struct cmd_vf_split_drop_en_result,
12618                  set, "set");
12619 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf =
12620         TOKEN_STRING_INITIALIZER
12621                 (struct cmd_vf_split_drop_en_result,
12622                  vf, "vf");
12623 cmdline_parse_token_string_t cmd_vf_split_drop_en_split =
12624         TOKEN_STRING_INITIALIZER
12625                 (struct cmd_vf_split_drop_en_result,
12626                  split, "split");
12627 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop =
12628         TOKEN_STRING_INITIALIZER
12629                 (struct cmd_vf_split_drop_en_result,
12630                  drop, "drop");
12631 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id =
12632         TOKEN_NUM_INITIALIZER
12633                 (struct cmd_vf_split_drop_en_result,
12634                  port_id, UINT16);
12635 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id =
12636         TOKEN_NUM_INITIALIZER
12637                 (struct cmd_vf_split_drop_en_result,
12638                  vf_id, UINT16);
12639 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off =
12640         TOKEN_STRING_INITIALIZER
12641                 (struct cmd_vf_split_drop_en_result,
12642                  on_off, "on#off");
12643
12644 static void
12645 cmd_set_vf_split_drop_en_parsed(
12646         void *parsed_result,
12647         __attribute__((unused)) struct cmdline *cl,
12648         __attribute__((unused)) void *data)
12649 {
12650         struct cmd_vf_split_drop_en_result *res = parsed_result;
12651         int ret = -ENOTSUP;
12652         int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12653
12654         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12655                 return;
12656
12657 #ifdef RTE_LIBRTE_IXGBE_PMD
12658         ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id,
12659                         is_on);
12660 #endif
12661         switch (ret) {
12662         case 0:
12663                 break;
12664         case -EINVAL:
12665                 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12666                 break;
12667         case -ENODEV:
12668                 printf("invalid port_id %d\n", res->port_id);
12669                 break;
12670         case -ENOTSUP:
12671                 printf("not supported on port %d\n", res->port_id);
12672                 break;
12673         default:
12674                 printf("programming error: (%s)\n", strerror(-ret));
12675         }
12676 }
12677
12678 cmdline_parse_inst_t cmd_set_vf_split_drop_en = {
12679         .f = cmd_set_vf_split_drop_en_parsed,
12680         .data = NULL,
12681         .help_str = "set vf split drop <port_id> <vf_id> on|off",
12682         .tokens = {
12683                 (void *)&cmd_vf_split_drop_en_set,
12684                 (void *)&cmd_vf_split_drop_en_vf,
12685                 (void *)&cmd_vf_split_drop_en_split,
12686                 (void *)&cmd_vf_split_drop_en_drop,
12687                 (void *)&cmd_vf_split_drop_en_port_id,
12688                 (void *)&cmd_vf_split_drop_en_vf_id,
12689                 (void *)&cmd_vf_split_drop_en_on_off,
12690                 NULL,
12691         },
12692 };
12693
12694 /* vf mac address configuration */
12695
12696 /* Common result structure for vf mac address */
12697 struct cmd_set_vf_mac_addr_result {
12698         cmdline_fixed_string_t set;
12699         cmdline_fixed_string_t vf;
12700         cmdline_fixed_string_t mac;
12701         cmdline_fixed_string_t addr;
12702         portid_t port_id;
12703         uint16_t vf_id;
12704         struct ether_addr mac_addr;
12705
12706 };
12707
12708 /* Common CLI fields for vf split drop enable disable */
12709 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set =
12710         TOKEN_STRING_INITIALIZER
12711                 (struct cmd_set_vf_mac_addr_result,
12712                  set, "set");
12713 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf =
12714         TOKEN_STRING_INITIALIZER
12715                 (struct cmd_set_vf_mac_addr_result,
12716                  vf, "vf");
12717 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac =
12718         TOKEN_STRING_INITIALIZER
12719                 (struct cmd_set_vf_mac_addr_result,
12720                  mac, "mac");
12721 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr =
12722         TOKEN_STRING_INITIALIZER
12723                 (struct cmd_set_vf_mac_addr_result,
12724                  addr, "addr");
12725 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id =
12726         TOKEN_NUM_INITIALIZER
12727                 (struct cmd_set_vf_mac_addr_result,
12728                  port_id, UINT16);
12729 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id =
12730         TOKEN_NUM_INITIALIZER
12731                 (struct cmd_set_vf_mac_addr_result,
12732                  vf_id, UINT16);
12733 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr =
12734         TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result,
12735                  mac_addr);
12736
12737 static void
12738 cmd_set_vf_mac_addr_parsed(
12739         void *parsed_result,
12740         __attribute__((unused)) struct cmdline *cl,
12741         __attribute__((unused)) void *data)
12742 {
12743         struct cmd_set_vf_mac_addr_result *res = parsed_result;
12744         int ret = -ENOTSUP;
12745
12746         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12747                 return;
12748
12749 #ifdef RTE_LIBRTE_IXGBE_PMD
12750         if (ret == -ENOTSUP)
12751                 ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id,
12752                                 &res->mac_addr);
12753 #endif
12754 #ifdef RTE_LIBRTE_I40E_PMD
12755         if (ret == -ENOTSUP)
12756                 ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id,
12757                                 &res->mac_addr);
12758 #endif
12759 #ifdef RTE_LIBRTE_BNXT_PMD
12760         if (ret == -ENOTSUP)
12761                 ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id,
12762                                 &res->mac_addr);
12763 #endif
12764
12765         switch (ret) {
12766         case 0:
12767                 break;
12768         case -EINVAL:
12769                 printf("invalid vf_id %d or mac_addr\n", res->vf_id);
12770                 break;
12771         case -ENODEV:
12772                 printf("invalid port_id %d\n", res->port_id);
12773                 break;
12774         case -ENOTSUP:
12775                 printf("function not implemented\n");
12776                 break;
12777         default:
12778                 printf("programming error: (%s)\n", strerror(-ret));
12779         }
12780 }
12781
12782 cmdline_parse_inst_t cmd_set_vf_mac_addr = {
12783         .f = cmd_set_vf_mac_addr_parsed,
12784         .data = NULL,
12785         .help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>",
12786         .tokens = {
12787                 (void *)&cmd_set_vf_mac_addr_set,
12788                 (void *)&cmd_set_vf_mac_addr_vf,
12789                 (void *)&cmd_set_vf_mac_addr_mac,
12790                 (void *)&cmd_set_vf_mac_addr_addr,
12791                 (void *)&cmd_set_vf_mac_addr_port_id,
12792                 (void *)&cmd_set_vf_mac_addr_vf_id,
12793                 (void *)&cmd_set_vf_mac_addr_mac_addr,
12794                 NULL,
12795         },
12796 };
12797
12798 /* MACsec configuration */
12799
12800 /* Common result structure for MACsec offload enable */
12801 struct cmd_macsec_offload_on_result {
12802         cmdline_fixed_string_t set;
12803         cmdline_fixed_string_t macsec;
12804         cmdline_fixed_string_t offload;
12805         portid_t port_id;
12806         cmdline_fixed_string_t on;
12807         cmdline_fixed_string_t encrypt;
12808         cmdline_fixed_string_t en_on_off;
12809         cmdline_fixed_string_t replay_protect;
12810         cmdline_fixed_string_t rp_on_off;
12811 };
12812
12813 /* Common CLI fields for MACsec offload disable */
12814 cmdline_parse_token_string_t cmd_macsec_offload_on_set =
12815         TOKEN_STRING_INITIALIZER
12816                 (struct cmd_macsec_offload_on_result,
12817                  set, "set");
12818 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec =
12819         TOKEN_STRING_INITIALIZER
12820                 (struct cmd_macsec_offload_on_result,
12821                  macsec, "macsec");
12822 cmdline_parse_token_string_t cmd_macsec_offload_on_offload =
12823         TOKEN_STRING_INITIALIZER
12824                 (struct cmd_macsec_offload_on_result,
12825                  offload, "offload");
12826 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id =
12827         TOKEN_NUM_INITIALIZER
12828                 (struct cmd_macsec_offload_on_result,
12829                  port_id, UINT16);
12830 cmdline_parse_token_string_t cmd_macsec_offload_on_on =
12831         TOKEN_STRING_INITIALIZER
12832                 (struct cmd_macsec_offload_on_result,
12833                  on, "on");
12834 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt =
12835         TOKEN_STRING_INITIALIZER
12836                 (struct cmd_macsec_offload_on_result,
12837                  encrypt, "encrypt");
12838 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off =
12839         TOKEN_STRING_INITIALIZER
12840                 (struct cmd_macsec_offload_on_result,
12841                  en_on_off, "on#off");
12842 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect =
12843         TOKEN_STRING_INITIALIZER
12844                 (struct cmd_macsec_offload_on_result,
12845                  replay_protect, "replay-protect");
12846 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off =
12847         TOKEN_STRING_INITIALIZER
12848                 (struct cmd_macsec_offload_on_result,
12849                  rp_on_off, "on#off");
12850
12851 static void
12852 cmd_set_macsec_offload_on_parsed(
12853         void *parsed_result,
12854         __attribute__((unused)) struct cmdline *cl,
12855         __attribute__((unused)) void *data)
12856 {
12857         struct cmd_macsec_offload_on_result *res = parsed_result;
12858         int ret = -ENOTSUP;
12859         portid_t port_id = res->port_id;
12860         int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0;
12861         int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0;
12862
12863         if (port_id_is_invalid(port_id, ENABLED_WARN))
12864                 return;
12865
12866         ports[port_id].tx_ol_flags |= TESTPMD_TX_OFFLOAD_MACSEC;
12867 #ifdef RTE_LIBRTE_IXGBE_PMD
12868         ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp);
12869 #endif
12870         RTE_SET_USED(en);
12871         RTE_SET_USED(rp);
12872
12873         switch (ret) {
12874         case 0:
12875                 break;
12876         case -ENODEV:
12877                 printf("invalid port_id %d\n", port_id);
12878                 break;
12879         case -ENOTSUP:
12880                 printf("not supported on port %d\n", port_id);
12881                 break;
12882         default:
12883                 printf("programming error: (%s)\n", strerror(-ret));
12884         }
12885 }
12886
12887 cmdline_parse_inst_t cmd_set_macsec_offload_on = {
12888         .f = cmd_set_macsec_offload_on_parsed,
12889         .data = NULL,
12890         .help_str = "set macsec offload <port_id> on "
12891                 "encrypt on|off replay-protect on|off",
12892         .tokens = {
12893                 (void *)&cmd_macsec_offload_on_set,
12894                 (void *)&cmd_macsec_offload_on_macsec,
12895                 (void *)&cmd_macsec_offload_on_offload,
12896                 (void *)&cmd_macsec_offload_on_port_id,
12897                 (void *)&cmd_macsec_offload_on_on,
12898                 (void *)&cmd_macsec_offload_on_encrypt,
12899                 (void *)&cmd_macsec_offload_on_en_on_off,
12900                 (void *)&cmd_macsec_offload_on_replay_protect,
12901                 (void *)&cmd_macsec_offload_on_rp_on_off,
12902                 NULL,
12903         },
12904 };
12905
12906 /* Common result structure for MACsec offload disable */
12907 struct cmd_macsec_offload_off_result {
12908         cmdline_fixed_string_t set;
12909         cmdline_fixed_string_t macsec;
12910         cmdline_fixed_string_t offload;
12911         portid_t port_id;
12912         cmdline_fixed_string_t off;
12913 };
12914
12915 /* Common CLI fields for MACsec offload disable */
12916 cmdline_parse_token_string_t cmd_macsec_offload_off_set =
12917         TOKEN_STRING_INITIALIZER
12918                 (struct cmd_macsec_offload_off_result,
12919                  set, "set");
12920 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec =
12921         TOKEN_STRING_INITIALIZER
12922                 (struct cmd_macsec_offload_off_result,
12923                  macsec, "macsec");
12924 cmdline_parse_token_string_t cmd_macsec_offload_off_offload =
12925         TOKEN_STRING_INITIALIZER
12926                 (struct cmd_macsec_offload_off_result,
12927                  offload, "offload");
12928 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id =
12929         TOKEN_NUM_INITIALIZER
12930                 (struct cmd_macsec_offload_off_result,
12931                  port_id, UINT16);
12932 cmdline_parse_token_string_t cmd_macsec_offload_off_off =
12933         TOKEN_STRING_INITIALIZER
12934                 (struct cmd_macsec_offload_off_result,
12935                  off, "off");
12936
12937 static void
12938 cmd_set_macsec_offload_off_parsed(
12939         void *parsed_result,
12940         __attribute__((unused)) struct cmdline *cl,
12941         __attribute__((unused)) void *data)
12942 {
12943         struct cmd_macsec_offload_off_result *res = parsed_result;
12944         int ret = -ENOTSUP;
12945         portid_t port_id = res->port_id;
12946
12947         if (port_id_is_invalid(port_id, ENABLED_WARN))
12948                 return;
12949
12950         ports[port_id].tx_ol_flags &= ~TESTPMD_TX_OFFLOAD_MACSEC;
12951 #ifdef RTE_LIBRTE_IXGBE_PMD
12952         ret = rte_pmd_ixgbe_macsec_disable(port_id);
12953 #endif
12954
12955         switch (ret) {
12956         case 0:
12957                 break;
12958         case -ENODEV:
12959                 printf("invalid port_id %d\n", port_id);
12960                 break;
12961         case -ENOTSUP:
12962                 printf("not supported on port %d\n", port_id);
12963                 break;
12964         default:
12965                 printf("programming error: (%s)\n", strerror(-ret));
12966         }
12967 }
12968
12969 cmdline_parse_inst_t cmd_set_macsec_offload_off = {
12970         .f = cmd_set_macsec_offload_off_parsed,
12971         .data = NULL,
12972         .help_str = "set macsec offload <port_id> off",
12973         .tokens = {
12974                 (void *)&cmd_macsec_offload_off_set,
12975                 (void *)&cmd_macsec_offload_off_macsec,
12976                 (void *)&cmd_macsec_offload_off_offload,
12977                 (void *)&cmd_macsec_offload_off_port_id,
12978                 (void *)&cmd_macsec_offload_off_off,
12979                 NULL,
12980         },
12981 };
12982
12983 /* Common result structure for MACsec secure connection configure */
12984 struct cmd_macsec_sc_result {
12985         cmdline_fixed_string_t set;
12986         cmdline_fixed_string_t macsec;
12987         cmdline_fixed_string_t sc;
12988         cmdline_fixed_string_t tx_rx;
12989         portid_t port_id;
12990         struct ether_addr mac;
12991         uint16_t pi;
12992 };
12993
12994 /* Common CLI fields for MACsec secure connection configure */
12995 cmdline_parse_token_string_t cmd_macsec_sc_set =
12996         TOKEN_STRING_INITIALIZER
12997                 (struct cmd_macsec_sc_result,
12998                  set, "set");
12999 cmdline_parse_token_string_t cmd_macsec_sc_macsec =
13000         TOKEN_STRING_INITIALIZER
13001                 (struct cmd_macsec_sc_result,
13002                  macsec, "macsec");
13003 cmdline_parse_token_string_t cmd_macsec_sc_sc =
13004         TOKEN_STRING_INITIALIZER
13005                 (struct cmd_macsec_sc_result,
13006                  sc, "sc");
13007 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx =
13008         TOKEN_STRING_INITIALIZER
13009                 (struct cmd_macsec_sc_result,
13010                  tx_rx, "tx#rx");
13011 cmdline_parse_token_num_t cmd_macsec_sc_port_id =
13012         TOKEN_NUM_INITIALIZER
13013                 (struct cmd_macsec_sc_result,
13014                  port_id, UINT16);
13015 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac =
13016         TOKEN_ETHERADDR_INITIALIZER
13017                 (struct cmd_macsec_sc_result,
13018                  mac);
13019 cmdline_parse_token_num_t cmd_macsec_sc_pi =
13020         TOKEN_NUM_INITIALIZER
13021                 (struct cmd_macsec_sc_result,
13022                  pi, UINT16);
13023
13024 static void
13025 cmd_set_macsec_sc_parsed(
13026         void *parsed_result,
13027         __attribute__((unused)) struct cmdline *cl,
13028         __attribute__((unused)) void *data)
13029 {
13030         struct cmd_macsec_sc_result *res = parsed_result;
13031         int ret = -ENOTSUP;
13032         int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
13033
13034 #ifdef RTE_LIBRTE_IXGBE_PMD
13035         ret = is_tx ?
13036                 rte_pmd_ixgbe_macsec_config_txsc(res->port_id,
13037                                 res->mac.addr_bytes) :
13038                 rte_pmd_ixgbe_macsec_config_rxsc(res->port_id,
13039                                 res->mac.addr_bytes, res->pi);
13040 #endif
13041         RTE_SET_USED(is_tx);
13042
13043         switch (ret) {
13044         case 0:
13045                 break;
13046         case -ENODEV:
13047                 printf("invalid port_id %d\n", res->port_id);
13048                 break;
13049         case -ENOTSUP:
13050                 printf("not supported on port %d\n", res->port_id);
13051                 break;
13052         default:
13053                 printf("programming error: (%s)\n", strerror(-ret));
13054         }
13055 }
13056
13057 cmdline_parse_inst_t cmd_set_macsec_sc = {
13058         .f = cmd_set_macsec_sc_parsed,
13059         .data = NULL,
13060         .help_str = "set macsec sc tx|rx <port_id> <mac> <pi>",
13061         .tokens = {
13062                 (void *)&cmd_macsec_sc_set,
13063                 (void *)&cmd_macsec_sc_macsec,
13064                 (void *)&cmd_macsec_sc_sc,
13065                 (void *)&cmd_macsec_sc_tx_rx,
13066                 (void *)&cmd_macsec_sc_port_id,
13067                 (void *)&cmd_macsec_sc_mac,
13068                 (void *)&cmd_macsec_sc_pi,
13069                 NULL,
13070         },
13071 };
13072
13073 /* Common result structure for MACsec secure connection configure */
13074 struct cmd_macsec_sa_result {
13075         cmdline_fixed_string_t set;
13076         cmdline_fixed_string_t macsec;
13077         cmdline_fixed_string_t sa;
13078         cmdline_fixed_string_t tx_rx;
13079         portid_t port_id;
13080         uint8_t idx;
13081         uint8_t an;
13082         uint32_t pn;
13083         cmdline_fixed_string_t key;
13084 };
13085
13086 /* Common CLI fields for MACsec secure connection configure */
13087 cmdline_parse_token_string_t cmd_macsec_sa_set =
13088         TOKEN_STRING_INITIALIZER
13089                 (struct cmd_macsec_sa_result,
13090                  set, "set");
13091 cmdline_parse_token_string_t cmd_macsec_sa_macsec =
13092         TOKEN_STRING_INITIALIZER
13093                 (struct cmd_macsec_sa_result,
13094                  macsec, "macsec");
13095 cmdline_parse_token_string_t cmd_macsec_sa_sa =
13096         TOKEN_STRING_INITIALIZER
13097                 (struct cmd_macsec_sa_result,
13098                  sa, "sa");
13099 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx =
13100         TOKEN_STRING_INITIALIZER
13101                 (struct cmd_macsec_sa_result,
13102                  tx_rx, "tx#rx");
13103 cmdline_parse_token_num_t cmd_macsec_sa_port_id =
13104         TOKEN_NUM_INITIALIZER
13105                 (struct cmd_macsec_sa_result,
13106                  port_id, UINT16);
13107 cmdline_parse_token_num_t cmd_macsec_sa_idx =
13108         TOKEN_NUM_INITIALIZER
13109                 (struct cmd_macsec_sa_result,
13110                  idx, UINT8);
13111 cmdline_parse_token_num_t cmd_macsec_sa_an =
13112         TOKEN_NUM_INITIALIZER
13113                 (struct cmd_macsec_sa_result,
13114                  an, UINT8);
13115 cmdline_parse_token_num_t cmd_macsec_sa_pn =
13116         TOKEN_NUM_INITIALIZER
13117                 (struct cmd_macsec_sa_result,
13118                  pn, UINT32);
13119 cmdline_parse_token_string_t cmd_macsec_sa_key =
13120         TOKEN_STRING_INITIALIZER
13121                 (struct cmd_macsec_sa_result,
13122                  key, NULL);
13123
13124 static void
13125 cmd_set_macsec_sa_parsed(
13126         void *parsed_result,
13127         __attribute__((unused)) struct cmdline *cl,
13128         __attribute__((unused)) void *data)
13129 {
13130         struct cmd_macsec_sa_result *res = parsed_result;
13131         int ret = -ENOTSUP;
13132         int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
13133         uint8_t key[16] = { 0 };
13134         uint8_t xdgt0;
13135         uint8_t xdgt1;
13136         int key_len;
13137         int i;
13138
13139         key_len = strlen(res->key) / 2;
13140         if (key_len > 16)
13141                 key_len = 16;
13142
13143         for (i = 0; i < key_len; i++) {
13144                 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
13145                 if (xdgt0 == 0xFF)
13146                         return;
13147                 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
13148                 if (xdgt1 == 0xFF)
13149                         return;
13150                 key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
13151         }
13152
13153 #ifdef RTE_LIBRTE_IXGBE_PMD
13154         ret = is_tx ?
13155                 rte_pmd_ixgbe_macsec_select_txsa(res->port_id,
13156                         res->idx, res->an, res->pn, key) :
13157                 rte_pmd_ixgbe_macsec_select_rxsa(res->port_id,
13158                         res->idx, res->an, res->pn, key);
13159 #endif
13160         RTE_SET_USED(is_tx);
13161         RTE_SET_USED(key);
13162
13163         switch (ret) {
13164         case 0:
13165                 break;
13166         case -EINVAL:
13167                 printf("invalid idx %d or an %d\n", res->idx, res->an);
13168                 break;
13169         case -ENODEV:
13170                 printf("invalid port_id %d\n", res->port_id);
13171                 break;
13172         case -ENOTSUP:
13173                 printf("not supported on port %d\n", res->port_id);
13174                 break;
13175         default:
13176                 printf("programming error: (%s)\n", strerror(-ret));
13177         }
13178 }
13179
13180 cmdline_parse_inst_t cmd_set_macsec_sa = {
13181         .f = cmd_set_macsec_sa_parsed,
13182         .data = NULL,
13183         .help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>",
13184         .tokens = {
13185                 (void *)&cmd_macsec_sa_set,
13186                 (void *)&cmd_macsec_sa_macsec,
13187                 (void *)&cmd_macsec_sa_sa,
13188                 (void *)&cmd_macsec_sa_tx_rx,
13189                 (void *)&cmd_macsec_sa_port_id,
13190                 (void *)&cmd_macsec_sa_idx,
13191                 (void *)&cmd_macsec_sa_an,
13192                 (void *)&cmd_macsec_sa_pn,
13193                 (void *)&cmd_macsec_sa_key,
13194                 NULL,
13195         },
13196 };
13197
13198 /* VF unicast promiscuous mode configuration */
13199
13200 /* Common result structure for VF unicast promiscuous mode */
13201 struct cmd_vf_promisc_result {
13202         cmdline_fixed_string_t set;
13203         cmdline_fixed_string_t vf;
13204         cmdline_fixed_string_t promisc;
13205         portid_t port_id;
13206         uint32_t vf_id;
13207         cmdline_fixed_string_t on_off;
13208 };
13209
13210 /* Common CLI fields for VF unicast promiscuous mode enable disable */
13211 cmdline_parse_token_string_t cmd_vf_promisc_set =
13212         TOKEN_STRING_INITIALIZER
13213                 (struct cmd_vf_promisc_result,
13214                  set, "set");
13215 cmdline_parse_token_string_t cmd_vf_promisc_vf =
13216         TOKEN_STRING_INITIALIZER
13217                 (struct cmd_vf_promisc_result,
13218                  vf, "vf");
13219 cmdline_parse_token_string_t cmd_vf_promisc_promisc =
13220         TOKEN_STRING_INITIALIZER
13221                 (struct cmd_vf_promisc_result,
13222                  promisc, "promisc");
13223 cmdline_parse_token_num_t cmd_vf_promisc_port_id =
13224         TOKEN_NUM_INITIALIZER
13225                 (struct cmd_vf_promisc_result,
13226                  port_id, UINT16);
13227 cmdline_parse_token_num_t cmd_vf_promisc_vf_id =
13228         TOKEN_NUM_INITIALIZER
13229                 (struct cmd_vf_promisc_result,
13230                  vf_id, UINT32);
13231 cmdline_parse_token_string_t cmd_vf_promisc_on_off =
13232         TOKEN_STRING_INITIALIZER
13233                 (struct cmd_vf_promisc_result,
13234                  on_off, "on#off");
13235
13236 static void
13237 cmd_set_vf_promisc_parsed(
13238         void *parsed_result,
13239         __attribute__((unused)) struct cmdline *cl,
13240         __attribute__((unused)) void *data)
13241 {
13242         struct cmd_vf_promisc_result *res = parsed_result;
13243         int ret = -ENOTSUP;
13244
13245         __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13246
13247         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13248                 return;
13249
13250 #ifdef RTE_LIBRTE_I40E_PMD
13251         ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id,
13252                                                   res->vf_id, is_on);
13253 #endif
13254
13255         switch (ret) {
13256         case 0:
13257                 break;
13258         case -EINVAL:
13259                 printf("invalid vf_id %d\n", res->vf_id);
13260                 break;
13261         case -ENODEV:
13262                 printf("invalid port_id %d\n", res->port_id);
13263                 break;
13264         case -ENOTSUP:
13265                 printf("function not implemented\n");
13266                 break;
13267         default:
13268                 printf("programming error: (%s)\n", strerror(-ret));
13269         }
13270 }
13271
13272 cmdline_parse_inst_t cmd_set_vf_promisc = {
13273         .f = cmd_set_vf_promisc_parsed,
13274         .data = NULL,
13275         .help_str = "set vf promisc <port_id> <vf_id> on|off: "
13276                 "Set unicast promiscuous mode for a VF from the PF",
13277         .tokens = {
13278                 (void *)&cmd_vf_promisc_set,
13279                 (void *)&cmd_vf_promisc_vf,
13280                 (void *)&cmd_vf_promisc_promisc,
13281                 (void *)&cmd_vf_promisc_port_id,
13282                 (void *)&cmd_vf_promisc_vf_id,
13283                 (void *)&cmd_vf_promisc_on_off,
13284                 NULL,
13285         },
13286 };
13287
13288 /* VF multicast promiscuous mode configuration */
13289
13290 /* Common result structure for VF multicast promiscuous mode */
13291 struct cmd_vf_allmulti_result {
13292         cmdline_fixed_string_t set;
13293         cmdline_fixed_string_t vf;
13294         cmdline_fixed_string_t allmulti;
13295         portid_t port_id;
13296         uint32_t vf_id;
13297         cmdline_fixed_string_t on_off;
13298 };
13299
13300 /* Common CLI fields for VF multicast promiscuous mode enable disable */
13301 cmdline_parse_token_string_t cmd_vf_allmulti_set =
13302         TOKEN_STRING_INITIALIZER
13303                 (struct cmd_vf_allmulti_result,
13304                  set, "set");
13305 cmdline_parse_token_string_t cmd_vf_allmulti_vf =
13306         TOKEN_STRING_INITIALIZER
13307                 (struct cmd_vf_allmulti_result,
13308                  vf, "vf");
13309 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti =
13310         TOKEN_STRING_INITIALIZER
13311                 (struct cmd_vf_allmulti_result,
13312                  allmulti, "allmulti");
13313 cmdline_parse_token_num_t cmd_vf_allmulti_port_id =
13314         TOKEN_NUM_INITIALIZER
13315                 (struct cmd_vf_allmulti_result,
13316                  port_id, UINT16);
13317 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id =
13318         TOKEN_NUM_INITIALIZER
13319                 (struct cmd_vf_allmulti_result,
13320                  vf_id, UINT32);
13321 cmdline_parse_token_string_t cmd_vf_allmulti_on_off =
13322         TOKEN_STRING_INITIALIZER
13323                 (struct cmd_vf_allmulti_result,
13324                  on_off, "on#off");
13325
13326 static void
13327 cmd_set_vf_allmulti_parsed(
13328         void *parsed_result,
13329         __attribute__((unused)) struct cmdline *cl,
13330         __attribute__((unused)) void *data)
13331 {
13332         struct cmd_vf_allmulti_result *res = parsed_result;
13333         int ret = -ENOTSUP;
13334
13335         __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13336
13337         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13338                 return;
13339
13340 #ifdef RTE_LIBRTE_I40E_PMD
13341         ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id,
13342                                                     res->vf_id, is_on);
13343 #endif
13344
13345         switch (ret) {
13346         case 0:
13347                 break;
13348         case -EINVAL:
13349                 printf("invalid vf_id %d\n", res->vf_id);
13350                 break;
13351         case -ENODEV:
13352                 printf("invalid port_id %d\n", res->port_id);
13353                 break;
13354         case -ENOTSUP:
13355                 printf("function not implemented\n");
13356                 break;
13357         default:
13358                 printf("programming error: (%s)\n", strerror(-ret));
13359         }
13360 }
13361
13362 cmdline_parse_inst_t cmd_set_vf_allmulti = {
13363         .f = cmd_set_vf_allmulti_parsed,
13364         .data = NULL,
13365         .help_str = "set vf allmulti <port_id> <vf_id> on|off: "
13366                 "Set multicast promiscuous mode for a VF from the PF",
13367         .tokens = {
13368                 (void *)&cmd_vf_allmulti_set,
13369                 (void *)&cmd_vf_allmulti_vf,
13370                 (void *)&cmd_vf_allmulti_allmulti,
13371                 (void *)&cmd_vf_allmulti_port_id,
13372                 (void *)&cmd_vf_allmulti_vf_id,
13373                 (void *)&cmd_vf_allmulti_on_off,
13374                 NULL,
13375         },
13376 };
13377
13378 /* vf broadcast mode configuration */
13379
13380 /* Common result structure for vf broadcast */
13381 struct cmd_set_vf_broadcast_result {
13382         cmdline_fixed_string_t set;
13383         cmdline_fixed_string_t vf;
13384         cmdline_fixed_string_t broadcast;
13385         portid_t port_id;
13386         uint16_t vf_id;
13387         cmdline_fixed_string_t on_off;
13388 };
13389
13390 /* Common CLI fields for vf broadcast enable disable */
13391 cmdline_parse_token_string_t cmd_set_vf_broadcast_set =
13392         TOKEN_STRING_INITIALIZER
13393                 (struct cmd_set_vf_broadcast_result,
13394                  set, "set");
13395 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf =
13396         TOKEN_STRING_INITIALIZER
13397                 (struct cmd_set_vf_broadcast_result,
13398                  vf, "vf");
13399 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast =
13400         TOKEN_STRING_INITIALIZER
13401                 (struct cmd_set_vf_broadcast_result,
13402                  broadcast, "broadcast");
13403 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id =
13404         TOKEN_NUM_INITIALIZER
13405                 (struct cmd_set_vf_broadcast_result,
13406                  port_id, UINT16);
13407 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id =
13408         TOKEN_NUM_INITIALIZER
13409                 (struct cmd_set_vf_broadcast_result,
13410                  vf_id, UINT16);
13411 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off =
13412         TOKEN_STRING_INITIALIZER
13413                 (struct cmd_set_vf_broadcast_result,
13414                  on_off, "on#off");
13415
13416 static void
13417 cmd_set_vf_broadcast_parsed(
13418         void *parsed_result,
13419         __attribute__((unused)) struct cmdline *cl,
13420         __attribute__((unused)) void *data)
13421 {
13422         struct cmd_set_vf_broadcast_result *res = parsed_result;
13423         int ret = -ENOTSUP;
13424
13425         __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13426
13427         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13428                 return;
13429
13430 #ifdef RTE_LIBRTE_I40E_PMD
13431         ret = rte_pmd_i40e_set_vf_broadcast(res->port_id,
13432                                             res->vf_id, is_on);
13433 #endif
13434
13435         switch (ret) {
13436         case 0:
13437                 break;
13438         case -EINVAL:
13439                 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
13440                 break;
13441         case -ENODEV:
13442                 printf("invalid port_id %d\n", res->port_id);
13443                 break;
13444         case -ENOTSUP:
13445                 printf("function not implemented\n");
13446                 break;
13447         default:
13448                 printf("programming error: (%s)\n", strerror(-ret));
13449         }
13450 }
13451
13452 cmdline_parse_inst_t cmd_set_vf_broadcast = {
13453         .f = cmd_set_vf_broadcast_parsed,
13454         .data = NULL,
13455         .help_str = "set vf broadcast <port_id> <vf_id> on|off",
13456         .tokens = {
13457                 (void *)&cmd_set_vf_broadcast_set,
13458                 (void *)&cmd_set_vf_broadcast_vf,
13459                 (void *)&cmd_set_vf_broadcast_broadcast,
13460                 (void *)&cmd_set_vf_broadcast_port_id,
13461                 (void *)&cmd_set_vf_broadcast_vf_id,
13462                 (void *)&cmd_set_vf_broadcast_on_off,
13463                 NULL,
13464         },
13465 };
13466
13467 /* vf vlan tag configuration */
13468
13469 /* Common result structure for vf vlan tag */
13470 struct cmd_set_vf_vlan_tag_result {
13471         cmdline_fixed_string_t set;
13472         cmdline_fixed_string_t vf;
13473         cmdline_fixed_string_t vlan;
13474         cmdline_fixed_string_t tag;
13475         portid_t port_id;
13476         uint16_t vf_id;
13477         cmdline_fixed_string_t on_off;
13478 };
13479
13480 /* Common CLI fields for vf vlan tag enable disable */
13481 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set =
13482         TOKEN_STRING_INITIALIZER
13483                 (struct cmd_set_vf_vlan_tag_result,
13484                  set, "set");
13485 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf =
13486         TOKEN_STRING_INITIALIZER
13487                 (struct cmd_set_vf_vlan_tag_result,
13488                  vf, "vf");
13489 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan =
13490         TOKEN_STRING_INITIALIZER
13491                 (struct cmd_set_vf_vlan_tag_result,
13492                  vlan, "vlan");
13493 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag =
13494         TOKEN_STRING_INITIALIZER
13495                 (struct cmd_set_vf_vlan_tag_result,
13496                  tag, "tag");
13497 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id =
13498         TOKEN_NUM_INITIALIZER
13499                 (struct cmd_set_vf_vlan_tag_result,
13500                  port_id, UINT16);
13501 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id =
13502         TOKEN_NUM_INITIALIZER
13503                 (struct cmd_set_vf_vlan_tag_result,
13504                  vf_id, UINT16);
13505 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off =
13506         TOKEN_STRING_INITIALIZER
13507                 (struct cmd_set_vf_vlan_tag_result,
13508                  on_off, "on#off");
13509
13510 static void
13511 cmd_set_vf_vlan_tag_parsed(
13512         void *parsed_result,
13513         __attribute__((unused)) struct cmdline *cl,
13514         __attribute__((unused)) void *data)
13515 {
13516         struct cmd_set_vf_vlan_tag_result *res = parsed_result;
13517         int ret = -ENOTSUP;
13518
13519         __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
13520
13521         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13522                 return;
13523
13524 #ifdef RTE_LIBRTE_I40E_PMD
13525         ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id,
13526                                            res->vf_id, is_on);
13527 #endif
13528
13529         switch (ret) {
13530         case 0:
13531                 break;
13532         case -EINVAL:
13533                 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
13534                 break;
13535         case -ENODEV:
13536                 printf("invalid port_id %d\n", res->port_id);
13537                 break;
13538         case -ENOTSUP:
13539                 printf("function not implemented\n");
13540                 break;
13541         default:
13542                 printf("programming error: (%s)\n", strerror(-ret));
13543         }
13544 }
13545
13546 cmdline_parse_inst_t cmd_set_vf_vlan_tag = {
13547         .f = cmd_set_vf_vlan_tag_parsed,
13548         .data = NULL,
13549         .help_str = "set vf vlan tag <port_id> <vf_id> on|off",
13550         .tokens = {
13551                 (void *)&cmd_set_vf_vlan_tag_set,
13552                 (void *)&cmd_set_vf_vlan_tag_vf,
13553                 (void *)&cmd_set_vf_vlan_tag_vlan,
13554                 (void *)&cmd_set_vf_vlan_tag_tag,
13555                 (void *)&cmd_set_vf_vlan_tag_port_id,
13556                 (void *)&cmd_set_vf_vlan_tag_vf_id,
13557                 (void *)&cmd_set_vf_vlan_tag_on_off,
13558                 NULL,
13559         },
13560 };
13561
13562 /* Common definition of VF and TC TX bandwidth configuration */
13563 struct cmd_vf_tc_bw_result {
13564         cmdline_fixed_string_t set;
13565         cmdline_fixed_string_t vf;
13566         cmdline_fixed_string_t tc;
13567         cmdline_fixed_string_t tx;
13568         cmdline_fixed_string_t min_bw;
13569         cmdline_fixed_string_t max_bw;
13570         cmdline_fixed_string_t strict_link_prio;
13571         portid_t port_id;
13572         uint16_t vf_id;
13573         uint8_t tc_no;
13574         uint32_t bw;
13575         cmdline_fixed_string_t bw_list;
13576         uint8_t tc_map;
13577 };
13578
13579 cmdline_parse_token_string_t cmd_vf_tc_bw_set =
13580         TOKEN_STRING_INITIALIZER
13581                 (struct cmd_vf_tc_bw_result,
13582                  set, "set");
13583 cmdline_parse_token_string_t cmd_vf_tc_bw_vf =
13584         TOKEN_STRING_INITIALIZER
13585                 (struct cmd_vf_tc_bw_result,
13586                  vf, "vf");
13587 cmdline_parse_token_string_t cmd_vf_tc_bw_tc =
13588         TOKEN_STRING_INITIALIZER
13589                 (struct cmd_vf_tc_bw_result,
13590                  tc, "tc");
13591 cmdline_parse_token_string_t cmd_vf_tc_bw_tx =
13592         TOKEN_STRING_INITIALIZER
13593                 (struct cmd_vf_tc_bw_result,
13594                  tx, "tx");
13595 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio =
13596         TOKEN_STRING_INITIALIZER
13597                 (struct cmd_vf_tc_bw_result,
13598                  strict_link_prio, "strict-link-priority");
13599 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw =
13600         TOKEN_STRING_INITIALIZER
13601                 (struct cmd_vf_tc_bw_result,
13602                  min_bw, "min-bandwidth");
13603 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw =
13604         TOKEN_STRING_INITIALIZER
13605                 (struct cmd_vf_tc_bw_result,
13606                  max_bw, "max-bandwidth");
13607 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id =
13608         TOKEN_NUM_INITIALIZER
13609                 (struct cmd_vf_tc_bw_result,
13610                  port_id, UINT16);
13611 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id =
13612         TOKEN_NUM_INITIALIZER
13613                 (struct cmd_vf_tc_bw_result,
13614                  vf_id, UINT16);
13615 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no =
13616         TOKEN_NUM_INITIALIZER
13617                 (struct cmd_vf_tc_bw_result,
13618                  tc_no, UINT8);
13619 cmdline_parse_token_num_t cmd_vf_tc_bw_bw =
13620         TOKEN_NUM_INITIALIZER
13621                 (struct cmd_vf_tc_bw_result,
13622                  bw, UINT32);
13623 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list =
13624         TOKEN_STRING_INITIALIZER
13625                 (struct cmd_vf_tc_bw_result,
13626                  bw_list, NULL);
13627 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map =
13628         TOKEN_NUM_INITIALIZER
13629                 (struct cmd_vf_tc_bw_result,
13630                  tc_map, UINT8);
13631
13632 /* VF max bandwidth setting */
13633 static void
13634 cmd_vf_max_bw_parsed(
13635         void *parsed_result,
13636         __attribute__((unused)) struct cmdline *cl,
13637         __attribute__((unused)) void *data)
13638 {
13639         struct cmd_vf_tc_bw_result *res = parsed_result;
13640         int ret = -ENOTSUP;
13641
13642         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13643                 return;
13644
13645 #ifdef RTE_LIBRTE_I40E_PMD
13646         ret = rte_pmd_i40e_set_vf_max_bw(res->port_id,
13647                                          res->vf_id, res->bw);
13648 #endif
13649
13650         switch (ret) {
13651         case 0:
13652                 break;
13653         case -EINVAL:
13654                 printf("invalid vf_id %d or bandwidth %d\n",
13655                        res->vf_id, res->bw);
13656                 break;
13657         case -ENODEV:
13658                 printf("invalid port_id %d\n", res->port_id);
13659                 break;
13660         case -ENOTSUP:
13661                 printf("function not implemented\n");
13662                 break;
13663         default:
13664                 printf("programming error: (%s)\n", strerror(-ret));
13665         }
13666 }
13667
13668 cmdline_parse_inst_t cmd_vf_max_bw = {
13669         .f = cmd_vf_max_bw_parsed,
13670         .data = NULL,
13671         .help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>",
13672         .tokens = {
13673                 (void *)&cmd_vf_tc_bw_set,
13674                 (void *)&cmd_vf_tc_bw_vf,
13675                 (void *)&cmd_vf_tc_bw_tx,
13676                 (void *)&cmd_vf_tc_bw_max_bw,
13677                 (void *)&cmd_vf_tc_bw_port_id,
13678                 (void *)&cmd_vf_tc_bw_vf_id,
13679                 (void *)&cmd_vf_tc_bw_bw,
13680                 NULL,
13681         },
13682 };
13683
13684 static int
13685 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list,
13686                            uint8_t *tc_num,
13687                            char *str)
13688 {
13689         uint32_t size;
13690         const char *p, *p0 = str;
13691         char s[256];
13692         char *end;
13693         char *str_fld[16];
13694         uint16_t i;
13695         int ret;
13696
13697         p = strchr(p0, '(');
13698         if (p == NULL) {
13699                 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
13700                 return -1;
13701         }
13702         p++;
13703         p0 = strchr(p, ')');
13704         if (p0 == NULL) {
13705                 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
13706                 return -1;
13707         }
13708         size = p0 - p;
13709         if (size >= sizeof(s)) {
13710                 printf("The string size exceeds the internal buffer size\n");
13711                 return -1;
13712         }
13713         snprintf(s, sizeof(s), "%.*s", size, p);
13714         ret = rte_strsplit(s, sizeof(s), str_fld, 16, ',');
13715         if (ret <= 0) {
13716                 printf("Failed to get the bandwidth list. ");
13717                 return -1;
13718         }
13719         *tc_num = ret;
13720         for (i = 0; i < ret; i++)
13721                 bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0);
13722
13723         return 0;
13724 }
13725
13726 /* TC min bandwidth setting */
13727 static void
13728 cmd_vf_tc_min_bw_parsed(
13729         void *parsed_result,
13730         __attribute__((unused)) struct cmdline *cl,
13731         __attribute__((unused)) void *data)
13732 {
13733         struct cmd_vf_tc_bw_result *res = parsed_result;
13734         uint8_t tc_num;
13735         uint8_t bw[16];
13736         int ret = -ENOTSUP;
13737
13738         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13739                 return;
13740
13741         ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
13742         if (ret)
13743                 return;
13744
13745 #ifdef RTE_LIBRTE_I40E_PMD
13746         ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id,
13747                                               tc_num, bw);
13748 #endif
13749
13750         switch (ret) {
13751         case 0:
13752                 break;
13753         case -EINVAL:
13754                 printf("invalid vf_id %d or bandwidth\n", res->vf_id);
13755                 break;
13756         case -ENODEV:
13757                 printf("invalid port_id %d\n", res->port_id);
13758                 break;
13759         case -ENOTSUP:
13760                 printf("function not implemented\n");
13761                 break;
13762         default:
13763                 printf("programming error: (%s)\n", strerror(-ret));
13764         }
13765 }
13766
13767 cmdline_parse_inst_t cmd_vf_tc_min_bw = {
13768         .f = cmd_vf_tc_min_bw_parsed,
13769         .data = NULL,
13770         .help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>"
13771                     " <bw1, bw2, ...>",
13772         .tokens = {
13773                 (void *)&cmd_vf_tc_bw_set,
13774                 (void *)&cmd_vf_tc_bw_vf,
13775                 (void *)&cmd_vf_tc_bw_tc,
13776                 (void *)&cmd_vf_tc_bw_tx,
13777                 (void *)&cmd_vf_tc_bw_min_bw,
13778                 (void *)&cmd_vf_tc_bw_port_id,
13779                 (void *)&cmd_vf_tc_bw_vf_id,
13780                 (void *)&cmd_vf_tc_bw_bw_list,
13781                 NULL,
13782         },
13783 };
13784
13785 static void
13786 cmd_tc_min_bw_parsed(
13787         void *parsed_result,
13788         __attribute__((unused)) struct cmdline *cl,
13789         __attribute__((unused)) void *data)
13790 {
13791         struct cmd_vf_tc_bw_result *res = parsed_result;
13792         struct rte_port *port;
13793         uint8_t tc_num;
13794         uint8_t bw[16];
13795         int ret = -ENOTSUP;
13796
13797         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13798                 return;
13799
13800         port = &ports[res->port_id];
13801         /** Check if the port is not started **/
13802         if (port->port_status != RTE_PORT_STOPPED) {
13803                 printf("Please stop port %d first\n", res->port_id);
13804                 return;
13805         }
13806
13807         ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
13808         if (ret)
13809                 return;
13810
13811 #ifdef RTE_LIBRTE_IXGBE_PMD
13812         ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw);
13813 #endif
13814
13815         switch (ret) {
13816         case 0:
13817                 break;
13818         case -EINVAL:
13819                 printf("invalid bandwidth\n");
13820                 break;
13821         case -ENODEV:
13822                 printf("invalid port_id %d\n", res->port_id);
13823                 break;
13824         case -ENOTSUP:
13825                 printf("function not implemented\n");
13826                 break;
13827         default:
13828                 printf("programming error: (%s)\n", strerror(-ret));
13829         }
13830 }
13831
13832 cmdline_parse_inst_t cmd_tc_min_bw = {
13833         .f = cmd_tc_min_bw_parsed,
13834         .data = NULL,
13835         .help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>",
13836         .tokens = {
13837                 (void *)&cmd_vf_tc_bw_set,
13838                 (void *)&cmd_vf_tc_bw_tc,
13839                 (void *)&cmd_vf_tc_bw_tx,
13840                 (void *)&cmd_vf_tc_bw_min_bw,
13841                 (void *)&cmd_vf_tc_bw_port_id,
13842                 (void *)&cmd_vf_tc_bw_bw_list,
13843                 NULL,
13844         },
13845 };
13846
13847 /* TC max bandwidth setting */
13848 static void
13849 cmd_vf_tc_max_bw_parsed(
13850         void *parsed_result,
13851         __attribute__((unused)) struct cmdline *cl,
13852         __attribute__((unused)) void *data)
13853 {
13854         struct cmd_vf_tc_bw_result *res = parsed_result;
13855         int ret = -ENOTSUP;
13856
13857         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13858                 return;
13859
13860 #ifdef RTE_LIBRTE_I40E_PMD
13861         ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id,
13862                                             res->tc_no, res->bw);
13863 #endif
13864
13865         switch (ret) {
13866         case 0:
13867                 break;
13868         case -EINVAL:
13869                 printf("invalid vf_id %d, tc_no %d or bandwidth %d\n",
13870                        res->vf_id, res->tc_no, res->bw);
13871                 break;
13872         case -ENODEV:
13873                 printf("invalid port_id %d\n", res->port_id);
13874                 break;
13875         case -ENOTSUP:
13876                 printf("function not implemented\n");
13877                 break;
13878         default:
13879                 printf("programming error: (%s)\n", strerror(-ret));
13880         }
13881 }
13882
13883 cmdline_parse_inst_t cmd_vf_tc_max_bw = {
13884         .f = cmd_vf_tc_max_bw_parsed,
13885         .data = NULL,
13886         .help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>"
13887                     " <bandwidth>",
13888         .tokens = {
13889                 (void *)&cmd_vf_tc_bw_set,
13890                 (void *)&cmd_vf_tc_bw_vf,
13891                 (void *)&cmd_vf_tc_bw_tc,
13892                 (void *)&cmd_vf_tc_bw_tx,
13893                 (void *)&cmd_vf_tc_bw_max_bw,
13894                 (void *)&cmd_vf_tc_bw_port_id,
13895                 (void *)&cmd_vf_tc_bw_vf_id,
13896                 (void *)&cmd_vf_tc_bw_tc_no,
13897                 (void *)&cmd_vf_tc_bw_bw,
13898                 NULL,
13899         },
13900 };
13901
13902
13903 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED
13904
13905 /* *** Set Port default Traffic Management Hierarchy *** */
13906 struct cmd_set_port_tm_hierarchy_default_result {
13907         cmdline_fixed_string_t set;
13908         cmdline_fixed_string_t port;
13909         cmdline_fixed_string_t tm;
13910         cmdline_fixed_string_t hierarchy;
13911         cmdline_fixed_string_t def;
13912         portid_t port_id;
13913 };
13914
13915 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_set =
13916         TOKEN_STRING_INITIALIZER(
13917                 struct cmd_set_port_tm_hierarchy_default_result, set, "set");
13918 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_port =
13919         TOKEN_STRING_INITIALIZER(
13920                 struct cmd_set_port_tm_hierarchy_default_result, port, "port");
13921 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_tm =
13922         TOKEN_STRING_INITIALIZER(
13923                 struct cmd_set_port_tm_hierarchy_default_result, tm, "tm");
13924 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_hierarchy =
13925         TOKEN_STRING_INITIALIZER(
13926                 struct cmd_set_port_tm_hierarchy_default_result,
13927                         hierarchy, "hierarchy");
13928 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_default =
13929         TOKEN_STRING_INITIALIZER(
13930                 struct cmd_set_port_tm_hierarchy_default_result,
13931                         def, "default");
13932 cmdline_parse_token_num_t cmd_set_port_tm_hierarchy_default_port_id =
13933         TOKEN_NUM_INITIALIZER(
13934                 struct cmd_set_port_tm_hierarchy_default_result,
13935                         port_id, UINT16);
13936
13937 static void cmd_set_port_tm_hierarchy_default_parsed(void *parsed_result,
13938         __attribute__((unused)) struct cmdline *cl,
13939         __attribute__((unused)) void *data)
13940 {
13941         struct cmd_set_port_tm_hierarchy_default_result *res = parsed_result;
13942         struct rte_port *p;
13943         portid_t port_id = res->port_id;
13944
13945         if (port_id_is_invalid(port_id, ENABLED_WARN))
13946                 return;
13947
13948         p = &ports[port_id];
13949
13950         /* Port tm flag */
13951         if (p->softport.tm_flag == 0) {
13952                 printf("  tm not enabled on port %u (error)\n", port_id);
13953                 return;
13954         }
13955
13956         /* Forward mode: tm */
13957         if (strcmp(cur_fwd_config.fwd_eng->fwd_mode_name, "tm")) {
13958                 printf("  tm mode not enabled(error)\n");
13959                 return;
13960         }
13961
13962         /* Set the default tm hierarchy */
13963         p->softport.tm.default_hierarchy_enable = 1;
13964 }
13965
13966 cmdline_parse_inst_t cmd_set_port_tm_hierarchy_default = {
13967         .f = cmd_set_port_tm_hierarchy_default_parsed,
13968         .data = NULL,
13969         .help_str = "set port tm hierarchy default <port_id>",
13970         .tokens = {
13971                 (void *)&cmd_set_port_tm_hierarchy_default_set,
13972                 (void *)&cmd_set_port_tm_hierarchy_default_port,
13973                 (void *)&cmd_set_port_tm_hierarchy_default_tm,
13974                 (void *)&cmd_set_port_tm_hierarchy_default_hierarchy,
13975                 (void *)&cmd_set_port_tm_hierarchy_default_default,
13976                 (void *)&cmd_set_port_tm_hierarchy_default_port_id,
13977                 NULL,
13978         },
13979 };
13980 #endif
13981
13982 /* Strict link priority scheduling mode setting */
13983 static void
13984 cmd_strict_link_prio_parsed(
13985         void *parsed_result,
13986         __attribute__((unused)) struct cmdline *cl,
13987         __attribute__((unused)) void *data)
13988 {
13989         struct cmd_vf_tc_bw_result *res = parsed_result;
13990         int ret = -ENOTSUP;
13991
13992         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13993                 return;
13994
13995 #ifdef RTE_LIBRTE_I40E_PMD
13996         ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map);
13997 #endif
13998
13999         switch (ret) {
14000         case 0:
14001                 break;
14002         case -EINVAL:
14003                 printf("invalid tc_bitmap 0x%x\n", res->tc_map);
14004                 break;
14005         case -ENODEV:
14006                 printf("invalid port_id %d\n", res->port_id);
14007                 break;
14008         case -ENOTSUP:
14009                 printf("function not implemented\n");
14010                 break;
14011         default:
14012                 printf("programming error: (%s)\n", strerror(-ret));
14013         }
14014 }
14015
14016 cmdline_parse_inst_t cmd_strict_link_prio = {
14017         .f = cmd_strict_link_prio_parsed,
14018         .data = NULL,
14019         .help_str = "set tx strict-link-priority <port_id> <tc_bitmap>",
14020         .tokens = {
14021                 (void *)&cmd_vf_tc_bw_set,
14022                 (void *)&cmd_vf_tc_bw_tx,
14023                 (void *)&cmd_vf_tc_bw_strict_link_prio,
14024                 (void *)&cmd_vf_tc_bw_port_id,
14025                 (void *)&cmd_vf_tc_bw_tc_map,
14026                 NULL,
14027         },
14028 };
14029
14030 /* Load dynamic device personalization*/
14031 struct cmd_ddp_add_result {
14032         cmdline_fixed_string_t ddp;
14033         cmdline_fixed_string_t add;
14034         portid_t port_id;
14035         char filepath[];
14036 };
14037
14038 cmdline_parse_token_string_t cmd_ddp_add_ddp =
14039         TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp");
14040 cmdline_parse_token_string_t cmd_ddp_add_add =
14041         TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add");
14042 cmdline_parse_token_num_t cmd_ddp_add_port_id =
14043         TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id, UINT16);
14044 cmdline_parse_token_string_t cmd_ddp_add_filepath =
14045         TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL);
14046
14047 static void
14048 cmd_ddp_add_parsed(
14049         void *parsed_result,
14050         __attribute__((unused)) struct cmdline *cl,
14051         __attribute__((unused)) void *data)
14052 {
14053         struct cmd_ddp_add_result *res = parsed_result;
14054         uint8_t *buff;
14055         uint32_t size;
14056         char *filepath;
14057         char *file_fld[2];
14058         int file_num;
14059         int ret = -ENOTSUP;
14060
14061         if (res->port_id > nb_ports) {
14062                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
14063                 return;
14064         }
14065
14066         if (!all_ports_stopped()) {
14067                 printf("Please stop all ports first\n");
14068                 return;
14069         }
14070
14071         filepath = strdup(res->filepath);
14072         if (filepath == NULL) {
14073                 printf("Failed to allocate memory\n");
14074                 return;
14075         }
14076         file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ',');
14077
14078         buff = open_ddp_package_file(file_fld[0], &size);
14079         if (!buff) {
14080                 free((void *)filepath);
14081                 return;
14082         }
14083
14084 #ifdef RTE_LIBRTE_I40E_PMD
14085         if (ret == -ENOTSUP)
14086                 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
14087                                                buff, size,
14088                                                RTE_PMD_I40E_PKG_OP_WR_ADD);
14089 #endif
14090
14091         if (ret == -EEXIST)
14092                 printf("Profile has already existed.\n");
14093         else if (ret < 0)
14094                 printf("Failed to load profile.\n");
14095         else if (file_num == 2)
14096                 save_ddp_package_file(file_fld[1], buff, size);
14097
14098         close_ddp_package_file(buff);
14099         free((void *)filepath);
14100 }
14101
14102 cmdline_parse_inst_t cmd_ddp_add = {
14103         .f = cmd_ddp_add_parsed,
14104         .data = NULL,
14105         .help_str = "ddp add <port_id> <profile_path[,output_path]>",
14106         .tokens = {
14107                 (void *)&cmd_ddp_add_ddp,
14108                 (void *)&cmd_ddp_add_add,
14109                 (void *)&cmd_ddp_add_port_id,
14110                 (void *)&cmd_ddp_add_filepath,
14111                 NULL,
14112         },
14113 };
14114
14115 /* Delete dynamic device personalization*/
14116 struct cmd_ddp_del_result {
14117         cmdline_fixed_string_t ddp;
14118         cmdline_fixed_string_t del;
14119         portid_t port_id;
14120         char filepath[];
14121 };
14122
14123 cmdline_parse_token_string_t cmd_ddp_del_ddp =
14124         TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, ddp, "ddp");
14125 cmdline_parse_token_string_t cmd_ddp_del_del =
14126         TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, del, "del");
14127 cmdline_parse_token_num_t cmd_ddp_del_port_id =
14128         TOKEN_NUM_INITIALIZER(struct cmd_ddp_del_result, port_id, UINT16);
14129 cmdline_parse_token_string_t cmd_ddp_del_filepath =
14130         TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, filepath, NULL);
14131
14132 static void
14133 cmd_ddp_del_parsed(
14134         void *parsed_result,
14135         __attribute__((unused)) struct cmdline *cl,
14136         __attribute__((unused)) void *data)
14137 {
14138         struct cmd_ddp_del_result *res = parsed_result;
14139         uint8_t *buff;
14140         uint32_t size;
14141         int ret = -ENOTSUP;
14142
14143         if (res->port_id > nb_ports) {
14144                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
14145                 return;
14146         }
14147
14148         if (!all_ports_stopped()) {
14149                 printf("Please stop all ports first\n");
14150                 return;
14151         }
14152
14153         buff = open_ddp_package_file(res->filepath, &size);
14154         if (!buff)
14155                 return;
14156
14157 #ifdef RTE_LIBRTE_I40E_PMD
14158         if (ret == -ENOTSUP)
14159                 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
14160                                                buff, size,
14161                                                RTE_PMD_I40E_PKG_OP_WR_DEL);
14162 #endif
14163
14164         if (ret == -EACCES)
14165                 printf("Profile does not exist.\n");
14166         else if (ret < 0)
14167                 printf("Failed to delete profile.\n");
14168
14169         close_ddp_package_file(buff);
14170 }
14171
14172 cmdline_parse_inst_t cmd_ddp_del = {
14173         .f = cmd_ddp_del_parsed,
14174         .data = NULL,
14175         .help_str = "ddp del <port_id> <profile_path>",
14176         .tokens = {
14177                 (void *)&cmd_ddp_del_ddp,
14178                 (void *)&cmd_ddp_del_del,
14179                 (void *)&cmd_ddp_del_port_id,
14180                 (void *)&cmd_ddp_del_filepath,
14181                 NULL,
14182         },
14183 };
14184
14185 /* Get dynamic device personalization profile info */
14186 struct cmd_ddp_info_result {
14187         cmdline_fixed_string_t ddp;
14188         cmdline_fixed_string_t get;
14189         cmdline_fixed_string_t info;
14190         char filepath[];
14191 };
14192
14193 cmdline_parse_token_string_t cmd_ddp_info_ddp =
14194         TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, ddp, "ddp");
14195 cmdline_parse_token_string_t cmd_ddp_info_get =
14196         TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, get, "get");
14197 cmdline_parse_token_string_t cmd_ddp_info_info =
14198         TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, info, "info");
14199 cmdline_parse_token_string_t cmd_ddp_info_filepath =
14200         TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, filepath, NULL);
14201
14202 static void
14203 cmd_ddp_info_parsed(
14204         void *parsed_result,
14205         __attribute__((unused)) struct cmdline *cl,
14206         __attribute__((unused)) void *data)
14207 {
14208         struct cmd_ddp_info_result *res = parsed_result;
14209         uint8_t *pkg;
14210         uint32_t pkg_size;
14211         int ret = -ENOTSUP;
14212 #ifdef RTE_LIBRTE_I40E_PMD
14213         uint32_t i, j, n;
14214         uint8_t *buff;
14215         uint32_t buff_size = 0;
14216         struct rte_pmd_i40e_profile_info info;
14217         uint32_t dev_num = 0;
14218         struct rte_pmd_i40e_ddp_device_id *devs;
14219         uint32_t proto_num = 0;
14220         struct rte_pmd_i40e_proto_info *proto;
14221         uint32_t pctype_num = 0;
14222         struct rte_pmd_i40e_ptype_info *pctype;
14223         uint32_t ptype_num = 0;
14224         struct rte_pmd_i40e_ptype_info *ptype;
14225         uint8_t proto_id;
14226
14227 #endif
14228
14229         pkg = open_ddp_package_file(res->filepath, &pkg_size);
14230         if (!pkg)
14231                 return;
14232
14233 #ifdef RTE_LIBRTE_I40E_PMD
14234         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
14235                                 (uint8_t *)&info, sizeof(info),
14236                                 RTE_PMD_I40E_PKG_INFO_GLOBAL_HEADER);
14237         if (!ret) {
14238                 printf("Global Track id:       0x%x\n", info.track_id);
14239                 printf("Global Version:        %d.%d.%d.%d\n",
14240                         info.version.major,
14241                         info.version.minor,
14242                         info.version.update,
14243                         info.version.draft);
14244                 printf("Global Package name:   %s\n\n", info.name);
14245         }
14246
14247         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
14248                                 (uint8_t *)&info, sizeof(info),
14249                                 RTE_PMD_I40E_PKG_INFO_HEADER);
14250         if (!ret) {
14251                 printf("i40e Profile Track id: 0x%x\n", info.track_id);
14252                 printf("i40e Profile Version:  %d.%d.%d.%d\n",
14253                         info.version.major,
14254                         info.version.minor,
14255                         info.version.update,
14256                         info.version.draft);
14257                 printf("i40e Profile name:     %s\n\n", info.name);
14258         }
14259
14260         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
14261                                 (uint8_t *)&buff_size, sizeof(buff_size),
14262                                 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES_SIZE);
14263         if (!ret && buff_size) {
14264                 buff = (uint8_t *)malloc(buff_size);
14265                 if (buff) {
14266                         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
14267                                                 buff, buff_size,
14268                                                 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES);
14269                         if (!ret)
14270                                 printf("Package Notes:\n%s\n\n", buff);
14271                         free(buff);
14272                 }
14273         }
14274
14275         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
14276                                 (uint8_t *)&dev_num, sizeof(dev_num),
14277                                 RTE_PMD_I40E_PKG_INFO_DEVID_NUM);
14278         if (!ret && dev_num) {
14279                 buff_size = dev_num * sizeof(struct rte_pmd_i40e_ddp_device_id);
14280                 devs = (struct rte_pmd_i40e_ddp_device_id *)malloc(buff_size);
14281                 if (devs) {
14282                         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
14283                                                 (uint8_t *)devs, buff_size,
14284                                                 RTE_PMD_I40E_PKG_INFO_DEVID_LIST);
14285                         if (!ret) {
14286                                 printf("List of supported devices:\n");
14287                                 for (i = 0; i < dev_num; i++) {
14288                                         printf("  %04X:%04X %04X:%04X\n",
14289                                                 devs[i].vendor_dev_id >> 16,
14290                                                 devs[i].vendor_dev_id & 0xFFFF,
14291                                                 devs[i].sub_vendor_dev_id >> 16,
14292                                                 devs[i].sub_vendor_dev_id & 0xFFFF);
14293                                 }
14294                                 printf("\n");
14295                         }
14296                         free(devs);
14297                 }
14298         }
14299
14300         /* get information about protocols and packet types */
14301         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
14302                 (uint8_t *)&proto_num, sizeof(proto_num),
14303                 RTE_PMD_I40E_PKG_INFO_PROTOCOL_NUM);
14304         if (ret || !proto_num)
14305                 goto no_print_return;
14306
14307         buff_size = proto_num * sizeof(struct rte_pmd_i40e_proto_info);
14308         proto = (struct rte_pmd_i40e_proto_info *)malloc(buff_size);
14309         if (!proto)
14310                 goto no_print_return;
14311
14312         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)proto,
14313                                         buff_size,
14314                                         RTE_PMD_I40E_PKG_INFO_PROTOCOL_LIST);
14315         if (!ret) {
14316                 printf("List of used protocols:\n");
14317                 for (i = 0; i < proto_num; i++)
14318                         printf("  %2u: %s\n", proto[i].proto_id,
14319                                proto[i].name);
14320                 printf("\n");
14321         }
14322         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
14323                 (uint8_t *)&pctype_num, sizeof(pctype_num),
14324                 RTE_PMD_I40E_PKG_INFO_PCTYPE_NUM);
14325         if (ret || !pctype_num)
14326                 goto no_print_pctypes;
14327
14328         buff_size = pctype_num * sizeof(struct rte_pmd_i40e_ptype_info);
14329         pctype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
14330         if (!pctype)
14331                 goto no_print_pctypes;
14332
14333         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)pctype,
14334                                         buff_size,
14335                                         RTE_PMD_I40E_PKG_INFO_PCTYPE_LIST);
14336         if (ret) {
14337                 free(pctype);
14338                 goto no_print_pctypes;
14339         }
14340
14341         printf("List of defined packet classification types:\n");
14342         for (i = 0; i < pctype_num; i++) {
14343                 printf("  %2u:", pctype[i].ptype_id);
14344                 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
14345                         proto_id = pctype[i].protocols[j];
14346                         if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
14347                                 for (n = 0; n < proto_num; n++) {
14348                                         if (proto[n].proto_id == proto_id) {
14349                                                 printf(" %s", proto[n].name);
14350                                                 break;
14351                                         }
14352                                 }
14353                         }
14354                 }
14355                 printf("\n");
14356         }
14357         printf("\n");
14358         free(pctype);
14359
14360 no_print_pctypes:
14361
14362         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)&ptype_num,
14363                                         sizeof(ptype_num),
14364                                         RTE_PMD_I40E_PKG_INFO_PTYPE_NUM);
14365         if (ret || !ptype_num)
14366                 goto no_print_return;
14367
14368         buff_size = ptype_num * sizeof(struct rte_pmd_i40e_ptype_info);
14369         ptype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
14370         if (!ptype)
14371                 goto no_print_return;
14372
14373         ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)ptype,
14374                                         buff_size,
14375                                         RTE_PMD_I40E_PKG_INFO_PTYPE_LIST);
14376         if (ret) {
14377                 free(ptype);
14378                 goto no_print_return;
14379         }
14380         printf("List of defined packet types:\n");
14381         for (i = 0; i < ptype_num; i++) {
14382                 printf("  %2u:", ptype[i].ptype_id);
14383                 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
14384                         proto_id = ptype[i].protocols[j];
14385                         if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
14386                                 for (n = 0; n < proto_num; n++) {
14387                                         if (proto[n].proto_id == proto_id) {
14388                                                 printf(" %s", proto[n].name);
14389                                                 break;
14390                                         }
14391                                 }
14392                         }
14393                 }
14394                 printf("\n");
14395         }
14396         free(ptype);
14397         printf("\n");
14398
14399         free(proto);
14400         ret = 0;
14401 no_print_return:
14402 #endif
14403         if (ret == -ENOTSUP)
14404                 printf("Function not supported in PMD driver\n");
14405         close_ddp_package_file(pkg);
14406 }
14407
14408 cmdline_parse_inst_t cmd_ddp_get_info = {
14409         .f = cmd_ddp_info_parsed,
14410         .data = NULL,
14411         .help_str = "ddp get info <profile_path>",
14412         .tokens = {
14413                 (void *)&cmd_ddp_info_ddp,
14414                 (void *)&cmd_ddp_info_get,
14415                 (void *)&cmd_ddp_info_info,
14416                 (void *)&cmd_ddp_info_filepath,
14417                 NULL,
14418         },
14419 };
14420
14421 /* Get dynamic device personalization profile info list*/
14422 #define PROFILE_INFO_SIZE 48
14423 #define MAX_PROFILE_NUM 16
14424
14425 struct cmd_ddp_get_list_result {
14426         cmdline_fixed_string_t ddp;
14427         cmdline_fixed_string_t get;
14428         cmdline_fixed_string_t list;
14429         portid_t port_id;
14430 };
14431
14432 cmdline_parse_token_string_t cmd_ddp_get_list_ddp =
14433         TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp");
14434 cmdline_parse_token_string_t cmd_ddp_get_list_get =
14435         TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get");
14436 cmdline_parse_token_string_t cmd_ddp_get_list_list =
14437         TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list");
14438 cmdline_parse_token_num_t cmd_ddp_get_list_port_id =
14439         TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id, UINT16);
14440
14441 static void
14442 cmd_ddp_get_list_parsed(
14443         void *parsed_result,
14444         __attribute__((unused)) struct cmdline *cl,
14445         __attribute__((unused)) void *data)
14446 {
14447         struct cmd_ddp_get_list_result *res = parsed_result;
14448 #ifdef RTE_LIBRTE_I40E_PMD
14449         struct rte_pmd_i40e_profile_list *p_list;
14450         struct rte_pmd_i40e_profile_info *p_info;
14451         uint32_t p_num;
14452         uint32_t size;
14453         uint32_t i;
14454 #endif
14455         int ret = -ENOTSUP;
14456
14457         if (res->port_id > nb_ports) {
14458                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
14459                 return;
14460         }
14461
14462 #ifdef RTE_LIBRTE_I40E_PMD
14463         size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4;
14464         p_list = (struct rte_pmd_i40e_profile_list *)malloc(size);
14465         if (!p_list)
14466                 printf("%s: Failed to malloc buffer\n", __func__);
14467
14468         if (ret == -ENOTSUP)
14469                 ret = rte_pmd_i40e_get_ddp_list(res->port_id,
14470                                                 (uint8_t *)p_list, size);
14471
14472         if (!ret) {
14473                 p_num = p_list->p_count;
14474                 printf("Profile number is: %d\n\n", p_num);
14475
14476                 for (i = 0; i < p_num; i++) {
14477                         p_info = &p_list->p_info[i];
14478                         printf("Profile %d:\n", i);
14479                         printf("Track id:     0x%x\n", p_info->track_id);
14480                         printf("Version:      %d.%d.%d.%d\n",
14481                                p_info->version.major,
14482                                p_info->version.minor,
14483                                p_info->version.update,
14484                                p_info->version.draft);
14485                         printf("Profile name: %s\n\n", p_info->name);
14486                 }
14487         }
14488
14489         free(p_list);
14490 #endif
14491
14492         if (ret < 0)
14493                 printf("Failed to get ddp list\n");
14494 }
14495
14496 cmdline_parse_inst_t cmd_ddp_get_list = {
14497         .f = cmd_ddp_get_list_parsed,
14498         .data = NULL,
14499         .help_str = "ddp get list <port_id>",
14500         .tokens = {
14501                 (void *)&cmd_ddp_get_list_ddp,
14502                 (void *)&cmd_ddp_get_list_get,
14503                 (void *)&cmd_ddp_get_list_list,
14504                 (void *)&cmd_ddp_get_list_port_id,
14505                 NULL,
14506         },
14507 };
14508
14509 /* show vf stats */
14510
14511 /* Common result structure for show vf stats */
14512 struct cmd_show_vf_stats_result {
14513         cmdline_fixed_string_t show;
14514         cmdline_fixed_string_t vf;
14515         cmdline_fixed_string_t stats;
14516         portid_t port_id;
14517         uint16_t vf_id;
14518 };
14519
14520 /* Common CLI fields show vf stats*/
14521 cmdline_parse_token_string_t cmd_show_vf_stats_show =
14522         TOKEN_STRING_INITIALIZER
14523                 (struct cmd_show_vf_stats_result,
14524                  show, "show");
14525 cmdline_parse_token_string_t cmd_show_vf_stats_vf =
14526         TOKEN_STRING_INITIALIZER
14527                 (struct cmd_show_vf_stats_result,
14528                  vf, "vf");
14529 cmdline_parse_token_string_t cmd_show_vf_stats_stats =
14530         TOKEN_STRING_INITIALIZER
14531                 (struct cmd_show_vf_stats_result,
14532                  stats, "stats");
14533 cmdline_parse_token_num_t cmd_show_vf_stats_port_id =
14534         TOKEN_NUM_INITIALIZER
14535                 (struct cmd_show_vf_stats_result,
14536                  port_id, UINT16);
14537 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id =
14538         TOKEN_NUM_INITIALIZER
14539                 (struct cmd_show_vf_stats_result,
14540                  vf_id, UINT16);
14541
14542 static void
14543 cmd_show_vf_stats_parsed(
14544         void *parsed_result,
14545         __attribute__((unused)) struct cmdline *cl,
14546         __attribute__((unused)) void *data)
14547 {
14548         struct cmd_show_vf_stats_result *res = parsed_result;
14549         struct rte_eth_stats stats;
14550         int ret = -ENOTSUP;
14551         static const char *nic_stats_border = "########################";
14552
14553         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14554                 return;
14555
14556         memset(&stats, 0, sizeof(stats));
14557
14558 #ifdef RTE_LIBRTE_I40E_PMD
14559         if (ret == -ENOTSUP)
14560                 ret = rte_pmd_i40e_get_vf_stats(res->port_id,
14561                                                 res->vf_id,
14562                                                 &stats);
14563 #endif
14564 #ifdef RTE_LIBRTE_BNXT_PMD
14565         if (ret == -ENOTSUP)
14566                 ret = rte_pmd_bnxt_get_vf_stats(res->port_id,
14567                                                 res->vf_id,
14568                                                 &stats);
14569 #endif
14570
14571         switch (ret) {
14572         case 0:
14573                 break;
14574         case -EINVAL:
14575                 printf("invalid vf_id %d\n", res->vf_id);
14576                 break;
14577         case -ENODEV:
14578                 printf("invalid port_id %d\n", res->port_id);
14579                 break;
14580         case -ENOTSUP:
14581                 printf("function not implemented\n");
14582                 break;
14583         default:
14584                 printf("programming error: (%s)\n", strerror(-ret));
14585         }
14586
14587         printf("\n  %s NIC statistics for port %-2d vf %-2d %s\n",
14588                 nic_stats_border, res->port_id, res->vf_id, nic_stats_border);
14589
14590         printf("  RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes:  "
14591                "%-"PRIu64"\n",
14592                stats.ipackets, stats.imissed, stats.ibytes);
14593         printf("  RX-errors: %-"PRIu64"\n", stats.ierrors);
14594         printf("  RX-nombuf:  %-10"PRIu64"\n",
14595                stats.rx_nombuf);
14596         printf("  TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes:  "
14597                "%-"PRIu64"\n",
14598                stats.opackets, stats.oerrors, stats.obytes);
14599
14600         printf("  %s############################%s\n",
14601                                nic_stats_border, nic_stats_border);
14602 }
14603
14604 cmdline_parse_inst_t cmd_show_vf_stats = {
14605         .f = cmd_show_vf_stats_parsed,
14606         .data = NULL,
14607         .help_str = "show vf stats <port_id> <vf_id>",
14608         .tokens = {
14609                 (void *)&cmd_show_vf_stats_show,
14610                 (void *)&cmd_show_vf_stats_vf,
14611                 (void *)&cmd_show_vf_stats_stats,
14612                 (void *)&cmd_show_vf_stats_port_id,
14613                 (void *)&cmd_show_vf_stats_vf_id,
14614                 NULL,
14615         },
14616 };
14617
14618 /* clear vf stats */
14619
14620 /* Common result structure for clear vf stats */
14621 struct cmd_clear_vf_stats_result {
14622         cmdline_fixed_string_t clear;
14623         cmdline_fixed_string_t vf;
14624         cmdline_fixed_string_t stats;
14625         portid_t port_id;
14626         uint16_t vf_id;
14627 };
14628
14629 /* Common CLI fields clear vf stats*/
14630 cmdline_parse_token_string_t cmd_clear_vf_stats_clear =
14631         TOKEN_STRING_INITIALIZER
14632                 (struct cmd_clear_vf_stats_result,
14633                  clear, "clear");
14634 cmdline_parse_token_string_t cmd_clear_vf_stats_vf =
14635         TOKEN_STRING_INITIALIZER
14636                 (struct cmd_clear_vf_stats_result,
14637                  vf, "vf");
14638 cmdline_parse_token_string_t cmd_clear_vf_stats_stats =
14639         TOKEN_STRING_INITIALIZER
14640                 (struct cmd_clear_vf_stats_result,
14641                  stats, "stats");
14642 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id =
14643         TOKEN_NUM_INITIALIZER
14644                 (struct cmd_clear_vf_stats_result,
14645                  port_id, UINT16);
14646 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id =
14647         TOKEN_NUM_INITIALIZER
14648                 (struct cmd_clear_vf_stats_result,
14649                  vf_id, UINT16);
14650
14651 static void
14652 cmd_clear_vf_stats_parsed(
14653         void *parsed_result,
14654         __attribute__((unused)) struct cmdline *cl,
14655         __attribute__((unused)) void *data)
14656 {
14657         struct cmd_clear_vf_stats_result *res = parsed_result;
14658         int ret = -ENOTSUP;
14659
14660         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14661                 return;
14662
14663 #ifdef RTE_LIBRTE_I40E_PMD
14664         if (ret == -ENOTSUP)
14665                 ret = rte_pmd_i40e_reset_vf_stats(res->port_id,
14666                                                   res->vf_id);
14667 #endif
14668 #ifdef RTE_LIBRTE_BNXT_PMD
14669         if (ret == -ENOTSUP)
14670                 ret = rte_pmd_bnxt_reset_vf_stats(res->port_id,
14671                                                   res->vf_id);
14672 #endif
14673
14674         switch (ret) {
14675         case 0:
14676                 break;
14677         case -EINVAL:
14678                 printf("invalid vf_id %d\n", res->vf_id);
14679                 break;
14680         case -ENODEV:
14681                 printf("invalid port_id %d\n", res->port_id);
14682                 break;
14683         case -ENOTSUP:
14684                 printf("function not implemented\n");
14685                 break;
14686         default:
14687                 printf("programming error: (%s)\n", strerror(-ret));
14688         }
14689 }
14690
14691 cmdline_parse_inst_t cmd_clear_vf_stats = {
14692         .f = cmd_clear_vf_stats_parsed,
14693         .data = NULL,
14694         .help_str = "clear vf stats <port_id> <vf_id>",
14695         .tokens = {
14696                 (void *)&cmd_clear_vf_stats_clear,
14697                 (void *)&cmd_clear_vf_stats_vf,
14698                 (void *)&cmd_clear_vf_stats_stats,
14699                 (void *)&cmd_clear_vf_stats_port_id,
14700                 (void *)&cmd_clear_vf_stats_vf_id,
14701                 NULL,
14702         },
14703 };
14704
14705 /* port config pctype mapping reset */
14706
14707 /* Common result structure for port config pctype mapping reset */
14708 struct cmd_pctype_mapping_reset_result {
14709         cmdline_fixed_string_t port;
14710         cmdline_fixed_string_t config;
14711         portid_t port_id;
14712         cmdline_fixed_string_t pctype;
14713         cmdline_fixed_string_t mapping;
14714         cmdline_fixed_string_t reset;
14715 };
14716
14717 /* Common CLI fields for port config pctype mapping reset*/
14718 cmdline_parse_token_string_t cmd_pctype_mapping_reset_port =
14719         TOKEN_STRING_INITIALIZER
14720                 (struct cmd_pctype_mapping_reset_result,
14721                  port, "port");
14722 cmdline_parse_token_string_t cmd_pctype_mapping_reset_config =
14723         TOKEN_STRING_INITIALIZER
14724                 (struct cmd_pctype_mapping_reset_result,
14725                  config, "config");
14726 cmdline_parse_token_num_t cmd_pctype_mapping_reset_port_id =
14727         TOKEN_NUM_INITIALIZER
14728                 (struct cmd_pctype_mapping_reset_result,
14729                  port_id, UINT16);
14730 cmdline_parse_token_string_t cmd_pctype_mapping_reset_pctype =
14731         TOKEN_STRING_INITIALIZER
14732                 (struct cmd_pctype_mapping_reset_result,
14733                  pctype, "pctype");
14734 cmdline_parse_token_string_t cmd_pctype_mapping_reset_mapping =
14735         TOKEN_STRING_INITIALIZER
14736                 (struct cmd_pctype_mapping_reset_result,
14737                  mapping, "mapping");
14738 cmdline_parse_token_string_t cmd_pctype_mapping_reset_reset =
14739         TOKEN_STRING_INITIALIZER
14740                 (struct cmd_pctype_mapping_reset_result,
14741                  reset, "reset");
14742
14743 static void
14744 cmd_pctype_mapping_reset_parsed(
14745         void *parsed_result,
14746         __attribute__((unused)) struct cmdline *cl,
14747         __attribute__((unused)) void *data)
14748 {
14749         struct cmd_pctype_mapping_reset_result *res = parsed_result;
14750         int ret = -ENOTSUP;
14751
14752         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14753                 return;
14754
14755 #ifdef RTE_LIBRTE_I40E_PMD
14756         ret = rte_pmd_i40e_flow_type_mapping_reset(res->port_id);
14757 #endif
14758
14759         switch (ret) {
14760         case 0:
14761                 break;
14762         case -ENODEV:
14763                 printf("invalid port_id %d\n", res->port_id);
14764                 break;
14765         case -ENOTSUP:
14766                 printf("function not implemented\n");
14767                 break;
14768         default:
14769                 printf("programming error: (%s)\n", strerror(-ret));
14770         }
14771 }
14772
14773 cmdline_parse_inst_t cmd_pctype_mapping_reset = {
14774         .f = cmd_pctype_mapping_reset_parsed,
14775         .data = NULL,
14776         .help_str = "port config <port_id> pctype mapping reset",
14777         .tokens = {
14778                 (void *)&cmd_pctype_mapping_reset_port,
14779                 (void *)&cmd_pctype_mapping_reset_config,
14780                 (void *)&cmd_pctype_mapping_reset_port_id,
14781                 (void *)&cmd_pctype_mapping_reset_pctype,
14782                 (void *)&cmd_pctype_mapping_reset_mapping,
14783                 (void *)&cmd_pctype_mapping_reset_reset,
14784                 NULL,
14785         },
14786 };
14787
14788 /* show port pctype mapping */
14789
14790 /* Common result structure for show port pctype mapping */
14791 struct cmd_pctype_mapping_get_result {
14792         cmdline_fixed_string_t show;
14793         cmdline_fixed_string_t port;
14794         portid_t port_id;
14795         cmdline_fixed_string_t pctype;
14796         cmdline_fixed_string_t mapping;
14797 };
14798
14799 /* Common CLI fields for pctype mapping get */
14800 cmdline_parse_token_string_t cmd_pctype_mapping_get_show =
14801         TOKEN_STRING_INITIALIZER
14802                 (struct cmd_pctype_mapping_get_result,
14803                  show, "show");
14804 cmdline_parse_token_string_t cmd_pctype_mapping_get_port =
14805         TOKEN_STRING_INITIALIZER
14806                 (struct cmd_pctype_mapping_get_result,
14807                  port, "port");
14808 cmdline_parse_token_num_t cmd_pctype_mapping_get_port_id =
14809         TOKEN_NUM_INITIALIZER
14810                 (struct cmd_pctype_mapping_get_result,
14811                  port_id, UINT16);
14812 cmdline_parse_token_string_t cmd_pctype_mapping_get_pctype =
14813         TOKEN_STRING_INITIALIZER
14814                 (struct cmd_pctype_mapping_get_result,
14815                  pctype, "pctype");
14816 cmdline_parse_token_string_t cmd_pctype_mapping_get_mapping =
14817         TOKEN_STRING_INITIALIZER
14818                 (struct cmd_pctype_mapping_get_result,
14819                  mapping, "mapping");
14820
14821 static void
14822 cmd_pctype_mapping_get_parsed(
14823         void *parsed_result,
14824         __attribute__((unused)) struct cmdline *cl,
14825         __attribute__((unused)) void *data)
14826 {
14827         struct cmd_pctype_mapping_get_result *res = parsed_result;
14828         int ret = -ENOTSUP;
14829 #ifdef RTE_LIBRTE_I40E_PMD
14830         struct rte_pmd_i40e_flow_type_mapping
14831                                 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
14832         int i, j, first_pctype;
14833 #endif
14834
14835         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14836                 return;
14837
14838 #ifdef RTE_LIBRTE_I40E_PMD
14839         ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, mapping);
14840 #endif
14841
14842         switch (ret) {
14843         case 0:
14844                 break;
14845         case -ENODEV:
14846                 printf("invalid port_id %d\n", res->port_id);
14847                 return;
14848         case -ENOTSUP:
14849                 printf("function not implemented\n");
14850                 return;
14851         default:
14852                 printf("programming error: (%s)\n", strerror(-ret));
14853                 return;
14854         }
14855
14856 #ifdef RTE_LIBRTE_I40E_PMD
14857         for (i = 0; i < RTE_PMD_I40E_FLOW_TYPE_MAX; i++) {
14858                 if (mapping[i].pctype != 0ULL) {
14859                         first_pctype = 1;
14860
14861                         printf("pctype: ");
14862                         for (j = 0; j < RTE_PMD_I40E_PCTYPE_MAX; j++) {
14863                                 if (mapping[i].pctype & (1ULL << j)) {
14864                                         printf(first_pctype ?
14865                                                "%02d" : ",%02d", j);
14866                                         first_pctype = 0;
14867                                 }
14868                         }
14869                         printf("  ->  flowtype: %02d\n", mapping[i].flow_type);
14870                 }
14871         }
14872 #endif
14873 }
14874
14875 cmdline_parse_inst_t cmd_pctype_mapping_get = {
14876         .f = cmd_pctype_mapping_get_parsed,
14877         .data = NULL,
14878         .help_str = "show port <port_id> pctype mapping",
14879         .tokens = {
14880                 (void *)&cmd_pctype_mapping_get_show,
14881                 (void *)&cmd_pctype_mapping_get_port,
14882                 (void *)&cmd_pctype_mapping_get_port_id,
14883                 (void *)&cmd_pctype_mapping_get_pctype,
14884                 (void *)&cmd_pctype_mapping_get_mapping,
14885                 NULL,
14886         },
14887 };
14888
14889 /* port config pctype mapping update */
14890
14891 /* Common result structure for port config pctype mapping update */
14892 struct cmd_pctype_mapping_update_result {
14893         cmdline_fixed_string_t port;
14894         cmdline_fixed_string_t config;
14895         portid_t port_id;
14896         cmdline_fixed_string_t pctype;
14897         cmdline_fixed_string_t mapping;
14898         cmdline_fixed_string_t update;
14899         cmdline_fixed_string_t pctype_list;
14900         uint16_t flow_type;
14901 };
14902
14903 /* Common CLI fields for pctype mapping update*/
14904 cmdline_parse_token_string_t cmd_pctype_mapping_update_port =
14905         TOKEN_STRING_INITIALIZER
14906                 (struct cmd_pctype_mapping_update_result,
14907                  port, "port");
14908 cmdline_parse_token_string_t cmd_pctype_mapping_update_config =
14909         TOKEN_STRING_INITIALIZER
14910                 (struct cmd_pctype_mapping_update_result,
14911                  config, "config");
14912 cmdline_parse_token_num_t cmd_pctype_mapping_update_port_id =
14913         TOKEN_NUM_INITIALIZER
14914                 (struct cmd_pctype_mapping_update_result,
14915                  port_id, UINT16);
14916 cmdline_parse_token_string_t cmd_pctype_mapping_update_pctype =
14917         TOKEN_STRING_INITIALIZER
14918                 (struct cmd_pctype_mapping_update_result,
14919                  pctype, "pctype");
14920 cmdline_parse_token_string_t cmd_pctype_mapping_update_mapping =
14921         TOKEN_STRING_INITIALIZER
14922                 (struct cmd_pctype_mapping_update_result,
14923                  mapping, "mapping");
14924 cmdline_parse_token_string_t cmd_pctype_mapping_update_update =
14925         TOKEN_STRING_INITIALIZER
14926                 (struct cmd_pctype_mapping_update_result,
14927                  update, "update");
14928 cmdline_parse_token_string_t cmd_pctype_mapping_update_pc_type =
14929         TOKEN_STRING_INITIALIZER
14930                 (struct cmd_pctype_mapping_update_result,
14931                  pctype_list, NULL);
14932 cmdline_parse_token_num_t cmd_pctype_mapping_update_flow_type =
14933         TOKEN_NUM_INITIALIZER
14934                 (struct cmd_pctype_mapping_update_result,
14935                  flow_type, UINT16);
14936
14937 static void
14938 cmd_pctype_mapping_update_parsed(
14939         void *parsed_result,
14940         __attribute__((unused)) struct cmdline *cl,
14941         __attribute__((unused)) void *data)
14942 {
14943         struct cmd_pctype_mapping_update_result *res = parsed_result;
14944         int ret = -ENOTSUP;
14945 #ifdef RTE_LIBRTE_I40E_PMD
14946         struct rte_pmd_i40e_flow_type_mapping mapping;
14947         unsigned int i;
14948         unsigned int nb_item;
14949         unsigned int pctype_list[RTE_PMD_I40E_PCTYPE_MAX];
14950 #endif
14951
14952         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14953                 return;
14954
14955 #ifdef RTE_LIBRTE_I40E_PMD
14956         nb_item = parse_item_list(res->pctype_list, "pctypes",
14957                                   RTE_PMD_I40E_PCTYPE_MAX, pctype_list, 1);
14958         mapping.flow_type = res->flow_type;
14959         for (i = 0, mapping.pctype = 0ULL; i < nb_item; i++)
14960                 mapping.pctype |= (1ULL << pctype_list[i]);
14961         ret = rte_pmd_i40e_flow_type_mapping_update(res->port_id,
14962                                                 &mapping,
14963                                                 1,
14964                                                 0);
14965 #endif
14966
14967         switch (ret) {
14968         case 0:
14969                 break;
14970         case -EINVAL:
14971                 printf("invalid pctype or flow type\n");
14972                 break;
14973         case -ENODEV:
14974                 printf("invalid port_id %d\n", res->port_id);
14975                 break;
14976         case -ENOTSUP:
14977                 printf("function not implemented\n");
14978                 break;
14979         default:
14980                 printf("programming error: (%s)\n", strerror(-ret));
14981         }
14982 }
14983
14984 cmdline_parse_inst_t cmd_pctype_mapping_update = {
14985         .f = cmd_pctype_mapping_update_parsed,
14986         .data = NULL,
14987         .help_str = "port config <port_id> pctype mapping update"
14988         " <pctype_id_0,[pctype_id_1]*> <flowtype_id>",
14989         .tokens = {
14990                 (void *)&cmd_pctype_mapping_update_port,
14991                 (void *)&cmd_pctype_mapping_update_config,
14992                 (void *)&cmd_pctype_mapping_update_port_id,
14993                 (void *)&cmd_pctype_mapping_update_pctype,
14994                 (void *)&cmd_pctype_mapping_update_mapping,
14995                 (void *)&cmd_pctype_mapping_update_update,
14996                 (void *)&cmd_pctype_mapping_update_pc_type,
14997                 (void *)&cmd_pctype_mapping_update_flow_type,
14998                 NULL,
14999         },
15000 };
15001
15002 /* ptype mapping get */
15003
15004 /* Common result structure for ptype mapping get */
15005 struct cmd_ptype_mapping_get_result {
15006         cmdline_fixed_string_t ptype;
15007         cmdline_fixed_string_t mapping;
15008         cmdline_fixed_string_t get;
15009         portid_t port_id;
15010         uint8_t valid_only;
15011 };
15012
15013 /* Common CLI fields for ptype mapping get */
15014 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype =
15015         TOKEN_STRING_INITIALIZER
15016                 (struct cmd_ptype_mapping_get_result,
15017                  ptype, "ptype");
15018 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping =
15019         TOKEN_STRING_INITIALIZER
15020                 (struct cmd_ptype_mapping_get_result,
15021                  mapping, "mapping");
15022 cmdline_parse_token_string_t cmd_ptype_mapping_get_get =
15023         TOKEN_STRING_INITIALIZER
15024                 (struct cmd_ptype_mapping_get_result,
15025                  get, "get");
15026 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id =
15027         TOKEN_NUM_INITIALIZER
15028                 (struct cmd_ptype_mapping_get_result,
15029                  port_id, UINT16);
15030 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only =
15031         TOKEN_NUM_INITIALIZER
15032                 (struct cmd_ptype_mapping_get_result,
15033                  valid_only, UINT8);
15034
15035 static void
15036 cmd_ptype_mapping_get_parsed(
15037         void *parsed_result,
15038         __attribute__((unused)) struct cmdline *cl,
15039         __attribute__((unused)) void *data)
15040 {
15041         struct cmd_ptype_mapping_get_result *res = parsed_result;
15042         int ret = -ENOTSUP;
15043 #ifdef RTE_LIBRTE_I40E_PMD
15044         int max_ptype_num = 256;
15045         struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num];
15046         uint16_t count;
15047         int i;
15048 #endif
15049
15050         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15051                 return;
15052
15053 #ifdef RTE_LIBRTE_I40E_PMD
15054         ret = rte_pmd_i40e_ptype_mapping_get(res->port_id,
15055                                         mapping,
15056                                         max_ptype_num,
15057                                         &count,
15058                                         res->valid_only);
15059 #endif
15060
15061         switch (ret) {
15062         case 0:
15063                 break;
15064         case -ENODEV:
15065                 printf("invalid port_id %d\n", res->port_id);
15066                 break;
15067         case -ENOTSUP:
15068                 printf("function not implemented\n");
15069                 break;
15070         default:
15071                 printf("programming error: (%s)\n", strerror(-ret));
15072         }
15073
15074 #ifdef RTE_LIBRTE_I40E_PMD
15075         if (!ret) {
15076                 for (i = 0; i < count; i++)
15077                         printf("%3d\t0x%08x\n",
15078                                 mapping[i].hw_ptype, mapping[i].sw_ptype);
15079         }
15080 #endif
15081 }
15082
15083 cmdline_parse_inst_t cmd_ptype_mapping_get = {
15084         .f = cmd_ptype_mapping_get_parsed,
15085         .data = NULL,
15086         .help_str = "ptype mapping get <port_id> <valid_only>",
15087         .tokens = {
15088                 (void *)&cmd_ptype_mapping_get_ptype,
15089                 (void *)&cmd_ptype_mapping_get_mapping,
15090                 (void *)&cmd_ptype_mapping_get_get,
15091                 (void *)&cmd_ptype_mapping_get_port_id,
15092                 (void *)&cmd_ptype_mapping_get_valid_only,
15093                 NULL,
15094         },
15095 };
15096
15097 /* ptype mapping replace */
15098
15099 /* Common result structure for ptype mapping replace */
15100 struct cmd_ptype_mapping_replace_result {
15101         cmdline_fixed_string_t ptype;
15102         cmdline_fixed_string_t mapping;
15103         cmdline_fixed_string_t replace;
15104         portid_t port_id;
15105         uint32_t target;
15106         uint8_t mask;
15107         uint32_t pkt_type;
15108 };
15109
15110 /* Common CLI fields for ptype mapping replace */
15111 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype =
15112         TOKEN_STRING_INITIALIZER
15113                 (struct cmd_ptype_mapping_replace_result,
15114                  ptype, "ptype");
15115 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping =
15116         TOKEN_STRING_INITIALIZER
15117                 (struct cmd_ptype_mapping_replace_result,
15118                  mapping, "mapping");
15119 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace =
15120         TOKEN_STRING_INITIALIZER
15121                 (struct cmd_ptype_mapping_replace_result,
15122                  replace, "replace");
15123 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id =
15124         TOKEN_NUM_INITIALIZER
15125                 (struct cmd_ptype_mapping_replace_result,
15126                  port_id, UINT16);
15127 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target =
15128         TOKEN_NUM_INITIALIZER
15129                 (struct cmd_ptype_mapping_replace_result,
15130                  target, UINT32);
15131 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask =
15132         TOKEN_NUM_INITIALIZER
15133                 (struct cmd_ptype_mapping_replace_result,
15134                  mask, UINT8);
15135 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type =
15136         TOKEN_NUM_INITIALIZER
15137                 (struct cmd_ptype_mapping_replace_result,
15138                  pkt_type, UINT32);
15139
15140 static void
15141 cmd_ptype_mapping_replace_parsed(
15142         void *parsed_result,
15143         __attribute__((unused)) struct cmdline *cl,
15144         __attribute__((unused)) void *data)
15145 {
15146         struct cmd_ptype_mapping_replace_result *res = parsed_result;
15147         int ret = -ENOTSUP;
15148
15149         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15150                 return;
15151
15152 #ifdef RTE_LIBRTE_I40E_PMD
15153         ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id,
15154                                         res->target,
15155                                         res->mask,
15156                                         res->pkt_type);
15157 #endif
15158
15159         switch (ret) {
15160         case 0:
15161                 break;
15162         case -EINVAL:
15163                 printf("invalid ptype 0x%8x or 0x%8x\n",
15164                                 res->target, res->pkt_type);
15165                 break;
15166         case -ENODEV:
15167                 printf("invalid port_id %d\n", res->port_id);
15168                 break;
15169         case -ENOTSUP:
15170                 printf("function not implemented\n");
15171                 break;
15172         default:
15173                 printf("programming error: (%s)\n", strerror(-ret));
15174         }
15175 }
15176
15177 cmdline_parse_inst_t cmd_ptype_mapping_replace = {
15178         .f = cmd_ptype_mapping_replace_parsed,
15179         .data = NULL,
15180         .help_str =
15181                 "ptype mapping replace <port_id> <target> <mask> <pkt_type>",
15182         .tokens = {
15183                 (void *)&cmd_ptype_mapping_replace_ptype,
15184                 (void *)&cmd_ptype_mapping_replace_mapping,
15185                 (void *)&cmd_ptype_mapping_replace_replace,
15186                 (void *)&cmd_ptype_mapping_replace_port_id,
15187                 (void *)&cmd_ptype_mapping_replace_target,
15188                 (void *)&cmd_ptype_mapping_replace_mask,
15189                 (void *)&cmd_ptype_mapping_replace_pkt_type,
15190                 NULL,
15191         },
15192 };
15193
15194 /* ptype mapping reset */
15195
15196 /* Common result structure for ptype mapping reset */
15197 struct cmd_ptype_mapping_reset_result {
15198         cmdline_fixed_string_t ptype;
15199         cmdline_fixed_string_t mapping;
15200         cmdline_fixed_string_t reset;
15201         portid_t port_id;
15202 };
15203
15204 /* Common CLI fields for ptype mapping reset*/
15205 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype =
15206         TOKEN_STRING_INITIALIZER
15207                 (struct cmd_ptype_mapping_reset_result,
15208                  ptype, "ptype");
15209 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping =
15210         TOKEN_STRING_INITIALIZER
15211                 (struct cmd_ptype_mapping_reset_result,
15212                  mapping, "mapping");
15213 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset =
15214         TOKEN_STRING_INITIALIZER
15215                 (struct cmd_ptype_mapping_reset_result,
15216                  reset, "reset");
15217 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id =
15218         TOKEN_NUM_INITIALIZER
15219                 (struct cmd_ptype_mapping_reset_result,
15220                  port_id, UINT16);
15221
15222 static void
15223 cmd_ptype_mapping_reset_parsed(
15224         void *parsed_result,
15225         __attribute__((unused)) struct cmdline *cl,
15226         __attribute__((unused)) void *data)
15227 {
15228         struct cmd_ptype_mapping_reset_result *res = parsed_result;
15229         int ret = -ENOTSUP;
15230
15231         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15232                 return;
15233
15234 #ifdef RTE_LIBRTE_I40E_PMD
15235         ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id);
15236 #endif
15237
15238         switch (ret) {
15239         case 0:
15240                 break;
15241         case -ENODEV:
15242                 printf("invalid port_id %d\n", res->port_id);
15243                 break;
15244         case -ENOTSUP:
15245                 printf("function not implemented\n");
15246                 break;
15247         default:
15248                 printf("programming error: (%s)\n", strerror(-ret));
15249         }
15250 }
15251
15252 cmdline_parse_inst_t cmd_ptype_mapping_reset = {
15253         .f = cmd_ptype_mapping_reset_parsed,
15254         .data = NULL,
15255         .help_str = "ptype mapping reset <port_id>",
15256         .tokens = {
15257                 (void *)&cmd_ptype_mapping_reset_ptype,
15258                 (void *)&cmd_ptype_mapping_reset_mapping,
15259                 (void *)&cmd_ptype_mapping_reset_reset,
15260                 (void *)&cmd_ptype_mapping_reset_port_id,
15261                 NULL,
15262         },
15263 };
15264
15265 /* ptype mapping update */
15266
15267 /* Common result structure for ptype mapping update */
15268 struct cmd_ptype_mapping_update_result {
15269         cmdline_fixed_string_t ptype;
15270         cmdline_fixed_string_t mapping;
15271         cmdline_fixed_string_t reset;
15272         portid_t port_id;
15273         uint8_t hw_ptype;
15274         uint32_t sw_ptype;
15275 };
15276
15277 /* Common CLI fields for ptype mapping update*/
15278 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype =
15279         TOKEN_STRING_INITIALIZER
15280                 (struct cmd_ptype_mapping_update_result,
15281                  ptype, "ptype");
15282 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping =
15283         TOKEN_STRING_INITIALIZER
15284                 (struct cmd_ptype_mapping_update_result,
15285                  mapping, "mapping");
15286 cmdline_parse_token_string_t cmd_ptype_mapping_update_update =
15287         TOKEN_STRING_INITIALIZER
15288                 (struct cmd_ptype_mapping_update_result,
15289                  reset, "update");
15290 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id =
15291         TOKEN_NUM_INITIALIZER
15292                 (struct cmd_ptype_mapping_update_result,
15293                  port_id, UINT16);
15294 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype =
15295         TOKEN_NUM_INITIALIZER
15296                 (struct cmd_ptype_mapping_update_result,
15297                  hw_ptype, UINT8);
15298 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype =
15299         TOKEN_NUM_INITIALIZER
15300                 (struct cmd_ptype_mapping_update_result,
15301                  sw_ptype, UINT32);
15302
15303 static void
15304 cmd_ptype_mapping_update_parsed(
15305         void *parsed_result,
15306         __attribute__((unused)) struct cmdline *cl,
15307         __attribute__((unused)) void *data)
15308 {
15309         struct cmd_ptype_mapping_update_result *res = parsed_result;
15310         int ret = -ENOTSUP;
15311 #ifdef RTE_LIBRTE_I40E_PMD
15312         struct rte_pmd_i40e_ptype_mapping mapping;
15313 #endif
15314         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15315                 return;
15316
15317 #ifdef RTE_LIBRTE_I40E_PMD
15318         mapping.hw_ptype = res->hw_ptype;
15319         mapping.sw_ptype = res->sw_ptype;
15320         ret = rte_pmd_i40e_ptype_mapping_update(res->port_id,
15321                                                 &mapping,
15322                                                 1,
15323                                                 0);
15324 #endif
15325
15326         switch (ret) {
15327         case 0:
15328                 break;
15329         case -EINVAL:
15330                 printf("invalid ptype 0x%8x\n", res->sw_ptype);
15331                 break;
15332         case -ENODEV:
15333                 printf("invalid port_id %d\n", res->port_id);
15334                 break;
15335         case -ENOTSUP:
15336                 printf("function not implemented\n");
15337                 break;
15338         default:
15339                 printf("programming error: (%s)\n", strerror(-ret));
15340         }
15341 }
15342
15343 cmdline_parse_inst_t cmd_ptype_mapping_update = {
15344         .f = cmd_ptype_mapping_update_parsed,
15345         .data = NULL,
15346         .help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>",
15347         .tokens = {
15348                 (void *)&cmd_ptype_mapping_update_ptype,
15349                 (void *)&cmd_ptype_mapping_update_mapping,
15350                 (void *)&cmd_ptype_mapping_update_update,
15351                 (void *)&cmd_ptype_mapping_update_port_id,
15352                 (void *)&cmd_ptype_mapping_update_hw_ptype,
15353                 (void *)&cmd_ptype_mapping_update_sw_ptype,
15354                 NULL,
15355         },
15356 };
15357
15358 /* Common result structure for file commands */
15359 struct cmd_cmdfile_result {
15360         cmdline_fixed_string_t load;
15361         cmdline_fixed_string_t filename;
15362 };
15363
15364 /* Common CLI fields for file commands */
15365 cmdline_parse_token_string_t cmd_load_cmdfile =
15366         TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load");
15367 cmdline_parse_token_string_t cmd_load_cmdfile_filename =
15368         TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL);
15369
15370 static void
15371 cmd_load_from_file_parsed(
15372         void *parsed_result,
15373         __attribute__((unused)) struct cmdline *cl,
15374         __attribute__((unused)) void *data)
15375 {
15376         struct cmd_cmdfile_result *res = parsed_result;
15377
15378         cmdline_read_from_file(res->filename);
15379 }
15380
15381 cmdline_parse_inst_t cmd_load_from_file = {
15382         .f = cmd_load_from_file_parsed,
15383         .data = NULL,
15384         .help_str = "load <filename>",
15385         .tokens = {
15386                 (void *)&cmd_load_cmdfile,
15387                 (void *)&cmd_load_cmdfile_filename,
15388                 NULL,
15389         },
15390 };
15391
15392 /* ******************************************************************************** */
15393
15394 /* list of instructions */
15395 cmdline_parse_ctx_t main_ctx[] = {
15396         (cmdline_parse_inst_t *)&cmd_help_brief,
15397         (cmdline_parse_inst_t *)&cmd_help_long,
15398         (cmdline_parse_inst_t *)&cmd_quit,
15399         (cmdline_parse_inst_t *)&cmd_load_from_file,
15400         (cmdline_parse_inst_t *)&cmd_showport,
15401         (cmdline_parse_inst_t *)&cmd_showqueue,
15402         (cmdline_parse_inst_t *)&cmd_showportall,
15403         (cmdline_parse_inst_t *)&cmd_showcfg,
15404         (cmdline_parse_inst_t *)&cmd_start,
15405         (cmdline_parse_inst_t *)&cmd_start_tx_first,
15406         (cmdline_parse_inst_t *)&cmd_start_tx_first_n,
15407         (cmdline_parse_inst_t *)&cmd_set_link_up,
15408         (cmdline_parse_inst_t *)&cmd_set_link_down,
15409         (cmdline_parse_inst_t *)&cmd_reset,
15410         (cmdline_parse_inst_t *)&cmd_set_numbers,
15411         (cmdline_parse_inst_t *)&cmd_set_txpkts,
15412         (cmdline_parse_inst_t *)&cmd_set_txsplit,
15413         (cmdline_parse_inst_t *)&cmd_set_fwd_list,
15414         (cmdline_parse_inst_t *)&cmd_set_fwd_mask,
15415         (cmdline_parse_inst_t *)&cmd_set_fwd_mode,
15416         (cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode,
15417         (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry,
15418         (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one,
15419         (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all,
15420         (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one,
15421         (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all,
15422         (cmdline_parse_inst_t *)&cmd_set_flush_rx,
15423         (cmdline_parse_inst_t *)&cmd_set_link_check,
15424         (cmdline_parse_inst_t *)&cmd_set_bypass_mode,
15425         (cmdline_parse_inst_t *)&cmd_set_bypass_event,
15426         (cmdline_parse_inst_t *)&cmd_set_bypass_timeout,
15427         (cmdline_parse_inst_t *)&cmd_show_bypass_config,
15428 #ifdef RTE_LIBRTE_PMD_BOND
15429         (cmdline_parse_inst_t *) &cmd_set_bonding_mode,
15430         (cmdline_parse_inst_t *) &cmd_show_bonding_config,
15431         (cmdline_parse_inst_t *) &cmd_set_bonding_primary,
15432         (cmdline_parse_inst_t *) &cmd_add_bonding_slave,
15433         (cmdline_parse_inst_t *) &cmd_remove_bonding_slave,
15434         (cmdline_parse_inst_t *) &cmd_create_bonded_device,
15435         (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr,
15436         (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy,
15437         (cmdline_parse_inst_t *) &cmd_set_bond_mon_period,
15438         (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues,
15439         (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy,
15440 #endif
15441         (cmdline_parse_inst_t *)&cmd_vlan_offload,
15442         (cmdline_parse_inst_t *)&cmd_vlan_tpid,
15443         (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all,
15444         (cmdline_parse_inst_t *)&cmd_rx_vlan_filter,
15445         (cmdline_parse_inst_t *)&cmd_tx_vlan_set,
15446         (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq,
15447         (cmdline_parse_inst_t *)&cmd_tx_vlan_reset,
15448         (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid,
15449         (cmdline_parse_inst_t *)&cmd_csum_set,
15450         (cmdline_parse_inst_t *)&cmd_csum_show,
15451         (cmdline_parse_inst_t *)&cmd_csum_tunnel,
15452         (cmdline_parse_inst_t *)&cmd_tso_set,
15453         (cmdline_parse_inst_t *)&cmd_tso_show,
15454         (cmdline_parse_inst_t *)&cmd_tunnel_tso_set,
15455         (cmdline_parse_inst_t *)&cmd_tunnel_tso_show,
15456         (cmdline_parse_inst_t *)&cmd_gro_enable,
15457         (cmdline_parse_inst_t *)&cmd_gro_flush,
15458         (cmdline_parse_inst_t *)&cmd_gro_show,
15459         (cmdline_parse_inst_t *)&cmd_gso_enable,
15460         (cmdline_parse_inst_t *)&cmd_gso_size,
15461         (cmdline_parse_inst_t *)&cmd_gso_show,
15462         (cmdline_parse_inst_t *)&cmd_link_flow_control_set,
15463         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx,
15464         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx,
15465         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw,
15466         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw,
15467         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt,
15468         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon,
15469         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd,
15470         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg,
15471         (cmdline_parse_inst_t *)&cmd_priority_flow_control_set,
15472         (cmdline_parse_inst_t *)&cmd_config_dcb,
15473         (cmdline_parse_inst_t *)&cmd_read_reg,
15474         (cmdline_parse_inst_t *)&cmd_read_reg_bit_field,
15475         (cmdline_parse_inst_t *)&cmd_read_reg_bit,
15476         (cmdline_parse_inst_t *)&cmd_write_reg,
15477         (cmdline_parse_inst_t *)&cmd_write_reg_bit_field,
15478         (cmdline_parse_inst_t *)&cmd_write_reg_bit,
15479         (cmdline_parse_inst_t *)&cmd_read_rxd_txd,
15480         (cmdline_parse_inst_t *)&cmd_stop,
15481         (cmdline_parse_inst_t *)&cmd_mac_addr,
15482         (cmdline_parse_inst_t *)&cmd_set_qmap,
15483         (cmdline_parse_inst_t *)&cmd_operate_port,
15484         (cmdline_parse_inst_t *)&cmd_operate_specific_port,
15485         (cmdline_parse_inst_t *)&cmd_operate_attach_port,
15486         (cmdline_parse_inst_t *)&cmd_operate_detach_port,
15487         (cmdline_parse_inst_t *)&cmd_config_speed_all,
15488         (cmdline_parse_inst_t *)&cmd_config_speed_specific,
15489         (cmdline_parse_inst_t *)&cmd_config_rx_tx,
15490         (cmdline_parse_inst_t *)&cmd_config_mtu,
15491         (cmdline_parse_inst_t *)&cmd_config_max_pkt_len,
15492         (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag,
15493         (cmdline_parse_inst_t *)&cmd_config_rss,
15494         (cmdline_parse_inst_t *)&cmd_config_rxtx_queue,
15495         (cmdline_parse_inst_t *)&cmd_config_txqflags,
15496         (cmdline_parse_inst_t *)&cmd_config_rss_reta,
15497         (cmdline_parse_inst_t *)&cmd_showport_reta,
15498         (cmdline_parse_inst_t *)&cmd_config_burst,
15499         (cmdline_parse_inst_t *)&cmd_config_thresh,
15500         (cmdline_parse_inst_t *)&cmd_config_threshold,
15501         (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter,
15502         (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter,
15503         (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter,
15504         (cmdline_parse_inst_t *)&cmd_set_vf_macvlan_filter,
15505         (cmdline_parse_inst_t *)&cmd_queue_rate_limit,
15506         (cmdline_parse_inst_t *)&cmd_tunnel_filter,
15507         (cmdline_parse_inst_t *)&cmd_tunnel_udp_config,
15508         (cmdline_parse_inst_t *)&cmd_global_config,
15509         (cmdline_parse_inst_t *)&cmd_set_mirror_mask,
15510         (cmdline_parse_inst_t *)&cmd_set_mirror_link,
15511         (cmdline_parse_inst_t *)&cmd_reset_mirror_rule,
15512         (cmdline_parse_inst_t *)&cmd_showport_rss_hash,
15513         (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key,
15514         (cmdline_parse_inst_t *)&cmd_config_rss_hash_key,
15515         (cmdline_parse_inst_t *)&cmd_dump,
15516         (cmdline_parse_inst_t *)&cmd_dump_one,
15517         (cmdline_parse_inst_t *)&cmd_ethertype_filter,
15518         (cmdline_parse_inst_t *)&cmd_syn_filter,
15519         (cmdline_parse_inst_t *)&cmd_2tuple_filter,
15520         (cmdline_parse_inst_t *)&cmd_5tuple_filter,
15521         (cmdline_parse_inst_t *)&cmd_flex_filter,
15522         (cmdline_parse_inst_t *)&cmd_add_del_ip_flow_director,
15523         (cmdline_parse_inst_t *)&cmd_add_del_udp_flow_director,
15524         (cmdline_parse_inst_t *)&cmd_add_del_sctp_flow_director,
15525         (cmdline_parse_inst_t *)&cmd_add_del_l2_flow_director,
15526         (cmdline_parse_inst_t *)&cmd_add_del_mac_vlan_flow_director,
15527         (cmdline_parse_inst_t *)&cmd_add_del_tunnel_flow_director,
15528         (cmdline_parse_inst_t *)&cmd_flush_flow_director,
15529         (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask,
15530         (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask,
15531         (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask,
15532         (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_mask,
15533         (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload,
15534         (cmdline_parse_inst_t *)&cmd_get_sym_hash_ena_per_port,
15535         (cmdline_parse_inst_t *)&cmd_set_sym_hash_ena_per_port,
15536         (cmdline_parse_inst_t *)&cmd_get_hash_global_config,
15537         (cmdline_parse_inst_t *)&cmd_set_hash_global_config,
15538         (cmdline_parse_inst_t *)&cmd_set_hash_input_set,
15539         (cmdline_parse_inst_t *)&cmd_set_fdir_input_set,
15540         (cmdline_parse_inst_t *)&cmd_flow,
15541         (cmdline_parse_inst_t *)&cmd_mcast_addr,
15542         (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_all,
15543         (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_specific,
15544         (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_all,
15545         (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_specific,
15546         (cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_en,
15547         (cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_dis,
15548         (cmdline_parse_inst_t *)&cmd_config_e_tag_stripping_en_dis,
15549         (cmdline_parse_inst_t *)&cmd_config_e_tag_forwarding_en_dis,
15550         (cmdline_parse_inst_t *)&cmd_config_e_tag_filter_add,
15551         (cmdline_parse_inst_t *)&cmd_config_e_tag_filter_del,
15552         (cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof,
15553         (cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof,
15554         (cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq,
15555         (cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert,
15556         (cmdline_parse_inst_t *)&cmd_set_tx_loopback,
15557         (cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en,
15558         (cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en,
15559         (cmdline_parse_inst_t *)&cmd_set_macsec_offload_on,
15560         (cmdline_parse_inst_t *)&cmd_set_macsec_offload_off,
15561         (cmdline_parse_inst_t *)&cmd_set_macsec_sc,
15562         (cmdline_parse_inst_t *)&cmd_set_macsec_sa,
15563         (cmdline_parse_inst_t *)&cmd_set_vf_traffic,
15564         (cmdline_parse_inst_t *)&cmd_set_vf_rxmode,
15565         (cmdline_parse_inst_t *)&cmd_vf_rate_limit,
15566         (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter,
15567         (cmdline_parse_inst_t *)&cmd_set_vf_mac_addr,
15568         (cmdline_parse_inst_t *)&cmd_set_vf_promisc,
15569         (cmdline_parse_inst_t *)&cmd_set_vf_allmulti,
15570         (cmdline_parse_inst_t *)&cmd_set_vf_broadcast,
15571         (cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag,
15572         (cmdline_parse_inst_t *)&cmd_vf_max_bw,
15573         (cmdline_parse_inst_t *)&cmd_vf_tc_min_bw,
15574         (cmdline_parse_inst_t *)&cmd_vf_tc_max_bw,
15575         (cmdline_parse_inst_t *)&cmd_strict_link_prio,
15576         (cmdline_parse_inst_t *)&cmd_tc_min_bw,
15577 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED
15578         (cmdline_parse_inst_t *)&cmd_set_port_tm_hierarchy_default,
15579 #endif
15580         (cmdline_parse_inst_t *)&cmd_ddp_add,
15581         (cmdline_parse_inst_t *)&cmd_ddp_del,
15582         (cmdline_parse_inst_t *)&cmd_ddp_get_list,
15583         (cmdline_parse_inst_t *)&cmd_ddp_get_info,
15584         (cmdline_parse_inst_t *)&cmd_show_vf_stats,
15585         (cmdline_parse_inst_t *)&cmd_clear_vf_stats,
15586         (cmdline_parse_inst_t *)&cmd_ptype_mapping_get,
15587         (cmdline_parse_inst_t *)&cmd_ptype_mapping_replace,
15588         (cmdline_parse_inst_t *)&cmd_ptype_mapping_reset,
15589         (cmdline_parse_inst_t *)&cmd_ptype_mapping_update,
15590
15591         (cmdline_parse_inst_t *)&cmd_pctype_mapping_get,
15592         (cmdline_parse_inst_t *)&cmd_pctype_mapping_reset,
15593         (cmdline_parse_inst_t *)&cmd_pctype_mapping_update,
15594         (cmdline_parse_inst_t *)&cmd_queue_region,
15595         (cmdline_parse_inst_t *)&cmd_region_flowtype,
15596         (cmdline_parse_inst_t *)&cmd_user_priority_region,
15597         (cmdline_parse_inst_t *)&cmd_flush_queue_region,
15598         (cmdline_parse_inst_t *)&cmd_show_queue_region_info_all,
15599         NULL,
15600 };
15601
15602 /* read cmdline commands from file */
15603 void
15604 cmdline_read_from_file(const char *filename)
15605 {
15606         struct cmdline *cl;
15607
15608         cl = cmdline_file_new(main_ctx, "testpmd> ", filename);
15609         if (cl == NULL) {
15610                 printf("Failed to create file based cmdline context: %s\n",
15611                        filename);
15612                 return;
15613         }
15614
15615         cmdline_interact(cl);
15616         cmdline_quit(cl);
15617
15618         cmdline_free(cl);
15619
15620         printf("Read CLI commands from %s\n", filename);
15621 }
15622
15623 /* prompt function, called from main on MASTER lcore */
15624 void
15625 prompt(void)
15626 {
15627         /* initialize non-constant commands */
15628         cmd_set_fwd_mode_init();
15629         cmd_set_fwd_retry_mode_init();
15630
15631         testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> ");
15632         if (testpmd_cl == NULL)
15633                 return;
15634         cmdline_interact(testpmd_cl);
15635         cmdline_stdin_exit(testpmd_cl);
15636 }
15637
15638 void
15639 prompt_exit(void)
15640 {
15641         if (testpmd_cl != NULL)
15642                 cmdline_quit(testpmd_cl);
15643 }
15644
15645 static void
15646 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue)
15647 {
15648         if (id == (portid_t)RTE_PORT_ALL) {
15649                 portid_t pid;
15650
15651                 RTE_ETH_FOREACH_DEV(pid) {
15652                         /* check if need_reconfig has been set to 1 */
15653                         if (ports[pid].need_reconfig == 0)
15654                                 ports[pid].need_reconfig = dev;
15655                         /* check if need_reconfig_queues has been set to 1 */
15656                         if (ports[pid].need_reconfig_queues == 0)
15657                                 ports[pid].need_reconfig_queues = queue;
15658                 }
15659         } else if (!port_id_is_invalid(id, DISABLED_WARN)) {
15660                 /* check if need_reconfig has been set to 1 */
15661                 if (ports[id].need_reconfig == 0)
15662                         ports[id].need_reconfig = dev;
15663                 /* check if need_reconfig_queues has been set to 1 */
15664                 if (ports[id].need_reconfig_queues == 0)
15665                         ports[id].need_reconfig_queues = queue;
15666         }
15667 }