1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation.
3 * Copyright(c) 2014 6WIND S.A.
14 #include <sys/socket.h>
15 #include <netinet/in.h>
17 #include <sys/queue.h>
19 #include <rte_common.h>
20 #include <rte_byteorder.h>
22 #include <rte_debug.h>
23 #include <rte_cycles.h>
24 #include <rte_memory.h>
25 #include <rte_memzone.h>
26 #include <rte_malloc.h>
27 #include <rte_launch.h>
29 #include <rte_per_lcore.h>
30 #include <rte_lcore.h>
31 #include <rte_atomic.h>
32 #include <rte_branch_prediction.h>
34 #include <rte_mempool.h>
35 #include <rte_interrupts.h>
37 #include <rte_ether.h>
38 #include <rte_ethdev.h>
39 #include <rte_string_fns.h>
40 #include <rte_devargs.h>
43 #include <rte_mbuf_dyn.h>
45 #include <cmdline_rdline.h>
46 #include <cmdline_parse.h>
47 #include <cmdline_parse_num.h>
48 #include <cmdline_parse_string.h>
49 #include <cmdline_parse_ipaddr.h>
50 #include <cmdline_parse_etheraddr.h>
51 #include <cmdline_socket.h>
54 #include <rte_eth_bond.h>
55 #include <rte_eth_bond_8023ad.h>
57 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA
58 #include <rte_pmd_dpaa.h>
61 #include <rte_pmd_ixgbe.h>
64 #include <rte_pmd_i40e.h>
67 #include <rte_pmd_bnxt.h>
70 #include "cmdline_mtr.h"
71 #include "cmdline_tm.h"
74 static struct cmdline *testpmd_cl;
76 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue);
78 /* *** Help command with introduction. *** */
79 struct cmd_help_brief_result {
80 cmdline_fixed_string_t help;
83 static void cmd_help_brief_parsed(__rte_unused void *parsed_result,
85 __rte_unused void *data)
90 "Help is available for the following sections:\n\n"
91 " help control : Start and stop forwarding.\n"
92 " help display : Displaying port, stats and config "
94 " help config : Configuration information.\n"
95 " help ports : Configuring ports.\n"
96 " help registers : Reading and setting port registers.\n"
97 " help filters : Filters configuration help.\n"
98 " help traffic_management : Traffic Management commands.\n"
99 " help devices : Device related cmds.\n"
100 " help all : All of the above sections.\n\n"
105 cmdline_parse_token_string_t cmd_help_brief_help =
106 TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help");
108 cmdline_parse_inst_t cmd_help_brief = {
109 .f = cmd_help_brief_parsed,
111 .help_str = "help: Show help",
113 (void *)&cmd_help_brief_help,
118 /* *** Help command with help sections. *** */
119 struct cmd_help_long_result {
120 cmdline_fixed_string_t help;
121 cmdline_fixed_string_t section;
124 static void cmd_help_long_parsed(void *parsed_result,
126 __rte_unused void *data)
129 struct cmd_help_long_result *res = parsed_result;
131 if (!strcmp(res->section, "all"))
134 if (show_all || !strcmp(res->section, "control")) {
139 "Control forwarding:\n"
140 "-------------------\n\n"
143 " Start packet forwarding with current configuration.\n\n"
146 " Start packet forwarding with current config"
147 " after sending one burst of packets.\n\n"
150 " Stop packet forwarding, and display accumulated"
154 " Quit to prompt.\n\n"
158 if (show_all || !strcmp(res->section, "display")) {
166 "show port (info|stats|summary|xstats|fdir|dcb_tc|cap) (port_id|all)\n"
167 " Display information for port_id, or all.\n\n"
169 "show port port_id (module_eeprom|eeprom)\n"
170 " Display the module EEPROM or EEPROM information for port_id.\n\n"
172 "show port X rss reta (size) (mask0,mask1,...)\n"
173 " Display the rss redirection table entry indicated"
174 " by masks on port X. size is used to indicate the"
175 " hardware supported reta size\n\n"
177 "show port (port_id) rss-hash [key]\n"
178 " Display the RSS hash functions and RSS hash key of port\n\n"
180 "clear port (info|stats|xstats|fdir) (port_id|all)\n"
181 " Clear information for port_id, or all.\n\n"
183 "show (rxq|txq) info (port_id) (queue_id)\n"
184 " Display information for configured RX/TX queue.\n\n"
186 "show config (rxtx|cores|fwd|rxoffs|rxpkts|txpkts)\n"
187 " Display the given configuration.\n\n"
189 "read rxd (port_id) (queue_id) (rxd_id)\n"
190 " Display an RX descriptor of a port RX queue.\n\n"
192 "read txd (port_id) (queue_id) (txd_id)\n"
193 " Display a TX descriptor of a port TX queue.\n\n"
195 "ddp get list (port_id)\n"
196 " Get ddp profile info list\n\n"
198 "ddp get info (profile_path)\n"
199 " Get ddp profile information.\n\n"
201 "show vf stats (port_id) (vf_id)\n"
202 " Display a VF's statistics.\n\n"
204 "clear vf stats (port_id) (vf_id)\n"
205 " Reset a VF's statistics.\n\n"
207 "show port (port_id) pctype mapping\n"
208 " Get flow ptype to pctype mapping on a port\n\n"
210 "show port meter stats (port_id) (meter_id) (clear)\n"
211 " Get meter stats on a port\n\n"
213 "show fwd stats all\n"
214 " Display statistics for all fwd engines.\n\n"
216 "clear fwd stats all\n"
217 " Clear statistics for all fwd engines.\n\n"
219 "show port (port_id) rx_offload capabilities\n"
220 " List all per queue and per port Rx offloading"
221 " capabilities of a port\n\n"
223 "show port (port_id) rx_offload configuration\n"
224 " List port level and all queue level"
225 " Rx offloading configuration\n\n"
227 "show port (port_id) tx_offload capabilities\n"
228 " List all per queue and per port"
229 " Tx offloading capabilities of a port\n\n"
231 "show port (port_id) tx_offload configuration\n"
232 " List port level and all queue level"
233 " Tx offloading configuration\n\n"
235 "show port (port_id) tx_metadata\n"
236 " Show Tx metadata value set"
237 " for a specific port\n\n"
239 "show port (port_id) ptypes\n"
240 " Show port supported ptypes"
241 " for a specific port\n\n"
243 "show device info (<identifier>|all)"
244 " Show general information about devices probed.\n\n"
246 "show port (port_id) rxq|txq (queue_id) desc (desc_id) status"
247 " Show status of rx|tx descriptor.\n\n"
249 "show port (port_id) rxq (queue_id) desc used count\n"
250 " Show current number of filled receive"
251 " packet descriptors.\n\n"
253 "show port (port_id) macs|mcast_macs"
254 " Display list of mac addresses added to port.\n\n"
256 "show port (port_id) fec capabilities"
257 " Show fec capabilities of a port.\n\n"
259 "show port (port_id) fec_mode"
260 " Show fec mode of a port.\n\n"
264 if (show_all || !strcmp(res->section, "config")) {
270 "Configuration changes only become active when"
271 " forwarding is started/restarted.\n\n"
274 " Reset forwarding to the default configuration.\n\n"
276 "set verbose (level)\n"
277 " Set the debug verbosity level X.\n\n"
279 "set log global|(type) (level)\n"
280 " Set the log level.\n\n"
283 " Set number of ports.\n\n"
286 " Set number of cores.\n\n"
288 "set coremask (mask)\n"
289 " Set the forwarding cores hexadecimal mask.\n\n"
291 "set portmask (mask)\n"
292 " Set the forwarding ports hexadecimal mask.\n\n"
295 " Set number of packets per burst.\n\n"
297 "set burst tx delay (microseconds) retry (num)\n"
298 " Set the transmit delay time and number of retries,"
299 " effective when retry is enabled.\n\n"
301 "set rxoffs (x[,y]*)\n"
302 " Set the offset of each packet segment on"
303 " receiving if split feature is engaged."
304 " Affects only the queues configured with split"
307 "set rxpkts (x[,y]*)\n"
308 " Set the length of each segment to scatter"
309 " packets on receiving if split feature is engaged."
310 " Affects only the queues configured with split"
313 "set txpkts (x[,y]*)\n"
314 " Set the length of each segment of TXONLY"
315 " and optionally CSUM packets.\n\n"
317 "set txsplit (off|on|rand)\n"
318 " Set the split policy for the TX packets."
319 " Right now only applicable for CSUM and TXONLY"
322 "set txtimes (x, y)\n"
323 " Set the scheduling on timestamps"
324 " timings for the TXONLY mode\n\n"
326 "set corelist (x[,y]*)\n"
327 " Set the list of forwarding cores.\n\n"
329 "set portlist (x[,y]*)\n"
330 " Set the list of forwarding ports.\n\n"
332 "set port setup on (iterator|event)\n"
333 " Select how attached port is retrieved for setup.\n\n"
335 "set tx loopback (port_id) (on|off)\n"
336 " Enable or disable tx loopback.\n\n"
338 "set all queues drop (port_id) (on|off)\n"
339 " Set drop enable bit for all queues.\n\n"
341 "set vf split drop (port_id) (vf_id) (on|off)\n"
342 " Set split drop enable bit for a VF from the PF.\n\n"
344 "set vf mac antispoof (port_id) (vf_id) (on|off).\n"
345 " Set MAC antispoof for a VF from the PF.\n\n"
347 "set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n"
348 " Enable MACsec offload.\n\n"
350 "set macsec offload (port_id) off\n"
351 " Disable MACsec offload.\n\n"
353 "set macsec sc (tx|rx) (port_id) (mac) (pi)\n"
354 " Configure MACsec secure connection (SC).\n\n"
356 "set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n"
357 " Configure MACsec secure association (SA).\n\n"
359 "set vf broadcast (port_id) (vf_id) (on|off)\n"
360 " Set VF broadcast for a VF from the PF.\n\n"
362 "vlan set stripq (on|off) (port_id,queue_id)\n"
363 " Set the VLAN strip for a queue on a port.\n\n"
365 "set vf vlan stripq (port_id) (vf_id) (on|off)\n"
366 " Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n"
368 "set vf vlan insert (port_id) (vf_id) (vlan_id)\n"
369 " Set VLAN insert for a VF from the PF.\n\n"
371 "set vf vlan antispoof (port_id) (vf_id) (on|off)\n"
372 " Set VLAN antispoof for a VF from the PF.\n\n"
374 "set vf vlan tag (port_id) (vf_id) (on|off)\n"
375 " Set VLAN tag for a VF from the PF.\n\n"
377 "set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n"
378 " Set a VF's max bandwidth(Mbps).\n\n"
380 "set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n"
381 " Set all TCs' min bandwidth(%%) on a VF.\n\n"
383 "set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n"
384 " Set a TC's max bandwidth(Mbps) on a VF.\n\n"
386 "set tx strict-link-priority (port_id) (tc_bitmap)\n"
387 " Set some TCs' strict link priority mode on a physical port.\n\n"
389 "set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n"
390 " Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n"
392 "vlan set (strip|filter|qinq_strip|extend) (on|off) (port_id)\n"
393 " Set the VLAN strip or filter or qinq strip or extend\n\n"
395 "vlan set (inner|outer) tpid (value) (port_id)\n"
396 " Set the VLAN TPID for Packet Filtering on"
399 "rx_vlan add (vlan_id|all) (port_id)\n"
400 " Add a vlan_id, or all identifiers, to the set"
401 " of VLAN identifiers filtered by port_id.\n\n"
403 "rx_vlan rm (vlan_id|all) (port_id)\n"
404 " Remove a vlan_id, or all identifiers, from the set"
405 " of VLAN identifiers filtered by port_id.\n\n"
407 "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n"
408 " Add a vlan_id, to the set of VLAN identifiers"
409 "filtered for VF(s) from port_id.\n\n"
411 "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n"
412 " Remove a vlan_id, to the set of VLAN identifiers"
413 "filtered for VF(s) from port_id.\n\n"
415 "rx_vxlan_port add (udp_port) (port_id)\n"
416 " Add an UDP port for VXLAN packet filter on a port\n\n"
418 "rx_vxlan_port rm (udp_port) (port_id)\n"
419 " Remove an UDP port for VXLAN packet filter on a port\n\n"
421 "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n"
422 " Set hardware insertion of VLAN IDs (single or double VLAN "
423 "depends on the number of VLAN IDs) in packets sent on a port.\n\n"
425 "tx_vlan set pvid port_id vlan_id (on|off)\n"
426 " Set port based TX VLAN insertion.\n\n"
428 "tx_vlan reset (port_id)\n"
429 " Disable hardware insertion of a VLAN header in"
430 " packets sent on a port.\n\n"
432 "csum set (ip|udp|tcp|sctp|outer-ip|outer-udp) (hw|sw) (port_id)\n"
433 " Select hardware or software calculation of the"
434 " checksum when transmitting a packet using the"
435 " csum forward engine.\n"
436 " ip|udp|tcp|sctp always concern the inner layer.\n"
437 " outer-ip concerns the outer IP layer in"
438 " outer-udp concerns the outer UDP layer in"
439 " case the packet is recognized as a tunnel packet by"
440 " the forward engine (vxlan, gre and ipip are supported)\n"
441 " Please check the NIC datasheet for HW limits.\n\n"
443 "csum parse-tunnel (on|off) (tx_port_id)\n"
444 " If disabled, treat tunnel packets as non-tunneled"
445 " packets (treat inner headers as payload). The port\n"
446 " argument is the port used for TX in csum forward"
449 "csum show (port_id)\n"
450 " Display tx checksum offload configuration\n\n"
452 "tso set (segsize) (portid)\n"
453 " Enable TCP Segmentation Offload in csum forward"
455 " Please check the NIC datasheet for HW limits.\n\n"
458 " Display the status of TCP Segmentation Offload.\n\n"
460 "set port (port_id) gro on|off\n"
461 " Enable or disable Generic Receive Offload in"
462 " csum forwarding engine.\n\n"
464 "show port (port_id) gro\n"
465 " Display GRO configuration.\n\n"
467 "set gro flush (cycles)\n"
468 " Set the cycle to flush GROed packets from"
469 " reassembly tables.\n\n"
471 "set port (port_id) gso (on|off)"
472 " Enable or disable Generic Segmentation Offload in"
473 " csum forwarding engine.\n\n"
475 "set gso segsz (length)\n"
476 " Set max packet length for output GSO segments,"
477 " including packet header and payload.\n\n"
479 "show port (port_id) gso\n"
480 " Show GSO configuration.\n\n"
483 " Set packet forwarding mode.\n\n"
485 "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n"
486 " Add a MAC address on port_id.\n\n"
488 "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n"
489 " Remove a MAC address from port_id.\n\n"
491 "mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n"
492 " Set the default MAC address for port_id.\n\n"
494 "mac_addr add port (port_id) vf (vf_id) (mac_address)\n"
495 " Add a MAC address for a VF on the port.\n\n"
497 "set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n"
498 " Set the MAC address for a VF from the PF.\n\n"
500 "set eth-peer (port_id) (peer_addr)\n"
501 " set the peer address for certain port.\n\n"
503 "set port (port_id) uta (mac_address|all) (on|off)\n"
504 " Add/Remove a or all unicast hash filter(s)"
507 "set promisc (port_id|all) (on|off)\n"
508 " Set the promiscuous mode on port_id, or all.\n\n"
510 "set allmulti (port_id|all) (on|off)\n"
511 " Set the allmulti mode on port_id, or all.\n\n"
513 "set vf promisc (port_id) (vf_id) (on|off)\n"
514 " Set unicast promiscuous mode for a VF from the PF.\n\n"
516 "set vf allmulti (port_id) (vf_id) (on|off)\n"
517 " Set multicast promiscuous mode for a VF from the PF.\n\n"
519 "set flow_ctrl rx (on|off) tx (on|off) (high_water)"
520 " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd"
521 " (on|off) autoneg (on|off) (port_id)\n"
522 "set flow_ctrl rx (on|off) (portid)\n"
523 "set flow_ctrl tx (on|off) (portid)\n"
524 "set flow_ctrl high_water (high_water) (portid)\n"
525 "set flow_ctrl low_water (low_water) (portid)\n"
526 "set flow_ctrl pause_time (pause_time) (portid)\n"
527 "set flow_ctrl send_xon (send_xon) (portid)\n"
528 "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n"
529 "set flow_ctrl autoneg (on|off) (port_id)\n"
530 " Set the link flow control parameter on a port.\n\n"
532 "set pfc_ctrl rx (on|off) tx (on|off) (high_water)"
533 " (low_water) (pause_time) (priority) (port_id)\n"
534 " Set the priority flow control parameter on a"
537 "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n"
538 " Set statistics mapping (qmapping 0..15) for RX/TX"
540 " e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2"
541 " on port 0 to mapping 5.\n\n"
543 "set xstats-hide-zero on|off\n"
544 " Set the option to hide the zero values"
545 " for xstats display.\n"
547 "set record-core-cycles on|off\n"
548 " Set the option to enable measurement of CPU cycles.\n"
550 "set record-burst-stats on|off\n"
551 " Set the option to enable display of RX and TX bursts.\n"
553 "set port (port_id) vf (vf_id) rx|tx on|off\n"
554 " Enable/Disable a VF receive/tranmit from a port\n\n"
556 "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM"
558 " AUPE:accepts untagged VLAN;"
559 "ROPE:accept unicast hash\n\n"
560 " BAM:accepts broadcast packets;"
561 "MPE:accepts all multicast packets\n\n"
562 " Enable/Disable a VF receive mode of a port\n\n"
564 "set port (port_id) queue (queue_id) rate (rate_num)\n"
565 " Set rate limit for a queue of a port\n\n"
567 "set port (port_id) vf (vf_id) rate (rate_num) "
568 "queue_mask (queue_mask_value)\n"
569 " Set rate limit for queues in VF of a port\n\n"
571 "set port (port_id) mirror-rule (rule_id)"
572 " (pool-mirror-up|pool-mirror-down|vlan-mirror)"
573 " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n"
574 " Set pool or vlan type mirror rule on a port.\n"
575 " e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1"
576 " dst-pool 0 on' enable mirror traffic with vlan 0,1"
579 "set port (port_id) mirror-rule (rule_id)"
580 " (uplink-mirror|downlink-mirror) dst-pool"
581 " (pool_id) (on|off)\n"
582 " Set uplink or downlink type mirror rule on a port.\n"
583 " e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool"
584 " 0 on' enable mirror income traffic to pool 0.\n\n"
586 "reset port (port_id) mirror-rule (rule_id)\n"
587 " Reset a mirror rule.\n\n"
589 "set flush_rx (on|off)\n"
590 " Flush (default) or don't flush RX streams before"
591 " forwarding. Mainly used with PCAP drivers.\n\n"
593 "set bypass mode (normal|bypass|isolate) (port_id)\n"
594 " Set the bypass mode for the lowest port on bypass enabled"
597 "set bypass event (timeout|os_on|os_off|power_on|power_off) "
598 "mode (normal|bypass|isolate) (port_id)\n"
599 " Set the event required to initiate specified bypass mode for"
600 " the lowest port on a bypass enabled NIC where:\n"
601 " timeout = enable bypass after watchdog timeout.\n"
602 " os_on = enable bypass when OS/board is powered on.\n"
603 " os_off = enable bypass when OS/board is powered off.\n"
604 " power_on = enable bypass when power supply is turned on.\n"
605 " power_off = enable bypass when power supply is turned off."
608 "set bypass timeout (0|1.5|2|3|4|8|16|32)\n"
609 " Set the bypass watchdog timeout to 'n' seconds"
610 " where 0 = instant.\n\n"
612 "show bypass config (port_id)\n"
613 " Show the bypass configuration for a bypass enabled NIC"
614 " using the lowest port on the NIC.\n\n"
617 "create bonded device (mode) (socket)\n"
618 " Create a new bonded device with specific bonding mode and socket.\n\n"
620 "add bonding slave (slave_id) (port_id)\n"
621 " Add a slave device to a bonded device.\n\n"
623 "remove bonding slave (slave_id) (port_id)\n"
624 " Remove a slave device from a bonded device.\n\n"
626 "set bonding mode (value) (port_id)\n"
627 " Set the bonding mode on a bonded device.\n\n"
629 "set bonding primary (slave_id) (port_id)\n"
630 " Set the primary slave for a bonded device.\n\n"
632 "show bonding config (port_id)\n"
633 " Show the bonding config for port_id.\n\n"
635 "set bonding mac_addr (port_id) (address)\n"
636 " Set the MAC address of a bonded device.\n\n"
638 "set bonding mode IEEE802.3AD aggregator policy (port_id) (agg_name)"
639 " Set Aggregation mode for IEEE802.3AD (mode 4)"
641 "set bonding balance_xmit_policy (port_id) (l2|l23|l34)\n"
642 " Set the transmit balance policy for bonded device running in balance mode.\n\n"
644 "set bonding mon_period (port_id) (value)\n"
645 " Set the bonding link status monitoring polling period in ms.\n\n"
647 "set bonding lacp dedicated_queues <port_id> (enable|disable)\n"
648 " Enable/disable dedicated queues for LACP control traffic.\n\n"
651 "set link-up port (port_id)\n"
652 " Set link up for a port.\n\n"
654 "set link-down port (port_id)\n"
655 " Set link down for a port.\n\n"
657 "ddp add (port_id) (profile_path[,backup_profile_path])\n"
658 " Load a profile package on a port\n\n"
660 "ddp del (port_id) (backup_profile_path)\n"
661 " Delete a profile package from a port\n\n"
663 "ptype mapping get (port_id) (valid_only)\n"
664 " Get ptype mapping on a port\n\n"
666 "ptype mapping replace (port_id) (target) (mask) (pky_type)\n"
667 " Replace target with the pkt_type in ptype mapping\n\n"
669 "ptype mapping reset (port_id)\n"
670 " Reset ptype mapping on a port\n\n"
672 "ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n"
673 " Update a ptype mapping item on a port\n\n"
675 "set port (port_id) ptype_mask (ptype_mask)\n"
676 " set packet types classification for a specific port\n\n"
678 "set port (port_id) queue-region region_id (value) "
679 "queue_start_index (value) queue_num (value)\n"
680 " Set a queue region on a port\n\n"
682 "set port (port_id) queue-region region_id (value) "
684 " Set a flowtype region index on a port\n\n"
686 "set port (port_id) queue-region UP (value) region_id (value)\n"
687 " Set the mapping of User Priority to "
688 "queue region on a port\n\n"
690 "set port (port_id) queue-region flush (on|off)\n"
691 " flush all queue region related configuration\n\n"
693 "show port meter cap (port_id)\n"
694 " Show port meter capability information\n\n"
696 "add port meter profile srtcm_rfc2697 (port_id) (profile_id) (cir) (cbs) (ebs)\n"
697 " meter profile add - srtcm rfc 2697\n\n"
699 "add port meter profile trtcm_rfc2698 (port_id) (profile_id) (cir) (pir) (cbs) (pbs)\n"
700 " meter profile add - trtcm rfc 2698\n\n"
702 "add port meter profile trtcm_rfc4115 (port_id) (profile_id) (cir) (eir) (cbs) (ebs)\n"
703 " meter profile add - trtcm rfc 4115\n\n"
705 "del port meter profile (port_id) (profile_id)\n"
706 " meter profile delete\n\n"
708 "create port meter (port_id) (mtr_id) (profile_id) (meter_enable)\n"
709 "(g_action) (y_action) (r_action) (stats_mask) (shared)\n"
710 "(use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\n"
711 "(dscp_tbl_entry63)]\n"
714 "enable port meter (port_id) (mtr_id)\n"
717 "disable port meter (port_id) (mtr_id)\n"
720 "del port meter (port_id) (mtr_id)\n"
723 "set port meter profile (port_id) (mtr_id) (profile_id)\n"
724 " meter update meter profile\n\n"
726 "set port meter dscp table (port_id) (mtr_id) [(dscp_tbl_entry0)\n"
727 "(dscp_tbl_entry1)...(dscp_tbl_entry63)]\n"
728 " update meter dscp table entries\n\n"
730 "set port meter policer action (port_id) (mtr_id) (action_mask)\n"
731 "(action0) [(action1) (action2)]\n"
732 " meter update policer action\n\n"
734 "set port meter stats mask (port_id) (mtr_id) (stats_mask)\n"
735 " meter update stats\n\n"
737 "show port (port_id) queue-region\n"
738 " show all queue region related configuration info\n\n"
740 "set port (port_id) fec_mode auto|off|rs|baser\n"
741 " set fec mode for a specific port\n\n"
743 , list_pkt_forwarding_modes()
747 if (show_all || !strcmp(res->section, "ports")) {
753 "----------------\n\n"
755 "port start (port_id|all)\n"
756 " Start all ports or port_id.\n\n"
758 "port stop (port_id|all)\n"
759 " Stop all ports or port_id.\n\n"
761 "port close (port_id|all)\n"
762 " Close all ports or port_id.\n\n"
764 "port reset (port_id|all)\n"
765 " Reset all ports or port_id.\n\n"
767 "port attach (ident)\n"
768 " Attach physical or virtual dev by pci address or virtual device name\n\n"
770 "port detach (port_id)\n"
771 " Detach physical or virtual dev by port_id\n\n"
773 "port config (port_id|all)"
774 " speed (10|100|1000|10000|25000|40000|50000|100000|200000|auto)"
775 " duplex (half|full|auto)\n"
776 " Set speed and duplex for all ports or port_id\n\n"
778 "port config (port_id|all) loopback (mode)\n"
779 " Set loopback mode for all ports or port_id\n\n"
781 "port config all (rxq|txq|rxd|txd) (value)\n"
782 " Set number for rxq/txq/rxd/txd.\n\n"
784 "port config all max-pkt-len (value)\n"
785 " Set the max packet length.\n\n"
787 "port config all max-lro-pkt-size (value)\n"
788 " Set the max LRO aggregated packet size.\n\n"
790 "port config all drop-en (on|off)\n"
791 " Enable or disable packet drop on all RX queues of all ports when no "
792 "receive buffers available.\n\n"
794 "port config all rss (all|default|ip|tcp|udp|sctp|"
795 "ether|port|vxlan|geneve|nvgre|vxlan-gpe|ecpri|mpls|none|level-default|"
796 "level-outer|level-inner|<flowtype_id>)\n"
797 " Set the RSS mode.\n\n"
799 "port config port-id rss reta (hash,queue)[,(hash,queue)]\n"
800 " Set the RSS redirection table.\n\n"
802 "port config (port_id) dcb vt (on|off) (traffic_class)"
804 " Set the DCB mode.\n\n"
806 "port config all burst (value)\n"
807 " Set the number of packets per burst.\n\n"
809 "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)"
811 " Set the ring prefetch/host/writeback threshold"
812 " for tx/rx queue.\n\n"
814 "port config all (txfreet|txrst|rxfreet) (value)\n"
815 " Set free threshold for rx/tx, or set"
816 " tx rs bit threshold.\n\n"
817 "port config mtu X value\n"
818 " Set the MTU of port X to a given value\n\n"
820 "port config (port_id) (rxq|txq) (queue_id) ring_size (value)\n"
821 " Set a rx/tx queue's ring size configuration, the new"
822 " value will take effect after command that (re-)start the port"
823 " or command that setup the specific queue\n\n"
825 "port (port_id) (rxq|txq) (queue_id) (start|stop)\n"
826 " Start/stop a rx/tx queue of port X. Only take effect"
827 " when port X is started\n\n"
829 "port (port_id) (rxq|txq) (queue_id) deferred_start (on|off)\n"
830 " Switch on/off a deferred start of port X rx/tx queue. Only"
831 " take effect when port X is stopped.\n\n"
833 "port (port_id) (rxq|txq) (queue_id) setup\n"
834 " Setup a rx/tx queue of port X.\n\n"
836 "port config (port_id) pctype mapping reset\n"
837 " Reset flow type to pctype mapping on a port\n\n"
839 "port config (port_id) pctype mapping update"
840 " (pctype_id_0[,pctype_id_1]*) (flow_type_id)\n"
841 " Update a flow type to pctype mapping item on a port\n\n"
843 "port config (port_id) pctype (pctype_id) hash_inset|"
844 "fdir_inset|fdir_flx_inset get|set|clear field\n"
846 " Configure RSS|FDIR|FDIR_FLX input set for some pctype\n\n"
848 "port config (port_id) pctype (pctype_id) hash_inset|"
849 "fdir_inset|fdir_flx_inset clear all"
850 " Clear RSS|FDIR|FDIR_FLX input set completely for some pctype\n\n"
852 "port config (port_id) udp_tunnel_port add|rm vxlan|geneve|ecpri (udp_port)\n\n"
853 " Add/remove UDP tunnel port for tunneling offload\n\n"
855 "port config <port_id> rx_offload vlan_strip|"
856 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|"
857 "outer_ipv4_cksum|macsec_strip|header_split|"
858 "vlan_filter|vlan_extend|jumbo_frame|scatter|"
859 "buffer_split|timestamp|security|keep_crc on|off\n"
860 " Enable or disable a per port Rx offloading"
861 " on all Rx queues of a port\n\n"
863 "port (port_id) rxq (queue_id) rx_offload vlan_strip|"
864 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|"
865 "outer_ipv4_cksum|macsec_strip|header_split|"
866 "vlan_filter|vlan_extend|jumbo_frame|scatter|"
867 "buffer_split|timestamp|security|keep_crc on|off\n"
868 " Enable or disable a per queue Rx offloading"
869 " only on a specific Rx queue\n\n"
871 "port config (port_id) tx_offload vlan_insert|"
872 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|"
873 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|"
874 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|"
875 "macsec_insert|mt_lockfree|multi_segs|mbuf_fast_free|"
877 " Enable or disable a per port Tx offloading"
878 " on all Tx queues of a port\n\n"
880 "port (port_id) txq (queue_id) tx_offload vlan_insert|"
881 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|"
882 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|"
883 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|macsec_insert"
884 "|mt_lockfree|multi_segs|mbuf_fast_free|security"
886 " Enable or disable a per queue Tx offloading"
887 " only on a specific Tx queue\n\n"
889 "bpf-load rx|tx (port) (queue) (J|M|B) (file_name)\n"
890 " Load an eBPF program as a callback"
891 " for particular RX/TX queue\n\n"
893 "bpf-unload rx|tx (port) (queue)\n"
894 " Unload previously loaded eBPF program"
895 " for particular RX/TX queue\n\n"
897 "port config (port_id) tx_metadata (value)\n"
898 " Set Tx metadata value per port. Testpmd will add this value"
899 " to any Tx packet sent from this port\n\n"
901 "port config (port_id) dynf (name) set|clear\n"
902 " Register a dynf and Set/clear this flag on Tx. "
903 "Testpmd will set this value to any Tx packet "
904 "sent from this port\n\n"
908 if (show_all || !strcmp(res->section, "registers")) {
916 "read reg (port_id) (address)\n"
917 " Display value of a port register.\n\n"
919 "read regfield (port_id) (address) (bit_x) (bit_y)\n"
920 " Display a port register bit field.\n\n"
922 "read regbit (port_id) (address) (bit_x)\n"
923 " Display a single port register bit.\n\n"
925 "write reg (port_id) (address) (value)\n"
926 " Set value of a port register.\n\n"
928 "write regfield (port_id) (address) (bit_x) (bit_y)"
930 " Set bit field of a port register.\n\n"
932 "write regbit (port_id) (address) (bit_x) (value)\n"
933 " Set single bit value of a port register.\n\n"
936 if (show_all || !strcmp(res->section, "filters")) {
945 "flow_director_filter (port_id) mode raw (add|del|update)"
946 " flow (flow_id) (drop|fwd) queue (queue_id)"
947 " fd_id (fd_id_value) packet (packet file name)\n"
948 " Add/Del a raw type flow director filter.\n\n"
951 "flow_director_mask (port_id) mode IP vlan (vlan_value)"
952 " src_mask (ipv4_src) (ipv6_src) (src_port)"
953 " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n"
954 " Set flow director IP mask.\n\n"
956 "flow_director_mask (port_id) mode MAC-VLAN"
957 " vlan (vlan_value)\n"
958 " Set flow director MAC-VLAN mask.\n\n"
960 "flow_director_mask (port_id) mode Tunnel"
961 " vlan (vlan_value) mac (mac_value)"
962 " tunnel-type (tunnel_type_value)"
963 " tunnel-id (tunnel_id_value)\n"
964 " Set flow director Tunnel mask.\n\n"
966 "flow_director_flex_payload (port_id)"
967 " (raw|l2|l3|l4) (config)\n"
968 " Configure flex payload selection.\n\n"
970 "flow validate {port_id}"
971 " [group {group_id}] [priority {level}]"
972 " [ingress] [egress]"
973 " pattern {item} [/ {item} [...]] / end"
974 " actions {action} [/ {action} [...]] / end\n"
975 " Check whether a flow rule can be created.\n\n"
977 "flow create {port_id}"
978 " [group {group_id}] [priority {level}]"
979 " [ingress] [egress]"
980 " pattern {item} [/ {item} [...]] / end"
981 " actions {action} [/ {action} [...]] / end\n"
982 " Create a flow rule.\n\n"
984 "flow destroy {port_id} rule {rule_id} [...]\n"
985 " Destroy specific flow rules.\n\n"
987 "flow flush {port_id}\n"
988 " Destroy all flow rules.\n\n"
990 "flow query {port_id} {rule_id} {action}\n"
991 " Query an existing flow rule.\n\n"
993 "flow list {port_id} [group {group_id}] [...]\n"
994 " List existing flow rules sorted by priority,"
995 " filtered by group identifiers.\n\n"
997 "flow isolate {port_id} {boolean}\n"
998 " Restrict ingress traffic to the defined"
1001 "flow aged {port_id} [destroy]\n"
1002 " List and destroy aged flows"
1005 "flow shared_action {port_id} create"
1006 " [action_id {shared_action_id}]"
1007 " [ingress] [egress]"
1008 " action {action} / end\n"
1009 " Create shared action.\n\n"
1011 "flow shared_action {port_id} update"
1012 " {shared_action_id} action {action} / end\n"
1013 " Update shared action.\n\n"
1015 "flow shared_action {port_id} destroy"
1016 " action_id {shared_action_id} [...]\n"
1017 " Destroy specific shared actions.\n\n"
1019 "flow shared_action {port_id} query"
1020 " {shared_action_id}\n"
1021 " Query an existing shared action.\n\n"
1023 "set vxlan ip-version (ipv4|ipv6) vni (vni) udp-src"
1024 " (udp-src) udp-dst (udp-dst) ip-src (ip-src) ip-dst"
1025 " (ip-dst) eth-src (eth-src) eth-dst (eth-dst)\n"
1026 " Configure the VXLAN encapsulation for flows.\n\n"
1028 "set vxlan-with-vlan ip-version (ipv4|ipv6) vni (vni)"
1029 " udp-src (udp-src) udp-dst (udp-dst) ip-src (ip-src)"
1030 " ip-dst (ip-dst) vlan-tci (vlan-tci) eth-src (eth-src)"
1031 " eth-dst (eth-dst)\n"
1032 " Configure the VXLAN encapsulation for flows.\n\n"
1034 "set vxlan-tos-ttl ip-version (ipv4|ipv6) vni (vni) udp-src"
1035 " (udp-src) udp-dst (udp-dst) ip-tos (ip-tos) ip-ttl (ip-ttl)"
1036 " ip-src (ip-src) ip-dst (ip-dst) eth-src (eth-src)"
1037 " eth-dst (eth-dst)\n"
1038 " Configure the VXLAN encapsulation for flows.\n\n"
1040 "set nvgre ip-version (ipv4|ipv6) tni (tni) ip-src"
1041 " (ip-src) ip-dst (ip-dst) eth-src (eth-src) eth-dst"
1043 " Configure the NVGRE encapsulation for flows.\n\n"
1045 "set nvgre-with-vlan ip-version (ipv4|ipv6) tni (tni)"
1046 " ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci)"
1047 " eth-src (eth-src) eth-dst (eth-dst)\n"
1048 " Configure the NVGRE encapsulation for flows.\n\n"
1050 "set raw_encap {flow items}\n"
1051 " Configure the encapsulation with raw data.\n\n"
1053 "set raw_decap {flow items}\n"
1054 " Configure the decapsulation with raw data.\n\n"
1059 if (show_all || !strcmp(res->section, "traffic_management")) {
1063 "Traffic Management:\n"
1065 "show port tm cap (port_id)\n"
1066 " Display the port TM capability.\n\n"
1068 "show port tm level cap (port_id) (level_id)\n"
1069 " Display the port TM hierarchical level capability.\n\n"
1071 "show port tm node cap (port_id) (node_id)\n"
1072 " Display the port TM node capability.\n\n"
1074 "show port tm node type (port_id) (node_id)\n"
1075 " Display the port TM node type.\n\n"
1077 "show port tm node stats (port_id) (node_id) (clear)\n"
1078 " Display the port TM node stats.\n\n"
1080 "add port tm node shaper profile (port_id) (shaper_profile_id)"
1081 " (cmit_tb_rate) (cmit_tb_size) (peak_tb_rate) (peak_tb_size)"
1082 " (packet_length_adjust) (packet_mode)\n"
1083 " Add port tm node private shaper profile.\n\n"
1085 "del port tm node shaper profile (port_id) (shaper_profile_id)\n"
1086 " Delete port tm node private shaper profile.\n\n"
1088 "add port tm node shared shaper (port_id) (shared_shaper_id)"
1089 " (shaper_profile_id)\n"
1090 " Add/update port tm node shared shaper.\n\n"
1092 "del port tm node shared shaper (port_id) (shared_shaper_id)\n"
1093 " Delete port tm node shared shaper.\n\n"
1095 "set port tm node shaper profile (port_id) (node_id)"
1096 " (shaper_profile_id)\n"
1097 " Set port tm node shaper profile.\n\n"
1099 "add port tm node wred profile (port_id) (wred_profile_id)"
1100 " (color_g) (min_th_g) (max_th_g) (maxp_inv_g) (wq_log2_g)"
1101 " (color_y) (min_th_y) (max_th_y) (maxp_inv_y) (wq_log2_y)"
1102 " (color_r) (min_th_r) (max_th_r) (maxp_inv_r) (wq_log2_r)\n"
1103 " Add port tm node wred profile.\n\n"
1105 "del port tm node wred profile (port_id) (wred_profile_id)\n"
1106 " Delete port tm node wred profile.\n\n"
1108 "add port tm nonleaf node (port_id) (node_id) (parent_node_id)"
1109 " (priority) (weight) (level_id) (shaper_profile_id)"
1110 " (n_sp_priorities) (stats_mask) (n_shared_shapers)"
1111 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1112 " Add port tm nonleaf node.\n\n"
1114 "add port tm nonleaf node pktmode (port_id) (node_id) (parent_node_id)"
1115 " (priority) (weight) (level_id) (shaper_profile_id)"
1116 " (n_sp_priorities) (stats_mask) (n_shared_shapers)"
1117 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1118 " Add port tm nonleaf node with pkt mode enabled.\n\n"
1120 "add port tm leaf node (port_id) (node_id) (parent_node_id)"
1121 " (priority) (weight) (level_id) (shaper_profile_id)"
1122 " (cman_mode) (wred_profile_id) (stats_mask) (n_shared_shapers)"
1123 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n"
1124 " Add port tm leaf node.\n\n"
1126 "del port tm node (port_id) (node_id)\n"
1127 " Delete port tm node.\n\n"
1129 "set port tm node parent (port_id) (node_id) (parent_node_id)"
1130 " (priority) (weight)\n"
1131 " Set port tm node parent.\n\n"
1133 "suspend port tm node (port_id) (node_id)"
1134 " Suspend tm node.\n\n"
1136 "resume port tm node (port_id) (node_id)"
1137 " Resume tm node.\n\n"
1139 "port tm hierarchy commit (port_id) (clean_on_fail)\n"
1140 " Commit tm hierarchy.\n\n"
1142 "set port tm mark ip_ecn (port) (green) (yellow)"
1144 " Enables/Disables the traffic management marking"
1145 " for IP ECN (Explicit Congestion Notification)"
1146 " packets on a given port\n\n"
1148 "set port tm mark ip_dscp (port) (green) (yellow)"
1150 " Enables/Disables the traffic management marking"
1151 " on the port for IP dscp packets\n\n"
1153 "set port tm mark vlan_dei (port) (green) (yellow)"
1155 " Enables/Disables the traffic management marking"
1156 " on the port for VLAN packets with DEI enabled\n\n"
1160 if (show_all || !strcmp(res->section, "devices")) {
1164 "Device Operations:\n"
1166 "device detach (identifier)\n"
1167 " Detach device by identifier.\n\n"
1173 cmdline_parse_token_string_t cmd_help_long_help =
1174 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help");
1176 cmdline_parse_token_string_t cmd_help_long_section =
1177 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section,
1178 "all#control#display#config#"
1179 "ports#registers#filters#traffic_management#devices");
1181 cmdline_parse_inst_t cmd_help_long = {
1182 .f = cmd_help_long_parsed,
1184 .help_str = "help all|control|display|config|ports|register|"
1185 "filters|traffic_management|devices: "
1188 (void *)&cmd_help_long_help,
1189 (void *)&cmd_help_long_section,
1195 /* *** start/stop/close all ports *** */
1196 struct cmd_operate_port_result {
1197 cmdline_fixed_string_t keyword;
1198 cmdline_fixed_string_t name;
1199 cmdline_fixed_string_t value;
1202 static void cmd_operate_port_parsed(void *parsed_result,
1203 __rte_unused struct cmdline *cl,
1204 __rte_unused void *data)
1206 struct cmd_operate_port_result *res = parsed_result;
1208 if (!strcmp(res->name, "start"))
1209 start_port(RTE_PORT_ALL);
1210 else if (!strcmp(res->name, "stop"))
1211 stop_port(RTE_PORT_ALL);
1212 else if (!strcmp(res->name, "close"))
1213 close_port(RTE_PORT_ALL);
1214 else if (!strcmp(res->name, "reset"))
1215 reset_port(RTE_PORT_ALL);
1217 printf("Unknown parameter\n");
1220 cmdline_parse_token_string_t cmd_operate_port_all_cmd =
1221 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword,
1223 cmdline_parse_token_string_t cmd_operate_port_all_port =
1224 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name,
1225 "start#stop#close#reset");
1226 cmdline_parse_token_string_t cmd_operate_port_all_all =
1227 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all");
1229 cmdline_parse_inst_t cmd_operate_port = {
1230 .f = cmd_operate_port_parsed,
1232 .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports",
1234 (void *)&cmd_operate_port_all_cmd,
1235 (void *)&cmd_operate_port_all_port,
1236 (void *)&cmd_operate_port_all_all,
1241 /* *** start/stop/close specific port *** */
1242 struct cmd_operate_specific_port_result {
1243 cmdline_fixed_string_t keyword;
1244 cmdline_fixed_string_t name;
1248 static void cmd_operate_specific_port_parsed(void *parsed_result,
1249 __rte_unused struct cmdline *cl,
1250 __rte_unused void *data)
1252 struct cmd_operate_specific_port_result *res = parsed_result;
1254 if (!strcmp(res->name, "start"))
1255 start_port(res->value);
1256 else if (!strcmp(res->name, "stop"))
1257 stop_port(res->value);
1258 else if (!strcmp(res->name, "close"))
1259 close_port(res->value);
1260 else if (!strcmp(res->name, "reset"))
1261 reset_port(res->value);
1263 printf("Unknown parameter\n");
1266 cmdline_parse_token_string_t cmd_operate_specific_port_cmd =
1267 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1269 cmdline_parse_token_string_t cmd_operate_specific_port_port =
1270 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1271 name, "start#stop#close#reset");
1272 cmdline_parse_token_num_t cmd_operate_specific_port_id =
1273 TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result,
1276 cmdline_parse_inst_t cmd_operate_specific_port = {
1277 .f = cmd_operate_specific_port_parsed,
1279 .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id",
1281 (void *)&cmd_operate_specific_port_cmd,
1282 (void *)&cmd_operate_specific_port_port,
1283 (void *)&cmd_operate_specific_port_id,
1288 /* *** enable port setup (after attach) via iterator or event *** */
1289 struct cmd_set_port_setup_on_result {
1290 cmdline_fixed_string_t set;
1291 cmdline_fixed_string_t port;
1292 cmdline_fixed_string_t setup;
1293 cmdline_fixed_string_t on;
1294 cmdline_fixed_string_t mode;
1297 static void cmd_set_port_setup_on_parsed(void *parsed_result,
1298 __rte_unused struct cmdline *cl,
1299 __rte_unused void *data)
1301 struct cmd_set_port_setup_on_result *res = parsed_result;
1303 if (strcmp(res->mode, "event") == 0)
1304 setup_on_probe_event = true;
1305 else if (strcmp(res->mode, "iterator") == 0)
1306 setup_on_probe_event = false;
1308 printf("Unknown mode\n");
1311 cmdline_parse_token_string_t cmd_set_port_setup_on_set =
1312 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1314 cmdline_parse_token_string_t cmd_set_port_setup_on_port =
1315 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1317 cmdline_parse_token_string_t cmd_set_port_setup_on_setup =
1318 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1320 cmdline_parse_token_string_t cmd_set_port_setup_on_on =
1321 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1323 cmdline_parse_token_string_t cmd_set_port_setup_on_mode =
1324 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result,
1325 mode, "iterator#event");
1327 cmdline_parse_inst_t cmd_set_port_setup_on = {
1328 .f = cmd_set_port_setup_on_parsed,
1330 .help_str = "set port setup on iterator|event",
1332 (void *)&cmd_set_port_setup_on_set,
1333 (void *)&cmd_set_port_setup_on_port,
1334 (void *)&cmd_set_port_setup_on_setup,
1335 (void *)&cmd_set_port_setup_on_on,
1336 (void *)&cmd_set_port_setup_on_mode,
1341 /* *** attach a specified port *** */
1342 struct cmd_operate_attach_port_result {
1343 cmdline_fixed_string_t port;
1344 cmdline_fixed_string_t keyword;
1345 cmdline_multi_string_t identifier;
1348 static void cmd_operate_attach_port_parsed(void *parsed_result,
1349 __rte_unused struct cmdline *cl,
1350 __rte_unused void *data)
1352 struct cmd_operate_attach_port_result *res = parsed_result;
1354 if (!strcmp(res->keyword, "attach"))
1355 attach_port(res->identifier);
1357 printf("Unknown parameter\n");
1360 cmdline_parse_token_string_t cmd_operate_attach_port_port =
1361 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1363 cmdline_parse_token_string_t cmd_operate_attach_port_keyword =
1364 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1366 cmdline_parse_token_string_t cmd_operate_attach_port_identifier =
1367 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1368 identifier, TOKEN_STRING_MULTI);
1370 cmdline_parse_inst_t cmd_operate_attach_port = {
1371 .f = cmd_operate_attach_port_parsed,
1373 .help_str = "port attach <identifier>: "
1374 "(identifier: pci address or virtual dev name)",
1376 (void *)&cmd_operate_attach_port_port,
1377 (void *)&cmd_operate_attach_port_keyword,
1378 (void *)&cmd_operate_attach_port_identifier,
1383 /* *** detach a specified port *** */
1384 struct cmd_operate_detach_port_result {
1385 cmdline_fixed_string_t port;
1386 cmdline_fixed_string_t keyword;
1390 static void cmd_operate_detach_port_parsed(void *parsed_result,
1391 __rte_unused struct cmdline *cl,
1392 __rte_unused void *data)
1394 struct cmd_operate_detach_port_result *res = parsed_result;
1396 if (!strcmp(res->keyword, "detach")) {
1397 RTE_ETH_VALID_PORTID_OR_RET(res->port_id);
1398 detach_port_device(res->port_id);
1400 printf("Unknown parameter\n");
1404 cmdline_parse_token_string_t cmd_operate_detach_port_port =
1405 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1407 cmdline_parse_token_string_t cmd_operate_detach_port_keyword =
1408 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1410 cmdline_parse_token_num_t cmd_operate_detach_port_port_id =
1411 TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result,
1412 port_id, RTE_UINT16);
1414 cmdline_parse_inst_t cmd_operate_detach_port = {
1415 .f = cmd_operate_detach_port_parsed,
1417 .help_str = "port detach <port_id>",
1419 (void *)&cmd_operate_detach_port_port,
1420 (void *)&cmd_operate_detach_port_keyword,
1421 (void *)&cmd_operate_detach_port_port_id,
1426 /* *** detach device by identifier *** */
1427 struct cmd_operate_detach_device_result {
1428 cmdline_fixed_string_t device;
1429 cmdline_fixed_string_t keyword;
1430 cmdline_fixed_string_t identifier;
1433 static void cmd_operate_detach_device_parsed(void *parsed_result,
1434 __rte_unused struct cmdline *cl,
1435 __rte_unused void *data)
1437 struct cmd_operate_detach_device_result *res = parsed_result;
1439 if (!strcmp(res->keyword, "detach"))
1440 detach_devargs(res->identifier);
1442 printf("Unknown parameter\n");
1445 cmdline_parse_token_string_t cmd_operate_detach_device_device =
1446 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1448 cmdline_parse_token_string_t cmd_operate_detach_device_keyword =
1449 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1451 cmdline_parse_token_string_t cmd_operate_detach_device_identifier =
1452 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result,
1455 cmdline_parse_inst_t cmd_operate_detach_device = {
1456 .f = cmd_operate_detach_device_parsed,
1458 .help_str = "device detach <identifier>:"
1459 "(identifier: pci address or virtual dev name)",
1461 (void *)&cmd_operate_detach_device_device,
1462 (void *)&cmd_operate_detach_device_keyword,
1463 (void *)&cmd_operate_detach_device_identifier,
1467 /* *** configure speed for all ports *** */
1468 struct cmd_config_speed_all {
1469 cmdline_fixed_string_t port;
1470 cmdline_fixed_string_t keyword;
1471 cmdline_fixed_string_t all;
1472 cmdline_fixed_string_t item1;
1473 cmdline_fixed_string_t item2;
1474 cmdline_fixed_string_t value1;
1475 cmdline_fixed_string_t value2;
1479 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
1484 if (!strcmp(duplexstr, "half")) {
1485 duplex = ETH_LINK_HALF_DUPLEX;
1486 } else if (!strcmp(duplexstr, "full")) {
1487 duplex = ETH_LINK_FULL_DUPLEX;
1488 } else if (!strcmp(duplexstr, "auto")) {
1489 duplex = ETH_LINK_FULL_DUPLEX;
1491 printf("Unknown duplex parameter\n");
1495 if (!strcmp(speedstr, "10")) {
1496 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1497 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M;
1498 } else if (!strcmp(speedstr, "100")) {
1499 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1500 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M;
1502 if (duplex != ETH_LINK_FULL_DUPLEX) {
1503 printf("Invalid speed/duplex parameters\n");
1506 if (!strcmp(speedstr, "1000")) {
1507 *speed = ETH_LINK_SPEED_1G;
1508 } else if (!strcmp(speedstr, "10000")) {
1509 *speed = ETH_LINK_SPEED_10G;
1510 } else if (!strcmp(speedstr, "25000")) {
1511 *speed = ETH_LINK_SPEED_25G;
1512 } else if (!strcmp(speedstr, "40000")) {
1513 *speed = ETH_LINK_SPEED_40G;
1514 } else if (!strcmp(speedstr, "50000")) {
1515 *speed = ETH_LINK_SPEED_50G;
1516 } else if (!strcmp(speedstr, "100000")) {
1517 *speed = ETH_LINK_SPEED_100G;
1518 } else if (!strcmp(speedstr, "200000")) {
1519 *speed = ETH_LINK_SPEED_200G;
1520 } else if (!strcmp(speedstr, "auto")) {
1521 *speed = ETH_LINK_SPEED_AUTONEG;
1523 printf("Unknown speed parameter\n");
1532 cmd_config_speed_all_parsed(void *parsed_result,
1533 __rte_unused struct cmdline *cl,
1534 __rte_unused void *data)
1536 struct cmd_config_speed_all *res = parsed_result;
1537 uint32_t link_speed;
1540 if (!all_ports_stopped()) {
1541 printf("Please stop all ports first\n");
1545 if (parse_and_check_speed_duplex(res->value1, res->value2,
1549 RTE_ETH_FOREACH_DEV(pid) {
1550 ports[pid].dev_conf.link_speeds = link_speed;
1553 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1556 cmdline_parse_token_string_t cmd_config_speed_all_port =
1557 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port");
1558 cmdline_parse_token_string_t cmd_config_speed_all_keyword =
1559 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword,
1561 cmdline_parse_token_string_t cmd_config_speed_all_all =
1562 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all");
1563 cmdline_parse_token_string_t cmd_config_speed_all_item1 =
1564 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed");
1565 cmdline_parse_token_string_t cmd_config_speed_all_value1 =
1566 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1,
1567 "10#100#1000#10000#25000#40000#50000#100000#200000#auto");
1568 cmdline_parse_token_string_t cmd_config_speed_all_item2 =
1569 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex");
1570 cmdline_parse_token_string_t cmd_config_speed_all_value2 =
1571 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2,
1574 cmdline_parse_inst_t cmd_config_speed_all = {
1575 .f = cmd_config_speed_all_parsed,
1577 .help_str = "port config all speed "
1578 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex "
1581 (void *)&cmd_config_speed_all_port,
1582 (void *)&cmd_config_speed_all_keyword,
1583 (void *)&cmd_config_speed_all_all,
1584 (void *)&cmd_config_speed_all_item1,
1585 (void *)&cmd_config_speed_all_value1,
1586 (void *)&cmd_config_speed_all_item2,
1587 (void *)&cmd_config_speed_all_value2,
1592 /* *** configure speed for specific port *** */
1593 struct cmd_config_speed_specific {
1594 cmdline_fixed_string_t port;
1595 cmdline_fixed_string_t keyword;
1597 cmdline_fixed_string_t item1;
1598 cmdline_fixed_string_t item2;
1599 cmdline_fixed_string_t value1;
1600 cmdline_fixed_string_t value2;
1604 cmd_config_speed_specific_parsed(void *parsed_result,
1605 __rte_unused struct cmdline *cl,
1606 __rte_unused void *data)
1608 struct cmd_config_speed_specific *res = parsed_result;
1609 uint32_t link_speed;
1611 if (!all_ports_stopped()) {
1612 printf("Please stop all ports first\n");
1616 if (port_id_is_invalid(res->id, ENABLED_WARN))
1619 if (parse_and_check_speed_duplex(res->value1, res->value2,
1623 ports[res->id].dev_conf.link_speeds = link_speed;
1625 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1629 cmdline_parse_token_string_t cmd_config_speed_specific_port =
1630 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port,
1632 cmdline_parse_token_string_t cmd_config_speed_specific_keyword =
1633 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword,
1635 cmdline_parse_token_num_t cmd_config_speed_specific_id =
1636 TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, RTE_UINT16);
1637 cmdline_parse_token_string_t cmd_config_speed_specific_item1 =
1638 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1,
1640 cmdline_parse_token_string_t cmd_config_speed_specific_value1 =
1641 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1,
1642 "10#100#1000#10000#25000#40000#50000#100000#200000#auto");
1643 cmdline_parse_token_string_t cmd_config_speed_specific_item2 =
1644 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2,
1646 cmdline_parse_token_string_t cmd_config_speed_specific_value2 =
1647 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2,
1650 cmdline_parse_inst_t cmd_config_speed_specific = {
1651 .f = cmd_config_speed_specific_parsed,
1653 .help_str = "port config <port_id> speed "
1654 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex "
1657 (void *)&cmd_config_speed_specific_port,
1658 (void *)&cmd_config_speed_specific_keyword,
1659 (void *)&cmd_config_speed_specific_id,
1660 (void *)&cmd_config_speed_specific_item1,
1661 (void *)&cmd_config_speed_specific_value1,
1662 (void *)&cmd_config_speed_specific_item2,
1663 (void *)&cmd_config_speed_specific_value2,
1668 /* *** configure loopback for all ports *** */
1669 struct cmd_config_loopback_all {
1670 cmdline_fixed_string_t port;
1671 cmdline_fixed_string_t keyword;
1672 cmdline_fixed_string_t all;
1673 cmdline_fixed_string_t item;
1678 cmd_config_loopback_all_parsed(void *parsed_result,
1679 __rte_unused struct cmdline *cl,
1680 __rte_unused void *data)
1682 struct cmd_config_loopback_all *res = parsed_result;
1685 if (!all_ports_stopped()) {
1686 printf("Please stop all ports first\n");
1690 RTE_ETH_FOREACH_DEV(pid) {
1691 ports[pid].dev_conf.lpbk_mode = res->mode;
1694 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1697 cmdline_parse_token_string_t cmd_config_loopback_all_port =
1698 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, port, "port");
1699 cmdline_parse_token_string_t cmd_config_loopback_all_keyword =
1700 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, keyword,
1702 cmdline_parse_token_string_t cmd_config_loopback_all_all =
1703 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, all, "all");
1704 cmdline_parse_token_string_t cmd_config_loopback_all_item =
1705 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, item,
1707 cmdline_parse_token_num_t cmd_config_loopback_all_mode =
1708 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_all, mode, RTE_UINT32);
1710 cmdline_parse_inst_t cmd_config_loopback_all = {
1711 .f = cmd_config_loopback_all_parsed,
1713 .help_str = "port config all loopback <mode>",
1715 (void *)&cmd_config_loopback_all_port,
1716 (void *)&cmd_config_loopback_all_keyword,
1717 (void *)&cmd_config_loopback_all_all,
1718 (void *)&cmd_config_loopback_all_item,
1719 (void *)&cmd_config_loopback_all_mode,
1724 /* *** configure loopback for specific port *** */
1725 struct cmd_config_loopback_specific {
1726 cmdline_fixed_string_t port;
1727 cmdline_fixed_string_t keyword;
1729 cmdline_fixed_string_t item;
1734 cmd_config_loopback_specific_parsed(void *parsed_result,
1735 __rte_unused struct cmdline *cl,
1736 __rte_unused void *data)
1738 struct cmd_config_loopback_specific *res = parsed_result;
1740 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
1743 if (!port_is_stopped(res->port_id)) {
1744 printf("Please stop port %u first\n", res->port_id);
1748 ports[res->port_id].dev_conf.lpbk_mode = res->mode;
1750 cmd_reconfig_device_queue(res->port_id, 1, 1);
1754 cmdline_parse_token_string_t cmd_config_loopback_specific_port =
1755 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, port,
1757 cmdline_parse_token_string_t cmd_config_loopback_specific_keyword =
1758 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, keyword,
1760 cmdline_parse_token_num_t cmd_config_loopback_specific_id =
1761 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, port_id,
1763 cmdline_parse_token_string_t cmd_config_loopback_specific_item =
1764 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, item,
1766 cmdline_parse_token_num_t cmd_config_loopback_specific_mode =
1767 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, mode,
1770 cmdline_parse_inst_t cmd_config_loopback_specific = {
1771 .f = cmd_config_loopback_specific_parsed,
1773 .help_str = "port config <port_id> loopback <mode>",
1775 (void *)&cmd_config_loopback_specific_port,
1776 (void *)&cmd_config_loopback_specific_keyword,
1777 (void *)&cmd_config_loopback_specific_id,
1778 (void *)&cmd_config_loopback_specific_item,
1779 (void *)&cmd_config_loopback_specific_mode,
1784 /* *** configure txq/rxq, txd/rxd *** */
1785 struct cmd_config_rx_tx {
1786 cmdline_fixed_string_t port;
1787 cmdline_fixed_string_t keyword;
1788 cmdline_fixed_string_t all;
1789 cmdline_fixed_string_t name;
1794 cmd_config_rx_tx_parsed(void *parsed_result,
1795 __rte_unused struct cmdline *cl,
1796 __rte_unused void *data)
1798 struct cmd_config_rx_tx *res = parsed_result;
1800 if (!all_ports_stopped()) {
1801 printf("Please stop all ports first\n");
1804 if (!strcmp(res->name, "rxq")) {
1805 if (!res->value && !nb_txq) {
1806 printf("Warning: Either rx or tx queues should be non zero\n");
1809 if (check_nb_rxq(res->value) != 0)
1811 nb_rxq = res->value;
1813 else if (!strcmp(res->name, "txq")) {
1814 if (!res->value && !nb_rxq) {
1815 printf("Warning: Either rx or tx queues should be non zero\n");
1818 if (check_nb_txq(res->value) != 0)
1820 nb_txq = res->value;
1822 else if (!strcmp(res->name, "rxd")) {
1823 if (check_nb_rxd(res->value) != 0)
1825 nb_rxd = res->value;
1826 } else if (!strcmp(res->name, "txd")) {
1827 if (check_nb_txd(res->value) != 0)
1830 nb_txd = res->value;
1832 printf("Unknown parameter\n");
1840 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1843 cmdline_parse_token_string_t cmd_config_rx_tx_port =
1844 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port");
1845 cmdline_parse_token_string_t cmd_config_rx_tx_keyword =
1846 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config");
1847 cmdline_parse_token_string_t cmd_config_rx_tx_all =
1848 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all");
1849 cmdline_parse_token_string_t cmd_config_rx_tx_name =
1850 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name,
1852 cmdline_parse_token_num_t cmd_config_rx_tx_value =
1853 TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, RTE_UINT16);
1855 cmdline_parse_inst_t cmd_config_rx_tx = {
1856 .f = cmd_config_rx_tx_parsed,
1858 .help_str = "port config all rxq|txq|rxd|txd <value>",
1860 (void *)&cmd_config_rx_tx_port,
1861 (void *)&cmd_config_rx_tx_keyword,
1862 (void *)&cmd_config_rx_tx_all,
1863 (void *)&cmd_config_rx_tx_name,
1864 (void *)&cmd_config_rx_tx_value,
1869 /* *** config max packet length *** */
1870 struct cmd_config_max_pkt_len_result {
1871 cmdline_fixed_string_t port;
1872 cmdline_fixed_string_t keyword;
1873 cmdline_fixed_string_t all;
1874 cmdline_fixed_string_t name;
1879 cmd_config_max_pkt_len_parsed(void *parsed_result,
1880 __rte_unused struct cmdline *cl,
1881 __rte_unused void *data)
1883 struct cmd_config_max_pkt_len_result *res = parsed_result;
1884 uint32_t max_rx_pkt_len_backup = 0;
1888 if (!all_ports_stopped()) {
1889 printf("Please stop all ports first\n");
1893 RTE_ETH_FOREACH_DEV(pid) {
1894 struct rte_port *port = &ports[pid];
1896 if (!strcmp(res->name, "max-pkt-len")) {
1897 if (res->value < RTE_ETHER_MIN_LEN) {
1898 printf("max-pkt-len can not be less than %d\n",
1902 if (res->value == port->dev_conf.rxmode.max_rx_pkt_len)
1905 ret = eth_dev_info_get_print_err(pid, &port->dev_info);
1907 printf("rte_eth_dev_info_get() failed for port %u\n",
1912 max_rx_pkt_len_backup = port->dev_conf.rxmode.max_rx_pkt_len;
1914 port->dev_conf.rxmode.max_rx_pkt_len = res->value;
1915 if (update_jumbo_frame_offload(pid) != 0)
1916 port->dev_conf.rxmode.max_rx_pkt_len = max_rx_pkt_len_backup;
1918 printf("Unknown parameter\n");
1925 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1928 cmdline_parse_token_string_t cmd_config_max_pkt_len_port =
1929 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port,
1931 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword =
1932 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword,
1934 cmdline_parse_token_string_t cmd_config_max_pkt_len_all =
1935 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all,
1937 cmdline_parse_token_string_t cmd_config_max_pkt_len_name =
1938 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name,
1940 cmdline_parse_token_num_t cmd_config_max_pkt_len_value =
1941 TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value,
1944 cmdline_parse_inst_t cmd_config_max_pkt_len = {
1945 .f = cmd_config_max_pkt_len_parsed,
1947 .help_str = "port config all max-pkt-len <value>",
1949 (void *)&cmd_config_max_pkt_len_port,
1950 (void *)&cmd_config_max_pkt_len_keyword,
1951 (void *)&cmd_config_max_pkt_len_all,
1952 (void *)&cmd_config_max_pkt_len_name,
1953 (void *)&cmd_config_max_pkt_len_value,
1958 /* *** config max LRO aggregated packet size *** */
1959 struct cmd_config_max_lro_pkt_size_result {
1960 cmdline_fixed_string_t port;
1961 cmdline_fixed_string_t keyword;
1962 cmdline_fixed_string_t all;
1963 cmdline_fixed_string_t name;
1968 cmd_config_max_lro_pkt_size_parsed(void *parsed_result,
1969 __rte_unused struct cmdline *cl,
1970 __rte_unused void *data)
1972 struct cmd_config_max_lro_pkt_size_result *res = parsed_result;
1975 if (!all_ports_stopped()) {
1976 printf("Please stop all ports first\n");
1980 RTE_ETH_FOREACH_DEV(pid) {
1981 struct rte_port *port = &ports[pid];
1983 if (!strcmp(res->name, "max-lro-pkt-size")) {
1985 port->dev_conf.rxmode.max_lro_pkt_size)
1988 port->dev_conf.rxmode.max_lro_pkt_size = res->value;
1990 printf("Unknown parameter\n");
1997 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2000 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_port =
2001 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2003 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_keyword =
2004 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2006 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_all =
2007 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2009 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_name =
2010 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2011 name, "max-lro-pkt-size");
2012 cmdline_parse_token_num_t cmd_config_max_lro_pkt_size_value =
2013 TOKEN_NUM_INITIALIZER(struct cmd_config_max_lro_pkt_size_result,
2016 cmdline_parse_inst_t cmd_config_max_lro_pkt_size = {
2017 .f = cmd_config_max_lro_pkt_size_parsed,
2019 .help_str = "port config all max-lro-pkt-size <value>",
2021 (void *)&cmd_config_max_lro_pkt_size_port,
2022 (void *)&cmd_config_max_lro_pkt_size_keyword,
2023 (void *)&cmd_config_max_lro_pkt_size_all,
2024 (void *)&cmd_config_max_lro_pkt_size_name,
2025 (void *)&cmd_config_max_lro_pkt_size_value,
2030 /* *** configure port MTU *** */
2031 struct cmd_config_mtu_result {
2032 cmdline_fixed_string_t port;
2033 cmdline_fixed_string_t keyword;
2034 cmdline_fixed_string_t mtu;
2040 cmd_config_mtu_parsed(void *parsed_result,
2041 __rte_unused struct cmdline *cl,
2042 __rte_unused void *data)
2044 struct cmd_config_mtu_result *res = parsed_result;
2046 if (res->value < RTE_ETHER_MIN_LEN) {
2047 printf("mtu cannot be less than %d\n", RTE_ETHER_MIN_LEN);
2050 port_mtu_set(res->port_id, res->value);
2053 cmdline_parse_token_string_t cmd_config_mtu_port =
2054 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port,
2056 cmdline_parse_token_string_t cmd_config_mtu_keyword =
2057 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
2059 cmdline_parse_token_string_t cmd_config_mtu_mtu =
2060 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
2062 cmdline_parse_token_num_t cmd_config_mtu_port_id =
2063 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id,
2065 cmdline_parse_token_num_t cmd_config_mtu_value =
2066 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value,
2069 cmdline_parse_inst_t cmd_config_mtu = {
2070 .f = cmd_config_mtu_parsed,
2072 .help_str = "port config mtu <port_id> <value>",
2074 (void *)&cmd_config_mtu_port,
2075 (void *)&cmd_config_mtu_keyword,
2076 (void *)&cmd_config_mtu_mtu,
2077 (void *)&cmd_config_mtu_port_id,
2078 (void *)&cmd_config_mtu_value,
2083 /* *** configure rx mode *** */
2084 struct cmd_config_rx_mode_flag {
2085 cmdline_fixed_string_t port;
2086 cmdline_fixed_string_t keyword;
2087 cmdline_fixed_string_t all;
2088 cmdline_fixed_string_t name;
2089 cmdline_fixed_string_t value;
2093 cmd_config_rx_mode_flag_parsed(void *parsed_result,
2094 __rte_unused struct cmdline *cl,
2095 __rte_unused void *data)
2097 struct cmd_config_rx_mode_flag *res = parsed_result;
2099 if (!all_ports_stopped()) {
2100 printf("Please stop all ports first\n");
2104 if (!strcmp(res->name, "drop-en")) {
2105 if (!strcmp(res->value, "on"))
2107 else if (!strcmp(res->value, "off"))
2110 printf("Unknown parameter\n");
2114 printf("Unknown parameter\n");
2120 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2123 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port =
2124 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port");
2125 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword =
2126 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword,
2128 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all =
2129 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all");
2130 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name =
2131 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name,
2133 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value =
2134 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value,
2137 cmdline_parse_inst_t cmd_config_rx_mode_flag = {
2138 .f = cmd_config_rx_mode_flag_parsed,
2140 .help_str = "port config all drop-en on|off",
2142 (void *)&cmd_config_rx_mode_flag_port,
2143 (void *)&cmd_config_rx_mode_flag_keyword,
2144 (void *)&cmd_config_rx_mode_flag_all,
2145 (void *)&cmd_config_rx_mode_flag_name,
2146 (void *)&cmd_config_rx_mode_flag_value,
2151 /* *** configure rss *** */
2152 struct cmd_config_rss {
2153 cmdline_fixed_string_t port;
2154 cmdline_fixed_string_t keyword;
2155 cmdline_fixed_string_t all;
2156 cmdline_fixed_string_t name;
2157 cmdline_fixed_string_t value;
2161 cmd_config_rss_parsed(void *parsed_result,
2162 __rte_unused struct cmdline *cl,
2163 __rte_unused void *data)
2165 struct cmd_config_rss *res = parsed_result;
2166 struct rte_eth_rss_conf rss_conf = { .rss_key_len = 0, };
2167 struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, };
2168 int use_default = 0;
2169 int all_updated = 1;
2174 if (!strcmp(res->value, "all"))
2175 rss_conf.rss_hf = ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP |
2176 ETH_RSS_TCP | ETH_RSS_UDP | ETH_RSS_SCTP |
2177 ETH_RSS_L2_PAYLOAD | ETH_RSS_L2TPV3 | ETH_RSS_ESP |
2178 ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU |
2180 else if (!strcmp(res->value, "eth"))
2181 rss_conf.rss_hf = ETH_RSS_ETH;
2182 else if (!strcmp(res->value, "vlan"))
2183 rss_conf.rss_hf = ETH_RSS_VLAN;
2184 else if (!strcmp(res->value, "ip"))
2185 rss_conf.rss_hf = ETH_RSS_IP;
2186 else if (!strcmp(res->value, "udp"))
2187 rss_conf.rss_hf = ETH_RSS_UDP;
2188 else if (!strcmp(res->value, "tcp"))
2189 rss_conf.rss_hf = ETH_RSS_TCP;
2190 else if (!strcmp(res->value, "sctp"))
2191 rss_conf.rss_hf = ETH_RSS_SCTP;
2192 else if (!strcmp(res->value, "ether"))
2193 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD;
2194 else if (!strcmp(res->value, "port"))
2195 rss_conf.rss_hf = ETH_RSS_PORT;
2196 else if (!strcmp(res->value, "vxlan"))
2197 rss_conf.rss_hf = ETH_RSS_VXLAN;
2198 else if (!strcmp(res->value, "geneve"))
2199 rss_conf.rss_hf = ETH_RSS_GENEVE;
2200 else if (!strcmp(res->value, "nvgre"))
2201 rss_conf.rss_hf = ETH_RSS_NVGRE;
2202 else if (!strcmp(res->value, "l3-pre32"))
2203 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE32;
2204 else if (!strcmp(res->value, "l3-pre40"))
2205 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE40;
2206 else if (!strcmp(res->value, "l3-pre48"))
2207 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE48;
2208 else if (!strcmp(res->value, "l3-pre56"))
2209 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE56;
2210 else if (!strcmp(res->value, "l3-pre64"))
2211 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE64;
2212 else if (!strcmp(res->value, "l3-pre96"))
2213 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE96;
2214 else if (!strcmp(res->value, "l3-src-only"))
2215 rss_conf.rss_hf = ETH_RSS_L3_SRC_ONLY;
2216 else if (!strcmp(res->value, "l3-dst-only"))
2217 rss_conf.rss_hf = ETH_RSS_L3_DST_ONLY;
2218 else if (!strcmp(res->value, "l4-src-only"))
2219 rss_conf.rss_hf = ETH_RSS_L4_SRC_ONLY;
2220 else if (!strcmp(res->value, "l4-dst-only"))
2221 rss_conf.rss_hf = ETH_RSS_L4_DST_ONLY;
2222 else if (!strcmp(res->value, "l2-src-only"))
2223 rss_conf.rss_hf = ETH_RSS_L2_SRC_ONLY;
2224 else if (!strcmp(res->value, "l2-dst-only"))
2225 rss_conf.rss_hf = ETH_RSS_L2_DST_ONLY;
2226 else if (!strcmp(res->value, "l2tpv3"))
2227 rss_conf.rss_hf = ETH_RSS_L2TPV3;
2228 else if (!strcmp(res->value, "esp"))
2229 rss_conf.rss_hf = ETH_RSS_ESP;
2230 else if (!strcmp(res->value, "ah"))
2231 rss_conf.rss_hf = ETH_RSS_AH;
2232 else if (!strcmp(res->value, "pfcp"))
2233 rss_conf.rss_hf = ETH_RSS_PFCP;
2234 else if (!strcmp(res->value, "pppoe"))
2235 rss_conf.rss_hf = ETH_RSS_PPPOE;
2236 else if (!strcmp(res->value, "gtpu"))
2237 rss_conf.rss_hf = ETH_RSS_GTPU;
2238 else if (!strcmp(res->value, "ecpri"))
2239 rss_conf.rss_hf = ETH_RSS_ECPRI;
2240 else if (!strcmp(res->value, "mpls"))
2241 rss_conf.rss_hf = ETH_RSS_MPLS;
2242 else if (!strcmp(res->value, "none"))
2243 rss_conf.rss_hf = 0;
2244 else if (!strcmp(res->value, "level-default")) {
2245 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2246 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_PMD_DEFAULT);
2247 } else if (!strcmp(res->value, "level-outer")) {
2248 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2249 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_OUTERMOST);
2250 } else if (!strcmp(res->value, "level-inner")) {
2251 rss_hf &= (~ETH_RSS_LEVEL_MASK);
2252 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_INNERMOST);
2253 } else if (!strcmp(res->value, "default"))
2255 else if (isdigit(res->value[0]) && atoi(res->value) > 0 &&
2256 atoi(res->value) < 64)
2257 rss_conf.rss_hf = 1ULL << atoi(res->value);
2259 printf("Unknown parameter\n");
2262 rss_conf.rss_key = NULL;
2263 /* Update global configuration for RSS types. */
2264 RTE_ETH_FOREACH_DEV(i) {
2265 struct rte_eth_rss_conf local_rss_conf;
2267 ret = eth_dev_info_get_print_err(i, &dev_info);
2272 rss_conf.rss_hf = dev_info.flow_type_rss_offloads;
2274 local_rss_conf = rss_conf;
2275 local_rss_conf.rss_hf = rss_conf.rss_hf &
2276 dev_info.flow_type_rss_offloads;
2277 if (local_rss_conf.rss_hf != rss_conf.rss_hf) {
2278 printf("Port %u modified RSS hash function based on hardware support,"
2279 "requested:%#"PRIx64" configured:%#"PRIx64"\n",
2280 i, rss_conf.rss_hf, local_rss_conf.rss_hf);
2282 diag = rte_eth_dev_rss_hash_update(i, &local_rss_conf);
2285 printf("Configuration of RSS hash at ethernet port %d "
2286 "failed with error (%d): %s.\n",
2287 i, -diag, strerror(-diag));
2290 if (all_updated && !use_default) {
2291 rss_hf = rss_conf.rss_hf;
2292 printf("rss_hf %#"PRIx64"\n", rss_hf);
2296 cmdline_parse_token_string_t cmd_config_rss_port =
2297 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port");
2298 cmdline_parse_token_string_t cmd_config_rss_keyword =
2299 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config");
2300 cmdline_parse_token_string_t cmd_config_rss_all =
2301 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all");
2302 cmdline_parse_token_string_t cmd_config_rss_name =
2303 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss");
2304 cmdline_parse_token_string_t cmd_config_rss_value =
2305 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value, NULL);
2307 cmdline_parse_inst_t cmd_config_rss = {
2308 .f = cmd_config_rss_parsed,
2310 .help_str = "port config all rss "
2311 "all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|"
2312 "nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|ecpri|mpls|none|level-default|"
2313 "level-outer|level-inner|<flowtype_id>",
2315 (void *)&cmd_config_rss_port,
2316 (void *)&cmd_config_rss_keyword,
2317 (void *)&cmd_config_rss_all,
2318 (void *)&cmd_config_rss_name,
2319 (void *)&cmd_config_rss_value,
2324 /* *** configure rss hash key *** */
2325 struct cmd_config_rss_hash_key {
2326 cmdline_fixed_string_t port;
2327 cmdline_fixed_string_t config;
2329 cmdline_fixed_string_t rss_hash_key;
2330 cmdline_fixed_string_t rss_type;
2331 cmdline_fixed_string_t key;
2335 hexa_digit_to_value(char hexa_digit)
2337 if ((hexa_digit >= '0') && (hexa_digit <= '9'))
2338 return (uint8_t) (hexa_digit - '0');
2339 if ((hexa_digit >= 'a') && (hexa_digit <= 'f'))
2340 return (uint8_t) ((hexa_digit - 'a') + 10);
2341 if ((hexa_digit >= 'A') && (hexa_digit <= 'F'))
2342 return (uint8_t) ((hexa_digit - 'A') + 10);
2343 /* Invalid hexa digit */
2348 parse_and_check_key_hexa_digit(char *key, int idx)
2352 hexa_v = hexa_digit_to_value(key[idx]);
2354 printf("invalid key: character %c at position %d is not a "
2355 "valid hexa digit\n", key[idx], idx);
2360 cmd_config_rss_hash_key_parsed(void *parsed_result,
2361 __rte_unused struct cmdline *cl,
2362 __rte_unused void *data)
2364 struct cmd_config_rss_hash_key *res = parsed_result;
2365 uint8_t hash_key[RSS_HASH_KEY_LENGTH];
2369 struct rte_eth_dev_info dev_info;
2370 uint8_t hash_key_size;
2374 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2378 if (dev_info.hash_key_size > 0 &&
2379 dev_info.hash_key_size <= sizeof(hash_key))
2380 hash_key_size = dev_info.hash_key_size;
2382 printf("dev_info did not provide a valid hash key size\n");
2385 /* Check the length of the RSS hash key */
2386 key_len = strlen(res->key);
2387 if (key_len != (hash_key_size * 2)) {
2388 printf("key length: %d invalid - key must be a string of %d"
2389 " hexa-decimal numbers\n",
2390 (int) key_len, hash_key_size * 2);
2393 /* Translate RSS hash key into binary representation */
2394 for (i = 0; i < hash_key_size; i++) {
2395 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
2398 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
2401 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
2403 port_rss_hash_key_update(res->port_id, res->rss_type, hash_key,
2407 cmdline_parse_token_string_t cmd_config_rss_hash_key_port =
2408 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port");
2409 cmdline_parse_token_string_t cmd_config_rss_hash_key_config =
2410 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config,
2412 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id =
2413 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id,
2415 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key =
2416 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key,
2417 rss_hash_key, "rss-hash-key");
2418 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
2419 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type,
2420 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
2421 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
2422 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
2423 "ipv6-tcp-ex#ipv6-udp-ex#"
2424 "l3-src-only#l3-dst-only#l4-src-only#l4-dst-only#"
2425 "l2-src-only#l2-dst-only#s-vlan#c-vlan#"
2426 "l2tpv3#esp#ah#pfcp#pppoe#gtpu#ecpri");
2427 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
2428 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
2430 cmdline_parse_inst_t cmd_config_rss_hash_key = {
2431 .f = cmd_config_rss_hash_key_parsed,
2433 .help_str = "port config <port_id> rss-hash-key "
2434 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
2435 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
2436 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex|"
2437 "l3-src-only|l3-dst-only|l4-src-only|l4-dst-only|"
2438 "l2-src-only|l2-dst-only|s-vlan|c-vlan|"
2439 "l2tpv3|esp|ah|pfcp|pppoe|gtpu|ecpri "
2440 "<string of hex digits (variable length, NIC dependent)>",
2442 (void *)&cmd_config_rss_hash_key_port,
2443 (void *)&cmd_config_rss_hash_key_config,
2444 (void *)&cmd_config_rss_hash_key_port_id,
2445 (void *)&cmd_config_rss_hash_key_rss_hash_key,
2446 (void *)&cmd_config_rss_hash_key_rss_type,
2447 (void *)&cmd_config_rss_hash_key_value,
2452 /* *** configure port rxq/txq ring size *** */
2453 struct cmd_config_rxtx_ring_size {
2454 cmdline_fixed_string_t port;
2455 cmdline_fixed_string_t config;
2457 cmdline_fixed_string_t rxtxq;
2459 cmdline_fixed_string_t rsize;
2464 cmd_config_rxtx_ring_size_parsed(void *parsed_result,
2465 __rte_unused struct cmdline *cl,
2466 __rte_unused void *data)
2468 struct cmd_config_rxtx_ring_size *res = parsed_result;
2469 struct rte_port *port;
2472 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2475 if (res->portid == (portid_t)RTE_PORT_ALL) {
2476 printf("Invalid port id\n");
2480 port = &ports[res->portid];
2482 if (!strcmp(res->rxtxq, "rxq"))
2484 else if (!strcmp(res->rxtxq, "txq"))
2487 printf("Unknown parameter\n");
2491 if (isrx && rx_queue_id_is_invalid(res->qid))
2493 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2496 if (isrx && res->size != 0 && res->size <= rx_free_thresh) {
2497 printf("Invalid rx ring_size, must > rx_free_thresh: %d\n",
2503 port->nb_rx_desc[res->qid] = res->size;
2505 port->nb_tx_desc[res->qid] = res->size;
2507 cmd_reconfig_device_queue(res->portid, 0, 1);
2510 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_port =
2511 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2513 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_config =
2514 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2516 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_portid =
2517 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2518 portid, RTE_UINT16);
2519 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rxtxq =
2520 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2522 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_qid =
2523 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2525 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rsize =
2526 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size,
2527 rsize, "ring_size");
2528 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_size =
2529 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size,
2532 cmdline_parse_inst_t cmd_config_rxtx_ring_size = {
2533 .f = cmd_config_rxtx_ring_size_parsed,
2535 .help_str = "port config <port_id> rxq|txq <queue_id> ring_size <value>",
2537 (void *)&cmd_config_rxtx_ring_size_port,
2538 (void *)&cmd_config_rxtx_ring_size_config,
2539 (void *)&cmd_config_rxtx_ring_size_portid,
2540 (void *)&cmd_config_rxtx_ring_size_rxtxq,
2541 (void *)&cmd_config_rxtx_ring_size_qid,
2542 (void *)&cmd_config_rxtx_ring_size_rsize,
2543 (void *)&cmd_config_rxtx_ring_size_size,
2548 /* *** configure port rxq/txq start/stop *** */
2549 struct cmd_config_rxtx_queue {
2550 cmdline_fixed_string_t port;
2552 cmdline_fixed_string_t rxtxq;
2554 cmdline_fixed_string_t opname;
2558 cmd_config_rxtx_queue_parsed(void *parsed_result,
2559 __rte_unused struct cmdline *cl,
2560 __rte_unused void *data)
2562 struct cmd_config_rxtx_queue *res = parsed_result;
2567 if (test_done == 0) {
2568 printf("Please stop forwarding first\n");
2572 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2575 if (port_is_started(res->portid) != 1) {
2576 printf("Please start port %u first\n", res->portid);
2580 if (!strcmp(res->rxtxq, "rxq"))
2582 else if (!strcmp(res->rxtxq, "txq"))
2585 printf("Unknown parameter\n");
2589 if (isrx && rx_queue_id_is_invalid(res->qid))
2591 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2594 if (!strcmp(res->opname, "start"))
2596 else if (!strcmp(res->opname, "stop"))
2599 printf("Unknown parameter\n");
2603 if (isstart && isrx)
2604 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid);
2605 else if (!isstart && isrx)
2606 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid);
2607 else if (isstart && !isrx)
2608 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid);
2610 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid);
2612 if (ret == -ENOTSUP)
2613 printf("Function not supported in PMD driver\n");
2616 cmdline_parse_token_string_t cmd_config_rxtx_queue_port =
2617 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port");
2618 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid =
2619 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, RTE_UINT16);
2620 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq =
2621 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq");
2622 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid =
2623 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, RTE_UINT16);
2624 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname =
2625 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname,
2628 cmdline_parse_inst_t cmd_config_rxtx_queue = {
2629 .f = cmd_config_rxtx_queue_parsed,
2631 .help_str = "port <port_id> rxq|txq <queue_id> start|stop",
2633 (void *)&cmd_config_rxtx_queue_port,
2634 (void *)&cmd_config_rxtx_queue_portid,
2635 (void *)&cmd_config_rxtx_queue_rxtxq,
2636 (void *)&cmd_config_rxtx_queue_qid,
2637 (void *)&cmd_config_rxtx_queue_opname,
2642 /* *** configure port rxq/txq deferred start on/off *** */
2643 struct cmd_config_deferred_start_rxtx_queue {
2644 cmdline_fixed_string_t port;
2646 cmdline_fixed_string_t rxtxq;
2648 cmdline_fixed_string_t opname;
2649 cmdline_fixed_string_t state;
2653 cmd_config_deferred_start_rxtx_queue_parsed(void *parsed_result,
2654 __rte_unused struct cmdline *cl,
2655 __rte_unused void *data)
2657 struct cmd_config_deferred_start_rxtx_queue *res = parsed_result;
2658 struct rte_port *port;
2661 uint8_t needreconfig = 0;
2663 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
2666 if (port_is_started(res->port_id) != 0) {
2667 printf("Please stop port %u first\n", res->port_id);
2671 port = &ports[res->port_id];
2673 isrx = !strcmp(res->rxtxq, "rxq");
2675 if (isrx && rx_queue_id_is_invalid(res->qid))
2677 else if (!isrx && tx_queue_id_is_invalid(res->qid))
2680 ison = !strcmp(res->state, "on");
2682 if (isrx && port->rx_conf[res->qid].rx_deferred_start != ison) {
2683 port->rx_conf[res->qid].rx_deferred_start = ison;
2685 } else if (!isrx && port->tx_conf[res->qid].tx_deferred_start != ison) {
2686 port->tx_conf[res->qid].tx_deferred_start = ison;
2691 cmd_reconfig_device_queue(res->port_id, 0, 1);
2694 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_port =
2695 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2697 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_port_id =
2698 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2699 port_id, RTE_UINT16);
2700 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_rxtxq =
2701 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2703 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_qid =
2704 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2706 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_opname =
2707 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2708 opname, "deferred_start");
2709 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_state =
2710 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue,
2713 cmdline_parse_inst_t cmd_config_deferred_start_rxtx_queue = {
2714 .f = cmd_config_deferred_start_rxtx_queue_parsed,
2716 .help_str = "port <port_id> rxq|txq <queue_id> deferred_start on|off",
2718 (void *)&cmd_config_deferred_start_rxtx_queue_port,
2719 (void *)&cmd_config_deferred_start_rxtx_queue_port_id,
2720 (void *)&cmd_config_deferred_start_rxtx_queue_rxtxq,
2721 (void *)&cmd_config_deferred_start_rxtx_queue_qid,
2722 (void *)&cmd_config_deferred_start_rxtx_queue_opname,
2723 (void *)&cmd_config_deferred_start_rxtx_queue_state,
2728 /* *** configure port rxq/txq setup *** */
2729 struct cmd_setup_rxtx_queue {
2730 cmdline_fixed_string_t port;
2732 cmdline_fixed_string_t rxtxq;
2734 cmdline_fixed_string_t setup;
2737 /* Common CLI fields for queue setup */
2738 cmdline_parse_token_string_t cmd_setup_rxtx_queue_port =
2739 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, port, "port");
2740 cmdline_parse_token_num_t cmd_setup_rxtx_queue_portid =
2741 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, portid, RTE_UINT16);
2742 cmdline_parse_token_string_t cmd_setup_rxtx_queue_rxtxq =
2743 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, rxtxq, "rxq#txq");
2744 cmdline_parse_token_num_t cmd_setup_rxtx_queue_qid =
2745 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, qid, RTE_UINT16);
2746 cmdline_parse_token_string_t cmd_setup_rxtx_queue_setup =
2747 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, setup, "setup");
2750 cmd_setup_rxtx_queue_parsed(
2751 void *parsed_result,
2752 __rte_unused struct cmdline *cl,
2753 __rte_unused void *data)
2755 struct cmd_setup_rxtx_queue *res = parsed_result;
2756 struct rte_port *port;
2757 struct rte_mempool *mp;
2758 unsigned int socket_id;
2762 if (port_id_is_invalid(res->portid, ENABLED_WARN))
2765 if (res->portid == (portid_t)RTE_PORT_ALL) {
2766 printf("Invalid port id\n");
2770 if (!strcmp(res->rxtxq, "rxq"))
2772 else if (!strcmp(res->rxtxq, "txq"))
2775 printf("Unknown parameter\n");
2779 if (isrx && rx_queue_id_is_invalid(res->qid)) {
2780 printf("Invalid rx queue\n");
2782 } else if (!isrx && tx_queue_id_is_invalid(res->qid)) {
2783 printf("Invalid tx queue\n");
2787 port = &ports[res->portid];
2789 socket_id = rxring_numa[res->portid];
2790 if (!numa_support || socket_id == NUMA_NO_CONFIG)
2791 socket_id = port->socket_id;
2793 mp = mbuf_pool_find(socket_id, 0);
2795 printf("Failed to setup RX queue: "
2796 "No mempool allocation"
2797 " on the socket %d\n",
2798 rxring_numa[res->portid]);
2801 ret = rx_queue_setup(res->portid,
2803 port->nb_rx_desc[res->qid],
2805 &port->rx_conf[res->qid],
2808 printf("Failed to setup RX queue\n");
2810 socket_id = txring_numa[res->portid];
2811 if (!numa_support || socket_id == NUMA_NO_CONFIG)
2812 socket_id = port->socket_id;
2814 ret = rte_eth_tx_queue_setup(res->portid,
2816 port->nb_tx_desc[res->qid],
2818 &port->tx_conf[res->qid]);
2820 printf("Failed to setup TX queue\n");
2824 cmdline_parse_inst_t cmd_setup_rxtx_queue = {
2825 .f = cmd_setup_rxtx_queue_parsed,
2827 .help_str = "port <port_id> rxq|txq <queue_idx> setup",
2829 (void *)&cmd_setup_rxtx_queue_port,
2830 (void *)&cmd_setup_rxtx_queue_portid,
2831 (void *)&cmd_setup_rxtx_queue_rxtxq,
2832 (void *)&cmd_setup_rxtx_queue_qid,
2833 (void *)&cmd_setup_rxtx_queue_setup,
2839 /* *** Configure RSS RETA *** */
2840 struct cmd_config_rss_reta {
2841 cmdline_fixed_string_t port;
2842 cmdline_fixed_string_t keyword;
2844 cmdline_fixed_string_t name;
2845 cmdline_fixed_string_t list_name;
2846 cmdline_fixed_string_t list_of_items;
2850 parse_reta_config(const char *str,
2851 struct rte_eth_rss_reta_entry64 *reta_conf,
2852 uint16_t nb_entries)
2856 uint16_t hash_index, idx, shift;
2859 const char *p, *p0 = str;
2866 unsigned long int_fld[_NUM_FLD];
2867 char *str_fld[_NUM_FLD];
2869 while ((p = strchr(p0,'(')) != NULL) {
2871 if((p0 = strchr(p,')')) == NULL)
2875 if(size >= sizeof(s))
2878 snprintf(s, sizeof(s), "%.*s", size, p);
2879 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
2881 for (i = 0; i < _NUM_FLD; i++) {
2883 int_fld[i] = strtoul(str_fld[i], &end, 0);
2884 if (errno != 0 || end == str_fld[i] ||
2889 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX];
2890 nb_queue = (uint16_t)int_fld[FLD_QUEUE];
2892 if (hash_index >= nb_entries) {
2893 printf("Invalid RETA hash index=%d\n", hash_index);
2897 idx = hash_index / RTE_RETA_GROUP_SIZE;
2898 shift = hash_index % RTE_RETA_GROUP_SIZE;
2899 reta_conf[idx].mask |= (1ULL << shift);
2900 reta_conf[idx].reta[shift] = nb_queue;
2907 cmd_set_rss_reta_parsed(void *parsed_result,
2908 __rte_unused struct cmdline *cl,
2909 __rte_unused void *data)
2912 struct rte_eth_dev_info dev_info;
2913 struct rte_eth_rss_reta_entry64 reta_conf[8];
2914 struct cmd_config_rss_reta *res = parsed_result;
2916 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
2920 if (dev_info.reta_size == 0) {
2921 printf("Redirection table size is 0 which is "
2922 "invalid for RSS\n");
2925 printf("The reta size of port %d is %u\n",
2926 res->port_id, dev_info.reta_size);
2927 if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) {
2928 printf("Currently do not support more than %u entries of "
2929 "redirection table\n", ETH_RSS_RETA_SIZE_512);
2933 memset(reta_conf, 0, sizeof(reta_conf));
2934 if (!strcmp(res->list_name, "reta")) {
2935 if (parse_reta_config(res->list_of_items, reta_conf,
2936 dev_info.reta_size)) {
2937 printf("Invalid RSS Redirection Table "
2938 "config entered\n");
2941 ret = rte_eth_dev_rss_reta_update(res->port_id,
2942 reta_conf, dev_info.reta_size);
2944 printf("Bad redirection table parameter, "
2945 "return code = %d \n", ret);
2949 cmdline_parse_token_string_t cmd_config_rss_reta_port =
2950 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port");
2951 cmdline_parse_token_string_t cmd_config_rss_reta_keyword =
2952 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config");
2953 cmdline_parse_token_num_t cmd_config_rss_reta_port_id =
2954 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, RTE_UINT16);
2955 cmdline_parse_token_string_t cmd_config_rss_reta_name =
2956 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss");
2957 cmdline_parse_token_string_t cmd_config_rss_reta_list_name =
2958 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta");
2959 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items =
2960 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items,
2962 cmdline_parse_inst_t cmd_config_rss_reta = {
2963 .f = cmd_set_rss_reta_parsed,
2965 .help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>",
2967 (void *)&cmd_config_rss_reta_port,
2968 (void *)&cmd_config_rss_reta_keyword,
2969 (void *)&cmd_config_rss_reta_port_id,
2970 (void *)&cmd_config_rss_reta_name,
2971 (void *)&cmd_config_rss_reta_list_name,
2972 (void *)&cmd_config_rss_reta_list_of_items,
2977 /* *** SHOW PORT RETA INFO *** */
2978 struct cmd_showport_reta {
2979 cmdline_fixed_string_t show;
2980 cmdline_fixed_string_t port;
2982 cmdline_fixed_string_t rss;
2983 cmdline_fixed_string_t reta;
2985 cmdline_fixed_string_t list_of_items;
2989 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf,
2990 uint16_t nb_entries,
2994 const char *p, *p0 = str;
2999 uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) /
3000 RTE_RETA_GROUP_SIZE;
3003 p = strchr(p0, '(');
3007 p0 = strchr(p, ')');
3011 if (size >= sizeof(s)) {
3012 printf("The string size exceeds the internal buffer size\n");
3015 snprintf(s, sizeof(s), "%.*s", size, p);
3016 ret = rte_strsplit(s, sizeof(s), str_fld, num, ',');
3017 if (ret <= 0 || ret != num) {
3018 printf("The bits of masks do not match the number of "
3019 "reta entries: %u\n", num);
3022 for (i = 0; i < ret; i++)
3023 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0);
3029 cmd_showport_reta_parsed(void *parsed_result,
3030 __rte_unused struct cmdline *cl,
3031 __rte_unused void *data)
3033 struct cmd_showport_reta *res = parsed_result;
3034 struct rte_eth_rss_reta_entry64 reta_conf[8];
3035 struct rte_eth_dev_info dev_info;
3036 uint16_t max_reta_size;
3039 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
3043 max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512);
3044 if (res->size == 0 || res->size > max_reta_size) {
3045 printf("Invalid redirection table size: %u (1-%u)\n",
3046 res->size, max_reta_size);
3050 memset(reta_conf, 0, sizeof(reta_conf));
3051 if (showport_parse_reta_config(reta_conf, res->size,
3052 res->list_of_items) < 0) {
3053 printf("Invalid string: %s for reta masks\n",
3054 res->list_of_items);
3057 port_rss_reta_info(res->port_id, reta_conf, res->size);
3060 cmdline_parse_token_string_t cmd_showport_reta_show =
3061 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, show, "show");
3062 cmdline_parse_token_string_t cmd_showport_reta_port =
3063 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, port, "port");
3064 cmdline_parse_token_num_t cmd_showport_reta_port_id =
3065 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, RTE_UINT16);
3066 cmdline_parse_token_string_t cmd_showport_reta_rss =
3067 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss");
3068 cmdline_parse_token_string_t cmd_showport_reta_reta =
3069 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta");
3070 cmdline_parse_token_num_t cmd_showport_reta_size =
3071 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, RTE_UINT16);
3072 cmdline_parse_token_string_t cmd_showport_reta_list_of_items =
3073 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta,
3074 list_of_items, NULL);
3076 cmdline_parse_inst_t cmd_showport_reta = {
3077 .f = cmd_showport_reta_parsed,
3079 .help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>",
3081 (void *)&cmd_showport_reta_show,
3082 (void *)&cmd_showport_reta_port,
3083 (void *)&cmd_showport_reta_port_id,
3084 (void *)&cmd_showport_reta_rss,
3085 (void *)&cmd_showport_reta_reta,
3086 (void *)&cmd_showport_reta_size,
3087 (void *)&cmd_showport_reta_list_of_items,
3092 /* *** Show RSS hash configuration *** */
3093 struct cmd_showport_rss_hash {
3094 cmdline_fixed_string_t show;
3095 cmdline_fixed_string_t port;
3097 cmdline_fixed_string_t rss_hash;
3098 cmdline_fixed_string_t rss_type;
3099 cmdline_fixed_string_t key; /* optional argument */
3102 static void cmd_showport_rss_hash_parsed(void *parsed_result,
3103 __rte_unused struct cmdline *cl,
3106 struct cmd_showport_rss_hash *res = parsed_result;
3108 port_rss_hash_conf_show(res->port_id, show_rss_key != NULL);
3111 cmdline_parse_token_string_t cmd_showport_rss_hash_show =
3112 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show");
3113 cmdline_parse_token_string_t cmd_showport_rss_hash_port =
3114 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port");
3115 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id =
3116 TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id,
3118 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash =
3119 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash,
3121 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key =
3122 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key");
3124 cmdline_parse_inst_t cmd_showport_rss_hash = {
3125 .f = cmd_showport_rss_hash_parsed,
3127 .help_str = "show port <port_id> rss-hash",
3129 (void *)&cmd_showport_rss_hash_show,
3130 (void *)&cmd_showport_rss_hash_port,
3131 (void *)&cmd_showport_rss_hash_port_id,
3132 (void *)&cmd_showport_rss_hash_rss_hash,
3137 cmdline_parse_inst_t cmd_showport_rss_hash_key = {
3138 .f = cmd_showport_rss_hash_parsed,
3140 .help_str = "show port <port_id> rss-hash key",
3142 (void *)&cmd_showport_rss_hash_show,
3143 (void *)&cmd_showport_rss_hash_port,
3144 (void *)&cmd_showport_rss_hash_port_id,
3145 (void *)&cmd_showport_rss_hash_rss_hash,
3146 (void *)&cmd_showport_rss_hash_rss_key,
3151 /* *** Configure DCB *** */
3152 struct cmd_config_dcb {
3153 cmdline_fixed_string_t port;
3154 cmdline_fixed_string_t config;
3156 cmdline_fixed_string_t dcb;
3157 cmdline_fixed_string_t vt;
3158 cmdline_fixed_string_t vt_en;
3160 cmdline_fixed_string_t pfc;
3161 cmdline_fixed_string_t pfc_en;
3165 cmd_config_dcb_parsed(void *parsed_result,
3166 __rte_unused struct cmdline *cl,
3167 __rte_unused void *data)
3169 struct cmd_config_dcb *res = parsed_result;
3170 portid_t port_id = res->port_id;
3171 struct rte_port *port;
3175 port = &ports[port_id];
3176 /** Check if the port is not started **/
3177 if (port->port_status != RTE_PORT_STOPPED) {
3178 printf("Please stop port %d first\n", port_id);
3182 if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) {
3183 printf("The invalid number of traffic class,"
3184 " only 4 or 8 allowed.\n");
3188 if (nb_fwd_lcores < res->num_tcs) {
3189 printf("nb_cores shouldn't be less than number of TCs.\n");
3192 if (!strncmp(res->pfc_en, "on", 2))
3197 /* DCB in VT mode */
3198 if (!strncmp(res->vt_en, "on", 2))
3199 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED,
3200 (enum rte_eth_nb_tcs)res->num_tcs,
3203 ret = init_port_dcb_config(port_id, DCB_ENABLED,
3204 (enum rte_eth_nb_tcs)res->num_tcs,
3209 printf("Cannot initialize network ports.\n");
3213 cmd_reconfig_device_queue(port_id, 1, 1);
3216 cmdline_parse_token_string_t cmd_config_dcb_port =
3217 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port");
3218 cmdline_parse_token_string_t cmd_config_dcb_config =
3219 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config");
3220 cmdline_parse_token_num_t cmd_config_dcb_port_id =
3221 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, RTE_UINT16);
3222 cmdline_parse_token_string_t cmd_config_dcb_dcb =
3223 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb");
3224 cmdline_parse_token_string_t cmd_config_dcb_vt =
3225 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt");
3226 cmdline_parse_token_string_t cmd_config_dcb_vt_en =
3227 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off");
3228 cmdline_parse_token_num_t cmd_config_dcb_num_tcs =
3229 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, RTE_UINT8);
3230 cmdline_parse_token_string_t cmd_config_dcb_pfc=
3231 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc");
3232 cmdline_parse_token_string_t cmd_config_dcb_pfc_en =
3233 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off");
3235 cmdline_parse_inst_t cmd_config_dcb = {
3236 .f = cmd_config_dcb_parsed,
3238 .help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off",
3240 (void *)&cmd_config_dcb_port,
3241 (void *)&cmd_config_dcb_config,
3242 (void *)&cmd_config_dcb_port_id,
3243 (void *)&cmd_config_dcb_dcb,
3244 (void *)&cmd_config_dcb_vt,
3245 (void *)&cmd_config_dcb_vt_en,
3246 (void *)&cmd_config_dcb_num_tcs,
3247 (void *)&cmd_config_dcb_pfc,
3248 (void *)&cmd_config_dcb_pfc_en,
3253 /* *** configure number of packets per burst *** */
3254 struct cmd_config_burst {
3255 cmdline_fixed_string_t port;
3256 cmdline_fixed_string_t keyword;
3257 cmdline_fixed_string_t all;
3258 cmdline_fixed_string_t name;
3263 cmd_config_burst_parsed(void *parsed_result,
3264 __rte_unused struct cmdline *cl,
3265 __rte_unused void *data)
3267 struct cmd_config_burst *res = parsed_result;
3268 struct rte_eth_dev_info dev_info;
3269 uint16_t rec_nb_pkts;
3272 if (!all_ports_stopped()) {
3273 printf("Please stop all ports first\n");
3277 if (!strcmp(res->name, "burst")) {
3278 if (res->value == 0) {
3279 /* If user gives a value of zero, query the PMD for
3280 * its recommended Rx burst size. Testpmd uses a single
3281 * size for all ports, so assume all ports are the same
3282 * NIC model and use the values from Port 0.
3284 ret = eth_dev_info_get_print_err(0, &dev_info);
3288 rec_nb_pkts = dev_info.default_rxportconf.burst_size;
3290 if (rec_nb_pkts == 0) {
3291 printf("PMD does not recommend a burst size.\n"
3292 "User provided value must be between"
3293 " 1 and %d\n", MAX_PKT_BURST);
3295 } else if (rec_nb_pkts > MAX_PKT_BURST) {
3296 printf("PMD recommended burst size of %d"
3297 " exceeds maximum value of %d\n",
3298 rec_nb_pkts, MAX_PKT_BURST);
3301 printf("Using PMD-provided burst value of %d\n",
3303 nb_pkt_per_burst = rec_nb_pkts;
3304 } else if (res->value > MAX_PKT_BURST) {
3305 printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST);
3308 nb_pkt_per_burst = res->value;
3310 printf("Unknown parameter\n");
3316 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3319 cmdline_parse_token_string_t cmd_config_burst_port =
3320 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port");
3321 cmdline_parse_token_string_t cmd_config_burst_keyword =
3322 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config");
3323 cmdline_parse_token_string_t cmd_config_burst_all =
3324 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all");
3325 cmdline_parse_token_string_t cmd_config_burst_name =
3326 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst");
3327 cmdline_parse_token_num_t cmd_config_burst_value =
3328 TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, RTE_UINT16);
3330 cmdline_parse_inst_t cmd_config_burst = {
3331 .f = cmd_config_burst_parsed,
3333 .help_str = "port config all burst <value>",
3335 (void *)&cmd_config_burst_port,
3336 (void *)&cmd_config_burst_keyword,
3337 (void *)&cmd_config_burst_all,
3338 (void *)&cmd_config_burst_name,
3339 (void *)&cmd_config_burst_value,
3344 /* *** configure rx/tx queues *** */
3345 struct cmd_config_thresh {
3346 cmdline_fixed_string_t port;
3347 cmdline_fixed_string_t keyword;
3348 cmdline_fixed_string_t all;
3349 cmdline_fixed_string_t name;
3354 cmd_config_thresh_parsed(void *parsed_result,
3355 __rte_unused struct cmdline *cl,
3356 __rte_unused void *data)
3358 struct cmd_config_thresh *res = parsed_result;
3360 if (!all_ports_stopped()) {
3361 printf("Please stop all ports first\n");
3365 if (!strcmp(res->name, "txpt"))
3366 tx_pthresh = res->value;
3367 else if(!strcmp(res->name, "txht"))
3368 tx_hthresh = res->value;
3369 else if(!strcmp(res->name, "txwt"))
3370 tx_wthresh = res->value;
3371 else if(!strcmp(res->name, "rxpt"))
3372 rx_pthresh = res->value;
3373 else if(!strcmp(res->name, "rxht"))
3374 rx_hthresh = res->value;
3375 else if(!strcmp(res->name, "rxwt"))
3376 rx_wthresh = res->value;
3378 printf("Unknown parameter\n");
3384 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3387 cmdline_parse_token_string_t cmd_config_thresh_port =
3388 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port");
3389 cmdline_parse_token_string_t cmd_config_thresh_keyword =
3390 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config");
3391 cmdline_parse_token_string_t cmd_config_thresh_all =
3392 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all");
3393 cmdline_parse_token_string_t cmd_config_thresh_name =
3394 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name,
3395 "txpt#txht#txwt#rxpt#rxht#rxwt");
3396 cmdline_parse_token_num_t cmd_config_thresh_value =
3397 TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, RTE_UINT8);
3399 cmdline_parse_inst_t cmd_config_thresh = {
3400 .f = cmd_config_thresh_parsed,
3402 .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>",
3404 (void *)&cmd_config_thresh_port,
3405 (void *)&cmd_config_thresh_keyword,
3406 (void *)&cmd_config_thresh_all,
3407 (void *)&cmd_config_thresh_name,
3408 (void *)&cmd_config_thresh_value,
3413 /* *** configure free/rs threshold *** */
3414 struct cmd_config_threshold {
3415 cmdline_fixed_string_t port;
3416 cmdline_fixed_string_t keyword;
3417 cmdline_fixed_string_t all;
3418 cmdline_fixed_string_t name;
3423 cmd_config_threshold_parsed(void *parsed_result,
3424 __rte_unused struct cmdline *cl,
3425 __rte_unused void *data)
3427 struct cmd_config_threshold *res = parsed_result;
3429 if (!all_ports_stopped()) {
3430 printf("Please stop all ports first\n");
3434 if (!strcmp(res->name, "txfreet"))
3435 tx_free_thresh = res->value;
3436 else if (!strcmp(res->name, "txrst"))
3437 tx_rs_thresh = res->value;
3438 else if (!strcmp(res->name, "rxfreet"))
3439 rx_free_thresh = res->value;
3441 printf("Unknown parameter\n");
3447 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
3450 cmdline_parse_token_string_t cmd_config_threshold_port =
3451 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port");
3452 cmdline_parse_token_string_t cmd_config_threshold_keyword =
3453 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword,
3455 cmdline_parse_token_string_t cmd_config_threshold_all =
3456 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all");
3457 cmdline_parse_token_string_t cmd_config_threshold_name =
3458 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name,
3459 "txfreet#txrst#rxfreet");
3460 cmdline_parse_token_num_t cmd_config_threshold_value =
3461 TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, RTE_UINT16);
3463 cmdline_parse_inst_t cmd_config_threshold = {
3464 .f = cmd_config_threshold_parsed,
3466 .help_str = "port config all txfreet|txrst|rxfreet <value>",
3468 (void *)&cmd_config_threshold_port,
3469 (void *)&cmd_config_threshold_keyword,
3470 (void *)&cmd_config_threshold_all,
3471 (void *)&cmd_config_threshold_name,
3472 (void *)&cmd_config_threshold_value,
3478 struct cmd_stop_result {
3479 cmdline_fixed_string_t stop;
3482 static void cmd_stop_parsed(__rte_unused void *parsed_result,
3483 __rte_unused struct cmdline *cl,
3484 __rte_unused void *data)
3486 stop_packet_forwarding();
3489 cmdline_parse_token_string_t cmd_stop_stop =
3490 TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop");
3492 cmdline_parse_inst_t cmd_stop = {
3493 .f = cmd_stop_parsed,
3495 .help_str = "stop: Stop packet forwarding",
3497 (void *)&cmd_stop_stop,
3502 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */
3505 parse_item_list(char* str, const char* item_name, unsigned int max_items,
3506 unsigned int *parsed_items, int check_unique_values)
3508 unsigned int nb_item;
3516 * First parse all items in the list and store their value.
3521 for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) {
3523 if ((c >= '0') && (c <= '9')) {
3524 value = (unsigned int) (value * 10 + (c - '0'));
3529 printf("character %c is not a decimal digit\n", c);
3533 printf("No valid value before comma\n");
3536 if (nb_item < max_items) {
3537 parsed_items[nb_item] = value;
3543 if (nb_item >= max_items) {
3544 printf("Number of %s = %u > %u (maximum items)\n",
3545 item_name, nb_item + 1, max_items);
3548 parsed_items[nb_item++] = value;
3549 if (! check_unique_values)
3553 * Then, check that all values in the list are differents.
3554 * No optimization here...
3556 for (i = 0; i < nb_item; i++) {
3557 for (j = i + 1; j < nb_item; j++) {
3558 if (parsed_items[j] == parsed_items[i]) {
3559 printf("duplicated %s %u at index %u and %u\n",
3560 item_name, parsed_items[i], i, j);
3568 struct cmd_set_list_result {
3569 cmdline_fixed_string_t cmd_keyword;
3570 cmdline_fixed_string_t list_name;
3571 cmdline_fixed_string_t list_of_items;
3574 static void cmd_set_list_parsed(void *parsed_result,
3575 __rte_unused struct cmdline *cl,
3576 __rte_unused void *data)
3578 struct cmd_set_list_result *res;
3580 unsigned int lcorelist[RTE_MAX_LCORE];
3581 unsigned int portlist[RTE_MAX_ETHPORTS];
3583 unsigned int nb_item;
3585 if (test_done == 0) {
3586 printf("Please stop forwarding first\n");
3590 res = parsed_result;
3591 if (!strcmp(res->list_name, "corelist")) {
3592 nb_item = parse_item_list(res->list_of_items, "core",
3594 parsed_items.lcorelist, 1);
3596 set_fwd_lcores_list(parsed_items.lcorelist, nb_item);
3601 if (!strcmp(res->list_name, "portlist")) {
3602 nb_item = parse_item_list(res->list_of_items, "port",
3604 parsed_items.portlist, 1);
3606 set_fwd_ports_list(parsed_items.portlist, nb_item);
3612 cmdline_parse_token_string_t cmd_set_list_keyword =
3613 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword,
3615 cmdline_parse_token_string_t cmd_set_list_name =
3616 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name,
3617 "corelist#portlist");
3618 cmdline_parse_token_string_t cmd_set_list_of_items =
3619 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items,
3622 cmdline_parse_inst_t cmd_set_fwd_list = {
3623 .f = cmd_set_list_parsed,
3625 .help_str = "set corelist|portlist <list0[,list1]*>",
3627 (void *)&cmd_set_list_keyword,
3628 (void *)&cmd_set_list_name,
3629 (void *)&cmd_set_list_of_items,
3634 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */
3636 struct cmd_setmask_result {
3637 cmdline_fixed_string_t set;
3638 cmdline_fixed_string_t mask;
3642 static void cmd_set_mask_parsed(void *parsed_result,
3643 __rte_unused struct cmdline *cl,
3644 __rte_unused void *data)
3646 struct cmd_setmask_result *res = parsed_result;
3648 if (test_done == 0) {
3649 printf("Please stop forwarding first\n");
3652 if (!strcmp(res->mask, "coremask")) {
3653 set_fwd_lcores_mask(res->hexavalue);
3655 } else if (!strcmp(res->mask, "portmask")) {
3656 set_fwd_ports_mask(res->hexavalue);
3661 cmdline_parse_token_string_t cmd_setmask_set =
3662 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set");
3663 cmdline_parse_token_string_t cmd_setmask_mask =
3664 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask,
3665 "coremask#portmask");
3666 cmdline_parse_token_num_t cmd_setmask_value =
3667 TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, RTE_UINT64);
3669 cmdline_parse_inst_t cmd_set_fwd_mask = {
3670 .f = cmd_set_mask_parsed,
3672 .help_str = "set coremask|portmask <hexadecimal value>",
3674 (void *)&cmd_setmask_set,
3675 (void *)&cmd_setmask_mask,
3676 (void *)&cmd_setmask_value,
3682 * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION
3684 struct cmd_set_result {
3685 cmdline_fixed_string_t set;
3686 cmdline_fixed_string_t what;
3690 static void cmd_set_parsed(void *parsed_result,
3691 __rte_unused struct cmdline *cl,
3692 __rte_unused void *data)
3694 struct cmd_set_result *res = parsed_result;
3695 if (!strcmp(res->what, "nbport")) {
3696 set_fwd_ports_number(res->value);
3698 } else if (!strcmp(res->what, "nbcore")) {
3699 set_fwd_lcores_number(res->value);
3701 } else if (!strcmp(res->what, "burst"))
3702 set_nb_pkt_per_burst(res->value);
3703 else if (!strcmp(res->what, "verbose"))
3704 set_verbose_level(res->value);
3707 cmdline_parse_token_string_t cmd_set_set =
3708 TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set");
3709 cmdline_parse_token_string_t cmd_set_what =
3710 TOKEN_STRING_INITIALIZER(struct cmd_set_result, what,
3711 "nbport#nbcore#burst#verbose");
3712 cmdline_parse_token_num_t cmd_set_value =
3713 TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, RTE_UINT16);
3715 cmdline_parse_inst_t cmd_set_numbers = {
3716 .f = cmd_set_parsed,
3718 .help_str = "set nbport|nbcore|burst|verbose <value>",
3720 (void *)&cmd_set_set,
3721 (void *)&cmd_set_what,
3722 (void *)&cmd_set_value,
3727 /* *** SET LOG LEVEL CONFIGURATION *** */
3729 struct cmd_set_log_result {
3730 cmdline_fixed_string_t set;
3731 cmdline_fixed_string_t log;
3732 cmdline_fixed_string_t type;
3737 cmd_set_log_parsed(void *parsed_result,
3738 __rte_unused struct cmdline *cl,
3739 __rte_unused void *data)
3741 struct cmd_set_log_result *res;
3744 res = parsed_result;
3745 if (!strcmp(res->type, "global"))
3746 rte_log_set_global_level(res->level);
3748 ret = rte_log_set_level_regexp(res->type, res->level);
3750 printf("Unable to set log level\n");
3754 cmdline_parse_token_string_t cmd_set_log_set =
3755 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, set, "set");
3756 cmdline_parse_token_string_t cmd_set_log_log =
3757 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, log, "log");
3758 cmdline_parse_token_string_t cmd_set_log_type =
3759 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, type, NULL);
3760 cmdline_parse_token_num_t cmd_set_log_level =
3761 TOKEN_NUM_INITIALIZER(struct cmd_set_log_result, level, RTE_UINT32);
3763 cmdline_parse_inst_t cmd_set_log = {
3764 .f = cmd_set_log_parsed,
3766 .help_str = "set log global|<type> <level>",
3768 (void *)&cmd_set_log_set,
3769 (void *)&cmd_set_log_log,
3770 (void *)&cmd_set_log_type,
3771 (void *)&cmd_set_log_level,
3776 /* *** SET SEGMENT OFFSETS OF RX PACKETS SPLIT *** */
3778 struct cmd_set_rxoffs_result {
3779 cmdline_fixed_string_t cmd_keyword;
3780 cmdline_fixed_string_t rxoffs;
3781 cmdline_fixed_string_t seg_offsets;
3785 cmd_set_rxoffs_parsed(void *parsed_result,
3786 __rte_unused struct cmdline *cl,
3787 __rte_unused void *data)
3789 struct cmd_set_rxoffs_result *res;
3790 unsigned int seg_offsets[MAX_SEGS_BUFFER_SPLIT];
3791 unsigned int nb_segs;
3793 res = parsed_result;
3794 nb_segs = parse_item_list(res->seg_offsets, "segment offsets",
3795 MAX_SEGS_BUFFER_SPLIT, seg_offsets, 0);
3797 set_rx_pkt_offsets(seg_offsets, nb_segs);
3798 cmd_reconfig_device_queue(RTE_PORT_ALL, 0, 1);
3801 cmdline_parse_token_string_t cmd_set_rxoffs_keyword =
3802 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3803 cmd_keyword, "set");
3804 cmdline_parse_token_string_t cmd_set_rxoffs_name =
3805 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3807 cmdline_parse_token_string_t cmd_set_rxoffs_offsets =
3808 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result,
3811 cmdline_parse_inst_t cmd_set_rxoffs = {
3812 .f = cmd_set_rxoffs_parsed,
3814 .help_str = "set rxoffs <len0[,len1]*>",
3816 (void *)&cmd_set_rxoffs_keyword,
3817 (void *)&cmd_set_rxoffs_name,
3818 (void *)&cmd_set_rxoffs_offsets,
3823 /* *** SET SEGMENT LENGTHS OF RX PACKETS SPLIT *** */
3825 struct cmd_set_rxpkts_result {
3826 cmdline_fixed_string_t cmd_keyword;
3827 cmdline_fixed_string_t rxpkts;
3828 cmdline_fixed_string_t seg_lengths;
3832 cmd_set_rxpkts_parsed(void *parsed_result,
3833 __rte_unused struct cmdline *cl,
3834 __rte_unused void *data)
3836 struct cmd_set_rxpkts_result *res;
3837 unsigned int seg_lengths[MAX_SEGS_BUFFER_SPLIT];
3838 unsigned int nb_segs;
3840 res = parsed_result;
3841 nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
3842 MAX_SEGS_BUFFER_SPLIT, seg_lengths, 0);
3844 set_rx_pkt_segments(seg_lengths, nb_segs);
3845 cmd_reconfig_device_queue(RTE_PORT_ALL, 0, 1);
3848 cmdline_parse_token_string_t cmd_set_rxpkts_keyword =
3849 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3850 cmd_keyword, "set");
3851 cmdline_parse_token_string_t cmd_set_rxpkts_name =
3852 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3854 cmdline_parse_token_string_t cmd_set_rxpkts_lengths =
3855 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result,
3858 cmdline_parse_inst_t cmd_set_rxpkts = {
3859 .f = cmd_set_rxpkts_parsed,
3861 .help_str = "set rxpkts <len0[,len1]*>",
3863 (void *)&cmd_set_rxpkts_keyword,
3864 (void *)&cmd_set_rxpkts_name,
3865 (void *)&cmd_set_rxpkts_lengths,
3870 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */
3872 struct cmd_set_txpkts_result {
3873 cmdline_fixed_string_t cmd_keyword;
3874 cmdline_fixed_string_t txpkts;
3875 cmdline_fixed_string_t seg_lengths;
3879 cmd_set_txpkts_parsed(void *parsed_result,
3880 __rte_unused struct cmdline *cl,
3881 __rte_unused void *data)
3883 struct cmd_set_txpkts_result *res;
3884 unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT];
3885 unsigned int nb_segs;
3887 res = parsed_result;
3888 nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
3889 RTE_MAX_SEGS_PER_PKT, seg_lengths, 0);
3891 set_tx_pkt_segments(seg_lengths, nb_segs);
3894 cmdline_parse_token_string_t cmd_set_txpkts_keyword =
3895 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3896 cmd_keyword, "set");
3897 cmdline_parse_token_string_t cmd_set_txpkts_name =
3898 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3900 cmdline_parse_token_string_t cmd_set_txpkts_lengths =
3901 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
3904 cmdline_parse_inst_t cmd_set_txpkts = {
3905 .f = cmd_set_txpkts_parsed,
3907 .help_str = "set txpkts <len0[,len1]*>",
3909 (void *)&cmd_set_txpkts_keyword,
3910 (void *)&cmd_set_txpkts_name,
3911 (void *)&cmd_set_txpkts_lengths,
3916 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */
3918 struct cmd_set_txsplit_result {
3919 cmdline_fixed_string_t cmd_keyword;
3920 cmdline_fixed_string_t txsplit;
3921 cmdline_fixed_string_t mode;
3925 cmd_set_txsplit_parsed(void *parsed_result,
3926 __rte_unused struct cmdline *cl,
3927 __rte_unused void *data)
3929 struct cmd_set_txsplit_result *res;
3931 res = parsed_result;
3932 set_tx_pkt_split(res->mode);
3935 cmdline_parse_token_string_t cmd_set_txsplit_keyword =
3936 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3937 cmd_keyword, "set");
3938 cmdline_parse_token_string_t cmd_set_txsplit_name =
3939 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3940 txsplit, "txsplit");
3941 cmdline_parse_token_string_t cmd_set_txsplit_mode =
3942 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
3945 cmdline_parse_inst_t cmd_set_txsplit = {
3946 .f = cmd_set_txsplit_parsed,
3948 .help_str = "set txsplit on|off|rand",
3950 (void *)&cmd_set_txsplit_keyword,
3951 (void *)&cmd_set_txsplit_name,
3952 (void *)&cmd_set_txsplit_mode,
3957 /* *** SET TIMES FOR TXONLY PACKETS SCHEDULING ON TIMESTAMPS *** */
3959 struct cmd_set_txtimes_result {
3960 cmdline_fixed_string_t cmd_keyword;
3961 cmdline_fixed_string_t txtimes;
3962 cmdline_fixed_string_t tx_times;
3966 cmd_set_txtimes_parsed(void *parsed_result,
3967 __rte_unused struct cmdline *cl,
3968 __rte_unused void *data)
3970 struct cmd_set_txtimes_result *res;
3971 unsigned int tx_times[2] = {0, 0};
3972 unsigned int n_times;
3974 res = parsed_result;
3975 n_times = parse_item_list(res->tx_times, "tx times",
3978 set_tx_pkt_times(tx_times);
3981 cmdline_parse_token_string_t cmd_set_txtimes_keyword =
3982 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3983 cmd_keyword, "set");
3984 cmdline_parse_token_string_t cmd_set_txtimes_name =
3985 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3986 txtimes, "txtimes");
3987 cmdline_parse_token_string_t cmd_set_txtimes_value =
3988 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result,
3991 cmdline_parse_inst_t cmd_set_txtimes = {
3992 .f = cmd_set_txtimes_parsed,
3994 .help_str = "set txtimes <inter_burst>,<intra_burst>",
3996 (void *)&cmd_set_txtimes_keyword,
3997 (void *)&cmd_set_txtimes_name,
3998 (void *)&cmd_set_txtimes_value,
4003 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */
4004 struct cmd_rx_vlan_filter_all_result {
4005 cmdline_fixed_string_t rx_vlan;
4006 cmdline_fixed_string_t what;
4007 cmdline_fixed_string_t all;
4012 cmd_rx_vlan_filter_all_parsed(void *parsed_result,
4013 __rte_unused struct cmdline *cl,
4014 __rte_unused void *data)
4016 struct cmd_rx_vlan_filter_all_result *res = parsed_result;
4018 if (!strcmp(res->what, "add"))
4019 rx_vlan_all_filter_set(res->port_id, 1);
4021 rx_vlan_all_filter_set(res->port_id, 0);
4024 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan =
4025 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4026 rx_vlan, "rx_vlan");
4027 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what =
4028 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4030 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all =
4031 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4033 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid =
4034 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
4035 port_id, RTE_UINT16);
4037 cmdline_parse_inst_t cmd_rx_vlan_filter_all = {
4038 .f = cmd_rx_vlan_filter_all_parsed,
4040 .help_str = "rx_vlan add|rm all <port_id>: "
4041 "Add/Remove all identifiers to/from the set of VLAN "
4042 "identifiers filtered by a port",
4044 (void *)&cmd_rx_vlan_filter_all_rx_vlan,
4045 (void *)&cmd_rx_vlan_filter_all_what,
4046 (void *)&cmd_rx_vlan_filter_all_all,
4047 (void *)&cmd_rx_vlan_filter_all_portid,
4052 /* *** VLAN OFFLOAD SET ON A PORT *** */
4053 struct cmd_vlan_offload_result {
4054 cmdline_fixed_string_t vlan;
4055 cmdline_fixed_string_t set;
4056 cmdline_fixed_string_t vlan_type;
4057 cmdline_fixed_string_t what;
4058 cmdline_fixed_string_t on;
4059 cmdline_fixed_string_t port_id;
4063 cmd_vlan_offload_parsed(void *parsed_result,
4064 __rte_unused struct cmdline *cl,
4065 __rte_unused void *data)
4068 struct cmd_vlan_offload_result *res = parsed_result;
4071 portid_t port_id = 0;
4075 len = strnlen(str, STR_TOKEN_SIZE);
4077 /* Get port_id first */
4085 tmp = strtoul(str, NULL, 0);
4086 /* If port_id greater that what portid_t can represent, return */
4087 if(tmp >= RTE_MAX_ETHPORTS)
4089 port_id = (portid_t)tmp;
4091 if (!strcmp(res->on, "on"))
4096 if (!strcmp(res->what, "strip"))
4097 rx_vlan_strip_set(port_id, on);
4098 else if(!strcmp(res->what, "stripq")){
4099 uint16_t queue_id = 0;
4101 /* No queue_id, return */
4103 printf("must specify (port,queue_id)\n");
4106 tmp = strtoul(str + i + 1, NULL, 0);
4107 /* If queue_id greater that what 16-bits can represent, return */
4111 queue_id = (uint16_t)tmp;
4112 rx_vlan_strip_set_on_queue(port_id, queue_id, on);
4114 else if (!strcmp(res->what, "filter"))
4115 rx_vlan_filter_set(port_id, on);
4116 else if (!strcmp(res->what, "qinq_strip"))
4117 rx_vlan_qinq_strip_set(port_id, on);
4119 vlan_extend_set(port_id, on);
4124 cmdline_parse_token_string_t cmd_vlan_offload_vlan =
4125 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4127 cmdline_parse_token_string_t cmd_vlan_offload_set =
4128 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4130 cmdline_parse_token_string_t cmd_vlan_offload_what =
4131 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4132 what, "strip#filter#qinq_strip#extend#stripq");
4133 cmdline_parse_token_string_t cmd_vlan_offload_on =
4134 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4136 cmdline_parse_token_string_t cmd_vlan_offload_portid =
4137 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
4140 cmdline_parse_inst_t cmd_vlan_offload = {
4141 .f = cmd_vlan_offload_parsed,
4143 .help_str = "vlan set strip|filter|qinq_strip|extend|stripq on|off "
4144 "<port_id[,queue_id]>: "
4145 "Strip/Filter/QinQ for rx side Extend for both rx/tx sides",
4147 (void *)&cmd_vlan_offload_vlan,
4148 (void *)&cmd_vlan_offload_set,
4149 (void *)&cmd_vlan_offload_what,
4150 (void *)&cmd_vlan_offload_on,
4151 (void *)&cmd_vlan_offload_portid,
4156 /* *** VLAN TPID SET ON A PORT *** */
4157 struct cmd_vlan_tpid_result {
4158 cmdline_fixed_string_t vlan;
4159 cmdline_fixed_string_t set;
4160 cmdline_fixed_string_t vlan_type;
4161 cmdline_fixed_string_t what;
4167 cmd_vlan_tpid_parsed(void *parsed_result,
4168 __rte_unused struct cmdline *cl,
4169 __rte_unused void *data)
4171 struct cmd_vlan_tpid_result *res = parsed_result;
4172 enum rte_vlan_type vlan_type;
4174 if (!strcmp(res->vlan_type, "inner"))
4175 vlan_type = ETH_VLAN_TYPE_INNER;
4176 else if (!strcmp(res->vlan_type, "outer"))
4177 vlan_type = ETH_VLAN_TYPE_OUTER;
4179 printf("Unknown vlan type\n");
4182 vlan_tpid_set(res->port_id, vlan_type, res->tp_id);
4185 cmdline_parse_token_string_t cmd_vlan_tpid_vlan =
4186 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4188 cmdline_parse_token_string_t cmd_vlan_tpid_set =
4189 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4191 cmdline_parse_token_string_t cmd_vlan_type =
4192 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4193 vlan_type, "inner#outer");
4194 cmdline_parse_token_string_t cmd_vlan_tpid_what =
4195 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
4197 cmdline_parse_token_num_t cmd_vlan_tpid_tpid =
4198 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
4200 cmdline_parse_token_num_t cmd_vlan_tpid_portid =
4201 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
4202 port_id, RTE_UINT16);
4204 cmdline_parse_inst_t cmd_vlan_tpid = {
4205 .f = cmd_vlan_tpid_parsed,
4207 .help_str = "vlan set inner|outer tpid <tp_id> <port_id>: "
4208 "Set the VLAN Ether type",
4210 (void *)&cmd_vlan_tpid_vlan,
4211 (void *)&cmd_vlan_tpid_set,
4212 (void *)&cmd_vlan_type,
4213 (void *)&cmd_vlan_tpid_what,
4214 (void *)&cmd_vlan_tpid_tpid,
4215 (void *)&cmd_vlan_tpid_portid,
4220 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
4221 struct cmd_rx_vlan_filter_result {
4222 cmdline_fixed_string_t rx_vlan;
4223 cmdline_fixed_string_t what;
4229 cmd_rx_vlan_filter_parsed(void *parsed_result,
4230 __rte_unused struct cmdline *cl,
4231 __rte_unused void *data)
4233 struct cmd_rx_vlan_filter_result *res = parsed_result;
4235 if (!strcmp(res->what, "add"))
4236 rx_vft_set(res->port_id, res->vlan_id, 1);
4238 rx_vft_set(res->port_id, res->vlan_id, 0);
4241 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan =
4242 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
4243 rx_vlan, "rx_vlan");
4244 cmdline_parse_token_string_t cmd_rx_vlan_filter_what =
4245 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
4247 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid =
4248 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
4249 vlan_id, RTE_UINT16);
4250 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid =
4251 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
4252 port_id, RTE_UINT16);
4254 cmdline_parse_inst_t cmd_rx_vlan_filter = {
4255 .f = cmd_rx_vlan_filter_parsed,
4257 .help_str = "rx_vlan add|rm <vlan_id> <port_id>: "
4258 "Add/Remove a VLAN identifier to/from the set of VLAN "
4259 "identifiers filtered by a port",
4261 (void *)&cmd_rx_vlan_filter_rx_vlan,
4262 (void *)&cmd_rx_vlan_filter_what,
4263 (void *)&cmd_rx_vlan_filter_vlanid,
4264 (void *)&cmd_rx_vlan_filter_portid,
4269 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
4270 struct cmd_tx_vlan_set_result {
4271 cmdline_fixed_string_t tx_vlan;
4272 cmdline_fixed_string_t set;
4278 cmd_tx_vlan_set_parsed(void *parsed_result,
4279 __rte_unused struct cmdline *cl,
4280 __rte_unused void *data)
4282 struct cmd_tx_vlan_set_result *res = parsed_result;
4284 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4287 if (!port_is_stopped(res->port_id)) {
4288 printf("Please stop port %d first\n", res->port_id);
4292 tx_vlan_set(res->port_id, res->vlan_id);
4294 cmd_reconfig_device_queue(res->port_id, 1, 1);
4297 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan =
4298 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
4299 tx_vlan, "tx_vlan");
4300 cmdline_parse_token_string_t cmd_tx_vlan_set_set =
4301 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
4303 cmdline_parse_token_num_t cmd_tx_vlan_set_portid =
4304 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
4305 port_id, RTE_UINT16);
4306 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid =
4307 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
4308 vlan_id, RTE_UINT16);
4310 cmdline_parse_inst_t cmd_tx_vlan_set = {
4311 .f = cmd_tx_vlan_set_parsed,
4313 .help_str = "tx_vlan set <port_id> <vlan_id>: "
4314 "Enable hardware insertion of a single VLAN header "
4315 "with a given TAG Identifier in packets sent on a port",
4317 (void *)&cmd_tx_vlan_set_tx_vlan,
4318 (void *)&cmd_tx_vlan_set_set,
4319 (void *)&cmd_tx_vlan_set_portid,
4320 (void *)&cmd_tx_vlan_set_vlanid,
4325 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */
4326 struct cmd_tx_vlan_set_qinq_result {
4327 cmdline_fixed_string_t tx_vlan;
4328 cmdline_fixed_string_t set;
4331 uint16_t vlan_id_outer;
4335 cmd_tx_vlan_set_qinq_parsed(void *parsed_result,
4336 __rte_unused struct cmdline *cl,
4337 __rte_unused void *data)
4339 struct cmd_tx_vlan_set_qinq_result *res = parsed_result;
4341 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4344 if (!port_is_stopped(res->port_id)) {
4345 printf("Please stop port %d first\n", res->port_id);
4349 tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer);
4351 cmd_reconfig_device_queue(res->port_id, 1, 1);
4354 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan =
4355 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4356 tx_vlan, "tx_vlan");
4357 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set =
4358 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4360 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid =
4361 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4362 port_id, RTE_UINT16);
4363 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid =
4364 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4365 vlan_id, RTE_UINT16);
4366 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer =
4367 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
4368 vlan_id_outer, RTE_UINT16);
4370 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = {
4371 .f = cmd_tx_vlan_set_qinq_parsed,
4373 .help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: "
4374 "Enable hardware insertion of double VLAN header "
4375 "with given TAG Identifiers in packets sent on a port",
4377 (void *)&cmd_tx_vlan_set_qinq_tx_vlan,
4378 (void *)&cmd_tx_vlan_set_qinq_set,
4379 (void *)&cmd_tx_vlan_set_qinq_portid,
4380 (void *)&cmd_tx_vlan_set_qinq_vlanid,
4381 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer,
4386 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */
4387 struct cmd_tx_vlan_set_pvid_result {
4388 cmdline_fixed_string_t tx_vlan;
4389 cmdline_fixed_string_t set;
4390 cmdline_fixed_string_t pvid;
4393 cmdline_fixed_string_t mode;
4397 cmd_tx_vlan_set_pvid_parsed(void *parsed_result,
4398 __rte_unused struct cmdline *cl,
4399 __rte_unused void *data)
4401 struct cmd_tx_vlan_set_pvid_result *res = parsed_result;
4403 if (strcmp(res->mode, "on") == 0)
4404 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1);
4406 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0);
4409 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan =
4410 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4411 tx_vlan, "tx_vlan");
4412 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set =
4413 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4415 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid =
4416 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4418 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id =
4419 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4420 port_id, RTE_UINT16);
4421 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id =
4422 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4423 vlan_id, RTE_UINT16);
4424 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode =
4425 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
4428 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = {
4429 .f = cmd_tx_vlan_set_pvid_parsed,
4431 .help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off",
4433 (void *)&cmd_tx_vlan_set_pvid_tx_vlan,
4434 (void *)&cmd_tx_vlan_set_pvid_set,
4435 (void *)&cmd_tx_vlan_set_pvid_pvid,
4436 (void *)&cmd_tx_vlan_set_pvid_port_id,
4437 (void *)&cmd_tx_vlan_set_pvid_vlan_id,
4438 (void *)&cmd_tx_vlan_set_pvid_mode,
4443 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
4444 struct cmd_tx_vlan_reset_result {
4445 cmdline_fixed_string_t tx_vlan;
4446 cmdline_fixed_string_t reset;
4451 cmd_tx_vlan_reset_parsed(void *parsed_result,
4452 __rte_unused struct cmdline *cl,
4453 __rte_unused void *data)
4455 struct cmd_tx_vlan_reset_result *res = parsed_result;
4457 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4460 if (!port_is_stopped(res->port_id)) {
4461 printf("Please stop port %d first\n", res->port_id);
4465 tx_vlan_reset(res->port_id);
4467 cmd_reconfig_device_queue(res->port_id, 1, 1);
4470 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan =
4471 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
4472 tx_vlan, "tx_vlan");
4473 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset =
4474 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
4476 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid =
4477 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result,
4478 port_id, RTE_UINT16);
4480 cmdline_parse_inst_t cmd_tx_vlan_reset = {
4481 .f = cmd_tx_vlan_reset_parsed,
4483 .help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a "
4484 "VLAN header in packets sent on a port",
4486 (void *)&cmd_tx_vlan_reset_tx_vlan,
4487 (void *)&cmd_tx_vlan_reset_reset,
4488 (void *)&cmd_tx_vlan_reset_portid,
4494 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */
4495 struct cmd_csum_result {
4496 cmdline_fixed_string_t csum;
4497 cmdline_fixed_string_t mode;
4498 cmdline_fixed_string_t proto;
4499 cmdline_fixed_string_t hwsw;
4504 csum_show(int port_id)
4506 struct rte_eth_dev_info dev_info;
4507 uint64_t tx_offloads;
4510 tx_offloads = ports[port_id].dev_conf.txmode.offloads;
4511 printf("Parse tunnel is %s\n",
4512 (ports[port_id].parse_tunnel) ? "on" : "off");
4513 printf("IP checksum offload is %s\n",
4514 (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) ? "hw" : "sw");
4515 printf("UDP checksum offload is %s\n",
4516 (tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw");
4517 printf("TCP checksum offload is %s\n",
4518 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw");
4519 printf("SCTP checksum offload is %s\n",
4520 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw");
4521 printf("Outer-Ip checksum offload is %s\n",
4522 (tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ? "hw" : "sw");
4523 printf("Outer-Udp checksum offload is %s\n",
4524 (tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) ? "hw" : "sw");
4526 /* display warnings if configuration is not supported by the NIC */
4527 ret = eth_dev_info_get_print_err(port_id, &dev_info);
4531 if ((tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) &&
4532 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) {
4533 printf("Warning: hardware IP checksum enabled but not "
4534 "supported by port %d\n", port_id);
4536 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) &&
4537 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) {
4538 printf("Warning: hardware UDP checksum enabled but not "
4539 "supported by port %d\n", port_id);
4541 if ((tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) &&
4542 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) {
4543 printf("Warning: hardware TCP checksum enabled but not "
4544 "supported by port %d\n", port_id);
4546 if ((tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) &&
4547 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) {
4548 printf("Warning: hardware SCTP checksum enabled but not "
4549 "supported by port %d\n", port_id);
4551 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) &&
4552 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
4553 printf("Warning: hardware outer IP checksum enabled but not "
4554 "supported by port %d\n", port_id);
4556 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) &&
4557 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)
4559 printf("Warning: hardware outer UDP checksum enabled but not "
4560 "supported by port %d\n", port_id);
4565 cmd_config_queue_tx_offloads(struct rte_port *port)
4569 /* Apply queue tx offloads configuration */
4570 for (k = 0; k < port->dev_info.max_rx_queues; k++)
4571 port->tx_conf[k].offloads =
4572 port->dev_conf.txmode.offloads;
4576 cmd_csum_parsed(void *parsed_result,
4577 __rte_unused struct cmdline *cl,
4578 __rte_unused void *data)
4580 struct cmd_csum_result *res = parsed_result;
4582 uint64_t csum_offloads = 0;
4583 struct rte_eth_dev_info dev_info;
4586 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) {
4587 printf("invalid port %d\n", res->port_id);
4590 if (!port_is_stopped(res->port_id)) {
4591 printf("Please stop port %d first\n", res->port_id);
4595 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4599 if (!strcmp(res->mode, "set")) {
4601 if (!strcmp(res->hwsw, "hw"))
4604 if (!strcmp(res->proto, "ip")) {
4605 if (hw == 0 || (dev_info.tx_offload_capa &
4606 DEV_TX_OFFLOAD_IPV4_CKSUM)) {
4607 csum_offloads |= DEV_TX_OFFLOAD_IPV4_CKSUM;
4609 printf("IP checksum offload is not supported "
4610 "by port %u\n", res->port_id);
4612 } else if (!strcmp(res->proto, "udp")) {
4613 if (hw == 0 || (dev_info.tx_offload_capa &
4614 DEV_TX_OFFLOAD_UDP_CKSUM)) {
4615 csum_offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
4617 printf("UDP checksum offload is not supported "
4618 "by port %u\n", res->port_id);
4620 } else if (!strcmp(res->proto, "tcp")) {
4621 if (hw == 0 || (dev_info.tx_offload_capa &
4622 DEV_TX_OFFLOAD_TCP_CKSUM)) {
4623 csum_offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
4625 printf("TCP checksum offload is not supported "
4626 "by port %u\n", res->port_id);
4628 } else if (!strcmp(res->proto, "sctp")) {
4629 if (hw == 0 || (dev_info.tx_offload_capa &
4630 DEV_TX_OFFLOAD_SCTP_CKSUM)) {
4631 csum_offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM;
4633 printf("SCTP checksum offload is not supported "
4634 "by port %u\n", res->port_id);
4636 } else if (!strcmp(res->proto, "outer-ip")) {
4637 if (hw == 0 || (dev_info.tx_offload_capa &
4638 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) {
4640 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
4642 printf("Outer IP checksum offload is not "
4643 "supported by port %u\n", res->port_id);
4645 } else if (!strcmp(res->proto, "outer-udp")) {
4646 if (hw == 0 || (dev_info.tx_offload_capa &
4647 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)) {
4649 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM;
4651 printf("Outer UDP checksum offload is not "
4652 "supported by port %u\n", res->port_id);
4657 ports[res->port_id].dev_conf.txmode.offloads |=
4660 ports[res->port_id].dev_conf.txmode.offloads &=
4663 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4665 csum_show(res->port_id);
4667 cmd_reconfig_device_queue(res->port_id, 1, 1);
4670 cmdline_parse_token_string_t cmd_csum_csum =
4671 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4673 cmdline_parse_token_string_t cmd_csum_mode =
4674 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4676 cmdline_parse_token_string_t cmd_csum_proto =
4677 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4678 proto, "ip#tcp#udp#sctp#outer-ip#outer-udp");
4679 cmdline_parse_token_string_t cmd_csum_hwsw =
4680 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4682 cmdline_parse_token_num_t cmd_csum_portid =
4683 TOKEN_NUM_INITIALIZER(struct cmd_csum_result,
4684 port_id, RTE_UINT16);
4686 cmdline_parse_inst_t cmd_csum_set = {
4687 .f = cmd_csum_parsed,
4689 .help_str = "csum set ip|tcp|udp|sctp|outer-ip|outer-udp hw|sw <port_id>: "
4690 "Enable/Disable hardware calculation of L3/L4 checksum when "
4691 "using csum forward engine",
4693 (void *)&cmd_csum_csum,
4694 (void *)&cmd_csum_mode,
4695 (void *)&cmd_csum_proto,
4696 (void *)&cmd_csum_hwsw,
4697 (void *)&cmd_csum_portid,
4702 cmdline_parse_token_string_t cmd_csum_mode_show =
4703 TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
4706 cmdline_parse_inst_t cmd_csum_show = {
4707 .f = cmd_csum_parsed,
4709 .help_str = "csum show <port_id>: Show checksum offload configuration",
4711 (void *)&cmd_csum_csum,
4712 (void *)&cmd_csum_mode_show,
4713 (void *)&cmd_csum_portid,
4718 /* Enable/disable tunnel parsing */
4719 struct cmd_csum_tunnel_result {
4720 cmdline_fixed_string_t csum;
4721 cmdline_fixed_string_t parse;
4722 cmdline_fixed_string_t onoff;
4727 cmd_csum_tunnel_parsed(void *parsed_result,
4728 __rte_unused struct cmdline *cl,
4729 __rte_unused void *data)
4731 struct cmd_csum_tunnel_result *res = parsed_result;
4733 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4736 if (!strcmp(res->onoff, "on"))
4737 ports[res->port_id].parse_tunnel = 1;
4739 ports[res->port_id].parse_tunnel = 0;
4741 csum_show(res->port_id);
4744 cmdline_parse_token_string_t cmd_csum_tunnel_csum =
4745 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4747 cmdline_parse_token_string_t cmd_csum_tunnel_parse =
4748 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4749 parse, "parse-tunnel");
4750 cmdline_parse_token_string_t cmd_csum_tunnel_onoff =
4751 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
4753 cmdline_parse_token_num_t cmd_csum_tunnel_portid =
4754 TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result,
4755 port_id, RTE_UINT16);
4757 cmdline_parse_inst_t cmd_csum_tunnel = {
4758 .f = cmd_csum_tunnel_parsed,
4760 .help_str = "csum parse-tunnel on|off <port_id>: "
4761 "Enable/Disable parsing of tunnels for csum engine",
4763 (void *)&cmd_csum_tunnel_csum,
4764 (void *)&cmd_csum_tunnel_parse,
4765 (void *)&cmd_csum_tunnel_onoff,
4766 (void *)&cmd_csum_tunnel_portid,
4771 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */
4772 struct cmd_tso_set_result {
4773 cmdline_fixed_string_t tso;
4774 cmdline_fixed_string_t mode;
4780 cmd_tso_set_parsed(void *parsed_result,
4781 __rte_unused struct cmdline *cl,
4782 __rte_unused void *data)
4784 struct cmd_tso_set_result *res = parsed_result;
4785 struct rte_eth_dev_info dev_info;
4788 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4790 if (!port_is_stopped(res->port_id)) {
4791 printf("Please stop port %d first\n", res->port_id);
4795 if (!strcmp(res->mode, "set"))
4796 ports[res->port_id].tso_segsz = res->tso_segsz;
4798 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4802 if ((ports[res->port_id].tso_segsz != 0) &&
4803 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
4804 printf("Error: TSO is not supported by port %d\n",
4809 if (ports[res->port_id].tso_segsz == 0) {
4810 ports[res->port_id].dev_conf.txmode.offloads &=
4811 ~DEV_TX_OFFLOAD_TCP_TSO;
4812 printf("TSO for non-tunneled packets is disabled\n");
4814 ports[res->port_id].dev_conf.txmode.offloads |=
4815 DEV_TX_OFFLOAD_TCP_TSO;
4816 printf("TSO segment size for non-tunneled packets is %d\n",
4817 ports[res->port_id].tso_segsz);
4819 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4821 /* display warnings if configuration is not supported by the NIC */
4822 ret = eth_dev_info_get_print_err(res->port_id, &dev_info);
4826 if ((ports[res->port_id].tso_segsz != 0) &&
4827 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
4828 printf("Warning: TSO enabled but not "
4829 "supported by port %d\n", res->port_id);
4832 cmd_reconfig_device_queue(res->port_id, 1, 1);
4835 cmdline_parse_token_string_t cmd_tso_set_tso =
4836 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4838 cmdline_parse_token_string_t cmd_tso_set_mode =
4839 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4841 cmdline_parse_token_num_t cmd_tso_set_tso_segsz =
4842 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
4843 tso_segsz, RTE_UINT16);
4844 cmdline_parse_token_num_t cmd_tso_set_portid =
4845 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
4846 port_id, RTE_UINT16);
4848 cmdline_parse_inst_t cmd_tso_set = {
4849 .f = cmd_tso_set_parsed,
4851 .help_str = "tso set <tso_segsz> <port_id>: "
4852 "Set TSO segment size of non-tunneled packets for csum engine "
4855 (void *)&cmd_tso_set_tso,
4856 (void *)&cmd_tso_set_mode,
4857 (void *)&cmd_tso_set_tso_segsz,
4858 (void *)&cmd_tso_set_portid,
4863 cmdline_parse_token_string_t cmd_tso_show_mode =
4864 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
4868 cmdline_parse_inst_t cmd_tso_show = {
4869 .f = cmd_tso_set_parsed,
4871 .help_str = "tso show <port_id>: "
4872 "Show TSO segment size of non-tunneled packets for csum engine",
4874 (void *)&cmd_tso_set_tso,
4875 (void *)&cmd_tso_show_mode,
4876 (void *)&cmd_tso_set_portid,
4881 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */
4882 struct cmd_tunnel_tso_set_result {
4883 cmdline_fixed_string_t tso;
4884 cmdline_fixed_string_t mode;
4889 static struct rte_eth_dev_info
4890 check_tunnel_tso_nic_support(portid_t port_id)
4892 struct rte_eth_dev_info dev_info;
4894 if (eth_dev_info_get_print_err(port_id, &dev_info) != 0)
4897 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO))
4898 printf("Warning: VXLAN TUNNEL TSO not supported therefore "
4899 "not enabled for port %d\n", port_id);
4900 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO))
4901 printf("Warning: GRE TUNNEL TSO not supported therefore "
4902 "not enabled for port %d\n", port_id);
4903 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO))
4904 printf("Warning: IPIP TUNNEL TSO not supported therefore "
4905 "not enabled for port %d\n", port_id);
4906 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO))
4907 printf("Warning: GENEVE TUNNEL TSO not supported therefore "
4908 "not enabled for port %d\n", port_id);
4909 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO))
4910 printf("Warning: IP TUNNEL TSO not supported therefore "
4911 "not enabled for port %d\n", port_id);
4912 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO))
4913 printf("Warning: UDP TUNNEL TSO not supported therefore "
4914 "not enabled for port %d\n", port_id);
4919 cmd_tunnel_tso_set_parsed(void *parsed_result,
4920 __rte_unused struct cmdline *cl,
4921 __rte_unused void *data)
4923 struct cmd_tunnel_tso_set_result *res = parsed_result;
4924 struct rte_eth_dev_info dev_info;
4926 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
4928 if (!port_is_stopped(res->port_id)) {
4929 printf("Please stop port %d first\n", res->port_id);
4933 if (!strcmp(res->mode, "set"))
4934 ports[res->port_id].tunnel_tso_segsz = res->tso_segsz;
4936 dev_info = check_tunnel_tso_nic_support(res->port_id);
4937 if (ports[res->port_id].tunnel_tso_segsz == 0) {
4938 ports[res->port_id].dev_conf.txmode.offloads &=
4939 ~(DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
4940 DEV_TX_OFFLOAD_GRE_TNL_TSO |
4941 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
4942 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
4943 DEV_TX_OFFLOAD_IP_TNL_TSO |
4944 DEV_TX_OFFLOAD_UDP_TNL_TSO);
4945 printf("TSO for tunneled packets is disabled\n");
4947 uint64_t tso_offloads = (DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
4948 DEV_TX_OFFLOAD_GRE_TNL_TSO |
4949 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
4950 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
4951 DEV_TX_OFFLOAD_IP_TNL_TSO |
4952 DEV_TX_OFFLOAD_UDP_TNL_TSO);
4954 ports[res->port_id].dev_conf.txmode.offloads |=
4955 (tso_offloads & dev_info.tx_offload_capa);
4956 printf("TSO segment size for tunneled packets is %d\n",
4957 ports[res->port_id].tunnel_tso_segsz);
4959 /* Below conditions are needed to make it work:
4960 * (1) tunnel TSO is supported by the NIC;
4961 * (2) "csum parse_tunnel" must be set so that tunneled pkts
4963 * (3) for tunneled pkts with outer L3 of IPv4,
4964 * "csum set outer-ip" must be set to hw, because after tso,
4965 * total_len of outer IP header is changed, and the checksum
4966 * of outer IP header calculated by sw should be wrong; that
4967 * is not necessary for IPv6 tunneled pkts because there's no
4968 * checksum in IP header anymore.
4971 if (!ports[res->port_id].parse_tunnel)
4972 printf("Warning: csum parse_tunnel must be set "
4973 "so that tunneled packets are recognized\n");
4974 if (!(ports[res->port_id].dev_conf.txmode.offloads &
4975 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM))
4976 printf("Warning: csum set outer-ip must be set to hw "
4977 "if outer L3 is IPv4; not necessary for IPv6\n");
4980 cmd_config_queue_tx_offloads(&ports[res->port_id]);
4981 cmd_reconfig_device_queue(res->port_id, 1, 1);
4984 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso =
4985 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4987 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode =
4988 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
4990 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz =
4991 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
4992 tso_segsz, RTE_UINT16);
4993 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid =
4994 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
4995 port_id, RTE_UINT16);
4997 cmdline_parse_inst_t cmd_tunnel_tso_set = {
4998 .f = cmd_tunnel_tso_set_parsed,
5000 .help_str = "tunnel_tso set <tso_segsz> <port_id>: "
5001 "Set TSO segment size of tunneled packets for csum engine "
5004 (void *)&cmd_tunnel_tso_set_tso,
5005 (void *)&cmd_tunnel_tso_set_mode,
5006 (void *)&cmd_tunnel_tso_set_tso_segsz,
5007 (void *)&cmd_tunnel_tso_set_portid,
5012 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode =
5013 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
5017 cmdline_parse_inst_t cmd_tunnel_tso_show = {
5018 .f = cmd_tunnel_tso_set_parsed,
5020 .help_str = "tunnel_tso show <port_id> "
5021 "Show TSO segment size of tunneled packets for csum engine",
5023 (void *)&cmd_tunnel_tso_set_tso,
5024 (void *)&cmd_tunnel_tso_show_mode,
5025 (void *)&cmd_tunnel_tso_set_portid,
5030 /* *** SET GRO FOR A PORT *** */
5031 struct cmd_gro_enable_result {
5032 cmdline_fixed_string_t cmd_set;
5033 cmdline_fixed_string_t cmd_port;
5034 cmdline_fixed_string_t cmd_keyword;
5035 cmdline_fixed_string_t cmd_onoff;
5040 cmd_gro_enable_parsed(void *parsed_result,
5041 __rte_unused struct cmdline *cl,
5042 __rte_unused void *data)
5044 struct cmd_gro_enable_result *res;
5046 res = parsed_result;
5047 if (!strcmp(res->cmd_keyword, "gro"))
5048 setup_gro(res->cmd_onoff, res->cmd_pid);
5051 cmdline_parse_token_string_t cmd_gro_enable_set =
5052 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5054 cmdline_parse_token_string_t cmd_gro_enable_port =
5055 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5056 cmd_keyword, "port");
5057 cmdline_parse_token_num_t cmd_gro_enable_pid =
5058 TOKEN_NUM_INITIALIZER(struct cmd_gro_enable_result,
5059 cmd_pid, RTE_UINT16);
5060 cmdline_parse_token_string_t cmd_gro_enable_keyword =
5061 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5062 cmd_keyword, "gro");
5063 cmdline_parse_token_string_t cmd_gro_enable_onoff =
5064 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result,
5065 cmd_onoff, "on#off");
5067 cmdline_parse_inst_t cmd_gro_enable = {
5068 .f = cmd_gro_enable_parsed,
5070 .help_str = "set port <port_id> gro on|off",
5072 (void *)&cmd_gro_enable_set,
5073 (void *)&cmd_gro_enable_port,
5074 (void *)&cmd_gro_enable_pid,
5075 (void *)&cmd_gro_enable_keyword,
5076 (void *)&cmd_gro_enable_onoff,
5081 /* *** DISPLAY GRO CONFIGURATION *** */
5082 struct cmd_gro_show_result {
5083 cmdline_fixed_string_t cmd_show;
5084 cmdline_fixed_string_t cmd_port;
5085 cmdline_fixed_string_t cmd_keyword;
5090 cmd_gro_show_parsed(void *parsed_result,
5091 __rte_unused struct cmdline *cl,
5092 __rte_unused void *data)
5094 struct cmd_gro_show_result *res;
5096 res = parsed_result;
5097 if (!strcmp(res->cmd_keyword, "gro"))
5098 show_gro(res->cmd_pid);
5101 cmdline_parse_token_string_t cmd_gro_show_show =
5102 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5104 cmdline_parse_token_string_t cmd_gro_show_port =
5105 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5107 cmdline_parse_token_num_t cmd_gro_show_pid =
5108 TOKEN_NUM_INITIALIZER(struct cmd_gro_show_result,
5109 cmd_pid, RTE_UINT16);
5110 cmdline_parse_token_string_t cmd_gro_show_keyword =
5111 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result,
5112 cmd_keyword, "gro");
5114 cmdline_parse_inst_t cmd_gro_show = {
5115 .f = cmd_gro_show_parsed,
5117 .help_str = "show port <port_id> gro",
5119 (void *)&cmd_gro_show_show,
5120 (void *)&cmd_gro_show_port,
5121 (void *)&cmd_gro_show_pid,
5122 (void *)&cmd_gro_show_keyword,
5127 /* *** SET FLUSH CYCLES FOR GRO *** */
5128 struct cmd_gro_flush_result {
5129 cmdline_fixed_string_t cmd_set;
5130 cmdline_fixed_string_t cmd_keyword;
5131 cmdline_fixed_string_t cmd_flush;
5136 cmd_gro_flush_parsed(void *parsed_result,
5137 __rte_unused struct cmdline *cl,
5138 __rte_unused void *data)
5140 struct cmd_gro_flush_result *res;
5142 res = parsed_result;
5143 if ((!strcmp(res->cmd_keyword, "gro")) &&
5144 (!strcmp(res->cmd_flush, "flush")))
5145 setup_gro_flush_cycles(res->cmd_cycles);
5148 cmdline_parse_token_string_t cmd_gro_flush_set =
5149 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5151 cmdline_parse_token_string_t cmd_gro_flush_keyword =
5152 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5153 cmd_keyword, "gro");
5154 cmdline_parse_token_string_t cmd_gro_flush_flush =
5155 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result,
5156 cmd_flush, "flush");
5157 cmdline_parse_token_num_t cmd_gro_flush_cycles =
5158 TOKEN_NUM_INITIALIZER(struct cmd_gro_flush_result,
5159 cmd_cycles, RTE_UINT8);
5161 cmdline_parse_inst_t cmd_gro_flush = {
5162 .f = cmd_gro_flush_parsed,
5164 .help_str = "set gro flush <cycles>",
5166 (void *)&cmd_gro_flush_set,
5167 (void *)&cmd_gro_flush_keyword,
5168 (void *)&cmd_gro_flush_flush,
5169 (void *)&cmd_gro_flush_cycles,
5174 /* *** ENABLE/DISABLE GSO *** */
5175 struct cmd_gso_enable_result {
5176 cmdline_fixed_string_t cmd_set;
5177 cmdline_fixed_string_t cmd_port;
5178 cmdline_fixed_string_t cmd_keyword;
5179 cmdline_fixed_string_t cmd_mode;
5184 cmd_gso_enable_parsed(void *parsed_result,
5185 __rte_unused struct cmdline *cl,
5186 __rte_unused void *data)
5188 struct cmd_gso_enable_result *res;
5190 res = parsed_result;
5191 if (!strcmp(res->cmd_keyword, "gso"))
5192 setup_gso(res->cmd_mode, res->cmd_pid);
5195 cmdline_parse_token_string_t cmd_gso_enable_set =
5196 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5198 cmdline_parse_token_string_t cmd_gso_enable_port =
5199 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5201 cmdline_parse_token_string_t cmd_gso_enable_keyword =
5202 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5203 cmd_keyword, "gso");
5204 cmdline_parse_token_string_t cmd_gso_enable_mode =
5205 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result,
5206 cmd_mode, "on#off");
5207 cmdline_parse_token_num_t cmd_gso_enable_pid =
5208 TOKEN_NUM_INITIALIZER(struct cmd_gso_enable_result,
5209 cmd_pid, RTE_UINT16);
5211 cmdline_parse_inst_t cmd_gso_enable = {
5212 .f = cmd_gso_enable_parsed,
5214 .help_str = "set port <port_id> gso on|off",
5216 (void *)&cmd_gso_enable_set,
5217 (void *)&cmd_gso_enable_port,
5218 (void *)&cmd_gso_enable_pid,
5219 (void *)&cmd_gso_enable_keyword,
5220 (void *)&cmd_gso_enable_mode,
5225 /* *** SET MAX PACKET LENGTH FOR GSO SEGMENTS *** */
5226 struct cmd_gso_size_result {
5227 cmdline_fixed_string_t cmd_set;
5228 cmdline_fixed_string_t cmd_keyword;
5229 cmdline_fixed_string_t cmd_segsz;
5234 cmd_gso_size_parsed(void *parsed_result,
5235 __rte_unused struct cmdline *cl,
5236 __rte_unused void *data)
5238 struct cmd_gso_size_result *res = parsed_result;
5240 if (test_done == 0) {
5241 printf("Before setting GSO segsz, please first"
5242 " stop forwarding\n");
5246 if (!strcmp(res->cmd_keyword, "gso") &&
5247 !strcmp(res->cmd_segsz, "segsz")) {
5248 if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN)
5249 printf("gso_size should be larger than %zu."
5250 " Please input a legal value\n",
5251 RTE_GSO_SEG_SIZE_MIN);
5253 gso_max_segment_size = res->cmd_size;
5257 cmdline_parse_token_string_t cmd_gso_size_set =
5258 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5260 cmdline_parse_token_string_t cmd_gso_size_keyword =
5261 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5262 cmd_keyword, "gso");
5263 cmdline_parse_token_string_t cmd_gso_size_segsz =
5264 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result,
5265 cmd_segsz, "segsz");
5266 cmdline_parse_token_num_t cmd_gso_size_size =
5267 TOKEN_NUM_INITIALIZER(struct cmd_gso_size_result,
5268 cmd_size, RTE_UINT16);
5270 cmdline_parse_inst_t cmd_gso_size = {
5271 .f = cmd_gso_size_parsed,
5273 .help_str = "set gso segsz <length>",
5275 (void *)&cmd_gso_size_set,
5276 (void *)&cmd_gso_size_keyword,
5277 (void *)&cmd_gso_size_segsz,
5278 (void *)&cmd_gso_size_size,
5283 /* *** SHOW GSO CONFIGURATION *** */
5284 struct cmd_gso_show_result {
5285 cmdline_fixed_string_t cmd_show;
5286 cmdline_fixed_string_t cmd_port;
5287 cmdline_fixed_string_t cmd_keyword;
5292 cmd_gso_show_parsed(void *parsed_result,
5293 __rte_unused struct cmdline *cl,
5294 __rte_unused void *data)
5296 struct cmd_gso_show_result *res = parsed_result;
5298 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
5299 printf("invalid port id %u\n", res->cmd_pid);
5302 if (!strcmp(res->cmd_keyword, "gso")) {
5303 if (gso_ports[res->cmd_pid].enable) {
5304 printf("Max GSO'd packet size: %uB\n"
5305 "Supported GSO types: TCP/IPv4, "
5306 "UDP/IPv4, VxLAN with inner "
5307 "TCP/IPv4 packet, GRE with inner "
5308 "TCP/IPv4 packet\n",
5309 gso_max_segment_size);
5311 printf("GSO is not enabled on Port %u\n", res->cmd_pid);
5315 cmdline_parse_token_string_t cmd_gso_show_show =
5316 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5318 cmdline_parse_token_string_t cmd_gso_show_port =
5319 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5321 cmdline_parse_token_string_t cmd_gso_show_keyword =
5322 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result,
5323 cmd_keyword, "gso");
5324 cmdline_parse_token_num_t cmd_gso_show_pid =
5325 TOKEN_NUM_INITIALIZER(struct cmd_gso_show_result,
5326 cmd_pid, RTE_UINT16);
5328 cmdline_parse_inst_t cmd_gso_show = {
5329 .f = cmd_gso_show_parsed,
5331 .help_str = "show port <port_id> gso",
5333 (void *)&cmd_gso_show_show,
5334 (void *)&cmd_gso_show_port,
5335 (void *)&cmd_gso_show_pid,
5336 (void *)&cmd_gso_show_keyword,
5341 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */
5342 struct cmd_set_flush_rx {
5343 cmdline_fixed_string_t set;
5344 cmdline_fixed_string_t flush_rx;
5345 cmdline_fixed_string_t mode;
5349 cmd_set_flush_rx_parsed(void *parsed_result,
5350 __rte_unused struct cmdline *cl,
5351 __rte_unused void *data)
5353 struct cmd_set_flush_rx *res = parsed_result;
5354 no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
5357 cmdline_parse_token_string_t cmd_setflushrx_set =
5358 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5360 cmdline_parse_token_string_t cmd_setflushrx_flush_rx =
5361 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5362 flush_rx, "flush_rx");
5363 cmdline_parse_token_string_t cmd_setflushrx_mode =
5364 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
5368 cmdline_parse_inst_t cmd_set_flush_rx = {
5369 .f = cmd_set_flush_rx_parsed,
5370 .help_str = "set flush_rx on|off: Enable/Disable flush on rx streams",
5373 (void *)&cmd_setflushrx_set,
5374 (void *)&cmd_setflushrx_flush_rx,
5375 (void *)&cmd_setflushrx_mode,
5380 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */
5381 struct cmd_set_link_check {
5382 cmdline_fixed_string_t set;
5383 cmdline_fixed_string_t link_check;
5384 cmdline_fixed_string_t mode;
5388 cmd_set_link_check_parsed(void *parsed_result,
5389 __rte_unused struct cmdline *cl,
5390 __rte_unused void *data)
5392 struct cmd_set_link_check *res = parsed_result;
5393 no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
5396 cmdline_parse_token_string_t cmd_setlinkcheck_set =
5397 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5399 cmdline_parse_token_string_t cmd_setlinkcheck_link_check =
5400 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5401 link_check, "link_check");
5402 cmdline_parse_token_string_t cmd_setlinkcheck_mode =
5403 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
5407 cmdline_parse_inst_t cmd_set_link_check = {
5408 .f = cmd_set_link_check_parsed,
5409 .help_str = "set link_check on|off: Enable/Disable link status check "
5410 "when starting/stopping a port",
5413 (void *)&cmd_setlinkcheck_set,
5414 (void *)&cmd_setlinkcheck_link_check,
5415 (void *)&cmd_setlinkcheck_mode,
5420 /* *** SET NIC BYPASS MODE *** */
5421 struct cmd_set_bypass_mode_result {
5422 cmdline_fixed_string_t set;
5423 cmdline_fixed_string_t bypass;
5424 cmdline_fixed_string_t mode;
5425 cmdline_fixed_string_t value;
5430 cmd_set_bypass_mode_parsed(void *parsed_result,
5431 __rte_unused struct cmdline *cl,
5432 __rte_unused void *data)
5434 struct cmd_set_bypass_mode_result *res = parsed_result;
5435 portid_t port_id = res->port_id;
5436 int32_t rc = -EINVAL;
5438 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5439 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5441 if (!strcmp(res->value, "bypass"))
5442 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
5443 else if (!strcmp(res->value, "isolate"))
5444 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
5446 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5448 /* Set the bypass mode for the relevant port. */
5449 rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode);
5452 printf("\t Failed to set bypass mode for port = %d.\n", port_id);
5455 cmdline_parse_token_string_t cmd_setbypass_mode_set =
5456 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5458 cmdline_parse_token_string_t cmd_setbypass_mode_bypass =
5459 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5461 cmdline_parse_token_string_t cmd_setbypass_mode_mode =
5462 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5464 cmdline_parse_token_string_t cmd_setbypass_mode_value =
5465 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
5466 value, "normal#bypass#isolate");
5467 cmdline_parse_token_num_t cmd_setbypass_mode_port =
5468 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result,
5469 port_id, RTE_UINT16);
5471 cmdline_parse_inst_t cmd_set_bypass_mode = {
5472 .f = cmd_set_bypass_mode_parsed,
5473 .help_str = "set bypass mode normal|bypass|isolate <port_id>: "
5474 "Set the NIC bypass mode for port_id",
5477 (void *)&cmd_setbypass_mode_set,
5478 (void *)&cmd_setbypass_mode_bypass,
5479 (void *)&cmd_setbypass_mode_mode,
5480 (void *)&cmd_setbypass_mode_value,
5481 (void *)&cmd_setbypass_mode_port,
5486 /* *** SET NIC BYPASS EVENT *** */
5487 struct cmd_set_bypass_event_result {
5488 cmdline_fixed_string_t set;
5489 cmdline_fixed_string_t bypass;
5490 cmdline_fixed_string_t event;
5491 cmdline_fixed_string_t event_value;
5492 cmdline_fixed_string_t mode;
5493 cmdline_fixed_string_t mode_value;
5498 cmd_set_bypass_event_parsed(void *parsed_result,
5499 __rte_unused struct cmdline *cl,
5500 __rte_unused void *data)
5502 int32_t rc = -EINVAL;
5503 struct cmd_set_bypass_event_result *res = parsed_result;
5504 portid_t port_id = res->port_id;
5506 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5507 uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
5508 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5510 if (!strcmp(res->event_value, "timeout"))
5511 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT;
5512 else if (!strcmp(res->event_value, "os_on"))
5513 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON;
5514 else if (!strcmp(res->event_value, "os_off"))
5515 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF;
5516 else if (!strcmp(res->event_value, "power_on"))
5517 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON;
5518 else if (!strcmp(res->event_value, "power_off"))
5519 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF;
5521 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
5523 if (!strcmp(res->mode_value, "bypass"))
5524 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
5525 else if (!strcmp(res->mode_value, "isolate"))
5526 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
5528 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
5530 /* Set the watchdog timeout. */
5531 if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) {
5534 if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) {
5535 rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id,
5539 printf("Failed to set timeout value %u "
5540 "for port %d, errto code: %d.\n",
5541 bypass_timeout, port_id, rc);
5545 /* Set the bypass event to transition to bypass mode. */
5546 rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event,
5551 printf("\t Failed to set bypass event for port = %d.\n",
5555 cmdline_parse_token_string_t cmd_setbypass_event_set =
5556 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5558 cmdline_parse_token_string_t cmd_setbypass_event_bypass =
5559 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5561 cmdline_parse_token_string_t cmd_setbypass_event_event =
5562 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5564 cmdline_parse_token_string_t cmd_setbypass_event_event_value =
5565 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5566 event_value, "none#timeout#os_off#os_on#power_on#power_off");
5567 cmdline_parse_token_string_t cmd_setbypass_event_mode =
5568 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5570 cmdline_parse_token_string_t cmd_setbypass_event_mode_value =
5571 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
5572 mode_value, "normal#bypass#isolate");
5573 cmdline_parse_token_num_t cmd_setbypass_event_port =
5574 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result,
5575 port_id, RTE_UINT16);
5577 cmdline_parse_inst_t cmd_set_bypass_event = {
5578 .f = cmd_set_bypass_event_parsed,
5579 .help_str = "set bypass event none|timeout|os_on|os_off|power_on|"
5580 "power_off mode normal|bypass|isolate <port_id>: "
5581 "Set the NIC bypass event mode for port_id",
5584 (void *)&cmd_setbypass_event_set,
5585 (void *)&cmd_setbypass_event_bypass,
5586 (void *)&cmd_setbypass_event_event,
5587 (void *)&cmd_setbypass_event_event_value,
5588 (void *)&cmd_setbypass_event_mode,
5589 (void *)&cmd_setbypass_event_mode_value,
5590 (void *)&cmd_setbypass_event_port,
5596 /* *** SET NIC BYPASS TIMEOUT *** */
5597 struct cmd_set_bypass_timeout_result {
5598 cmdline_fixed_string_t set;
5599 cmdline_fixed_string_t bypass;
5600 cmdline_fixed_string_t timeout;
5601 cmdline_fixed_string_t value;
5605 cmd_set_bypass_timeout_parsed(void *parsed_result,
5606 __rte_unused struct cmdline *cl,
5607 __rte_unused void *data)
5609 __rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result;
5611 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5612 if (!strcmp(res->value, "1.5"))
5613 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC;
5614 else if (!strcmp(res->value, "2"))
5615 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC;
5616 else if (!strcmp(res->value, "3"))
5617 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC;
5618 else if (!strcmp(res->value, "4"))
5619 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC;
5620 else if (!strcmp(res->value, "8"))
5621 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC;
5622 else if (!strcmp(res->value, "16"))
5623 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC;
5624 else if (!strcmp(res->value, "32"))
5625 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC;
5627 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
5631 cmdline_parse_token_string_t cmd_setbypass_timeout_set =
5632 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5634 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass =
5635 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5637 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout =
5638 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5639 timeout, "timeout");
5640 cmdline_parse_token_string_t cmd_setbypass_timeout_value =
5641 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
5642 value, "0#1.5#2#3#4#8#16#32");
5644 cmdline_parse_inst_t cmd_set_bypass_timeout = {
5645 .f = cmd_set_bypass_timeout_parsed,
5646 .help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: "
5647 "Set the NIC bypass watchdog timeout in seconds",
5650 (void *)&cmd_setbypass_timeout_set,
5651 (void *)&cmd_setbypass_timeout_bypass,
5652 (void *)&cmd_setbypass_timeout_timeout,
5653 (void *)&cmd_setbypass_timeout_value,
5658 /* *** SHOW NIC BYPASS MODE *** */
5659 struct cmd_show_bypass_config_result {
5660 cmdline_fixed_string_t show;
5661 cmdline_fixed_string_t bypass;
5662 cmdline_fixed_string_t config;
5667 cmd_show_bypass_config_parsed(void *parsed_result,
5668 __rte_unused struct cmdline *cl,
5669 __rte_unused void *data)
5671 struct cmd_show_bypass_config_result *res = parsed_result;
5672 portid_t port_id = res->port_id;
5674 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS
5675 uint32_t event_mode;
5676 uint32_t bypass_mode;
5677 uint32_t timeout = bypass_timeout;
5680 static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] =
5681 {"off", "1.5", "2", "3", "4", "8", "16", "32"};
5682 static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] =
5683 {"UNKNOWN", "normal", "bypass", "isolate"};
5684 static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = {
5692 /* Display the bypass mode.*/
5693 if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) {
5694 printf("\tFailed to get bypass mode for port = %d\n", port_id);
5698 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode))
5699 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
5701 printf("\tbypass mode = %s\n", modes[bypass_mode]);
5704 /* Display the bypass timeout.*/
5705 if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout))
5706 timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
5708 printf("\tbypass timeout = %s\n", timeouts[timeout]);
5710 /* Display the bypass events and associated modes. */
5711 for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < RTE_DIM(events); i++) {
5713 if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) {
5714 printf("\tFailed to get bypass mode for event = %s\n",
5717 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode))
5718 event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
5720 printf("\tbypass event: %-16s = %s\n", events[i],
5726 printf("\tFailed to get bypass configuration for port = %d\n",
5730 cmdline_parse_token_string_t cmd_showbypass_config_show =
5731 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5733 cmdline_parse_token_string_t cmd_showbypass_config_bypass =
5734 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5736 cmdline_parse_token_string_t cmd_showbypass_config_config =
5737 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
5739 cmdline_parse_token_num_t cmd_showbypass_config_port =
5740 TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result,
5741 port_id, RTE_UINT16);
5743 cmdline_parse_inst_t cmd_show_bypass_config = {
5744 .f = cmd_show_bypass_config_parsed,
5745 .help_str = "show bypass config <port_id>: "
5746 "Show the NIC bypass config for port_id",
5749 (void *)&cmd_showbypass_config_show,
5750 (void *)&cmd_showbypass_config_bypass,
5751 (void *)&cmd_showbypass_config_config,
5752 (void *)&cmd_showbypass_config_port,
5758 /* *** SET BONDING MODE *** */
5759 struct cmd_set_bonding_mode_result {
5760 cmdline_fixed_string_t set;
5761 cmdline_fixed_string_t bonding;
5762 cmdline_fixed_string_t mode;
5767 static void cmd_set_bonding_mode_parsed(void *parsed_result,
5768 __rte_unused struct cmdline *cl,
5769 __rte_unused void *data)
5771 struct cmd_set_bonding_mode_result *res = parsed_result;
5772 portid_t port_id = res->port_id;
5774 /* Set the bonding mode for the relevant port. */
5775 if (0 != rte_eth_bond_mode_set(port_id, res->value))
5776 printf("\t Failed to set bonding mode for port = %d.\n", port_id);
5779 cmdline_parse_token_string_t cmd_setbonding_mode_set =
5780 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5782 cmdline_parse_token_string_t cmd_setbonding_mode_bonding =
5783 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5784 bonding, "bonding");
5785 cmdline_parse_token_string_t cmd_setbonding_mode_mode =
5786 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
5788 cmdline_parse_token_num_t cmd_setbonding_mode_value =
5789 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
5791 cmdline_parse_token_num_t cmd_setbonding_mode_port =
5792 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
5793 port_id, RTE_UINT16);
5795 cmdline_parse_inst_t cmd_set_bonding_mode = {
5796 .f = cmd_set_bonding_mode_parsed,
5797 .help_str = "set bonding mode <mode_value> <port_id>: "
5798 "Set the bonding mode for port_id",
5801 (void *) &cmd_setbonding_mode_set,
5802 (void *) &cmd_setbonding_mode_bonding,
5803 (void *) &cmd_setbonding_mode_mode,
5804 (void *) &cmd_setbonding_mode_value,
5805 (void *) &cmd_setbonding_mode_port,
5810 /* *** SET BONDING SLOW_QUEUE SW/HW *** */
5811 struct cmd_set_bonding_lacp_dedicated_queues_result {
5812 cmdline_fixed_string_t set;
5813 cmdline_fixed_string_t bonding;
5814 cmdline_fixed_string_t lacp;
5815 cmdline_fixed_string_t dedicated_queues;
5817 cmdline_fixed_string_t mode;
5820 static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result,
5821 __rte_unused struct cmdline *cl,
5822 __rte_unused void *data)
5824 struct cmd_set_bonding_lacp_dedicated_queues_result *res = parsed_result;
5825 portid_t port_id = res->port_id;
5826 struct rte_port *port;
5828 port = &ports[port_id];
5830 /** Check if the port is not started **/
5831 if (port->port_status != RTE_PORT_STOPPED) {
5832 printf("Please stop port %d first\n", port_id);
5836 if (!strcmp(res->mode, "enable")) {
5837 if (rte_eth_bond_8023ad_dedicated_queues_enable(port_id) == 0)
5838 printf("Dedicate queues for LACP control packets"
5841 printf("Enabling dedicate queues for LACP control "
5842 "packets on port %d failed\n", port_id);
5843 } else if (!strcmp(res->mode, "disable")) {
5844 if (rte_eth_bond_8023ad_dedicated_queues_disable(port_id) == 0)
5845 printf("Dedicated queues for LACP control packets "
5848 printf("Disabling dedicated queues for LACP control "
5849 "traffic on port %d failed\n", port_id);
5853 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_set =
5854 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5856 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_bonding =
5857 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5858 bonding, "bonding");
5859 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_lacp =
5860 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5862 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_dedicated_queues =
5863 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5864 dedicated_queues, "dedicated_queues");
5865 cmdline_parse_token_num_t cmd_setbonding_lacp_dedicated_queues_port_id =
5866 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5867 port_id, RTE_UINT16);
5868 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_mode =
5869 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result,
5870 mode, "enable#disable");
5872 cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = {
5873 .f = cmd_set_bonding_lacp_dedicated_queues_parsed,
5874 .help_str = "set bonding lacp dedicated_queues <port_id> "
5876 "Enable/disable dedicated queues for LACP control traffic for port_id",
5879 (void *)&cmd_setbonding_lacp_dedicated_queues_set,
5880 (void *)&cmd_setbonding_lacp_dedicated_queues_bonding,
5881 (void *)&cmd_setbonding_lacp_dedicated_queues_lacp,
5882 (void *)&cmd_setbonding_lacp_dedicated_queues_dedicated_queues,
5883 (void *)&cmd_setbonding_lacp_dedicated_queues_port_id,
5884 (void *)&cmd_setbonding_lacp_dedicated_queues_mode,
5889 /* *** SET BALANCE XMIT POLICY *** */
5890 struct cmd_set_bonding_balance_xmit_policy_result {
5891 cmdline_fixed_string_t set;
5892 cmdline_fixed_string_t bonding;
5893 cmdline_fixed_string_t balance_xmit_policy;
5895 cmdline_fixed_string_t policy;
5898 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result,
5899 __rte_unused struct cmdline *cl,
5900 __rte_unused void *data)
5902 struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result;
5903 portid_t port_id = res->port_id;
5906 if (!strcmp(res->policy, "l2")) {
5907 policy = BALANCE_XMIT_POLICY_LAYER2;
5908 } else if (!strcmp(res->policy, "l23")) {
5909 policy = BALANCE_XMIT_POLICY_LAYER23;
5910 } else if (!strcmp(res->policy, "l34")) {
5911 policy = BALANCE_XMIT_POLICY_LAYER34;
5913 printf("\t Invalid xmit policy selection");
5917 /* Set the bonding mode for the relevant port. */
5918 if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) {
5919 printf("\t Failed to set bonding balance xmit policy for port = %d.\n",
5924 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set =
5925 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5927 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding =
5928 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5929 bonding, "bonding");
5930 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy =
5931 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5932 balance_xmit_policy, "balance_xmit_policy");
5933 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port =
5934 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5935 port_id, RTE_UINT16);
5936 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy =
5937 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
5938 policy, "l2#l23#l34");
5940 cmdline_parse_inst_t cmd_set_balance_xmit_policy = {
5941 .f = cmd_set_bonding_balance_xmit_policy_parsed,
5942 .help_str = "set bonding balance_xmit_policy <port_id> "
5944 "Set the bonding balance_xmit_policy for port_id",
5947 (void *)&cmd_setbonding_balance_xmit_policy_set,
5948 (void *)&cmd_setbonding_balance_xmit_policy_bonding,
5949 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy,
5950 (void *)&cmd_setbonding_balance_xmit_policy_port,
5951 (void *)&cmd_setbonding_balance_xmit_policy_policy,
5956 /* *** SHOW NIC BONDING CONFIGURATION *** */
5957 struct cmd_show_bonding_config_result {
5958 cmdline_fixed_string_t show;
5959 cmdline_fixed_string_t bonding;
5960 cmdline_fixed_string_t config;
5964 static void cmd_show_bonding_config_parsed(void *parsed_result,
5965 __rte_unused struct cmdline *cl,
5966 __rte_unused void *data)
5968 struct cmd_show_bonding_config_result *res = parsed_result;
5969 int bonding_mode, agg_mode;
5970 portid_t slaves[RTE_MAX_ETHPORTS];
5971 int num_slaves, num_active_slaves;
5974 portid_t port_id = res->port_id;
5976 /* Display the bonding mode.*/
5977 bonding_mode = rte_eth_bond_mode_get(port_id);
5978 if (bonding_mode < 0) {
5979 printf("\tFailed to get bonding mode for port = %d\n", port_id);
5982 printf("\tBonding mode: %d\n", bonding_mode);
5984 if (bonding_mode == BONDING_MODE_BALANCE) {
5985 int balance_xmit_policy;
5987 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id);
5988 if (balance_xmit_policy < 0) {
5989 printf("\tFailed to get balance xmit policy for port = %d\n",
5993 printf("\tBalance Xmit Policy: ");
5995 switch (balance_xmit_policy) {
5996 case BALANCE_XMIT_POLICY_LAYER2:
5997 printf("BALANCE_XMIT_POLICY_LAYER2");
5999 case BALANCE_XMIT_POLICY_LAYER23:
6000 printf("BALANCE_XMIT_POLICY_LAYER23");
6002 case BALANCE_XMIT_POLICY_LAYER34:
6003 printf("BALANCE_XMIT_POLICY_LAYER34");
6010 if (bonding_mode == BONDING_MODE_8023AD) {
6011 agg_mode = rte_eth_bond_8023ad_agg_selection_get(port_id);
6012 printf("\tIEEE802.3AD Aggregator Mode: ");
6015 printf("bandwidth");
6027 num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS);
6029 if (num_slaves < 0) {
6030 printf("\tFailed to get slave list for port = %d\n", port_id);
6033 if (num_slaves > 0) {
6034 printf("\tSlaves (%d): [", num_slaves);
6035 for (i = 0; i < num_slaves - 1; i++)
6036 printf("%d ", slaves[i]);
6038 printf("%d]\n", slaves[num_slaves - 1]);
6040 printf("\tSlaves: []\n");
6044 num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves,
6047 if (num_active_slaves < 0) {
6048 printf("\tFailed to get active slave list for port = %d\n", port_id);
6051 if (num_active_slaves > 0) {
6052 printf("\tActive Slaves (%d): [", num_active_slaves);
6053 for (i = 0; i < num_active_slaves - 1; i++)
6054 printf("%d ", slaves[i]);
6056 printf("%d]\n", slaves[num_active_slaves - 1]);
6059 printf("\tActive Slaves: []\n");
6063 primary_id = rte_eth_bond_primary_get(port_id);
6064 if (primary_id < 0) {
6065 printf("\tFailed to get primary slave for port = %d\n", port_id);
6068 printf("\tPrimary: [%d]\n", primary_id);
6072 cmdline_parse_token_string_t cmd_showbonding_config_show =
6073 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6075 cmdline_parse_token_string_t cmd_showbonding_config_bonding =
6076 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6077 bonding, "bonding");
6078 cmdline_parse_token_string_t cmd_showbonding_config_config =
6079 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
6081 cmdline_parse_token_num_t cmd_showbonding_config_port =
6082 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result,
6083 port_id, RTE_UINT16);
6085 cmdline_parse_inst_t cmd_show_bonding_config = {
6086 .f = cmd_show_bonding_config_parsed,
6087 .help_str = "show bonding config <port_id>: "
6088 "Show the bonding config for port_id",
6091 (void *)&cmd_showbonding_config_show,
6092 (void *)&cmd_showbonding_config_bonding,
6093 (void *)&cmd_showbonding_config_config,
6094 (void *)&cmd_showbonding_config_port,
6099 /* *** SET BONDING PRIMARY *** */
6100 struct cmd_set_bonding_primary_result {
6101 cmdline_fixed_string_t set;
6102 cmdline_fixed_string_t bonding;
6103 cmdline_fixed_string_t primary;
6108 static void cmd_set_bonding_primary_parsed(void *parsed_result,
6109 __rte_unused struct cmdline *cl,
6110 __rte_unused void *data)
6112 struct cmd_set_bonding_primary_result *res = parsed_result;
6113 portid_t master_port_id = res->port_id;
6114 portid_t slave_port_id = res->slave_id;
6116 /* Set the primary slave for a bonded device. */
6117 if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) {
6118 printf("\t Failed to set primary slave for port = %d.\n",
6125 cmdline_parse_token_string_t cmd_setbonding_primary_set =
6126 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6128 cmdline_parse_token_string_t cmd_setbonding_primary_bonding =
6129 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6130 bonding, "bonding");
6131 cmdline_parse_token_string_t cmd_setbonding_primary_primary =
6132 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
6133 primary, "primary");
6134 cmdline_parse_token_num_t cmd_setbonding_primary_slave =
6135 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
6136 slave_id, RTE_UINT16);
6137 cmdline_parse_token_num_t cmd_setbonding_primary_port =
6138 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
6139 port_id, RTE_UINT16);
6141 cmdline_parse_inst_t cmd_set_bonding_primary = {
6142 .f = cmd_set_bonding_primary_parsed,
6143 .help_str = "set bonding primary <slave_id> <port_id>: "
6144 "Set the primary slave for port_id",
6147 (void *)&cmd_setbonding_primary_set,
6148 (void *)&cmd_setbonding_primary_bonding,
6149 (void *)&cmd_setbonding_primary_primary,
6150 (void *)&cmd_setbonding_primary_slave,
6151 (void *)&cmd_setbonding_primary_port,
6156 /* *** ADD SLAVE *** */
6157 struct cmd_add_bonding_slave_result {
6158 cmdline_fixed_string_t add;
6159 cmdline_fixed_string_t bonding;
6160 cmdline_fixed_string_t slave;
6165 static void cmd_add_bonding_slave_parsed(void *parsed_result,
6166 __rte_unused struct cmdline *cl,
6167 __rte_unused void *data)
6169 struct cmd_add_bonding_slave_result *res = parsed_result;
6170 portid_t master_port_id = res->port_id;
6171 portid_t slave_port_id = res->slave_id;
6173 /* add the slave for a bonded device. */
6174 if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) {
6175 printf("\t Failed to add slave %d to master port = %d.\n",
6176 slave_port_id, master_port_id);
6180 set_port_slave_flag(slave_port_id);
6183 cmdline_parse_token_string_t cmd_addbonding_slave_add =
6184 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6186 cmdline_parse_token_string_t cmd_addbonding_slave_bonding =
6187 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6188 bonding, "bonding");
6189 cmdline_parse_token_string_t cmd_addbonding_slave_slave =
6190 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
6192 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid =
6193 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
6194 slave_id, RTE_UINT16);
6195 cmdline_parse_token_num_t cmd_addbonding_slave_port =
6196 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
6197 port_id, RTE_UINT16);
6199 cmdline_parse_inst_t cmd_add_bonding_slave = {
6200 .f = cmd_add_bonding_slave_parsed,
6201 .help_str = "add bonding slave <slave_id> <port_id>: "
6202 "Add a slave device to a bonded device",
6205 (void *)&cmd_addbonding_slave_add,
6206 (void *)&cmd_addbonding_slave_bonding,
6207 (void *)&cmd_addbonding_slave_slave,
6208 (void *)&cmd_addbonding_slave_slaveid,
6209 (void *)&cmd_addbonding_slave_port,
6214 /* *** REMOVE SLAVE *** */
6215 struct cmd_remove_bonding_slave_result {
6216 cmdline_fixed_string_t remove;
6217 cmdline_fixed_string_t bonding;
6218 cmdline_fixed_string_t slave;
6223 static void cmd_remove_bonding_slave_parsed(void *parsed_result,
6224 __rte_unused struct cmdline *cl,
6225 __rte_unused void *data)
6227 struct cmd_remove_bonding_slave_result *res = parsed_result;
6228 portid_t master_port_id = res->port_id;
6229 portid_t slave_port_id = res->slave_id;
6231 /* remove the slave from a bonded device. */
6232 if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) {
6233 printf("\t Failed to remove slave %d from master port = %d.\n",
6234 slave_port_id, master_port_id);
6238 clear_port_slave_flag(slave_port_id);
6241 cmdline_parse_token_string_t cmd_removebonding_slave_remove =
6242 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6244 cmdline_parse_token_string_t cmd_removebonding_slave_bonding =
6245 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6246 bonding, "bonding");
6247 cmdline_parse_token_string_t cmd_removebonding_slave_slave =
6248 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
6250 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid =
6251 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
6252 slave_id, RTE_UINT16);
6253 cmdline_parse_token_num_t cmd_removebonding_slave_port =
6254 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
6255 port_id, RTE_UINT16);
6257 cmdline_parse_inst_t cmd_remove_bonding_slave = {
6258 .f = cmd_remove_bonding_slave_parsed,
6259 .help_str = "remove bonding slave <slave_id> <port_id>: "
6260 "Remove a slave device from a bonded device",
6263 (void *)&cmd_removebonding_slave_remove,
6264 (void *)&cmd_removebonding_slave_bonding,
6265 (void *)&cmd_removebonding_slave_slave,
6266 (void *)&cmd_removebonding_slave_slaveid,
6267 (void *)&cmd_removebonding_slave_port,
6272 /* *** CREATE BONDED DEVICE *** */
6273 struct cmd_create_bonded_device_result {
6274 cmdline_fixed_string_t create;
6275 cmdline_fixed_string_t bonded;
6276 cmdline_fixed_string_t device;
6281 static int bond_dev_num = 0;
6283 static void cmd_create_bonded_device_parsed(void *parsed_result,
6284 __rte_unused struct cmdline *cl,
6285 __rte_unused void *data)
6287 struct cmd_create_bonded_device_result *res = parsed_result;
6288 char ethdev_name[RTE_ETH_NAME_MAX_LEN];
6292 if (test_done == 0) {
6293 printf("Please stop forwarding first\n");
6297 snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bonding_testpmd_%d",
6300 /* Create a new bonded device. */
6301 port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket);
6303 printf("\t Failed to create bonded device.\n");
6306 printf("Created new bonded device %s on (port %d).\n", ethdev_name,
6309 /* Update number of ports */
6310 nb_ports = rte_eth_dev_count_avail();
6311 reconfig(port_id, res->socket);
6312 ret = rte_eth_promiscuous_enable(port_id);
6314 printf("Failed to enable promiscuous mode for port %u: %s - ignore\n",
6315 port_id, rte_strerror(-ret));
6317 ports[port_id].need_setup = 0;
6318 ports[port_id].port_status = RTE_PORT_STOPPED;
6323 cmdline_parse_token_string_t cmd_createbonded_device_create =
6324 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6326 cmdline_parse_token_string_t cmd_createbonded_device_bonded =
6327 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6329 cmdline_parse_token_string_t cmd_createbonded_device_device =
6330 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
6332 cmdline_parse_token_num_t cmd_createbonded_device_mode =
6333 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
6335 cmdline_parse_token_num_t cmd_createbonded_device_socket =
6336 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
6339 cmdline_parse_inst_t cmd_create_bonded_device = {
6340 .f = cmd_create_bonded_device_parsed,
6341 .help_str = "create bonded device <mode> <socket>: "
6342 "Create a new bonded device with specific bonding mode and socket",
6345 (void *)&cmd_createbonded_device_create,
6346 (void *)&cmd_createbonded_device_bonded,
6347 (void *)&cmd_createbonded_device_device,
6348 (void *)&cmd_createbonded_device_mode,
6349 (void *)&cmd_createbonded_device_socket,
6354 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */
6355 struct cmd_set_bond_mac_addr_result {
6356 cmdline_fixed_string_t set;
6357 cmdline_fixed_string_t bonding;
6358 cmdline_fixed_string_t mac_addr;
6360 struct rte_ether_addr address;
6363 static void cmd_set_bond_mac_addr_parsed(void *parsed_result,
6364 __rte_unused struct cmdline *cl,
6365 __rte_unused void *data)
6367 struct cmd_set_bond_mac_addr_result *res = parsed_result;
6370 if (port_id_is_invalid(res->port_num, ENABLED_WARN))
6373 ret = rte_eth_bond_mac_address_set(res->port_num, &res->address);
6375 /* check the return value and print it if is < 0 */
6377 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
6380 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set =
6381 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set");
6382 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding =
6383 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding,
6385 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac =
6386 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr,
6388 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum =
6389 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result,
6390 port_num, RTE_UINT16);
6391 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr =
6392 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address);
6394 cmdline_parse_inst_t cmd_set_bond_mac_addr = {
6395 .f = cmd_set_bond_mac_addr_parsed,
6397 .help_str = "set bonding mac_addr <port_id> <mac_addr>",
6399 (void *)&cmd_set_bond_mac_addr_set,
6400 (void *)&cmd_set_bond_mac_addr_bonding,
6401 (void *)&cmd_set_bond_mac_addr_mac,
6402 (void *)&cmd_set_bond_mac_addr_portnum,
6403 (void *)&cmd_set_bond_mac_addr_addr,
6409 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */
6410 struct cmd_set_bond_mon_period_result {
6411 cmdline_fixed_string_t set;
6412 cmdline_fixed_string_t bonding;
6413 cmdline_fixed_string_t mon_period;
6418 static void cmd_set_bond_mon_period_parsed(void *parsed_result,
6419 __rte_unused struct cmdline *cl,
6420 __rte_unused void *data)
6422 struct cmd_set_bond_mon_period_result *res = parsed_result;
6425 ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms);
6427 /* check the return value and print it if is < 0 */
6429 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
6432 cmdline_parse_token_string_t cmd_set_bond_mon_period_set =
6433 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6435 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding =
6436 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6437 bonding, "bonding");
6438 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period =
6439 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
6440 mon_period, "mon_period");
6441 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum =
6442 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
6443 port_num, RTE_UINT16);
6444 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms =
6445 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
6446 period_ms, RTE_UINT32);
6448 cmdline_parse_inst_t cmd_set_bond_mon_period = {
6449 .f = cmd_set_bond_mon_period_parsed,
6451 .help_str = "set bonding mon_period <port_id> <period_ms>",
6453 (void *)&cmd_set_bond_mon_period_set,
6454 (void *)&cmd_set_bond_mon_period_bonding,
6455 (void *)&cmd_set_bond_mon_period_mon_period,
6456 (void *)&cmd_set_bond_mon_period_portnum,
6457 (void *)&cmd_set_bond_mon_period_period_ms,
6464 struct cmd_set_bonding_agg_mode_policy_result {
6465 cmdline_fixed_string_t set;
6466 cmdline_fixed_string_t bonding;
6467 cmdline_fixed_string_t agg_mode;
6469 cmdline_fixed_string_t policy;
6474 cmd_set_bonding_agg_mode(void *parsed_result,
6475 __rte_unused struct cmdline *cl,
6476 __rte_unused void *data)
6478 struct cmd_set_bonding_agg_mode_policy_result *res = parsed_result;
6479 uint8_t policy = AGG_BANDWIDTH;
6481 if (!strcmp(res->policy, "bandwidth"))
6482 policy = AGG_BANDWIDTH;
6483 else if (!strcmp(res->policy, "stable"))
6484 policy = AGG_STABLE;
6485 else if (!strcmp(res->policy, "count"))
6488 rte_eth_bond_8023ad_agg_selection_set(res->port_num, policy);
6492 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_set =
6493 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6495 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_bonding =
6496 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6497 bonding, "bonding");
6499 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_agg_mode =
6500 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6501 agg_mode, "agg_mode");
6503 cmdline_parse_token_num_t cmd_set_bonding_agg_mode_portnum =
6504 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result,
6505 port_num, RTE_UINT16);
6507 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_policy_string =
6508 TOKEN_STRING_INITIALIZER(
6509 struct cmd_set_bonding_balance_xmit_policy_result,
6510 policy, "stable#bandwidth#count");
6512 cmdline_parse_inst_t cmd_set_bonding_agg_mode_policy = {
6513 .f = cmd_set_bonding_agg_mode,
6515 .help_str = "set bonding mode IEEE802.3AD aggregator policy <port_id> <agg_name>",
6517 (void *)&cmd_set_bonding_agg_mode_set,
6518 (void *)&cmd_set_bonding_agg_mode_bonding,
6519 (void *)&cmd_set_bonding_agg_mode_agg_mode,
6520 (void *)&cmd_set_bonding_agg_mode_portnum,
6521 (void *)&cmd_set_bonding_agg_mode_policy_string,
6527 #endif /* RTE_NET_BOND */
6529 /* *** SET FORWARDING MODE *** */
6530 struct cmd_set_fwd_mode_result {
6531 cmdline_fixed_string_t set;
6532 cmdline_fixed_string_t fwd;
6533 cmdline_fixed_string_t mode;
6536 static void cmd_set_fwd_mode_parsed(void *parsed_result,
6537 __rte_unused struct cmdline *cl,
6538 __rte_unused void *data)
6540 struct cmd_set_fwd_mode_result *res = parsed_result;
6543 set_pkt_forwarding_mode(res->mode);
6546 cmdline_parse_token_string_t cmd_setfwd_set =
6547 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set");
6548 cmdline_parse_token_string_t cmd_setfwd_fwd =
6549 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd");
6550 cmdline_parse_token_string_t cmd_setfwd_mode =
6551 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode,
6552 "" /* defined at init */);
6554 cmdline_parse_inst_t cmd_set_fwd_mode = {
6555 .f = cmd_set_fwd_mode_parsed,
6557 .help_str = NULL, /* defined at init */
6559 (void *)&cmd_setfwd_set,
6560 (void *)&cmd_setfwd_fwd,
6561 (void *)&cmd_setfwd_mode,
6566 static void cmd_set_fwd_mode_init(void)
6569 static char token[128];
6570 static char help[256];
6571 cmdline_parse_token_string_t *token_struct;
6573 modes = list_pkt_forwarding_modes();
6574 snprintf(help, sizeof(help), "set fwd %s: "
6575 "Set packet forwarding mode", modes);
6576 cmd_set_fwd_mode.help_str = help;
6578 /* string token separator is # */
6579 for (c = token; *modes != '\0'; modes++)
6584 token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2];
6585 token_struct->string_data.str = token;
6588 /* *** SET RETRY FORWARDING MODE *** */
6589 struct cmd_set_fwd_retry_mode_result {
6590 cmdline_fixed_string_t set;
6591 cmdline_fixed_string_t fwd;
6592 cmdline_fixed_string_t mode;
6593 cmdline_fixed_string_t retry;
6596 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result,
6597 __rte_unused struct cmdline *cl,
6598 __rte_unused void *data)
6600 struct cmd_set_fwd_retry_mode_result *res = parsed_result;
6603 set_pkt_forwarding_mode(res->mode);
6606 cmdline_parse_token_string_t cmd_setfwd_retry_set =
6607 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6609 cmdline_parse_token_string_t cmd_setfwd_retry_fwd =
6610 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6612 cmdline_parse_token_string_t cmd_setfwd_retry_mode =
6613 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6615 "" /* defined at init */);
6616 cmdline_parse_token_string_t cmd_setfwd_retry_retry =
6617 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
6620 cmdline_parse_inst_t cmd_set_fwd_retry_mode = {
6621 .f = cmd_set_fwd_retry_mode_parsed,
6623 .help_str = NULL, /* defined at init */
6625 (void *)&cmd_setfwd_retry_set,
6626 (void *)&cmd_setfwd_retry_fwd,
6627 (void *)&cmd_setfwd_retry_mode,
6628 (void *)&cmd_setfwd_retry_retry,
6633 static void cmd_set_fwd_retry_mode_init(void)
6636 static char token[128];
6637 static char help[256];
6638 cmdline_parse_token_string_t *token_struct;
6640 modes = list_pkt_forwarding_retry_modes();
6641 snprintf(help, sizeof(help), "set fwd %s retry: "
6642 "Set packet forwarding mode with retry", modes);
6643 cmd_set_fwd_retry_mode.help_str = help;
6645 /* string token separator is # */
6646 for (c = token; *modes != '\0'; modes++)
6651 token_struct = (cmdline_parse_token_string_t *)
6652 cmd_set_fwd_retry_mode.tokens[2];
6653 token_struct->string_data.str = token;
6656 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */
6657 struct cmd_set_burst_tx_retry_result {
6658 cmdline_fixed_string_t set;
6659 cmdline_fixed_string_t burst;
6660 cmdline_fixed_string_t tx;
6661 cmdline_fixed_string_t delay;
6663 cmdline_fixed_string_t retry;
6667 static void cmd_set_burst_tx_retry_parsed(void *parsed_result,
6668 __rte_unused struct cmdline *cl,
6669 __rte_unused void *data)
6671 struct cmd_set_burst_tx_retry_result *res = parsed_result;
6673 if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst")
6674 && !strcmp(res->tx, "tx")) {
6675 if (!strcmp(res->delay, "delay"))
6676 burst_tx_delay_time = res->time;
6677 if (!strcmp(res->retry, "retry"))
6678 burst_tx_retry_num = res->retry_num;
6683 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set =
6684 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set");
6685 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst =
6686 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst,
6688 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx =
6689 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx");
6690 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay =
6691 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay");
6692 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time =
6693 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time,
6695 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry =
6696 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry");
6697 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num =
6698 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num,
6701 cmdline_parse_inst_t cmd_set_burst_tx_retry = {
6702 .f = cmd_set_burst_tx_retry_parsed,
6703 .help_str = "set burst tx delay <delay_usec> retry <num_retry>",
6705 (void *)&cmd_set_burst_tx_retry_set,
6706 (void *)&cmd_set_burst_tx_retry_burst,
6707 (void *)&cmd_set_burst_tx_retry_tx,
6708 (void *)&cmd_set_burst_tx_retry_delay,
6709 (void *)&cmd_set_burst_tx_retry_time,
6710 (void *)&cmd_set_burst_tx_retry_retry,
6711 (void *)&cmd_set_burst_tx_retry_retry_num,
6716 /* *** SET PROMISC MODE *** */
6717 struct cmd_set_promisc_mode_result {
6718 cmdline_fixed_string_t set;
6719 cmdline_fixed_string_t promisc;
6720 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
6721 uint16_t port_num; /* valid if "allports" argument == 0 */
6722 cmdline_fixed_string_t mode;
6725 static void cmd_set_promisc_mode_parsed(void *parsed_result,
6726 __rte_unused struct cmdline *cl,
6729 struct cmd_set_promisc_mode_result *res = parsed_result;
6733 if (!strcmp(res->mode, "on"))
6740 RTE_ETH_FOREACH_DEV(i)
6741 eth_set_promisc_mode(i, enable);
6743 eth_set_promisc_mode(res->port_num, enable);
6747 cmdline_parse_token_string_t cmd_setpromisc_set =
6748 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set");
6749 cmdline_parse_token_string_t cmd_setpromisc_promisc =
6750 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc,
6752 cmdline_parse_token_string_t cmd_setpromisc_portall =
6753 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all,
6755 cmdline_parse_token_num_t cmd_setpromisc_portnum =
6756 TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num,
6758 cmdline_parse_token_string_t cmd_setpromisc_mode =
6759 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode,
6762 cmdline_parse_inst_t cmd_set_promisc_mode_all = {
6763 .f = cmd_set_promisc_mode_parsed,
6765 .help_str = "set promisc all on|off: Set promisc mode for all ports",
6767 (void *)&cmd_setpromisc_set,
6768 (void *)&cmd_setpromisc_promisc,
6769 (void *)&cmd_setpromisc_portall,
6770 (void *)&cmd_setpromisc_mode,
6775 cmdline_parse_inst_t cmd_set_promisc_mode_one = {
6776 .f = cmd_set_promisc_mode_parsed,
6778 .help_str = "set promisc <port_id> on|off: Set promisc mode on port_id",
6780 (void *)&cmd_setpromisc_set,
6781 (void *)&cmd_setpromisc_promisc,
6782 (void *)&cmd_setpromisc_portnum,
6783 (void *)&cmd_setpromisc_mode,
6788 /* *** SET ALLMULTI MODE *** */
6789 struct cmd_set_allmulti_mode_result {
6790 cmdline_fixed_string_t set;
6791 cmdline_fixed_string_t allmulti;
6792 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
6793 uint16_t port_num; /* valid if "allports" argument == 0 */
6794 cmdline_fixed_string_t mode;
6797 static void cmd_set_allmulti_mode_parsed(void *parsed_result,
6798 __rte_unused struct cmdline *cl,
6801 struct cmd_set_allmulti_mode_result *res = parsed_result;
6805 if (!strcmp(res->mode, "on"))
6812 RTE_ETH_FOREACH_DEV(i) {
6813 eth_set_allmulticast_mode(i, enable);
6817 eth_set_allmulticast_mode(res->port_num, enable);
6821 cmdline_parse_token_string_t cmd_setallmulti_set =
6822 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set");
6823 cmdline_parse_token_string_t cmd_setallmulti_allmulti =
6824 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti,
6826 cmdline_parse_token_string_t cmd_setallmulti_portall =
6827 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all,
6829 cmdline_parse_token_num_t cmd_setallmulti_portnum =
6830 TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num,
6832 cmdline_parse_token_string_t cmd_setallmulti_mode =
6833 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode,
6836 cmdline_parse_inst_t cmd_set_allmulti_mode_all = {
6837 .f = cmd_set_allmulti_mode_parsed,
6839 .help_str = "set allmulti all on|off: Set allmulti mode for all ports",
6841 (void *)&cmd_setallmulti_set,
6842 (void *)&cmd_setallmulti_allmulti,
6843 (void *)&cmd_setallmulti_portall,
6844 (void *)&cmd_setallmulti_mode,
6849 cmdline_parse_inst_t cmd_set_allmulti_mode_one = {
6850 .f = cmd_set_allmulti_mode_parsed,
6852 .help_str = "set allmulti <port_id> on|off: "
6853 "Set allmulti mode on port_id",
6855 (void *)&cmd_setallmulti_set,
6856 (void *)&cmd_setallmulti_allmulti,
6857 (void *)&cmd_setallmulti_portnum,
6858 (void *)&cmd_setallmulti_mode,
6863 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */
6864 struct cmd_link_flow_ctrl_set_result {
6865 cmdline_fixed_string_t set;
6866 cmdline_fixed_string_t flow_ctrl;
6867 cmdline_fixed_string_t rx;
6868 cmdline_fixed_string_t rx_lfc_mode;
6869 cmdline_fixed_string_t tx;
6870 cmdline_fixed_string_t tx_lfc_mode;
6871 cmdline_fixed_string_t mac_ctrl_frame_fwd;
6872 cmdline_fixed_string_t mac_ctrl_frame_fwd_mode;
6873 cmdline_fixed_string_t autoneg_str;
6874 cmdline_fixed_string_t autoneg;
6875 cmdline_fixed_string_t hw_str;
6876 uint32_t high_water;
6877 cmdline_fixed_string_t lw_str;
6879 cmdline_fixed_string_t pt_str;
6880 uint16_t pause_time;
6881 cmdline_fixed_string_t xon_str;
6886 cmdline_parse_token_string_t cmd_lfc_set_set =
6887 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6889 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl =
6890 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6891 flow_ctrl, "flow_ctrl");
6892 cmdline_parse_token_string_t cmd_lfc_set_rx =
6893 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6895 cmdline_parse_token_string_t cmd_lfc_set_rx_mode =
6896 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6897 rx_lfc_mode, "on#off");
6898 cmdline_parse_token_string_t cmd_lfc_set_tx =
6899 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6901 cmdline_parse_token_string_t cmd_lfc_set_tx_mode =
6902 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6903 tx_lfc_mode, "on#off");
6904 cmdline_parse_token_string_t cmd_lfc_set_high_water_str =
6905 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6906 hw_str, "high_water");
6907 cmdline_parse_token_num_t cmd_lfc_set_high_water =
6908 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6909 high_water, RTE_UINT32);
6910 cmdline_parse_token_string_t cmd_lfc_set_low_water_str =
6911 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6912 lw_str, "low_water");
6913 cmdline_parse_token_num_t cmd_lfc_set_low_water =
6914 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6915 low_water, RTE_UINT32);
6916 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str =
6917 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6918 pt_str, "pause_time");
6919 cmdline_parse_token_num_t cmd_lfc_set_pause_time =
6920 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6921 pause_time, RTE_UINT16);
6922 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str =
6923 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6924 xon_str, "send_xon");
6925 cmdline_parse_token_num_t cmd_lfc_set_send_xon =
6926 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6927 send_xon, RTE_UINT16);
6928 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode =
6929 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6930 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd");
6931 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd =
6932 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6933 mac_ctrl_frame_fwd_mode, "on#off");
6934 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str =
6935 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6936 autoneg_str, "autoneg");
6937 cmdline_parse_token_string_t cmd_lfc_set_autoneg =
6938 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6940 cmdline_parse_token_num_t cmd_lfc_set_portid =
6941 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
6942 port_id, RTE_UINT16);
6944 /* forward declaration */
6946 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl,
6949 cmdline_parse_inst_t cmd_link_flow_control_set = {
6950 .f = cmd_link_flow_ctrl_set_parsed,
6952 .help_str = "set flow_ctrl rx on|off tx on|off <high_water> "
6953 "<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off "
6954 "autoneg on|off <port_id>: Configure the Ethernet flow control",
6956 (void *)&cmd_lfc_set_set,
6957 (void *)&cmd_lfc_set_flow_ctrl,
6958 (void *)&cmd_lfc_set_rx,
6959 (void *)&cmd_lfc_set_rx_mode,
6960 (void *)&cmd_lfc_set_tx,
6961 (void *)&cmd_lfc_set_tx_mode,
6962 (void *)&cmd_lfc_set_high_water,
6963 (void *)&cmd_lfc_set_low_water,
6964 (void *)&cmd_lfc_set_pause_time,
6965 (void *)&cmd_lfc_set_send_xon,
6966 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
6967 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
6968 (void *)&cmd_lfc_set_autoneg_str,
6969 (void *)&cmd_lfc_set_autoneg,
6970 (void *)&cmd_lfc_set_portid,
6975 cmdline_parse_inst_t cmd_link_flow_control_set_rx = {
6976 .f = cmd_link_flow_ctrl_set_parsed,
6977 .data = (void *)&cmd_link_flow_control_set_rx,
6978 .help_str = "set flow_ctrl rx on|off <port_id>: "
6979 "Change rx flow control parameter",
6981 (void *)&cmd_lfc_set_set,
6982 (void *)&cmd_lfc_set_flow_ctrl,
6983 (void *)&cmd_lfc_set_rx,
6984 (void *)&cmd_lfc_set_rx_mode,
6985 (void *)&cmd_lfc_set_portid,
6990 cmdline_parse_inst_t cmd_link_flow_control_set_tx = {
6991 .f = cmd_link_flow_ctrl_set_parsed,
6992 .data = (void *)&cmd_link_flow_control_set_tx,
6993 .help_str = "set flow_ctrl tx on|off <port_id>: "
6994 "Change tx flow control parameter",
6996 (void *)&cmd_lfc_set_set,
6997 (void *)&cmd_lfc_set_flow_ctrl,
6998 (void *)&cmd_lfc_set_tx,
6999 (void *)&cmd_lfc_set_tx_mode,
7000 (void *)&cmd_lfc_set_portid,
7005 cmdline_parse_inst_t cmd_link_flow_control_set_hw = {
7006 .f = cmd_link_flow_ctrl_set_parsed,
7007 .data = (void *)&cmd_link_flow_control_set_hw,
7008 .help_str = "set flow_ctrl high_water <value> <port_id>: "
7009 "Change high water flow control parameter",
7011 (void *)&cmd_lfc_set_set,
7012 (void *)&cmd_lfc_set_flow_ctrl,
7013 (void *)&cmd_lfc_set_high_water_str,
7014 (void *)&cmd_lfc_set_high_water,
7015 (void *)&cmd_lfc_set_portid,
7020 cmdline_parse_inst_t cmd_link_flow_control_set_lw = {
7021 .f = cmd_link_flow_ctrl_set_parsed,
7022 .data = (void *)&cmd_link_flow_control_set_lw,
7023 .help_str = "set flow_ctrl low_water <value> <port_id>: "
7024 "Change low water flow control parameter",
7026 (void *)&cmd_lfc_set_set,
7027 (void *)&cmd_lfc_set_flow_ctrl,
7028 (void *)&cmd_lfc_set_low_water_str,
7029 (void *)&cmd_lfc_set_low_water,
7030 (void *)&cmd_lfc_set_portid,
7035 cmdline_parse_inst_t cmd_link_flow_control_set_pt = {
7036 .f = cmd_link_flow_ctrl_set_parsed,
7037 .data = (void *)&cmd_link_flow_control_set_pt,
7038 .help_str = "set flow_ctrl pause_time <value> <port_id>: "
7039 "Change pause time flow control parameter",
7041 (void *)&cmd_lfc_set_set,
7042 (void *)&cmd_lfc_set_flow_ctrl,
7043 (void *)&cmd_lfc_set_pause_time_str,
7044 (void *)&cmd_lfc_set_pause_time,
7045 (void *)&cmd_lfc_set_portid,
7050 cmdline_parse_inst_t cmd_link_flow_control_set_xon = {
7051 .f = cmd_link_flow_ctrl_set_parsed,
7052 .data = (void *)&cmd_link_flow_control_set_xon,
7053 .help_str = "set flow_ctrl send_xon <value> <port_id>: "
7054 "Change send_xon flow control parameter",
7056 (void *)&cmd_lfc_set_set,
7057 (void *)&cmd_lfc_set_flow_ctrl,
7058 (void *)&cmd_lfc_set_send_xon_str,
7059 (void *)&cmd_lfc_set_send_xon,
7060 (void *)&cmd_lfc_set_portid,
7065 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = {
7066 .f = cmd_link_flow_ctrl_set_parsed,
7067 .data = (void *)&cmd_link_flow_control_set_macfwd,
7068 .help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: "
7069 "Change mac ctrl fwd flow control parameter",
7071 (void *)&cmd_lfc_set_set,
7072 (void *)&cmd_lfc_set_flow_ctrl,
7073 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
7074 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
7075 (void *)&cmd_lfc_set_portid,
7080 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = {
7081 .f = cmd_link_flow_ctrl_set_parsed,
7082 .data = (void *)&cmd_link_flow_control_set_autoneg,
7083 .help_str = "set flow_ctrl autoneg on|off <port_id>: "
7084 "Change autoneg flow control parameter",
7086 (void *)&cmd_lfc_set_set,
7087 (void *)&cmd_lfc_set_flow_ctrl,
7088 (void *)&cmd_lfc_set_autoneg_str,
7089 (void *)&cmd_lfc_set_autoneg,
7090 (void *)&cmd_lfc_set_portid,
7096 cmd_link_flow_ctrl_set_parsed(void *parsed_result,
7097 __rte_unused struct cmdline *cl,
7100 struct cmd_link_flow_ctrl_set_result *res = parsed_result;
7101 cmdline_parse_inst_t *cmd = data;
7102 struct rte_eth_fc_conf fc_conf;
7108 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
7109 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
7110 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
7111 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
7113 static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = {
7114 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
7117 /* Partial command line, retrieve current configuration */
7119 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
7121 printf("cannot get current flow ctrl parameters, return"
7122 "code = %d\n", ret);
7126 if ((fc_conf.mode == RTE_FC_RX_PAUSE) ||
7127 (fc_conf.mode == RTE_FC_FULL))
7129 if ((fc_conf.mode == RTE_FC_TX_PAUSE) ||
7130 (fc_conf.mode == RTE_FC_FULL))
7134 if (!cmd || cmd == &cmd_link_flow_control_set_rx)
7135 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0;
7137 if (!cmd || cmd == &cmd_link_flow_control_set_tx)
7138 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0;
7140 fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en];
7142 if (!cmd || cmd == &cmd_link_flow_control_set_hw)
7143 fc_conf.high_water = res->high_water;
7145 if (!cmd || cmd == &cmd_link_flow_control_set_lw)
7146 fc_conf.low_water = res->low_water;
7148 if (!cmd || cmd == &cmd_link_flow_control_set_pt)
7149 fc_conf.pause_time = res->pause_time;
7151 if (!cmd || cmd == &cmd_link_flow_control_set_xon)
7152 fc_conf.send_xon = res->send_xon;
7154 if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) {
7155 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on"))
7156 fc_conf.mac_ctrl_frame_fwd = 1;
7158 fc_conf.mac_ctrl_frame_fwd = 0;
7161 if (!cmd || cmd == &cmd_link_flow_control_set_autoneg)
7162 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0;
7164 ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf);
7166 printf("bad flow contrl parameter, return code = %d \n", ret);
7169 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */
7170 struct cmd_priority_flow_ctrl_set_result {
7171 cmdline_fixed_string_t set;
7172 cmdline_fixed_string_t pfc_ctrl;
7173 cmdline_fixed_string_t rx;
7174 cmdline_fixed_string_t rx_pfc_mode;
7175 cmdline_fixed_string_t tx;
7176 cmdline_fixed_string_t tx_pfc_mode;
7177 uint32_t high_water;
7179 uint16_t pause_time;
7185 cmd_priority_flow_ctrl_set_parsed(void *parsed_result,
7186 __rte_unused struct cmdline *cl,
7187 __rte_unused void *data)
7189 struct cmd_priority_flow_ctrl_set_result *res = parsed_result;
7190 struct rte_eth_pfc_conf pfc_conf;
7191 int rx_fc_enable, tx_fc_enable;
7195 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
7196 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
7197 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
7198 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
7200 static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = {
7201 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
7204 memset(&pfc_conf, 0, sizeof(struct rte_eth_pfc_conf));
7205 rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0;
7206 tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0;
7207 pfc_conf.fc.mode = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable];
7208 pfc_conf.fc.high_water = res->high_water;
7209 pfc_conf.fc.low_water = res->low_water;
7210 pfc_conf.fc.pause_time = res->pause_time;
7211 pfc_conf.priority = res->priority;
7213 ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf);
7215 printf("bad priority flow contrl parameter, return code = %d \n", ret);
7218 cmdline_parse_token_string_t cmd_pfc_set_set =
7219 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7221 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl =
7222 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7223 pfc_ctrl, "pfc_ctrl");
7224 cmdline_parse_token_string_t cmd_pfc_set_rx =
7225 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7227 cmdline_parse_token_string_t cmd_pfc_set_rx_mode =
7228 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7229 rx_pfc_mode, "on#off");
7230 cmdline_parse_token_string_t cmd_pfc_set_tx =
7231 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7233 cmdline_parse_token_string_t cmd_pfc_set_tx_mode =
7234 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7235 tx_pfc_mode, "on#off");
7236 cmdline_parse_token_num_t cmd_pfc_set_high_water =
7237 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7238 high_water, RTE_UINT32);
7239 cmdline_parse_token_num_t cmd_pfc_set_low_water =
7240 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7241 low_water, RTE_UINT32);
7242 cmdline_parse_token_num_t cmd_pfc_set_pause_time =
7243 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7244 pause_time, RTE_UINT16);
7245 cmdline_parse_token_num_t cmd_pfc_set_priority =
7246 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7247 priority, RTE_UINT8);
7248 cmdline_parse_token_num_t cmd_pfc_set_portid =
7249 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
7250 port_id, RTE_UINT16);
7252 cmdline_parse_inst_t cmd_priority_flow_control_set = {
7253 .f = cmd_priority_flow_ctrl_set_parsed,
7255 .help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> "
7256 "<pause_time> <priority> <port_id>: "
7257 "Configure the Ethernet priority flow control",
7259 (void *)&cmd_pfc_set_set,
7260 (void *)&cmd_pfc_set_flow_ctrl,
7261 (void *)&cmd_pfc_set_rx,
7262 (void *)&cmd_pfc_set_rx_mode,
7263 (void *)&cmd_pfc_set_tx,
7264 (void *)&cmd_pfc_set_tx_mode,
7265 (void *)&cmd_pfc_set_high_water,
7266 (void *)&cmd_pfc_set_low_water,
7267 (void *)&cmd_pfc_set_pause_time,
7268 (void *)&cmd_pfc_set_priority,
7269 (void *)&cmd_pfc_set_portid,
7274 /* *** RESET CONFIGURATION *** */
7275 struct cmd_reset_result {
7276 cmdline_fixed_string_t reset;
7277 cmdline_fixed_string_t def;
7280 static void cmd_reset_parsed(__rte_unused void *parsed_result,
7282 __rte_unused void *data)
7284 cmdline_printf(cl, "Reset to default forwarding configuration...\n");
7285 set_def_fwd_config();
7288 cmdline_parse_token_string_t cmd_reset_set =
7289 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set");
7290 cmdline_parse_token_string_t cmd_reset_def =
7291 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def,
7294 cmdline_parse_inst_t cmd_reset = {
7295 .f = cmd_reset_parsed,
7297 .help_str = "set default: Reset default forwarding configuration",
7299 (void *)&cmd_reset_set,
7300 (void *)&cmd_reset_def,
7305 /* *** START FORWARDING *** */
7306 struct cmd_start_result {
7307 cmdline_fixed_string_t start;
7310 cmdline_parse_token_string_t cmd_start_start =
7311 TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start");
7313 static void cmd_start_parsed(__rte_unused void *parsed_result,
7314 __rte_unused struct cmdline *cl,
7315 __rte_unused void *data)
7317 start_packet_forwarding(0);
7320 cmdline_parse_inst_t cmd_start = {
7321 .f = cmd_start_parsed,
7323 .help_str = "start: Start packet forwarding",
7325 (void *)&cmd_start_start,
7330 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */
7331 struct cmd_start_tx_first_result {
7332 cmdline_fixed_string_t start;
7333 cmdline_fixed_string_t tx_first;
7337 cmd_start_tx_first_parsed(__rte_unused void *parsed_result,
7338 __rte_unused struct cmdline *cl,
7339 __rte_unused void *data)
7341 start_packet_forwarding(1);
7344 cmdline_parse_token_string_t cmd_start_tx_first_start =
7345 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start,
7347 cmdline_parse_token_string_t cmd_start_tx_first_tx_first =
7348 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result,
7349 tx_first, "tx_first");
7351 cmdline_parse_inst_t cmd_start_tx_first = {
7352 .f = cmd_start_tx_first_parsed,
7354 .help_str = "start tx_first: Start packet forwarding, "
7355 "after sending 1 burst of packets",
7357 (void *)&cmd_start_tx_first_start,
7358 (void *)&cmd_start_tx_first_tx_first,
7363 /* *** START FORWARDING WITH N TX BURST FIRST *** */
7364 struct cmd_start_tx_first_n_result {
7365 cmdline_fixed_string_t start;
7366 cmdline_fixed_string_t tx_first;
7371 cmd_start_tx_first_n_parsed(void *parsed_result,
7372 __rte_unused struct cmdline *cl,
7373 __rte_unused void *data)
7375 struct cmd_start_tx_first_n_result *res = parsed_result;
7377 start_packet_forwarding(res->tx_num);
7380 cmdline_parse_token_string_t cmd_start_tx_first_n_start =
7381 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
7383 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first =
7384 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
7385 tx_first, "tx_first");
7386 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num =
7387 TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result,
7388 tx_num, RTE_UINT32);
7390 cmdline_parse_inst_t cmd_start_tx_first_n = {
7391 .f = cmd_start_tx_first_n_parsed,
7393 .help_str = "start tx_first <num>: "
7394 "packet forwarding, after sending <num> bursts of packets",
7396 (void *)&cmd_start_tx_first_n_start,
7397 (void *)&cmd_start_tx_first_n_tx_first,
7398 (void *)&cmd_start_tx_first_n_tx_num,
7403 /* *** SET LINK UP *** */
7404 struct cmd_set_link_up_result {
7405 cmdline_fixed_string_t set;
7406 cmdline_fixed_string_t link_up;
7407 cmdline_fixed_string_t port;
7411 cmdline_parse_token_string_t cmd_set_link_up_set =
7412 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set");
7413 cmdline_parse_token_string_t cmd_set_link_up_link_up =
7414 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up,
7416 cmdline_parse_token_string_t cmd_set_link_up_port =
7417 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port");
7418 cmdline_parse_token_num_t cmd_set_link_up_port_id =
7419 TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id,
7422 static void cmd_set_link_up_parsed(__rte_unused void *parsed_result,
7423 __rte_unused struct cmdline *cl,
7424 __rte_unused void *data)
7426 struct cmd_set_link_up_result *res = parsed_result;
7427 dev_set_link_up(res->port_id);
7430 cmdline_parse_inst_t cmd_set_link_up = {
7431 .f = cmd_set_link_up_parsed,
7433 .help_str = "set link-up port <port id>",
7435 (void *)&cmd_set_link_up_set,
7436 (void *)&cmd_set_link_up_link_up,
7437 (void *)&cmd_set_link_up_port,
7438 (void *)&cmd_set_link_up_port_id,
7443 /* *** SET LINK DOWN *** */
7444 struct cmd_set_link_down_result {
7445 cmdline_fixed_string_t set;
7446 cmdline_fixed_string_t link_down;
7447 cmdline_fixed_string_t port;
7451 cmdline_parse_token_string_t cmd_set_link_down_set =
7452 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set");
7453 cmdline_parse_token_string_t cmd_set_link_down_link_down =
7454 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down,
7456 cmdline_parse_token_string_t cmd_set_link_down_port =
7457 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port");
7458 cmdline_parse_token_num_t cmd_set_link_down_port_id =
7459 TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id,
7462 static void cmd_set_link_down_parsed(
7463 __rte_unused void *parsed_result,
7464 __rte_unused struct cmdline *cl,
7465 __rte_unused void *data)
7467 struct cmd_set_link_down_result *res = parsed_result;
7468 dev_set_link_down(res->port_id);
7471 cmdline_parse_inst_t cmd_set_link_down = {
7472 .f = cmd_set_link_down_parsed,
7474 .help_str = "set link-down port <port id>",
7476 (void *)&cmd_set_link_down_set,
7477 (void *)&cmd_set_link_down_link_down,
7478 (void *)&cmd_set_link_down_port,
7479 (void *)&cmd_set_link_down_port_id,
7484 /* *** SHOW CFG *** */
7485 struct cmd_showcfg_result {
7486 cmdline_fixed_string_t show;
7487 cmdline_fixed_string_t cfg;
7488 cmdline_fixed_string_t what;
7491 static void cmd_showcfg_parsed(void *parsed_result,
7492 __rte_unused struct cmdline *cl,
7493 __rte_unused void *data)
7495 struct cmd_showcfg_result *res = parsed_result;
7496 if (!strcmp(res->what, "rxtx"))
7497 rxtx_config_display();
7498 else if (!strcmp(res->what, "cores"))
7499 fwd_lcores_config_display();
7500 else if (!strcmp(res->what, "fwd"))
7501 pkt_fwd_config_display(&cur_fwd_config);
7502 else if (!strcmp(res->what, "rxoffs"))
7503 show_rx_pkt_offsets();
7504 else if (!strcmp(res->what, "rxpkts"))
7505 show_rx_pkt_segments();
7506 else if (!strcmp(res->what, "txpkts"))
7507 show_tx_pkt_segments();
7508 else if (!strcmp(res->what, "txtimes"))
7509 show_tx_pkt_times();
7512 cmdline_parse_token_string_t cmd_showcfg_show =
7513 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show");
7514 cmdline_parse_token_string_t cmd_showcfg_port =
7515 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config");
7516 cmdline_parse_token_string_t cmd_showcfg_what =
7517 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what,
7518 "rxtx#cores#fwd#rxoffs#rxpkts#txpkts#txtimes");
7520 cmdline_parse_inst_t cmd_showcfg = {
7521 .f = cmd_showcfg_parsed,
7523 .help_str = "show config rxtx|cores|fwd|rxoffs|rxpkts|txpkts|txtimes",
7525 (void *)&cmd_showcfg_show,
7526 (void *)&cmd_showcfg_port,
7527 (void *)&cmd_showcfg_what,
7532 /* *** SHOW ALL PORT INFO *** */
7533 struct cmd_showportall_result {
7534 cmdline_fixed_string_t show;
7535 cmdline_fixed_string_t port;
7536 cmdline_fixed_string_t what;
7537 cmdline_fixed_string_t all;
7540 static void cmd_showportall_parsed(void *parsed_result,
7541 __rte_unused struct cmdline *cl,
7542 __rte_unused void *data)
7546 struct cmd_showportall_result *res = parsed_result;
7547 if (!strcmp(res->show, "clear")) {
7548 if (!strcmp(res->what, "stats"))
7549 RTE_ETH_FOREACH_DEV(i)
7551 else if (!strcmp(res->what, "xstats"))
7552 RTE_ETH_FOREACH_DEV(i)
7553 nic_xstats_clear(i);
7554 } else if (!strcmp(res->what, "info"))
7555 RTE_ETH_FOREACH_DEV(i)
7556 port_infos_display(i);
7557 else if (!strcmp(res->what, "summary")) {
7558 port_summary_header_display();
7559 RTE_ETH_FOREACH_DEV(i)
7560 port_summary_display(i);
7562 else if (!strcmp(res->what, "stats"))
7563 RTE_ETH_FOREACH_DEV(i)
7564 nic_stats_display(i);
7565 else if (!strcmp(res->what, "xstats"))
7566 RTE_ETH_FOREACH_DEV(i)
7567 nic_xstats_display(i);
7568 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
7569 else if (!strcmp(res->what, "fdir"))
7570 RTE_ETH_FOREACH_DEV(i)
7573 else if (!strcmp(res->what, "dcb_tc"))
7574 RTE_ETH_FOREACH_DEV(i)
7575 port_dcb_info_display(i);
7576 else if (!strcmp(res->what, "cap"))
7577 RTE_ETH_FOREACH_DEV(i)
7578 port_offload_cap_display(i);
7581 cmdline_parse_token_string_t cmd_showportall_show =
7582 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show,
7584 cmdline_parse_token_string_t cmd_showportall_port =
7585 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port");
7586 cmdline_parse_token_string_t cmd_showportall_what =
7587 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what,
7588 "info#summary#stats#xstats#fdir#dcb_tc#cap");
7589 cmdline_parse_token_string_t cmd_showportall_all =
7590 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all");
7591 cmdline_parse_inst_t cmd_showportall = {
7592 .f = cmd_showportall_parsed,
7594 .help_str = "show|clear port "
7595 "info|summary|stats|xstats|fdir|dcb_tc|cap all",
7597 (void *)&cmd_showportall_show,
7598 (void *)&cmd_showportall_port,
7599 (void *)&cmd_showportall_what,
7600 (void *)&cmd_showportall_all,
7605 /* *** SHOW PORT INFO *** */
7606 struct cmd_showport_result {
7607 cmdline_fixed_string_t show;
7608 cmdline_fixed_string_t port;
7609 cmdline_fixed_string_t what;
7613 static void cmd_showport_parsed(void *parsed_result,
7614 __rte_unused struct cmdline *cl,
7615 __rte_unused void *data)
7617 struct cmd_showport_result *res = parsed_result;
7618 if (!strcmp(res->show, "clear")) {
7619 if (!strcmp(res->what, "stats"))
7620 nic_stats_clear(res->portnum);
7621 else if (!strcmp(res->what, "xstats"))
7622 nic_xstats_clear(res->portnum);
7623 } else if (!strcmp(res->what, "info"))
7624 port_infos_display(res->portnum);
7625 else if (!strcmp(res->what, "summary")) {
7626 port_summary_header_display();
7627 port_summary_display(res->portnum);
7629 else if (!strcmp(res->what, "stats"))
7630 nic_stats_display(res->portnum);
7631 else if (!strcmp(res->what, "xstats"))
7632 nic_xstats_display(res->portnum);
7633 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
7634 else if (!strcmp(res->what, "fdir"))
7635 fdir_get_infos(res->portnum);
7637 else if (!strcmp(res->what, "dcb_tc"))
7638 port_dcb_info_display(res->portnum);
7639 else if (!strcmp(res->what, "cap"))
7640 port_offload_cap_display(res->portnum);
7643 cmdline_parse_token_string_t cmd_showport_show =
7644 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show,
7646 cmdline_parse_token_string_t cmd_showport_port =
7647 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port");
7648 cmdline_parse_token_string_t cmd_showport_what =
7649 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what,
7650 "info#summary#stats#xstats#fdir#dcb_tc#cap");
7651 cmdline_parse_token_num_t cmd_showport_portnum =
7652 TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, RTE_UINT16);
7654 cmdline_parse_inst_t cmd_showport = {
7655 .f = cmd_showport_parsed,
7657 .help_str = "show|clear port "
7658 "info|summary|stats|xstats|fdir|dcb_tc|cap "
7661 (void *)&cmd_showport_show,
7662 (void *)&cmd_showport_port,
7663 (void *)&cmd_showport_what,
7664 (void *)&cmd_showport_portnum,
7669 /* *** SHOW DEVICE INFO *** */
7670 struct cmd_showdevice_result {
7671 cmdline_fixed_string_t show;
7672 cmdline_fixed_string_t device;
7673 cmdline_fixed_string_t what;
7674 cmdline_fixed_string_t identifier;
7677 static void cmd_showdevice_parsed(void *parsed_result,
7678 __rte_unused struct cmdline *cl,
7679 __rte_unused void *data)
7681 struct cmd_showdevice_result *res = parsed_result;
7682 if (!strcmp(res->what, "info")) {
7683 if (!strcmp(res->identifier, "all"))
7684 device_infos_display(NULL);
7686 device_infos_display(res->identifier);
7690 cmdline_parse_token_string_t cmd_showdevice_show =
7691 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, show,
7693 cmdline_parse_token_string_t cmd_showdevice_device =
7694 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, device, "device");
7695 cmdline_parse_token_string_t cmd_showdevice_what =
7696 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, what,
7698 cmdline_parse_token_string_t cmd_showdevice_identifier =
7699 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result,
7702 cmdline_parse_inst_t cmd_showdevice = {
7703 .f = cmd_showdevice_parsed,
7705 .help_str = "show device info <identifier>|all",
7707 (void *)&cmd_showdevice_show,
7708 (void *)&cmd_showdevice_device,
7709 (void *)&cmd_showdevice_what,
7710 (void *)&cmd_showdevice_identifier,
7715 /* *** SHOW MODULE EEPROM/EEPROM port INFO *** */
7716 struct cmd_showeeprom_result {
7717 cmdline_fixed_string_t show;
7718 cmdline_fixed_string_t port;
7720 cmdline_fixed_string_t type;
7723 static void cmd_showeeprom_parsed(void *parsed_result,
7724 __rte_unused struct cmdline *cl,
7725 __rte_unused void *data)
7727 struct cmd_showeeprom_result *res = parsed_result;
7729 if (!strcmp(res->type, "eeprom"))
7730 port_eeprom_display(res->portnum);
7731 else if (!strcmp(res->type, "module_eeprom"))
7732 port_module_eeprom_display(res->portnum);
7734 printf("Unknown argument\n");
7737 cmdline_parse_token_string_t cmd_showeeprom_show =
7738 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, show, "show");
7739 cmdline_parse_token_string_t cmd_showeeprom_port =
7740 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, port, "port");
7741 cmdline_parse_token_num_t cmd_showeeprom_portnum =
7742 TOKEN_NUM_INITIALIZER(struct cmd_showeeprom_result, portnum,
7744 cmdline_parse_token_string_t cmd_showeeprom_type =
7745 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, type, "module_eeprom#eeprom");
7747 cmdline_parse_inst_t cmd_showeeprom = {
7748 .f = cmd_showeeprom_parsed,
7750 .help_str = "show port <port_id> module_eeprom|eeprom",
7752 (void *)&cmd_showeeprom_show,
7753 (void *)&cmd_showeeprom_port,
7754 (void *)&cmd_showeeprom_portnum,
7755 (void *)&cmd_showeeprom_type,
7760 /* *** SHOW QUEUE INFO *** */
7761 struct cmd_showqueue_result {
7762 cmdline_fixed_string_t show;
7763 cmdline_fixed_string_t type;
7764 cmdline_fixed_string_t what;
7770 cmd_showqueue_parsed(void *parsed_result,
7771 __rte_unused struct cmdline *cl,
7772 __rte_unused void *data)
7774 struct cmd_showqueue_result *res = parsed_result;
7776 if (!strcmp(res->type, "rxq"))
7777 rx_queue_infos_display(res->portnum, res->queuenum);
7778 else if (!strcmp(res->type, "txq"))
7779 tx_queue_infos_display(res->portnum, res->queuenum);
7782 cmdline_parse_token_string_t cmd_showqueue_show =
7783 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show");
7784 cmdline_parse_token_string_t cmd_showqueue_type =
7785 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq");
7786 cmdline_parse_token_string_t cmd_showqueue_what =
7787 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info");
7788 cmdline_parse_token_num_t cmd_showqueue_portnum =
7789 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum,
7791 cmdline_parse_token_num_t cmd_showqueue_queuenum =
7792 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum,
7795 cmdline_parse_inst_t cmd_showqueue = {
7796 .f = cmd_showqueue_parsed,
7798 .help_str = "show rxq|txq info <port_id> <queue_id>",
7800 (void *)&cmd_showqueue_show,
7801 (void *)&cmd_showqueue_type,
7802 (void *)&cmd_showqueue_what,
7803 (void *)&cmd_showqueue_portnum,
7804 (void *)&cmd_showqueue_queuenum,
7809 /* show/clear fwd engine statistics */
7811 cmdline_fixed_string_t action;
7812 cmdline_fixed_string_t fwd;
7813 cmdline_fixed_string_t stats;
7814 cmdline_fixed_string_t all;
7817 cmdline_parse_token_string_t cmd_fwd_action =
7818 TOKEN_STRING_INITIALIZER(struct fwd_result, action, "show#clear");
7819 cmdline_parse_token_string_t cmd_fwd_fwd =
7820 TOKEN_STRING_INITIALIZER(struct fwd_result, fwd, "fwd");
7821 cmdline_parse_token_string_t cmd_fwd_stats =
7822 TOKEN_STRING_INITIALIZER(struct fwd_result, stats, "stats");
7823 cmdline_parse_token_string_t cmd_fwd_all =
7824 TOKEN_STRING_INITIALIZER(struct fwd_result, all, "all");
7827 cmd_showfwdall_parsed(void *parsed_result,
7828 __rte_unused struct cmdline *cl,
7829 __rte_unused void *data)
7831 struct fwd_result *res = parsed_result;
7833 if (!strcmp(res->action, "show"))
7834 fwd_stats_display();
7839 static cmdline_parse_inst_t cmd_showfwdall = {
7840 .f = cmd_showfwdall_parsed,
7842 .help_str = "show|clear fwd stats all",
7844 (void *)&cmd_fwd_action,
7845 (void *)&cmd_fwd_fwd,
7846 (void *)&cmd_fwd_stats,
7847 (void *)&cmd_fwd_all,
7852 /* *** READ PORT REGISTER *** */
7853 struct cmd_read_reg_result {
7854 cmdline_fixed_string_t read;
7855 cmdline_fixed_string_t reg;
7861 cmd_read_reg_parsed(void *parsed_result,
7862 __rte_unused struct cmdline *cl,
7863 __rte_unused void *data)
7865 struct cmd_read_reg_result *res = parsed_result;
7866 port_reg_display(res->port_id, res->reg_off);
7869 cmdline_parse_token_string_t cmd_read_reg_read =
7870 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read");
7871 cmdline_parse_token_string_t cmd_read_reg_reg =
7872 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg");
7873 cmdline_parse_token_num_t cmd_read_reg_port_id =
7874 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, RTE_UINT16);
7875 cmdline_parse_token_num_t cmd_read_reg_reg_off =
7876 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, RTE_UINT32);
7878 cmdline_parse_inst_t cmd_read_reg = {
7879 .f = cmd_read_reg_parsed,
7881 .help_str = "read reg <port_id> <reg_off>",
7883 (void *)&cmd_read_reg_read,
7884 (void *)&cmd_read_reg_reg,
7885 (void *)&cmd_read_reg_port_id,
7886 (void *)&cmd_read_reg_reg_off,
7891 /* *** READ PORT REGISTER BIT FIELD *** */
7892 struct cmd_read_reg_bit_field_result {
7893 cmdline_fixed_string_t read;
7894 cmdline_fixed_string_t regfield;
7902 cmd_read_reg_bit_field_parsed(void *parsed_result,
7903 __rte_unused struct cmdline *cl,
7904 __rte_unused void *data)
7906 struct cmd_read_reg_bit_field_result *res = parsed_result;
7907 port_reg_bit_field_display(res->port_id, res->reg_off,
7908 res->bit1_pos, res->bit2_pos);
7911 cmdline_parse_token_string_t cmd_read_reg_bit_field_read =
7912 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read,
7914 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield =
7915 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result,
7916 regfield, "regfield");
7917 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id =
7918 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id,
7920 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off =
7921 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off,
7923 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos =
7924 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos,
7926 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos =
7927 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos,
7930 cmdline_parse_inst_t cmd_read_reg_bit_field = {
7931 .f = cmd_read_reg_bit_field_parsed,
7933 .help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: "
7934 "Read register bit field between bit_x and bit_y included",
7936 (void *)&cmd_read_reg_bit_field_read,
7937 (void *)&cmd_read_reg_bit_field_regfield,
7938 (void *)&cmd_read_reg_bit_field_port_id,
7939 (void *)&cmd_read_reg_bit_field_reg_off,
7940 (void *)&cmd_read_reg_bit_field_bit1_pos,
7941 (void *)&cmd_read_reg_bit_field_bit2_pos,
7946 /* *** READ PORT REGISTER BIT *** */
7947 struct cmd_read_reg_bit_result {
7948 cmdline_fixed_string_t read;
7949 cmdline_fixed_string_t regbit;
7956 cmd_read_reg_bit_parsed(void *parsed_result,
7957 __rte_unused struct cmdline *cl,
7958 __rte_unused void *data)
7960 struct cmd_read_reg_bit_result *res = parsed_result;
7961 port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos);
7964 cmdline_parse_token_string_t cmd_read_reg_bit_read =
7965 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read");
7966 cmdline_parse_token_string_t cmd_read_reg_bit_regbit =
7967 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result,
7969 cmdline_parse_token_num_t cmd_read_reg_bit_port_id =
7970 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id,
7972 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off =
7973 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off,
7975 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos =
7976 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos,
7979 cmdline_parse_inst_t cmd_read_reg_bit = {
7980 .f = cmd_read_reg_bit_parsed,
7982 .help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31",
7984 (void *)&cmd_read_reg_bit_read,
7985 (void *)&cmd_read_reg_bit_regbit,
7986 (void *)&cmd_read_reg_bit_port_id,
7987 (void *)&cmd_read_reg_bit_reg_off,
7988 (void *)&cmd_read_reg_bit_bit_pos,
7993 /* *** WRITE PORT REGISTER *** */
7994 struct cmd_write_reg_result {
7995 cmdline_fixed_string_t write;
7996 cmdline_fixed_string_t reg;
8003 cmd_write_reg_parsed(void *parsed_result,
8004 __rte_unused struct cmdline *cl,
8005 __rte_unused void *data)
8007 struct cmd_write_reg_result *res = parsed_result;
8008 port_reg_set(res->port_id, res->reg_off, res->value);
8011 cmdline_parse_token_string_t cmd_write_reg_write =
8012 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write");
8013 cmdline_parse_token_string_t cmd_write_reg_reg =
8014 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg");
8015 cmdline_parse_token_num_t cmd_write_reg_port_id =
8016 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, RTE_UINT16);
8017 cmdline_parse_token_num_t cmd_write_reg_reg_off =
8018 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, RTE_UINT32);
8019 cmdline_parse_token_num_t cmd_write_reg_value =
8020 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, RTE_UINT32);
8022 cmdline_parse_inst_t cmd_write_reg = {
8023 .f = cmd_write_reg_parsed,
8025 .help_str = "write reg <port_id> <reg_off> <reg_value>",
8027 (void *)&cmd_write_reg_write,
8028 (void *)&cmd_write_reg_reg,
8029 (void *)&cmd_write_reg_port_id,
8030 (void *)&cmd_write_reg_reg_off,
8031 (void *)&cmd_write_reg_value,
8036 /* *** WRITE PORT REGISTER BIT FIELD *** */
8037 struct cmd_write_reg_bit_field_result {
8038 cmdline_fixed_string_t write;
8039 cmdline_fixed_string_t regfield;
8048 cmd_write_reg_bit_field_parsed(void *parsed_result,
8049 __rte_unused struct cmdline *cl,
8050 __rte_unused void *data)
8052 struct cmd_write_reg_bit_field_result *res = parsed_result;
8053 port_reg_bit_field_set(res->port_id, res->reg_off,
8054 res->bit1_pos, res->bit2_pos, res->value);
8057 cmdline_parse_token_string_t cmd_write_reg_bit_field_write =
8058 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write,
8060 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield =
8061 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result,
8062 regfield, "regfield");
8063 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id =
8064 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id,
8066 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off =
8067 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off,
8069 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos =
8070 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos,
8072 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos =
8073 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos,
8075 cmdline_parse_token_num_t cmd_write_reg_bit_field_value =
8076 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value,
8079 cmdline_parse_inst_t cmd_write_reg_bit_field = {
8080 .f = cmd_write_reg_bit_field_parsed,
8082 .help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> "
8084 "Set register bit field between bit_x and bit_y included",
8086 (void *)&cmd_write_reg_bit_field_write,
8087 (void *)&cmd_write_reg_bit_field_regfield,
8088 (void *)&cmd_write_reg_bit_field_port_id,
8089 (void *)&cmd_write_reg_bit_field_reg_off,
8090 (void *)&cmd_write_reg_bit_field_bit1_pos,
8091 (void *)&cmd_write_reg_bit_field_bit2_pos,
8092 (void *)&cmd_write_reg_bit_field_value,
8097 /* *** WRITE PORT REGISTER BIT *** */
8098 struct cmd_write_reg_bit_result {
8099 cmdline_fixed_string_t write;
8100 cmdline_fixed_string_t regbit;
8108 cmd_write_reg_bit_parsed(void *parsed_result,
8109 __rte_unused struct cmdline *cl,
8110 __rte_unused void *data)
8112 struct cmd_write_reg_bit_result *res = parsed_result;
8113 port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value);
8116 cmdline_parse_token_string_t cmd_write_reg_bit_write =
8117 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write,
8119 cmdline_parse_token_string_t cmd_write_reg_bit_regbit =
8120 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result,
8122 cmdline_parse_token_num_t cmd_write_reg_bit_port_id =
8123 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id,
8125 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off =
8126 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off,
8128 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos =
8129 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos,
8131 cmdline_parse_token_num_t cmd_write_reg_bit_value =
8132 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value,
8135 cmdline_parse_inst_t cmd_write_reg_bit = {
8136 .f = cmd_write_reg_bit_parsed,
8138 .help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: "
8141 (void *)&cmd_write_reg_bit_write,
8142 (void *)&cmd_write_reg_bit_regbit,
8143 (void *)&cmd_write_reg_bit_port_id,
8144 (void *)&cmd_write_reg_bit_reg_off,
8145 (void *)&cmd_write_reg_bit_bit_pos,
8146 (void *)&cmd_write_reg_bit_value,
8151 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */
8152 struct cmd_read_rxd_txd_result {
8153 cmdline_fixed_string_t read;
8154 cmdline_fixed_string_t rxd_txd;
8161 cmd_read_rxd_txd_parsed(void *parsed_result,
8162 __rte_unused struct cmdline *cl,
8163 __rte_unused void *data)
8165 struct cmd_read_rxd_txd_result *res = parsed_result;
8167 if (!strcmp(res->rxd_txd, "rxd"))
8168 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
8169 else if (!strcmp(res->rxd_txd, "txd"))
8170 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
8173 cmdline_parse_token_string_t cmd_read_rxd_txd_read =
8174 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read");
8175 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd =
8176 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd,
8178 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id =
8179 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id,
8181 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id =
8182 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id,
8184 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id =
8185 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id,
8188 cmdline_parse_inst_t cmd_read_rxd_txd = {
8189 .f = cmd_read_rxd_txd_parsed,
8191 .help_str = "read rxd|txd <port_id> <queue_id> <desc_id>",
8193 (void *)&cmd_read_rxd_txd_read,
8194 (void *)&cmd_read_rxd_txd_rxd_txd,
8195 (void *)&cmd_read_rxd_txd_port_id,
8196 (void *)&cmd_read_rxd_txd_queue_id,
8197 (void *)&cmd_read_rxd_txd_desc_id,
8203 struct cmd_quit_result {
8204 cmdline_fixed_string_t quit;
8207 static void cmd_quit_parsed(__rte_unused void *parsed_result,
8209 __rte_unused void *data)
8214 cmdline_parse_token_string_t cmd_quit_quit =
8215 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit");
8217 cmdline_parse_inst_t cmd_quit = {
8218 .f = cmd_quit_parsed,
8220 .help_str = "quit: Exit application",
8222 (void *)&cmd_quit_quit,
8227 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */
8228 struct cmd_mac_addr_result {
8229 cmdline_fixed_string_t mac_addr_cmd;
8230 cmdline_fixed_string_t what;
8232 struct rte_ether_addr address;
8235 static void cmd_mac_addr_parsed(void *parsed_result,
8236 __rte_unused struct cmdline *cl,
8237 __rte_unused void *data)
8239 struct cmd_mac_addr_result *res = parsed_result;
8242 if (strcmp(res->what, "add") == 0)
8243 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0);
8244 else if (strcmp(res->what, "set") == 0)
8245 ret = rte_eth_dev_default_mac_addr_set(res->port_num,
8248 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address);
8250 /* check the return value and print it if is < 0 */
8252 printf("mac_addr_cmd error: (%s)\n", strerror(-ret));
8256 cmdline_parse_token_string_t cmd_mac_addr_cmd =
8257 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd,
8259 cmdline_parse_token_string_t cmd_mac_addr_what =
8260 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what,
8262 cmdline_parse_token_num_t cmd_mac_addr_portnum =
8263 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num,
8265 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr =
8266 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
8268 cmdline_parse_inst_t cmd_mac_addr = {
8269 .f = cmd_mac_addr_parsed,
8271 .help_str = "mac_addr add|remove|set <port_id> <mac_addr>: "
8272 "Add/Remove/Set MAC address on port_id",
8274 (void *)&cmd_mac_addr_cmd,
8275 (void *)&cmd_mac_addr_what,
8276 (void *)&cmd_mac_addr_portnum,
8277 (void *)&cmd_mac_addr_addr,
8282 /* *** SET THE PEER ADDRESS FOR CERTAIN PORT *** */
8283 struct cmd_eth_peer_result {
8284 cmdline_fixed_string_t set;
8285 cmdline_fixed_string_t eth_peer;
8287 cmdline_fixed_string_t peer_addr;
8290 static void cmd_set_eth_peer_parsed(void *parsed_result,
8291 __rte_unused struct cmdline *cl,
8292 __rte_unused void *data)
8294 struct cmd_eth_peer_result *res = parsed_result;
8296 if (test_done == 0) {
8297 printf("Please stop forwarding first\n");
8300 if (!strcmp(res->eth_peer, "eth-peer")) {
8301 set_fwd_eth_peer(res->port_id, res->peer_addr);
8305 cmdline_parse_token_string_t cmd_eth_peer_set =
8306 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, set, "set");
8307 cmdline_parse_token_string_t cmd_eth_peer =
8308 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, eth_peer, "eth-peer");
8309 cmdline_parse_token_num_t cmd_eth_peer_port_id =
8310 TOKEN_NUM_INITIALIZER(struct cmd_eth_peer_result, port_id,
8312 cmdline_parse_token_string_t cmd_eth_peer_addr =
8313 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, peer_addr, NULL);
8315 cmdline_parse_inst_t cmd_set_fwd_eth_peer = {
8316 .f = cmd_set_eth_peer_parsed,
8318 .help_str = "set eth-peer <port_id> <peer_mac>",
8320 (void *)&cmd_eth_peer_set,
8321 (void *)&cmd_eth_peer,
8322 (void *)&cmd_eth_peer_port_id,
8323 (void *)&cmd_eth_peer_addr,
8328 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */
8329 struct cmd_set_qmap_result {
8330 cmdline_fixed_string_t set;
8331 cmdline_fixed_string_t qmap;
8332 cmdline_fixed_string_t what;
8339 cmd_set_qmap_parsed(void *parsed_result,
8340 __rte_unused struct cmdline *cl,
8341 __rte_unused void *data)
8343 struct cmd_set_qmap_result *res = parsed_result;
8344 int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1;
8346 set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value);
8349 cmdline_parse_token_string_t cmd_setqmap_set =
8350 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8352 cmdline_parse_token_string_t cmd_setqmap_qmap =
8353 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8355 cmdline_parse_token_string_t cmd_setqmap_what =
8356 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
8358 cmdline_parse_token_num_t cmd_setqmap_portid =
8359 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8360 port_id, RTE_UINT16);
8361 cmdline_parse_token_num_t cmd_setqmap_queueid =
8362 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8363 queue_id, RTE_UINT16);
8364 cmdline_parse_token_num_t cmd_setqmap_mapvalue =
8365 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
8366 map_value, RTE_UINT8);
8368 cmdline_parse_inst_t cmd_set_qmap = {
8369 .f = cmd_set_qmap_parsed,
8371 .help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: "
8372 "Set statistics mapping value on tx|rx queue_id of port_id",
8374 (void *)&cmd_setqmap_set,
8375 (void *)&cmd_setqmap_qmap,
8376 (void *)&cmd_setqmap_what,
8377 (void *)&cmd_setqmap_portid,
8378 (void *)&cmd_setqmap_queueid,
8379 (void *)&cmd_setqmap_mapvalue,
8384 /* *** SET OPTION TO HIDE ZERO VALUES FOR XSTATS DISPLAY *** */
8385 struct cmd_set_xstats_hide_zero_result {
8386 cmdline_fixed_string_t keyword;
8387 cmdline_fixed_string_t name;
8388 cmdline_fixed_string_t on_off;
8392 cmd_set_xstats_hide_zero_parsed(void *parsed_result,
8393 __rte_unused struct cmdline *cl,
8394 __rte_unused void *data)
8396 struct cmd_set_xstats_hide_zero_result *res;
8397 uint16_t on_off = 0;
8399 res = parsed_result;
8400 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8401 set_xstats_hide_zero(on_off);
8404 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_keyword =
8405 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8407 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_name =
8408 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8409 name, "xstats-hide-zero");
8410 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_on_off =
8411 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result,
8414 cmdline_parse_inst_t cmd_set_xstats_hide_zero = {
8415 .f = cmd_set_xstats_hide_zero_parsed,
8417 .help_str = "set xstats-hide-zero on|off",
8419 (void *)&cmd_set_xstats_hide_zero_keyword,
8420 (void *)&cmd_set_xstats_hide_zero_name,
8421 (void *)&cmd_set_xstats_hide_zero_on_off,
8426 /* *** SET OPTION TO ENABLE MEASUREMENT OF CPU CYCLES *** */
8427 struct cmd_set_record_core_cycles_result {
8428 cmdline_fixed_string_t keyword;
8429 cmdline_fixed_string_t name;
8430 cmdline_fixed_string_t on_off;
8434 cmd_set_record_core_cycles_parsed(void *parsed_result,
8435 __rte_unused struct cmdline *cl,
8436 __rte_unused void *data)
8438 struct cmd_set_record_core_cycles_result *res;
8439 uint16_t on_off = 0;
8441 res = parsed_result;
8442 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8443 set_record_core_cycles(on_off);
8446 cmdline_parse_token_string_t cmd_set_record_core_cycles_keyword =
8447 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8449 cmdline_parse_token_string_t cmd_set_record_core_cycles_name =
8450 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8451 name, "record-core-cycles");
8452 cmdline_parse_token_string_t cmd_set_record_core_cycles_on_off =
8453 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result,
8456 cmdline_parse_inst_t cmd_set_record_core_cycles = {
8457 .f = cmd_set_record_core_cycles_parsed,
8459 .help_str = "set record-core-cycles on|off",
8461 (void *)&cmd_set_record_core_cycles_keyword,
8462 (void *)&cmd_set_record_core_cycles_name,
8463 (void *)&cmd_set_record_core_cycles_on_off,
8468 /* *** SET OPTION TO ENABLE DISPLAY OF RX AND TX BURSTS *** */
8469 struct cmd_set_record_burst_stats_result {
8470 cmdline_fixed_string_t keyword;
8471 cmdline_fixed_string_t name;
8472 cmdline_fixed_string_t on_off;
8476 cmd_set_record_burst_stats_parsed(void *parsed_result,
8477 __rte_unused struct cmdline *cl,
8478 __rte_unused void *data)
8480 struct cmd_set_record_burst_stats_result *res;
8481 uint16_t on_off = 0;
8483 res = parsed_result;
8484 on_off = !strcmp(res->on_off, "on") ? 1 : 0;
8485 set_record_burst_stats(on_off);
8488 cmdline_parse_token_string_t cmd_set_record_burst_stats_keyword =
8489 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8491 cmdline_parse_token_string_t cmd_set_record_burst_stats_name =
8492 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8493 name, "record-burst-stats");
8494 cmdline_parse_token_string_t cmd_set_record_burst_stats_on_off =
8495 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result,
8498 cmdline_parse_inst_t cmd_set_record_burst_stats = {
8499 .f = cmd_set_record_burst_stats_parsed,
8501 .help_str = "set record-burst-stats on|off",
8503 (void *)&cmd_set_record_burst_stats_keyword,
8504 (void *)&cmd_set_record_burst_stats_name,
8505 (void *)&cmd_set_record_burst_stats_on_off,
8510 /* *** CONFIGURE UNICAST HASH TABLE *** */
8511 struct cmd_set_uc_hash_table {
8512 cmdline_fixed_string_t set;
8513 cmdline_fixed_string_t port;
8515 cmdline_fixed_string_t what;
8516 struct rte_ether_addr address;
8517 cmdline_fixed_string_t mode;
8521 cmd_set_uc_hash_parsed(void *parsed_result,
8522 __rte_unused struct cmdline *cl,
8523 __rte_unused void *data)
8526 struct cmd_set_uc_hash_table *res = parsed_result;
8528 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8530 if (strcmp(res->what, "uta") == 0)
8531 ret = rte_eth_dev_uc_hash_table_set(res->port_id,
8532 &res->address,(uint8_t)is_on);
8534 printf("bad unicast hash table parameter, return code = %d \n", ret);
8538 cmdline_parse_token_string_t cmd_set_uc_hash_set =
8539 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8541 cmdline_parse_token_string_t cmd_set_uc_hash_port =
8542 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8544 cmdline_parse_token_num_t cmd_set_uc_hash_portid =
8545 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table,
8546 port_id, RTE_UINT16);
8547 cmdline_parse_token_string_t cmd_set_uc_hash_what =
8548 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8550 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac =
8551 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table,
8553 cmdline_parse_token_string_t cmd_set_uc_hash_mode =
8554 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
8557 cmdline_parse_inst_t cmd_set_uc_hash_filter = {
8558 .f = cmd_set_uc_hash_parsed,
8560 .help_str = "set port <port_id> uta <mac_addr> on|off)",
8562 (void *)&cmd_set_uc_hash_set,
8563 (void *)&cmd_set_uc_hash_port,
8564 (void *)&cmd_set_uc_hash_portid,
8565 (void *)&cmd_set_uc_hash_what,
8566 (void *)&cmd_set_uc_hash_mac,
8567 (void *)&cmd_set_uc_hash_mode,
8572 struct cmd_set_uc_all_hash_table {
8573 cmdline_fixed_string_t set;
8574 cmdline_fixed_string_t port;
8576 cmdline_fixed_string_t what;
8577 cmdline_fixed_string_t value;
8578 cmdline_fixed_string_t mode;
8582 cmd_set_uc_all_hash_parsed(void *parsed_result,
8583 __rte_unused struct cmdline *cl,
8584 __rte_unused void *data)
8587 struct cmd_set_uc_all_hash_table *res = parsed_result;
8589 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8591 if ((strcmp(res->what, "uta") == 0) &&
8592 (strcmp(res->value, "all") == 0))
8593 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on);
8595 printf("bad unicast hash table parameter,"
8596 "return code = %d \n", ret);
8599 cmdline_parse_token_string_t cmd_set_uc_all_hash_set =
8600 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8602 cmdline_parse_token_string_t cmd_set_uc_all_hash_port =
8603 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8605 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid =
8606 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table,
8607 port_id, RTE_UINT16);
8608 cmdline_parse_token_string_t cmd_set_uc_all_hash_what =
8609 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8611 cmdline_parse_token_string_t cmd_set_uc_all_hash_value =
8612 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8614 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode =
8615 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
8618 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = {
8619 .f = cmd_set_uc_all_hash_parsed,
8621 .help_str = "set port <port_id> uta all on|off",
8623 (void *)&cmd_set_uc_all_hash_set,
8624 (void *)&cmd_set_uc_all_hash_port,
8625 (void *)&cmd_set_uc_all_hash_portid,
8626 (void *)&cmd_set_uc_all_hash_what,
8627 (void *)&cmd_set_uc_all_hash_value,
8628 (void *)&cmd_set_uc_all_hash_mode,
8633 /* *** CONFIGURE VF TRAFFIC CONTROL *** */
8634 struct cmd_set_vf_traffic {
8635 cmdline_fixed_string_t set;
8636 cmdline_fixed_string_t port;
8638 cmdline_fixed_string_t vf;
8640 cmdline_fixed_string_t what;
8641 cmdline_fixed_string_t mode;
8645 cmd_set_vf_traffic_parsed(void *parsed_result,
8646 __rte_unused struct cmdline *cl,
8647 __rte_unused void *data)
8649 struct cmd_set_vf_traffic *res = parsed_result;
8650 int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0;
8651 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
8653 set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on);
8656 cmdline_parse_token_string_t cmd_setvf_traffic_set =
8657 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8659 cmdline_parse_token_string_t cmd_setvf_traffic_port =
8660 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8662 cmdline_parse_token_num_t cmd_setvf_traffic_portid =
8663 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
8664 port_id, RTE_UINT16);
8665 cmdline_parse_token_string_t cmd_setvf_traffic_vf =
8666 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8668 cmdline_parse_token_num_t cmd_setvf_traffic_vfid =
8669 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
8671 cmdline_parse_token_string_t cmd_setvf_traffic_what =
8672 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8674 cmdline_parse_token_string_t cmd_setvf_traffic_mode =
8675 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
8678 cmdline_parse_inst_t cmd_set_vf_traffic = {
8679 .f = cmd_set_vf_traffic_parsed,
8681 .help_str = "set port <port_id> vf <vf_id> rx|tx on|off",
8683 (void *)&cmd_setvf_traffic_set,
8684 (void *)&cmd_setvf_traffic_port,
8685 (void *)&cmd_setvf_traffic_portid,
8686 (void *)&cmd_setvf_traffic_vf,
8687 (void *)&cmd_setvf_traffic_vfid,
8688 (void *)&cmd_setvf_traffic_what,
8689 (void *)&cmd_setvf_traffic_mode,
8694 /* *** CONFIGURE VF RECEIVE MODE *** */
8695 struct cmd_set_vf_rxmode {
8696 cmdline_fixed_string_t set;
8697 cmdline_fixed_string_t port;
8699 cmdline_fixed_string_t vf;
8701 cmdline_fixed_string_t what;
8702 cmdline_fixed_string_t mode;
8703 cmdline_fixed_string_t on;
8707 cmd_set_vf_rxmode_parsed(void *parsed_result,
8708 __rte_unused struct cmdline *cl,
8709 __rte_unused void *data)
8712 uint16_t vf_rxmode = 0;
8713 struct cmd_set_vf_rxmode *res = parsed_result;
8715 int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0;
8716 if (!strcmp(res->what,"rxmode")) {
8717 if (!strcmp(res->mode, "AUPE"))
8718 vf_rxmode |= ETH_VMDQ_ACCEPT_UNTAG;
8719 else if (!strcmp(res->mode, "ROPE"))
8720 vf_rxmode |= ETH_VMDQ_ACCEPT_HASH_UC;
8721 else if (!strcmp(res->mode, "BAM"))
8722 vf_rxmode |= ETH_VMDQ_ACCEPT_BROADCAST;
8723 else if (!strncmp(res->mode, "MPE",3))
8724 vf_rxmode |= ETH_VMDQ_ACCEPT_MULTICAST;
8727 RTE_SET_USED(is_on);
8729 #ifdef RTE_NET_IXGBE
8730 if (ret == -ENOTSUP)
8731 ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id,
8732 vf_rxmode, (uint8_t)is_on);
8735 if (ret == -ENOTSUP)
8736 ret = rte_pmd_bnxt_set_vf_rxmode(res->port_id, res->vf_id,
8737 vf_rxmode, (uint8_t)is_on);
8740 printf("bad VF receive mode parameter, return code = %d \n",
8744 cmdline_parse_token_string_t cmd_set_vf_rxmode_set =
8745 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8747 cmdline_parse_token_string_t cmd_set_vf_rxmode_port =
8748 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8750 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid =
8751 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
8752 port_id, RTE_UINT16);
8753 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf =
8754 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8756 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid =
8757 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
8759 cmdline_parse_token_string_t cmd_set_vf_rxmode_what =
8760 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8762 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode =
8763 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8764 mode, "AUPE#ROPE#BAM#MPE");
8765 cmdline_parse_token_string_t cmd_set_vf_rxmode_on =
8766 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
8769 cmdline_parse_inst_t cmd_set_vf_rxmode = {
8770 .f = cmd_set_vf_rxmode_parsed,
8772 .help_str = "set port <port_id> vf <vf_id> rxmode "
8773 "AUPE|ROPE|BAM|MPE on|off",
8775 (void *)&cmd_set_vf_rxmode_set,
8776 (void *)&cmd_set_vf_rxmode_port,
8777 (void *)&cmd_set_vf_rxmode_portid,
8778 (void *)&cmd_set_vf_rxmode_vf,
8779 (void *)&cmd_set_vf_rxmode_vfid,
8780 (void *)&cmd_set_vf_rxmode_what,
8781 (void *)&cmd_set_vf_rxmode_mode,
8782 (void *)&cmd_set_vf_rxmode_on,
8787 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */
8788 struct cmd_vf_mac_addr_result {
8789 cmdline_fixed_string_t mac_addr_cmd;
8790 cmdline_fixed_string_t what;
8791 cmdline_fixed_string_t port;
8793 cmdline_fixed_string_t vf;
8795 struct rte_ether_addr address;
8798 static void cmd_vf_mac_addr_parsed(void *parsed_result,
8799 __rte_unused struct cmdline *cl,
8800 __rte_unused void *data)
8802 struct cmd_vf_mac_addr_result *res = parsed_result;
8805 if (strcmp(res->what, "add") != 0)
8809 if (ret == -ENOTSUP)
8810 ret = rte_pmd_i40e_add_vf_mac_addr(res->port_num, res->vf_num,
8814 if (ret == -ENOTSUP)
8815 ret = rte_pmd_bnxt_mac_addr_add(res->port_num, &res->address,
8820 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
8824 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd =
8825 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8826 mac_addr_cmd,"mac_addr");
8827 cmdline_parse_token_string_t cmd_vf_mac_addr_what =
8828 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8830 cmdline_parse_token_string_t cmd_vf_mac_addr_port =
8831 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8833 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum =
8834 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
8835 port_num, RTE_UINT16);
8836 cmdline_parse_token_string_t cmd_vf_mac_addr_vf =
8837 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
8839 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum =
8840 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
8842 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr =
8843 TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result,
8846 cmdline_parse_inst_t cmd_vf_mac_addr_filter = {
8847 .f = cmd_vf_mac_addr_parsed,
8849 .help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: "
8850 "Add MAC address filtering for a VF on port_id",
8852 (void *)&cmd_vf_mac_addr_cmd,
8853 (void *)&cmd_vf_mac_addr_what,
8854 (void *)&cmd_vf_mac_addr_port,
8855 (void *)&cmd_vf_mac_addr_portnum,
8856 (void *)&cmd_vf_mac_addr_vf,
8857 (void *)&cmd_vf_mac_addr_vfnum,
8858 (void *)&cmd_vf_mac_addr_addr,
8863 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
8864 struct cmd_vf_rx_vlan_filter {
8865 cmdline_fixed_string_t rx_vlan;
8866 cmdline_fixed_string_t what;
8868 cmdline_fixed_string_t port;
8870 cmdline_fixed_string_t vf;
8875 cmd_vf_rx_vlan_filter_parsed(void *parsed_result,
8876 __rte_unused struct cmdline *cl,
8877 __rte_unused void *data)
8879 struct cmd_vf_rx_vlan_filter *res = parsed_result;
8882 __rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0;
8884 #ifdef RTE_NET_IXGBE
8885 if (ret == -ENOTSUP)
8886 ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id,
8887 res->vlan_id, res->vf_mask, is_add);
8890 if (ret == -ENOTSUP)
8891 ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id,
8892 res->vlan_id, res->vf_mask, is_add);
8895 if (ret == -ENOTSUP)
8896 ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id,
8897 res->vlan_id, res->vf_mask, is_add);
8904 printf("invalid vlan_id %d or vf_mask %"PRIu64"\n",
8905 res->vlan_id, res->vf_mask);
8908 printf("invalid port_id %d\n", res->port_id);
8911 printf("function not implemented or supported\n");
8914 printf("programming error: (%s)\n", strerror(-ret));
8918 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan =
8919 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8920 rx_vlan, "rx_vlan");
8921 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what =
8922 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8924 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid =
8925 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8926 vlan_id, RTE_UINT16);
8927 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port =
8928 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8930 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid =
8931 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8932 port_id, RTE_UINT16);
8933 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf =
8934 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8936 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask =
8937 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
8938 vf_mask, RTE_UINT64);
8940 cmdline_parse_inst_t cmd_vf_rxvlan_filter = {
8941 .f = cmd_vf_rx_vlan_filter_parsed,
8943 .help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: "
8944 "(vf_mask = hexadecimal VF mask)",
8946 (void *)&cmd_vf_rx_vlan_filter_rx_vlan,
8947 (void *)&cmd_vf_rx_vlan_filter_what,
8948 (void *)&cmd_vf_rx_vlan_filter_vlanid,
8949 (void *)&cmd_vf_rx_vlan_filter_port,
8950 (void *)&cmd_vf_rx_vlan_filter_portid,
8951 (void *)&cmd_vf_rx_vlan_filter_vf,
8952 (void *)&cmd_vf_rx_vlan_filter_vf_mask,
8957 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */
8958 struct cmd_queue_rate_limit_result {
8959 cmdline_fixed_string_t set;
8960 cmdline_fixed_string_t port;
8962 cmdline_fixed_string_t queue;
8964 cmdline_fixed_string_t rate;
8968 static void cmd_queue_rate_limit_parsed(void *parsed_result,
8969 __rte_unused struct cmdline *cl,
8970 __rte_unused void *data)
8972 struct cmd_queue_rate_limit_result *res = parsed_result;
8975 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
8976 && (strcmp(res->queue, "queue") == 0)
8977 && (strcmp(res->rate, "rate") == 0))
8978 ret = set_queue_rate_limit(res->port_num, res->queue_num,
8981 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret));
8985 cmdline_parse_token_string_t cmd_queue_rate_limit_set =
8986 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8988 cmdline_parse_token_string_t cmd_queue_rate_limit_port =
8989 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8991 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum =
8992 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8993 port_num, RTE_UINT16);
8994 cmdline_parse_token_string_t cmd_queue_rate_limit_queue =
8995 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
8997 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum =
8998 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
8999 queue_num, RTE_UINT8);
9000 cmdline_parse_token_string_t cmd_queue_rate_limit_rate =
9001 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
9003 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum =
9004 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
9005 rate_num, RTE_UINT16);
9007 cmdline_parse_inst_t cmd_queue_rate_limit = {
9008 .f = cmd_queue_rate_limit_parsed,
9010 .help_str = "set port <port_id> queue <queue_id> rate <rate_value>: "
9011 "Set rate limit for a queue on port_id",
9013 (void *)&cmd_queue_rate_limit_set,
9014 (void *)&cmd_queue_rate_limit_port,
9015 (void *)&cmd_queue_rate_limit_portnum,
9016 (void *)&cmd_queue_rate_limit_queue,
9017 (void *)&cmd_queue_rate_limit_queuenum,
9018 (void *)&cmd_queue_rate_limit_rate,
9019 (void *)&cmd_queue_rate_limit_ratenum,
9024 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */
9025 struct cmd_vf_rate_limit_result {
9026 cmdline_fixed_string_t set;
9027 cmdline_fixed_string_t port;
9029 cmdline_fixed_string_t vf;
9031 cmdline_fixed_string_t rate;
9033 cmdline_fixed_string_t q_msk;
9037 static void cmd_vf_rate_limit_parsed(void *parsed_result,
9038 __rte_unused struct cmdline *cl,
9039 __rte_unused void *data)
9041 struct cmd_vf_rate_limit_result *res = parsed_result;
9044 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
9045 && (strcmp(res->vf, "vf") == 0)
9046 && (strcmp(res->rate, "rate") == 0)
9047 && (strcmp(res->q_msk, "queue_mask") == 0))
9048 ret = set_vf_rate_limit(res->port_num, res->vf_num,
9049 res->rate_num, res->q_msk_val);
9051 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret));
9055 cmdline_parse_token_string_t cmd_vf_rate_limit_set =
9056 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9058 cmdline_parse_token_string_t cmd_vf_rate_limit_port =
9059 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9061 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum =
9062 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9063 port_num, RTE_UINT16);
9064 cmdline_parse_token_string_t cmd_vf_rate_limit_vf =
9065 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9067 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum =
9068 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9070 cmdline_parse_token_string_t cmd_vf_rate_limit_rate =
9071 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9073 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum =
9074 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9075 rate_num, RTE_UINT16);
9076 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk =
9077 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
9078 q_msk, "queue_mask");
9079 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val =
9080 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
9081 q_msk_val, RTE_UINT64);
9083 cmdline_parse_inst_t cmd_vf_rate_limit = {
9084 .f = cmd_vf_rate_limit_parsed,
9086 .help_str = "set port <port_id> vf <vf_id> rate <rate_value> "
9087 "queue_mask <queue_mask_value>: "
9088 "Set rate limit for queues of VF on port_id",
9090 (void *)&cmd_vf_rate_limit_set,
9091 (void *)&cmd_vf_rate_limit_port,
9092 (void *)&cmd_vf_rate_limit_portnum,
9093 (void *)&cmd_vf_rate_limit_vf,
9094 (void *)&cmd_vf_rate_limit_vfnum,
9095 (void *)&cmd_vf_rate_limit_rate,
9096 (void *)&cmd_vf_rate_limit_ratenum,
9097 (void *)&cmd_vf_rate_limit_q_msk,
9098 (void *)&cmd_vf_rate_limit_q_msk_val,
9103 /* *** CONFIGURE TUNNEL UDP PORT *** */
9104 struct cmd_tunnel_udp_config {
9105 cmdline_fixed_string_t cmd;
9106 cmdline_fixed_string_t what;
9112 cmd_tunnel_udp_config_parsed(void *parsed_result,
9113 __rte_unused struct cmdline *cl,
9114 __rte_unused void *data)
9116 struct cmd_tunnel_udp_config *res = parsed_result;
9117 struct rte_eth_udp_tunnel tunnel_udp;
9120 tunnel_udp.udp_port = res->udp_port;
9122 if (!strcmp(res->cmd, "rx_vxlan_port"))
9123 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
9125 if (!strcmp(res->what, "add"))
9126 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
9129 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
9133 printf("udp tunneling add error: (%s)\n", strerror(-ret));
9136 cmdline_parse_token_string_t cmd_tunnel_udp_config_cmd =
9137 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
9138 cmd, "rx_vxlan_port");
9139 cmdline_parse_token_string_t cmd_tunnel_udp_config_what =
9140 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
9142 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port =
9143 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
9144 udp_port, RTE_UINT16);
9145 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id =
9146 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
9147 port_id, RTE_UINT16);
9149 cmdline_parse_inst_t cmd_tunnel_udp_config = {
9150 .f = cmd_tunnel_udp_config_parsed,
9152 .help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: "
9153 "Add/Remove a tunneling UDP port filter",
9155 (void *)&cmd_tunnel_udp_config_cmd,
9156 (void *)&cmd_tunnel_udp_config_what,
9157 (void *)&cmd_tunnel_udp_config_udp_port,
9158 (void *)&cmd_tunnel_udp_config_port_id,
9163 struct cmd_config_tunnel_udp_port {
9164 cmdline_fixed_string_t port;
9165 cmdline_fixed_string_t config;
9167 cmdline_fixed_string_t udp_tunnel_port;
9168 cmdline_fixed_string_t action;
9169 cmdline_fixed_string_t tunnel_type;
9174 cmd_cfg_tunnel_udp_port_parsed(void *parsed_result,
9175 __rte_unused struct cmdline *cl,
9176 __rte_unused void *data)
9178 struct cmd_config_tunnel_udp_port *res = parsed_result;
9179 struct rte_eth_udp_tunnel tunnel_udp;
9182 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9185 tunnel_udp.udp_port = res->udp_port;
9187 if (!strcmp(res->tunnel_type, "vxlan")) {
9188 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
9189 } else if (!strcmp(res->tunnel_type, "geneve")) {
9190 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_GENEVE;
9191 } else if (!strcmp(res->tunnel_type, "vxlan-gpe")) {
9192 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN_GPE;
9193 } else if (!strcmp(res->tunnel_type, "ecpri")) {
9194 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_ECPRI;
9196 printf("Invalid tunnel type\n");
9200 if (!strcmp(res->action, "add"))
9201 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
9204 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
9208 printf("udp tunneling port add error: (%s)\n", strerror(-ret));
9211 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_port =
9212 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, port,
9214 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_config =
9215 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, config,
9217 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_port_id =
9218 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, port_id,
9220 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_port =
9221 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port,
9224 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_action =
9225 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, action,
9227 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_type =
9228 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, tunnel_type,
9229 "vxlan#geneve#vxlan-gpe#ecpri");
9230 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_value =
9231 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, udp_port,
9234 cmdline_parse_inst_t cmd_cfg_tunnel_udp_port = {
9235 .f = cmd_cfg_tunnel_udp_port_parsed,
9237 .help_str = "port config <port_id> udp_tunnel_port add|rm vxlan|"
9238 "geneve|vxlan-gpe|ecpri <udp_port>",
9240 (void *)&cmd_config_tunnel_udp_port_port,
9241 (void *)&cmd_config_tunnel_udp_port_config,
9242 (void *)&cmd_config_tunnel_udp_port_port_id,
9243 (void *)&cmd_config_tunnel_udp_port_tunnel_port,
9244 (void *)&cmd_config_tunnel_udp_port_action,
9245 (void *)&cmd_config_tunnel_udp_port_tunnel_type,
9246 (void *)&cmd_config_tunnel_udp_port_value,
9251 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */
9252 struct cmd_set_mirror_mask_result {
9253 cmdline_fixed_string_t set;
9254 cmdline_fixed_string_t port;
9256 cmdline_fixed_string_t mirror;
9258 cmdline_fixed_string_t what;
9259 cmdline_fixed_string_t value;
9260 cmdline_fixed_string_t dstpool;
9262 cmdline_fixed_string_t on;
9265 cmdline_parse_token_string_t cmd_mirror_mask_set =
9266 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9268 cmdline_parse_token_string_t cmd_mirror_mask_port =
9269 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9271 cmdline_parse_token_num_t cmd_mirror_mask_portid =
9272 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9273 port_id, RTE_UINT16);
9274 cmdline_parse_token_string_t cmd_mirror_mask_mirror =
9275 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9276 mirror, "mirror-rule");
9277 cmdline_parse_token_num_t cmd_mirror_mask_ruleid =
9278 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9279 rule_id, RTE_UINT8);
9280 cmdline_parse_token_string_t cmd_mirror_mask_what =
9281 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9282 what, "pool-mirror-up#pool-mirror-down"
9284 cmdline_parse_token_string_t cmd_mirror_mask_value =
9285 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9287 cmdline_parse_token_string_t cmd_mirror_mask_dstpool =
9288 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9289 dstpool, "dst-pool");
9290 cmdline_parse_token_num_t cmd_mirror_mask_poolid =
9291 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
9292 dstpool_id, RTE_UINT8);
9293 cmdline_parse_token_string_t cmd_mirror_mask_on =
9294 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
9298 cmd_set_mirror_mask_parsed(void *parsed_result,
9299 __rte_unused struct cmdline *cl,
9300 __rte_unused void *data)
9303 struct cmd_set_mirror_mask_result *res = parsed_result;
9304 struct rte_eth_mirror_conf mr_conf;
9306 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
9308 unsigned int vlan_list[ETH_MIRROR_MAX_VLANS];
9310 mr_conf.dst_pool = res->dstpool_id;
9312 if (!strcmp(res->what, "pool-mirror-up")) {
9313 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
9314 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP;
9315 } else if (!strcmp(res->what, "pool-mirror-down")) {
9316 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
9317 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN;
9318 } else if (!strcmp(res->what, "vlan-mirror")) {
9319 mr_conf.rule_type = ETH_MIRROR_VLAN;
9320 nb_item = parse_item_list(res->value, "vlan",
9321 ETH_MIRROR_MAX_VLANS, vlan_list, 1);
9325 for (i = 0; i < nb_item; i++) {
9326 if (vlan_list[i] > RTE_ETHER_MAX_VLAN_ID) {
9327 printf("Invalid vlan_id: must be < 4096\n");
9331 mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i];
9332 mr_conf.vlan.vlan_mask |= 1ULL << i;
9336 if (!strcmp(res->on, "on"))
9337 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9340 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9343 printf("mirror rule add error: (%s)\n", strerror(-ret));
9346 cmdline_parse_inst_t cmd_set_mirror_mask = {
9347 .f = cmd_set_mirror_mask_parsed,
9349 .help_str = "set port <port_id> mirror-rule <rule_id> "
9350 "pool-mirror-up|pool-mirror-down|vlan-mirror "
9351 "<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off",
9353 (void *)&cmd_mirror_mask_set,
9354 (void *)&cmd_mirror_mask_port,
9355 (void *)&cmd_mirror_mask_portid,
9356 (void *)&cmd_mirror_mask_mirror,
9357 (void *)&cmd_mirror_mask_ruleid,
9358 (void *)&cmd_mirror_mask_what,
9359 (void *)&cmd_mirror_mask_value,
9360 (void *)&cmd_mirror_mask_dstpool,
9361 (void *)&cmd_mirror_mask_poolid,
9362 (void *)&cmd_mirror_mask_on,
9367 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */
9368 struct cmd_set_mirror_link_result {
9369 cmdline_fixed_string_t set;
9370 cmdline_fixed_string_t port;
9372 cmdline_fixed_string_t mirror;
9374 cmdline_fixed_string_t what;
9375 cmdline_fixed_string_t dstpool;
9377 cmdline_fixed_string_t on;
9380 cmdline_parse_token_string_t cmd_mirror_link_set =
9381 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9383 cmdline_parse_token_string_t cmd_mirror_link_port =
9384 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9386 cmdline_parse_token_num_t cmd_mirror_link_portid =
9387 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9388 port_id, RTE_UINT16);
9389 cmdline_parse_token_string_t cmd_mirror_link_mirror =
9390 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9391 mirror, "mirror-rule");
9392 cmdline_parse_token_num_t cmd_mirror_link_ruleid =
9393 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9394 rule_id, RTE_UINT8);
9395 cmdline_parse_token_string_t cmd_mirror_link_what =
9396 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9397 what, "uplink-mirror#downlink-mirror");
9398 cmdline_parse_token_string_t cmd_mirror_link_dstpool =
9399 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9400 dstpool, "dst-pool");
9401 cmdline_parse_token_num_t cmd_mirror_link_poolid =
9402 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
9403 dstpool_id, RTE_UINT8);
9404 cmdline_parse_token_string_t cmd_mirror_link_on =
9405 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
9409 cmd_set_mirror_link_parsed(void *parsed_result,
9410 __rte_unused struct cmdline *cl,
9411 __rte_unused void *data)
9414 struct cmd_set_mirror_link_result *res = parsed_result;
9415 struct rte_eth_mirror_conf mr_conf;
9417 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
9418 if (!strcmp(res->what, "uplink-mirror"))
9419 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT;
9421 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT;
9423 mr_conf.dst_pool = res->dstpool_id;
9425 if (!strcmp(res->on, "on"))
9426 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9429 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
9432 /* check the return value and print it if is < 0 */
9434 printf("mirror rule add error: (%s)\n", strerror(-ret));
9438 cmdline_parse_inst_t cmd_set_mirror_link = {
9439 .f = cmd_set_mirror_link_parsed,
9441 .help_str = "set port <port_id> mirror-rule <rule_id> "
9442 "uplink-mirror|downlink-mirror dst-pool <pool_id> on|off",
9444 (void *)&cmd_mirror_link_set,
9445 (void *)&cmd_mirror_link_port,
9446 (void *)&cmd_mirror_link_portid,
9447 (void *)&cmd_mirror_link_mirror,
9448 (void *)&cmd_mirror_link_ruleid,
9449 (void *)&cmd_mirror_link_what,
9450 (void *)&cmd_mirror_link_dstpool,
9451 (void *)&cmd_mirror_link_poolid,
9452 (void *)&cmd_mirror_link_on,
9457 /* *** RESET VM MIRROR RULE *** */
9458 struct cmd_rm_mirror_rule_result {
9459 cmdline_fixed_string_t reset;
9460 cmdline_fixed_string_t port;
9462 cmdline_fixed_string_t mirror;
9466 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset =
9467 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9469 cmdline_parse_token_string_t cmd_rm_mirror_rule_port =
9470 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9472 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid =
9473 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
9474 port_id, RTE_UINT16);
9475 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror =
9476 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
9477 mirror, "mirror-rule");
9478 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid =
9479 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
9480 rule_id, RTE_UINT8);
9483 cmd_reset_mirror_rule_parsed(void *parsed_result,
9484 __rte_unused struct cmdline *cl,
9485 __rte_unused void *data)
9488 struct cmd_set_mirror_link_result *res = parsed_result;
9490 ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id);
9492 printf("mirror rule remove error: (%s)\n", strerror(-ret));
9495 cmdline_parse_inst_t cmd_reset_mirror_rule = {
9496 .f = cmd_reset_mirror_rule_parsed,
9498 .help_str = "reset port <port_id> mirror-rule <rule_id>",
9500 (void *)&cmd_rm_mirror_rule_reset,
9501 (void *)&cmd_rm_mirror_rule_port,
9502 (void *)&cmd_rm_mirror_rule_portid,
9503 (void *)&cmd_rm_mirror_rule_mirror,
9504 (void *)&cmd_rm_mirror_rule_ruleid,
9509 /* ******************************************************************************** */
9511 struct cmd_dump_result {
9512 cmdline_fixed_string_t dump;
9516 dump_struct_sizes(void)
9518 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
9519 DUMP_SIZE(struct rte_mbuf);
9520 DUMP_SIZE(struct rte_mempool);
9521 DUMP_SIZE(struct rte_ring);
9526 /* Dump the socket memory statistics on console */
9528 dump_socket_mem(FILE *f)
9530 struct rte_malloc_socket_stats socket_stats;
9535 unsigned int n_alloc = 0;
9536 unsigned int n_free = 0;
9537 static size_t last_allocs;
9538 static size_t last_total;
9541 for (i = 0; i < RTE_MAX_NUMA_NODES; i++) {
9542 if (rte_malloc_get_socket_stats(i, &socket_stats) ||
9543 !socket_stats.heap_totalsz_bytes)
9545 total += socket_stats.heap_totalsz_bytes;
9546 alloc += socket_stats.heap_allocsz_bytes;
9547 free += socket_stats.heap_freesz_bytes;
9548 n_alloc += socket_stats.alloc_count;
9549 n_free += socket_stats.free_count;
9551 "Socket %u: size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n",
9553 (double)socket_stats.heap_totalsz_bytes / (1024 * 1024),
9554 (double)socket_stats.heap_allocsz_bytes / (1024 * 1024),
9555 (double)socket_stats.heap_allocsz_bytes * 100 /
9556 (double)socket_stats.heap_totalsz_bytes,
9557 (double)socket_stats.heap_freesz_bytes / (1024 * 1024),
9558 socket_stats.alloc_count,
9559 socket_stats.free_count);
9562 "Total : size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n",
9563 (double)total / (1024 * 1024), (double)alloc / (1024 * 1024),
9564 (double)alloc * 100 / (double)total,
9565 (double)free / (1024 * 1024),
9568 fprintf(stdout, "Memory total change: %.6lf(M), allocation change: %.6lf(M)\n",
9569 ((double)total - (double)last_total) / (1024 * 1024),
9570 (double)(alloc - (double)last_allocs) / 1024 / 1024);
9571 last_allocs = alloc;
9575 static void cmd_dump_parsed(void *parsed_result,
9576 __rte_unused struct cmdline *cl,
9577 __rte_unused void *data)
9579 struct cmd_dump_result *res = parsed_result;
9581 if (!strcmp(res->dump, "dump_physmem"))
9582 rte_dump_physmem_layout(stdout);
9583 else if (!strcmp(res->dump, "dump_socket_mem"))
9584 dump_socket_mem(stdout);
9585 else if (!strcmp(res->dump, "dump_memzone"))
9586 rte_memzone_dump(stdout);
9587 else if (!strcmp(res->dump, "dump_struct_sizes"))
9588 dump_struct_sizes();
9589 else if (!strcmp(res->dump, "dump_ring"))
9590 rte_ring_list_dump(stdout);
9591 else if (!strcmp(res->dump, "dump_mempool"))
9592 rte_mempool_list_dump(stdout);
9593 else if (!strcmp(res->dump, "dump_devargs"))
9594 rte_devargs_dump(stdout);
9595 else if (!strcmp(res->dump, "dump_log_types"))
9596 rte_log_dump(stdout);
9599 cmdline_parse_token_string_t cmd_dump_dump =
9600 TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
9604 "dump_struct_sizes#"
9610 cmdline_parse_inst_t cmd_dump = {
9611 .f = cmd_dump_parsed, /* function to call */
9612 .data = NULL, /* 2nd arg of func */
9613 .help_str = "Dump status",
9614 .tokens = { /* token list, NULL terminated */
9615 (void *)&cmd_dump_dump,
9620 /* ******************************************************************************** */
9622 struct cmd_dump_one_result {
9623 cmdline_fixed_string_t dump;
9624 cmdline_fixed_string_t name;
9627 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl,
9628 __rte_unused void *data)
9630 struct cmd_dump_one_result *res = parsed_result;
9632 if (!strcmp(res->dump, "dump_ring")) {
9634 r = rte_ring_lookup(res->name);
9636 cmdline_printf(cl, "Cannot find ring\n");
9639 rte_ring_dump(stdout, r);
9640 } else if (!strcmp(res->dump, "dump_mempool")) {
9641 struct rte_mempool *mp;
9642 mp = rte_mempool_lookup(res->name);
9644 cmdline_printf(cl, "Cannot find mempool\n");
9647 rte_mempool_dump(stdout, mp);
9651 cmdline_parse_token_string_t cmd_dump_one_dump =
9652 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump,
9653 "dump_ring#dump_mempool");
9655 cmdline_parse_token_string_t cmd_dump_one_name =
9656 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL);
9658 cmdline_parse_inst_t cmd_dump_one = {
9659 .f = cmd_dump_one_parsed, /* function to call */
9660 .data = NULL, /* 2nd arg of func */
9661 .help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool",
9662 .tokens = { /* token list, NULL terminated */
9663 (void *)&cmd_dump_one_dump,
9664 (void *)&cmd_dump_one_name,
9669 /* *** queue region set *** */
9670 struct cmd_queue_region_result {
9671 cmdline_fixed_string_t set;
9672 cmdline_fixed_string_t port;
9674 cmdline_fixed_string_t cmd;
9675 cmdline_fixed_string_t region;
9677 cmdline_fixed_string_t queue_start_index;
9679 cmdline_fixed_string_t queue_num;
9680 uint8_t queue_num_value;
9684 cmd_queue_region_parsed(void *parsed_result,
9685 __rte_unused struct cmdline *cl,
9686 __rte_unused void *data)
9688 struct cmd_queue_region_result *res = parsed_result;
9691 struct rte_pmd_i40e_queue_region_conf region_conf;
9692 enum rte_pmd_i40e_queue_region_op op_type;
9695 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9699 memset(®ion_conf, 0, sizeof(region_conf));
9700 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_SET;
9701 region_conf.region_id = res->region_id;
9702 region_conf.queue_num = res->queue_num_value;
9703 region_conf.queue_start_index = res->queue_id;
9705 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9706 op_type, ®ion_conf);
9713 printf("function not implemented or supported\n");
9716 printf("queue region config error: (%s)\n", strerror(-ret));
9720 cmdline_parse_token_string_t cmd_queue_region_set =
9721 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9723 cmdline_parse_token_string_t cmd_queue_region_port =
9724 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, port, "port");
9725 cmdline_parse_token_num_t cmd_queue_region_port_id =
9726 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9727 port_id, RTE_UINT16);
9728 cmdline_parse_token_string_t cmd_queue_region_cmd =
9729 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9730 cmd, "queue-region");
9731 cmdline_parse_token_string_t cmd_queue_region_id =
9732 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9733 region, "region_id");
9734 cmdline_parse_token_num_t cmd_queue_region_index =
9735 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9736 region_id, RTE_UINT8);
9737 cmdline_parse_token_string_t cmd_queue_region_queue_start_index =
9738 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9739 queue_start_index, "queue_start_index");
9740 cmdline_parse_token_num_t cmd_queue_region_queue_id =
9741 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9742 queue_id, RTE_UINT8);
9743 cmdline_parse_token_string_t cmd_queue_region_queue_num =
9744 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result,
9745 queue_num, "queue_num");
9746 cmdline_parse_token_num_t cmd_queue_region_queue_num_value =
9747 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result,
9748 queue_num_value, RTE_UINT8);
9750 cmdline_parse_inst_t cmd_queue_region = {
9751 .f = cmd_queue_region_parsed,
9753 .help_str = "set port <port_id> queue-region region_id <value> "
9754 "queue_start_index <value> queue_num <value>: Set a queue region",
9756 (void *)&cmd_queue_region_set,
9757 (void *)&cmd_queue_region_port,
9758 (void *)&cmd_queue_region_port_id,
9759 (void *)&cmd_queue_region_cmd,
9760 (void *)&cmd_queue_region_id,
9761 (void *)&cmd_queue_region_index,
9762 (void *)&cmd_queue_region_queue_start_index,
9763 (void *)&cmd_queue_region_queue_id,
9764 (void *)&cmd_queue_region_queue_num,
9765 (void *)&cmd_queue_region_queue_num_value,
9770 /* *** queue region and flowtype set *** */
9771 struct cmd_region_flowtype_result {
9772 cmdline_fixed_string_t set;
9773 cmdline_fixed_string_t port;
9775 cmdline_fixed_string_t cmd;
9776 cmdline_fixed_string_t region;
9778 cmdline_fixed_string_t flowtype;
9779 uint8_t flowtype_id;
9783 cmd_region_flowtype_parsed(void *parsed_result,
9784 __rte_unused struct cmdline *cl,
9785 __rte_unused void *data)
9787 struct cmd_region_flowtype_result *res = parsed_result;
9790 struct rte_pmd_i40e_queue_region_conf region_conf;
9791 enum rte_pmd_i40e_queue_region_op op_type;
9794 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9798 memset(®ion_conf, 0, sizeof(region_conf));
9800 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_FLOWTYPE_SET;
9801 region_conf.region_id = res->region_id;
9802 region_conf.hw_flowtype = res->flowtype_id;
9804 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9805 op_type, ®ion_conf);
9812 printf("function not implemented or supported\n");
9815 printf("region flowtype config error: (%s)\n", strerror(-ret));
9819 cmdline_parse_token_string_t cmd_region_flowtype_set =
9820 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9822 cmdline_parse_token_string_t cmd_region_flowtype_port =
9823 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9825 cmdline_parse_token_num_t cmd_region_flowtype_port_index =
9826 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9827 port_id, RTE_UINT16);
9828 cmdline_parse_token_string_t cmd_region_flowtype_cmd =
9829 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9830 cmd, "queue-region");
9831 cmdline_parse_token_string_t cmd_region_flowtype_index =
9832 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9833 region, "region_id");
9834 cmdline_parse_token_num_t cmd_region_flowtype_id =
9835 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9836 region_id, RTE_UINT8);
9837 cmdline_parse_token_string_t cmd_region_flowtype_flow_index =
9838 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result,
9839 flowtype, "flowtype");
9840 cmdline_parse_token_num_t cmd_region_flowtype_flow_id =
9841 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result,
9842 flowtype_id, RTE_UINT8);
9843 cmdline_parse_inst_t cmd_region_flowtype = {
9844 .f = cmd_region_flowtype_parsed,
9846 .help_str = "set port <port_id> queue-region region_id <value> "
9847 "flowtype <value>: Set a flowtype region index",
9849 (void *)&cmd_region_flowtype_set,
9850 (void *)&cmd_region_flowtype_port,
9851 (void *)&cmd_region_flowtype_port_index,
9852 (void *)&cmd_region_flowtype_cmd,
9853 (void *)&cmd_region_flowtype_index,
9854 (void *)&cmd_region_flowtype_id,
9855 (void *)&cmd_region_flowtype_flow_index,
9856 (void *)&cmd_region_flowtype_flow_id,
9861 /* *** User Priority (UP) to queue region (region_id) set *** */
9862 struct cmd_user_priority_region_result {
9863 cmdline_fixed_string_t set;
9864 cmdline_fixed_string_t port;
9866 cmdline_fixed_string_t cmd;
9867 cmdline_fixed_string_t user_priority;
9868 uint8_t user_priority_id;
9869 cmdline_fixed_string_t region;
9874 cmd_user_priority_region_parsed(void *parsed_result,
9875 __rte_unused struct cmdline *cl,
9876 __rte_unused void *data)
9878 struct cmd_user_priority_region_result *res = parsed_result;
9881 struct rte_pmd_i40e_queue_region_conf region_conf;
9882 enum rte_pmd_i40e_queue_region_op op_type;
9885 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9889 memset(®ion_conf, 0, sizeof(region_conf));
9890 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_USER_PRIORITY_SET;
9891 region_conf.user_priority = res->user_priority_id;
9892 region_conf.region_id = res->region_id;
9894 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9895 op_type, ®ion_conf);
9902 printf("function not implemented or supported\n");
9905 printf("user_priority region config error: (%s)\n",
9910 cmdline_parse_token_string_t cmd_user_priority_region_set =
9911 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9913 cmdline_parse_token_string_t cmd_user_priority_region_port =
9914 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9916 cmdline_parse_token_num_t cmd_user_priority_region_port_index =
9917 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9918 port_id, RTE_UINT16);
9919 cmdline_parse_token_string_t cmd_user_priority_region_cmd =
9920 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9921 cmd, "queue-region");
9922 cmdline_parse_token_string_t cmd_user_priority_region_UP =
9923 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9924 user_priority, "UP");
9925 cmdline_parse_token_num_t cmd_user_priority_region_UP_id =
9926 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9927 user_priority_id, RTE_UINT8);
9928 cmdline_parse_token_string_t cmd_user_priority_region_region =
9929 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result,
9930 region, "region_id");
9931 cmdline_parse_token_num_t cmd_user_priority_region_region_id =
9932 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result,
9933 region_id, RTE_UINT8);
9935 cmdline_parse_inst_t cmd_user_priority_region = {
9936 .f = cmd_user_priority_region_parsed,
9938 .help_str = "set port <port_id> queue-region UP <value> "
9939 "region_id <value>: Set the mapping of User Priority (UP) "
9940 "to queue region (region_id) ",
9942 (void *)&cmd_user_priority_region_set,
9943 (void *)&cmd_user_priority_region_port,
9944 (void *)&cmd_user_priority_region_port_index,
9945 (void *)&cmd_user_priority_region_cmd,
9946 (void *)&cmd_user_priority_region_UP,
9947 (void *)&cmd_user_priority_region_UP_id,
9948 (void *)&cmd_user_priority_region_region,
9949 (void *)&cmd_user_priority_region_region_id,
9954 /* *** flush all queue region related configuration *** */
9955 struct cmd_flush_queue_region_result {
9956 cmdline_fixed_string_t set;
9957 cmdline_fixed_string_t port;
9959 cmdline_fixed_string_t cmd;
9960 cmdline_fixed_string_t flush;
9961 cmdline_fixed_string_t what;
9965 cmd_flush_queue_region_parsed(void *parsed_result,
9966 __rte_unused struct cmdline *cl,
9967 __rte_unused void *data)
9969 struct cmd_flush_queue_region_result *res = parsed_result;
9972 struct rte_pmd_i40e_queue_region_conf region_conf;
9973 enum rte_pmd_i40e_queue_region_op op_type;
9976 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
9980 memset(®ion_conf, 0, sizeof(region_conf));
9982 if (strcmp(res->what, "on") == 0)
9983 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_ON;
9985 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_OFF;
9987 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
9988 op_type, ®ion_conf);
9995 printf("function not implemented or supported\n");
9998 printf("queue region config flush error: (%s)\n",
10003 cmdline_parse_token_string_t cmd_flush_queue_region_set =
10004 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10006 cmdline_parse_token_string_t cmd_flush_queue_region_port =
10007 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10009 cmdline_parse_token_num_t cmd_flush_queue_region_port_index =
10010 TOKEN_NUM_INITIALIZER(struct cmd_flush_queue_region_result,
10011 port_id, RTE_UINT16);
10012 cmdline_parse_token_string_t cmd_flush_queue_region_cmd =
10013 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10014 cmd, "queue-region");
10015 cmdline_parse_token_string_t cmd_flush_queue_region_flush =
10016 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10018 cmdline_parse_token_string_t cmd_flush_queue_region_what =
10019 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result,
10022 cmdline_parse_inst_t cmd_flush_queue_region = {
10023 .f = cmd_flush_queue_region_parsed,
10025 .help_str = "set port <port_id> queue-region flush on|off"
10026 ": flush all queue region related configuration",
10028 (void *)&cmd_flush_queue_region_set,
10029 (void *)&cmd_flush_queue_region_port,
10030 (void *)&cmd_flush_queue_region_port_index,
10031 (void *)&cmd_flush_queue_region_cmd,
10032 (void *)&cmd_flush_queue_region_flush,
10033 (void *)&cmd_flush_queue_region_what,
10038 /* *** get all queue region related configuration info *** */
10039 struct cmd_show_queue_region_info {
10040 cmdline_fixed_string_t show;
10041 cmdline_fixed_string_t port;
10043 cmdline_fixed_string_t cmd;
10047 cmd_show_queue_region_info_parsed(void *parsed_result,
10048 __rte_unused struct cmdline *cl,
10049 __rte_unused void *data)
10051 struct cmd_show_queue_region_info *res = parsed_result;
10052 int ret = -ENOTSUP;
10053 #ifdef RTE_NET_I40E
10054 struct rte_pmd_i40e_queue_regions rte_pmd_regions;
10055 enum rte_pmd_i40e_queue_region_op op_type;
10058 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10061 #ifdef RTE_NET_I40E
10062 memset(&rte_pmd_regions, 0, sizeof(rte_pmd_regions));
10064 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_INFO_GET;
10066 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id,
10067 op_type, &rte_pmd_regions);
10069 port_queue_region_info_display(res->port_id, &rte_pmd_regions);
10076 printf("function not implemented or supported\n");
10079 printf("queue region config info show error: (%s)\n",
10084 cmdline_parse_token_string_t cmd_show_queue_region_info_get =
10085 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10087 cmdline_parse_token_string_t cmd_show_queue_region_info_port =
10088 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10090 cmdline_parse_token_num_t cmd_show_queue_region_info_port_index =
10091 TOKEN_NUM_INITIALIZER(struct cmd_show_queue_region_info,
10092 port_id, RTE_UINT16);
10093 cmdline_parse_token_string_t cmd_show_queue_region_info_cmd =
10094 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info,
10095 cmd, "queue-region");
10097 cmdline_parse_inst_t cmd_show_queue_region_info_all = {
10098 .f = cmd_show_queue_region_info_parsed,
10100 .help_str = "show port <port_id> queue-region"
10101 ": show all queue region related configuration info",
10103 (void *)&cmd_show_queue_region_info_get,
10104 (void *)&cmd_show_queue_region_info_port,
10105 (void *)&cmd_show_queue_region_info_port_index,
10106 (void *)&cmd_show_queue_region_info_cmd,
10111 /* *** Filters Control *** */
10113 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \
10115 if ((ip_addr).family == AF_INET) \
10116 (ip) = (ip_addr).addr.ipv4.s_addr; \
10118 printf("invalid parameter.\n"); \
10123 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \
10125 if ((ip_addr).family == AF_INET6) \
10126 rte_memcpy(&(ip), \
10127 &((ip_addr).addr.ipv6), \
10128 sizeof(struct in6_addr)); \
10130 printf("invalid parameter.\n"); \
10135 #ifdef RTE_NET_I40E
10138 str2flowtype(char *string)
10141 static const struct {
10144 } flowtype_str[] = {
10145 {"raw", RTE_ETH_FLOW_RAW},
10146 {"ipv4", RTE_ETH_FLOW_IPV4},
10147 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
10148 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
10149 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
10150 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
10151 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
10152 {"ipv6", RTE_ETH_FLOW_IPV6},
10153 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
10154 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
10155 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
10156 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
10157 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
10158 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
10161 for (i = 0; i < RTE_DIM(flowtype_str); i++) {
10162 if (!strcmp(flowtype_str[i].str, string))
10163 return flowtype_str[i].type;
10166 if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64)
10167 return (uint16_t)atoi(string);
10169 return RTE_ETH_FLOW_UNKNOWN;
10172 /* *** deal with flow director filter *** */
10173 struct cmd_flow_director_result {
10174 cmdline_fixed_string_t flow_director_filter;
10176 cmdline_fixed_string_t mode;
10177 cmdline_fixed_string_t mode_value;
10178 cmdline_fixed_string_t ops;
10179 cmdline_fixed_string_t flow;
10180 cmdline_fixed_string_t flow_type;
10181 cmdline_fixed_string_t drop;
10182 cmdline_fixed_string_t queue;
10184 cmdline_fixed_string_t fd_id;
10185 uint32_t fd_id_value;
10186 cmdline_fixed_string_t packet;
10191 cmd_flow_director_filter_parsed(void *parsed_result,
10192 __rte_unused struct cmdline *cl,
10193 __rte_unused void *data)
10195 struct cmd_flow_director_result *res = parsed_result;
10197 struct rte_pmd_i40e_flow_type_mapping
10198 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
10199 struct rte_pmd_i40e_pkt_template_conf conf;
10200 uint16_t flow_type = str2flowtype(res->flow_type);
10201 uint16_t i, port = res->port_id;
10204 memset(&conf, 0, sizeof(conf));
10206 if (flow_type == RTE_ETH_FLOW_UNKNOWN) {
10207 printf("Invalid flow type specified.\n");
10210 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id,
10214 if (mapping[flow_type].pctype == 0ULL) {
10215 printf("Invalid flow type specified.\n");
10218 for (i = 0; i < RTE_PMD_I40E_PCTYPE_MAX; i++) {
10219 if (mapping[flow_type].pctype & (1ULL << i)) {
10220 conf.input.pctype = i;
10225 conf.input.packet = open_file(res->filepath,
10226 &conf.input.length);
10227 if (!conf.input.packet)
10229 if (!strcmp(res->drop, "drop"))
10230 conf.action.behavior =
10231 RTE_PMD_I40E_PKT_TEMPLATE_REJECT;
10233 conf.action.behavior =
10234 RTE_PMD_I40E_PKT_TEMPLATE_ACCEPT;
10235 conf.action.report_status =
10236 RTE_PMD_I40E_PKT_TEMPLATE_REPORT_ID;
10237 conf.action.rx_queue = res->queue_id;
10238 conf.soft_id = res->fd_id_value;
10239 add = strcmp(res->ops, "del") ? 1 : 0;
10240 ret = rte_pmd_i40e_flow_add_del_packet_template(port,
10244 printf("flow director config error: (%s)\n",
10246 close_file(conf.input.packet);
10249 cmdline_parse_token_string_t cmd_flow_director_filter =
10250 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10251 flow_director_filter, "flow_director_filter");
10252 cmdline_parse_token_num_t cmd_flow_director_port_id =
10253 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10254 port_id, RTE_UINT16);
10255 cmdline_parse_token_string_t cmd_flow_director_ops =
10256 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10257 ops, "add#del#update");
10258 cmdline_parse_token_string_t cmd_flow_director_flow =
10259 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10261 cmdline_parse_token_string_t cmd_flow_director_flow_type =
10262 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10264 cmdline_parse_token_string_t cmd_flow_director_drop =
10265 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10267 cmdline_parse_token_string_t cmd_flow_director_queue =
10268 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10270 cmdline_parse_token_num_t cmd_flow_director_queue_id =
10271 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10272 queue_id, RTE_UINT16);
10273 cmdline_parse_token_string_t cmd_flow_director_fd_id =
10274 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10276 cmdline_parse_token_num_t cmd_flow_director_fd_id_value =
10277 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
10278 fd_id_value, RTE_UINT32);
10280 cmdline_parse_token_string_t cmd_flow_director_mode =
10281 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10283 cmdline_parse_token_string_t cmd_flow_director_mode_raw =
10284 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10285 mode_value, "raw");
10286 cmdline_parse_token_string_t cmd_flow_director_packet =
10287 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10289 cmdline_parse_token_string_t cmd_flow_director_filepath =
10290 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
10293 cmdline_parse_inst_t cmd_add_del_raw_flow_director = {
10294 .f = cmd_flow_director_filter_parsed,
10296 .help_str = "flow_director_filter ... : Add or delete a raw flow "
10297 "director entry on NIC",
10299 (void *)&cmd_flow_director_filter,
10300 (void *)&cmd_flow_director_port_id,
10301 (void *)&cmd_flow_director_mode,
10302 (void *)&cmd_flow_director_mode_raw,
10303 (void *)&cmd_flow_director_ops,
10304 (void *)&cmd_flow_director_flow,
10305 (void *)&cmd_flow_director_flow_type,
10306 (void *)&cmd_flow_director_drop,
10307 (void *)&cmd_flow_director_queue,
10308 (void *)&cmd_flow_director_queue_id,
10309 (void *)&cmd_flow_director_fd_id,
10310 (void *)&cmd_flow_director_fd_id_value,
10311 (void *)&cmd_flow_director_packet,
10312 (void *)&cmd_flow_director_filepath,
10317 #endif /* RTE_NET_I40E */
10319 /* *** deal with flow director mask *** */
10320 struct cmd_flow_director_mask_result {
10321 cmdline_fixed_string_t flow_director_mask;
10323 cmdline_fixed_string_t mode;
10324 cmdline_fixed_string_t mode_value;
10325 cmdline_fixed_string_t vlan;
10326 uint16_t vlan_mask;
10327 cmdline_fixed_string_t src_mask;
10328 cmdline_ipaddr_t ipv4_src;
10329 cmdline_ipaddr_t ipv6_src;
10331 cmdline_fixed_string_t dst_mask;
10332 cmdline_ipaddr_t ipv4_dst;
10333 cmdline_ipaddr_t ipv6_dst;
10335 cmdline_fixed_string_t mac;
10336 uint8_t mac_addr_byte_mask;
10337 cmdline_fixed_string_t tunnel_id;
10338 uint32_t tunnel_id_mask;
10339 cmdline_fixed_string_t tunnel_type;
10340 uint8_t tunnel_type_mask;
10344 cmd_flow_director_mask_parsed(void *parsed_result,
10345 __rte_unused struct cmdline *cl,
10346 __rte_unused void *data)
10348 struct cmd_flow_director_mask_result *res = parsed_result;
10349 struct rte_eth_fdir_masks *mask;
10350 struct rte_port *port;
10352 port = &ports[res->port_id];
10353 /** Check if the port is not started **/
10354 if (port->port_status != RTE_PORT_STOPPED) {
10355 printf("Please stop port %d first\n", res->port_id);
10359 mask = &port->dev_conf.fdir_conf.mask;
10361 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
10362 if (strcmp(res->mode_value, "MAC-VLAN")) {
10363 printf("Please set mode to MAC-VLAN.\n");
10367 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10368 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) {
10369 if (strcmp(res->mode_value, "Tunnel")) {
10370 printf("Please set mode to Tunnel.\n");
10374 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10375 mask->mac_addr_byte_mask = res->mac_addr_byte_mask;
10376 mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask);
10377 mask->tunnel_type_mask = res->tunnel_type_mask;
10379 if (strcmp(res->mode_value, "IP")) {
10380 printf("Please set mode to IP.\n");
10384 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
10385 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip);
10386 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip);
10387 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip);
10388 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip);
10389 mask->src_port_mask = rte_cpu_to_be_16(res->port_src);
10390 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst);
10393 cmd_reconfig_device_queue(res->port_id, 1, 1);
10396 cmdline_parse_token_string_t cmd_flow_director_mask =
10397 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10398 flow_director_mask, "flow_director_mask");
10399 cmdline_parse_token_num_t cmd_flow_director_mask_port_id =
10400 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10401 port_id, RTE_UINT16);
10402 cmdline_parse_token_string_t cmd_flow_director_mask_vlan =
10403 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10405 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value =
10406 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10407 vlan_mask, RTE_UINT16);
10408 cmdline_parse_token_string_t cmd_flow_director_mask_src =
10409 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10410 src_mask, "src_mask");
10411 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src =
10412 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10414 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src =
10415 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10417 cmdline_parse_token_num_t cmd_flow_director_mask_port_src =
10418 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10419 port_src, RTE_UINT16);
10420 cmdline_parse_token_string_t cmd_flow_director_mask_dst =
10421 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10422 dst_mask, "dst_mask");
10423 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst =
10424 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10426 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst =
10427 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
10429 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst =
10430 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10431 port_dst, RTE_UINT16);
10433 cmdline_parse_token_string_t cmd_flow_director_mask_mode =
10434 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10436 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip =
10437 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10439 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan =
10440 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10441 mode_value, "MAC-VLAN");
10442 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel =
10443 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10444 mode_value, "Tunnel");
10445 cmdline_parse_token_string_t cmd_flow_director_mask_mac =
10446 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10448 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value =
10449 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10450 mac_addr_byte_mask, RTE_UINT8);
10451 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type =
10452 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10453 tunnel_type, "tunnel-type");
10454 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value =
10455 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10456 tunnel_type_mask, RTE_UINT8);
10457 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id =
10458 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
10459 tunnel_id, "tunnel-id");
10460 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value =
10461 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
10462 tunnel_id_mask, RTE_UINT32);
10464 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = {
10465 .f = cmd_flow_director_mask_parsed,
10467 .help_str = "flow_director_mask ... : "
10468 "Set IP mode flow director's mask on NIC",
10470 (void *)&cmd_flow_director_mask,
10471 (void *)&cmd_flow_director_mask_port_id,
10472 (void *)&cmd_flow_director_mask_mode,
10473 (void *)&cmd_flow_director_mask_mode_ip,
10474 (void *)&cmd_flow_director_mask_vlan,
10475 (void *)&cmd_flow_director_mask_vlan_value,
10476 (void *)&cmd_flow_director_mask_src,
10477 (void *)&cmd_flow_director_mask_ipv4_src,
10478 (void *)&cmd_flow_director_mask_ipv6_src,
10479 (void *)&cmd_flow_director_mask_port_src,
10480 (void *)&cmd_flow_director_mask_dst,
10481 (void *)&cmd_flow_director_mask_ipv4_dst,
10482 (void *)&cmd_flow_director_mask_ipv6_dst,
10483 (void *)&cmd_flow_director_mask_port_dst,
10488 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = {
10489 .f = cmd_flow_director_mask_parsed,
10491 .help_str = "flow_director_mask ... : Set MAC VLAN mode "
10492 "flow director's mask on NIC",
10494 (void *)&cmd_flow_director_mask,
10495 (void *)&cmd_flow_director_mask_port_id,
10496 (void *)&cmd_flow_director_mask_mode,
10497 (void *)&cmd_flow_director_mask_mode_mac_vlan,
10498 (void *)&cmd_flow_director_mask_vlan,
10499 (void *)&cmd_flow_director_mask_vlan_value,
10504 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = {
10505 .f = cmd_flow_director_mask_parsed,
10507 .help_str = "flow_director_mask ... : Set tunnel mode "
10508 "flow director's mask on NIC",
10510 (void *)&cmd_flow_director_mask,
10511 (void *)&cmd_flow_director_mask_port_id,
10512 (void *)&cmd_flow_director_mask_mode,
10513 (void *)&cmd_flow_director_mask_mode_tunnel,
10514 (void *)&cmd_flow_director_mask_vlan,
10515 (void *)&cmd_flow_director_mask_vlan_value,
10516 (void *)&cmd_flow_director_mask_mac,
10517 (void *)&cmd_flow_director_mask_mac_value,
10518 (void *)&cmd_flow_director_mask_tunnel_type,
10519 (void *)&cmd_flow_director_mask_tunnel_type_value,
10520 (void *)&cmd_flow_director_mask_tunnel_id,
10521 (void *)&cmd_flow_director_mask_tunnel_id_value,
10526 /* *** deal with flow director flexible payload configuration *** */
10527 struct cmd_flow_director_flexpayload_result {
10528 cmdline_fixed_string_t flow_director_flexpayload;
10530 cmdline_fixed_string_t payload_layer;
10531 cmdline_fixed_string_t payload_cfg;
10535 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num)
10538 const char *p, *p0 = q_arg;
10540 unsigned long int_fld;
10541 char *str_fld[max_num];
10546 p = strchr(p0, '(');
10550 p0 = strchr(p, ')');
10555 if (size >= sizeof(s))
10558 snprintf(s, sizeof(s), "%.*s", size, p);
10559 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
10560 if (ret < 0 || ret > max_num)
10562 for (i = 0; i < ret; i++) {
10564 int_fld = strtoul(str_fld[i], &end, 0);
10565 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX)
10567 offsets[i] = (uint16_t)int_fld;
10573 cmd_flow_director_flxpld_parsed(void *parsed_result,
10574 __rte_unused struct cmdline *cl,
10575 __rte_unused void *data)
10577 struct cmd_flow_director_flexpayload_result *res = parsed_result;
10578 struct rte_eth_flex_payload_cfg flex_cfg;
10579 struct rte_port *port;
10582 port = &ports[res->port_id];
10583 /** Check if the port is not started **/
10584 if (port->port_status != RTE_PORT_STOPPED) {
10585 printf("Please stop port %d first\n", res->port_id);
10589 memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg));
10591 if (!strcmp(res->payload_layer, "raw"))
10592 flex_cfg.type = RTE_ETH_RAW_PAYLOAD;
10593 else if (!strcmp(res->payload_layer, "l2"))
10594 flex_cfg.type = RTE_ETH_L2_PAYLOAD;
10595 else if (!strcmp(res->payload_layer, "l3"))
10596 flex_cfg.type = RTE_ETH_L3_PAYLOAD;
10597 else if (!strcmp(res->payload_layer, "l4"))
10598 flex_cfg.type = RTE_ETH_L4_PAYLOAD;
10600 ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset,
10601 RTE_ETH_FDIR_MAX_FLEXLEN);
10603 printf("error: Cannot parse flex payload input.\n");
10607 fdir_set_flex_payload(res->port_id, &flex_cfg);
10608 cmd_reconfig_device_queue(res->port_id, 1, 1);
10611 cmdline_parse_token_string_t cmd_flow_director_flexpayload =
10612 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10613 flow_director_flexpayload,
10614 "flow_director_flex_payload");
10615 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id =
10616 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10617 port_id, RTE_UINT16);
10618 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer =
10619 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10620 payload_layer, "raw#l2#l3#l4");
10621 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg =
10622 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
10623 payload_cfg, NULL);
10625 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = {
10626 .f = cmd_flow_director_flxpld_parsed,
10628 .help_str = "flow_director_flexpayload ... : "
10629 "Set flow director's flex payload on NIC",
10631 (void *)&cmd_flow_director_flexpayload,
10632 (void *)&cmd_flow_director_flexpayload_port_id,
10633 (void *)&cmd_flow_director_flexpayload_payload_layer,
10634 (void *)&cmd_flow_director_flexpayload_payload_cfg,
10639 /* Generic flow interface command. */
10640 extern cmdline_parse_inst_t cmd_flow;
10642 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */
10643 struct cmd_mcast_addr_result {
10644 cmdline_fixed_string_t mcast_addr_cmd;
10645 cmdline_fixed_string_t what;
10647 struct rte_ether_addr mc_addr;
10650 static void cmd_mcast_addr_parsed(void *parsed_result,
10651 __rte_unused struct cmdline *cl,
10652 __rte_unused void *data)
10654 struct cmd_mcast_addr_result *res = parsed_result;
10656 if (!rte_is_multicast_ether_addr(&res->mc_addr)) {
10657 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n",
10658 res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1],
10659 res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3],
10660 res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]);
10663 if (strcmp(res->what, "add") == 0)
10664 mcast_addr_add(res->port_num, &res->mc_addr);
10666 mcast_addr_remove(res->port_num, &res->mc_addr);
10669 cmdline_parse_token_string_t cmd_mcast_addr_cmd =
10670 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result,
10671 mcast_addr_cmd, "mcast_addr");
10672 cmdline_parse_token_string_t cmd_mcast_addr_what =
10673 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what,
10675 cmdline_parse_token_num_t cmd_mcast_addr_portnum =
10676 TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num,
10678 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr =
10679 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
10681 cmdline_parse_inst_t cmd_mcast_addr = {
10682 .f = cmd_mcast_addr_parsed,
10684 .help_str = "mcast_addr add|remove <port_id> <mcast_addr>: "
10685 "Add/Remove multicast MAC address on port_id",
10687 (void *)&cmd_mcast_addr_cmd,
10688 (void *)&cmd_mcast_addr_what,
10689 (void *)&cmd_mcast_addr_portnum,
10690 (void *)&cmd_mcast_addr_addr,
10695 /* vf vlan anti spoof configuration */
10697 /* Common result structure for vf vlan anti spoof */
10698 struct cmd_vf_vlan_anti_spoof_result {
10699 cmdline_fixed_string_t set;
10700 cmdline_fixed_string_t vf;
10701 cmdline_fixed_string_t vlan;
10702 cmdline_fixed_string_t antispoof;
10705 cmdline_fixed_string_t on_off;
10708 /* Common CLI fields for vf vlan anti spoof enable disable */
10709 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set =
10710 TOKEN_STRING_INITIALIZER
10711 (struct cmd_vf_vlan_anti_spoof_result,
10713 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf =
10714 TOKEN_STRING_INITIALIZER
10715 (struct cmd_vf_vlan_anti_spoof_result,
10717 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan =
10718 TOKEN_STRING_INITIALIZER
10719 (struct cmd_vf_vlan_anti_spoof_result,
10721 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof =
10722 TOKEN_STRING_INITIALIZER
10723 (struct cmd_vf_vlan_anti_spoof_result,
10724 antispoof, "antispoof");
10725 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id =
10726 TOKEN_NUM_INITIALIZER
10727 (struct cmd_vf_vlan_anti_spoof_result,
10728 port_id, RTE_UINT16);
10729 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id =
10730 TOKEN_NUM_INITIALIZER
10731 (struct cmd_vf_vlan_anti_spoof_result,
10732 vf_id, RTE_UINT32);
10733 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off =
10734 TOKEN_STRING_INITIALIZER
10735 (struct cmd_vf_vlan_anti_spoof_result,
10739 cmd_set_vf_vlan_anti_spoof_parsed(
10740 void *parsed_result,
10741 __rte_unused struct cmdline *cl,
10742 __rte_unused void *data)
10744 struct cmd_vf_vlan_anti_spoof_result *res = parsed_result;
10745 int ret = -ENOTSUP;
10747 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10749 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10752 #ifdef RTE_NET_IXGBE
10753 if (ret == -ENOTSUP)
10754 ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id,
10755 res->vf_id, is_on);
10757 #ifdef RTE_NET_I40E
10758 if (ret == -ENOTSUP)
10759 ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id,
10760 res->vf_id, is_on);
10762 #ifdef RTE_NET_BNXT
10763 if (ret == -ENOTSUP)
10764 ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id,
10765 res->vf_id, is_on);
10772 printf("invalid vf_id %d\n", res->vf_id);
10775 printf("invalid port_id %d\n", res->port_id);
10778 printf("function not implemented\n");
10781 printf("programming error: (%s)\n", strerror(-ret));
10785 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = {
10786 .f = cmd_set_vf_vlan_anti_spoof_parsed,
10788 .help_str = "set vf vlan antispoof <port_id> <vf_id> on|off",
10790 (void *)&cmd_vf_vlan_anti_spoof_set,
10791 (void *)&cmd_vf_vlan_anti_spoof_vf,
10792 (void *)&cmd_vf_vlan_anti_spoof_vlan,
10793 (void *)&cmd_vf_vlan_anti_spoof_antispoof,
10794 (void *)&cmd_vf_vlan_anti_spoof_port_id,
10795 (void *)&cmd_vf_vlan_anti_spoof_vf_id,
10796 (void *)&cmd_vf_vlan_anti_spoof_on_off,
10801 /* vf mac anti spoof configuration */
10803 /* Common result structure for vf mac anti spoof */
10804 struct cmd_vf_mac_anti_spoof_result {
10805 cmdline_fixed_string_t set;
10806 cmdline_fixed_string_t vf;
10807 cmdline_fixed_string_t mac;
10808 cmdline_fixed_string_t antispoof;
10811 cmdline_fixed_string_t on_off;
10814 /* Common CLI fields for vf mac anti spoof enable disable */
10815 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set =
10816 TOKEN_STRING_INITIALIZER
10817 (struct cmd_vf_mac_anti_spoof_result,
10819 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf =
10820 TOKEN_STRING_INITIALIZER
10821 (struct cmd_vf_mac_anti_spoof_result,
10823 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac =
10824 TOKEN_STRING_INITIALIZER
10825 (struct cmd_vf_mac_anti_spoof_result,
10827 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof =
10828 TOKEN_STRING_INITIALIZER
10829 (struct cmd_vf_mac_anti_spoof_result,
10830 antispoof, "antispoof");
10831 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id =
10832 TOKEN_NUM_INITIALIZER
10833 (struct cmd_vf_mac_anti_spoof_result,
10834 port_id, RTE_UINT16);
10835 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id =
10836 TOKEN_NUM_INITIALIZER
10837 (struct cmd_vf_mac_anti_spoof_result,
10838 vf_id, RTE_UINT32);
10839 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off =
10840 TOKEN_STRING_INITIALIZER
10841 (struct cmd_vf_mac_anti_spoof_result,
10845 cmd_set_vf_mac_anti_spoof_parsed(
10846 void *parsed_result,
10847 __rte_unused struct cmdline *cl,
10848 __rte_unused void *data)
10850 struct cmd_vf_mac_anti_spoof_result *res = parsed_result;
10851 int ret = -ENOTSUP;
10853 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10855 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10858 #ifdef RTE_NET_IXGBE
10859 if (ret == -ENOTSUP)
10860 ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id,
10861 res->vf_id, is_on);
10863 #ifdef RTE_NET_I40E
10864 if (ret == -ENOTSUP)
10865 ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id,
10866 res->vf_id, is_on);
10868 #ifdef RTE_NET_BNXT
10869 if (ret == -ENOTSUP)
10870 ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id,
10871 res->vf_id, is_on);
10878 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
10881 printf("invalid port_id %d\n", res->port_id);
10884 printf("function not implemented\n");
10887 printf("programming error: (%s)\n", strerror(-ret));
10891 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = {
10892 .f = cmd_set_vf_mac_anti_spoof_parsed,
10894 .help_str = "set vf mac antispoof <port_id> <vf_id> on|off",
10896 (void *)&cmd_vf_mac_anti_spoof_set,
10897 (void *)&cmd_vf_mac_anti_spoof_vf,
10898 (void *)&cmd_vf_mac_anti_spoof_mac,
10899 (void *)&cmd_vf_mac_anti_spoof_antispoof,
10900 (void *)&cmd_vf_mac_anti_spoof_port_id,
10901 (void *)&cmd_vf_mac_anti_spoof_vf_id,
10902 (void *)&cmd_vf_mac_anti_spoof_on_off,
10907 /* vf vlan strip queue configuration */
10909 /* Common result structure for vf mac anti spoof */
10910 struct cmd_vf_vlan_stripq_result {
10911 cmdline_fixed_string_t set;
10912 cmdline_fixed_string_t vf;
10913 cmdline_fixed_string_t vlan;
10914 cmdline_fixed_string_t stripq;
10917 cmdline_fixed_string_t on_off;
10920 /* Common CLI fields for vf vlan strip enable disable */
10921 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set =
10922 TOKEN_STRING_INITIALIZER
10923 (struct cmd_vf_vlan_stripq_result,
10925 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf =
10926 TOKEN_STRING_INITIALIZER
10927 (struct cmd_vf_vlan_stripq_result,
10929 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan =
10930 TOKEN_STRING_INITIALIZER
10931 (struct cmd_vf_vlan_stripq_result,
10933 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq =
10934 TOKEN_STRING_INITIALIZER
10935 (struct cmd_vf_vlan_stripq_result,
10937 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id =
10938 TOKEN_NUM_INITIALIZER
10939 (struct cmd_vf_vlan_stripq_result,
10940 port_id, RTE_UINT16);
10941 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id =
10942 TOKEN_NUM_INITIALIZER
10943 (struct cmd_vf_vlan_stripq_result,
10944 vf_id, RTE_UINT16);
10945 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off =
10946 TOKEN_STRING_INITIALIZER
10947 (struct cmd_vf_vlan_stripq_result,
10951 cmd_set_vf_vlan_stripq_parsed(
10952 void *parsed_result,
10953 __rte_unused struct cmdline *cl,
10954 __rte_unused void *data)
10956 struct cmd_vf_vlan_stripq_result *res = parsed_result;
10957 int ret = -ENOTSUP;
10959 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
10961 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10964 #ifdef RTE_NET_IXGBE
10965 if (ret == -ENOTSUP)
10966 ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id,
10967 res->vf_id, is_on);
10969 #ifdef RTE_NET_I40E
10970 if (ret == -ENOTSUP)
10971 ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id,
10972 res->vf_id, is_on);
10974 #ifdef RTE_NET_BNXT
10975 if (ret == -ENOTSUP)
10976 ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id,
10977 res->vf_id, is_on);
10984 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
10987 printf("invalid port_id %d\n", res->port_id);
10990 printf("function not implemented\n");
10993 printf("programming error: (%s)\n", strerror(-ret));
10997 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = {
10998 .f = cmd_set_vf_vlan_stripq_parsed,
11000 .help_str = "set vf vlan stripq <port_id> <vf_id> on|off",
11002 (void *)&cmd_vf_vlan_stripq_set,
11003 (void *)&cmd_vf_vlan_stripq_vf,
11004 (void *)&cmd_vf_vlan_stripq_vlan,
11005 (void *)&cmd_vf_vlan_stripq_stripq,
11006 (void *)&cmd_vf_vlan_stripq_port_id,
11007 (void *)&cmd_vf_vlan_stripq_vf_id,
11008 (void *)&cmd_vf_vlan_stripq_on_off,
11013 /* vf vlan insert configuration */
11015 /* Common result structure for vf vlan insert */
11016 struct cmd_vf_vlan_insert_result {
11017 cmdline_fixed_string_t set;
11018 cmdline_fixed_string_t vf;
11019 cmdline_fixed_string_t vlan;
11020 cmdline_fixed_string_t insert;
11026 /* Common CLI fields for vf vlan insert enable disable */
11027 cmdline_parse_token_string_t cmd_vf_vlan_insert_set =
11028 TOKEN_STRING_INITIALIZER
11029 (struct cmd_vf_vlan_insert_result,
11031 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf =
11032 TOKEN_STRING_INITIALIZER
11033 (struct cmd_vf_vlan_insert_result,
11035 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan =
11036 TOKEN_STRING_INITIALIZER
11037 (struct cmd_vf_vlan_insert_result,
11039 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert =
11040 TOKEN_STRING_INITIALIZER
11041 (struct cmd_vf_vlan_insert_result,
11043 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id =
11044 TOKEN_NUM_INITIALIZER
11045 (struct cmd_vf_vlan_insert_result,
11046 port_id, RTE_UINT16);
11047 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id =
11048 TOKEN_NUM_INITIALIZER
11049 (struct cmd_vf_vlan_insert_result,
11050 vf_id, RTE_UINT16);
11051 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id =
11052 TOKEN_NUM_INITIALIZER
11053 (struct cmd_vf_vlan_insert_result,
11054 vlan_id, RTE_UINT16);
11057 cmd_set_vf_vlan_insert_parsed(
11058 void *parsed_result,
11059 __rte_unused struct cmdline *cl,
11060 __rte_unused void *data)
11062 struct cmd_vf_vlan_insert_result *res = parsed_result;
11063 int ret = -ENOTSUP;
11065 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11068 #ifdef RTE_NET_IXGBE
11069 if (ret == -ENOTSUP)
11070 ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id,
11073 #ifdef RTE_NET_I40E
11074 if (ret == -ENOTSUP)
11075 ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id,
11078 #ifdef RTE_NET_BNXT
11079 if (ret == -ENOTSUP)
11080 ret = rte_pmd_bnxt_set_vf_vlan_insert(res->port_id, res->vf_id,
11088 printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id);
11091 printf("invalid port_id %d\n", res->port_id);
11094 printf("function not implemented\n");
11097 printf("programming error: (%s)\n", strerror(-ret));
11101 cmdline_parse_inst_t cmd_set_vf_vlan_insert = {
11102 .f = cmd_set_vf_vlan_insert_parsed,
11104 .help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>",
11106 (void *)&cmd_vf_vlan_insert_set,
11107 (void *)&cmd_vf_vlan_insert_vf,
11108 (void *)&cmd_vf_vlan_insert_vlan,
11109 (void *)&cmd_vf_vlan_insert_insert,
11110 (void *)&cmd_vf_vlan_insert_port_id,
11111 (void *)&cmd_vf_vlan_insert_vf_id,
11112 (void *)&cmd_vf_vlan_insert_vlan_id,
11117 /* tx loopback configuration */
11119 /* Common result structure for tx loopback */
11120 struct cmd_tx_loopback_result {
11121 cmdline_fixed_string_t set;
11122 cmdline_fixed_string_t tx;
11123 cmdline_fixed_string_t loopback;
11125 cmdline_fixed_string_t on_off;
11128 /* Common CLI fields for tx loopback enable disable */
11129 cmdline_parse_token_string_t cmd_tx_loopback_set =
11130 TOKEN_STRING_INITIALIZER
11131 (struct cmd_tx_loopback_result,
11133 cmdline_parse_token_string_t cmd_tx_loopback_tx =
11134 TOKEN_STRING_INITIALIZER
11135 (struct cmd_tx_loopback_result,
11137 cmdline_parse_token_string_t cmd_tx_loopback_loopback =
11138 TOKEN_STRING_INITIALIZER
11139 (struct cmd_tx_loopback_result,
11140 loopback, "loopback");
11141 cmdline_parse_token_num_t cmd_tx_loopback_port_id =
11142 TOKEN_NUM_INITIALIZER
11143 (struct cmd_tx_loopback_result,
11144 port_id, RTE_UINT16);
11145 cmdline_parse_token_string_t cmd_tx_loopback_on_off =
11146 TOKEN_STRING_INITIALIZER
11147 (struct cmd_tx_loopback_result,
11151 cmd_set_tx_loopback_parsed(
11152 void *parsed_result,
11153 __rte_unused struct cmdline *cl,
11154 __rte_unused void *data)
11156 struct cmd_tx_loopback_result *res = parsed_result;
11157 int ret = -ENOTSUP;
11159 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11161 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11164 #ifdef RTE_NET_IXGBE
11165 if (ret == -ENOTSUP)
11166 ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on);
11168 #ifdef RTE_NET_I40E
11169 if (ret == -ENOTSUP)
11170 ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on);
11172 #ifdef RTE_NET_BNXT
11173 if (ret == -ENOTSUP)
11174 ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on);
11176 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA
11177 if (ret == -ENOTSUP)
11178 ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on);
11185 printf("invalid is_on %d\n", is_on);
11188 printf("invalid port_id %d\n", res->port_id);
11191 printf("function not implemented\n");
11194 printf("programming error: (%s)\n", strerror(-ret));
11198 cmdline_parse_inst_t cmd_set_tx_loopback = {
11199 .f = cmd_set_tx_loopback_parsed,
11201 .help_str = "set tx loopback <port_id> on|off",
11203 (void *)&cmd_tx_loopback_set,
11204 (void *)&cmd_tx_loopback_tx,
11205 (void *)&cmd_tx_loopback_loopback,
11206 (void *)&cmd_tx_loopback_port_id,
11207 (void *)&cmd_tx_loopback_on_off,
11212 /* all queues drop enable configuration */
11214 /* Common result structure for all queues drop enable */
11215 struct cmd_all_queues_drop_en_result {
11216 cmdline_fixed_string_t set;
11217 cmdline_fixed_string_t all;
11218 cmdline_fixed_string_t queues;
11219 cmdline_fixed_string_t drop;
11221 cmdline_fixed_string_t on_off;
11224 /* Common CLI fields for tx loopback enable disable */
11225 cmdline_parse_token_string_t cmd_all_queues_drop_en_set =
11226 TOKEN_STRING_INITIALIZER
11227 (struct cmd_all_queues_drop_en_result,
11229 cmdline_parse_token_string_t cmd_all_queues_drop_en_all =
11230 TOKEN_STRING_INITIALIZER
11231 (struct cmd_all_queues_drop_en_result,
11233 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues =
11234 TOKEN_STRING_INITIALIZER
11235 (struct cmd_all_queues_drop_en_result,
11237 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop =
11238 TOKEN_STRING_INITIALIZER
11239 (struct cmd_all_queues_drop_en_result,
11241 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id =
11242 TOKEN_NUM_INITIALIZER
11243 (struct cmd_all_queues_drop_en_result,
11244 port_id, RTE_UINT16);
11245 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off =
11246 TOKEN_STRING_INITIALIZER
11247 (struct cmd_all_queues_drop_en_result,
11251 cmd_set_all_queues_drop_en_parsed(
11252 void *parsed_result,
11253 __rte_unused struct cmdline *cl,
11254 __rte_unused void *data)
11256 struct cmd_all_queues_drop_en_result *res = parsed_result;
11257 int ret = -ENOTSUP;
11258 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11260 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11263 #ifdef RTE_NET_IXGBE
11264 if (ret == -ENOTSUP)
11265 ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on);
11267 #ifdef RTE_NET_BNXT
11268 if (ret == -ENOTSUP)
11269 ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on);
11275 printf("invalid is_on %d\n", is_on);
11278 printf("invalid port_id %d\n", res->port_id);
11281 printf("function not implemented\n");
11284 printf("programming error: (%s)\n", strerror(-ret));
11288 cmdline_parse_inst_t cmd_set_all_queues_drop_en = {
11289 .f = cmd_set_all_queues_drop_en_parsed,
11291 .help_str = "set all queues drop <port_id> on|off",
11293 (void *)&cmd_all_queues_drop_en_set,
11294 (void *)&cmd_all_queues_drop_en_all,
11295 (void *)&cmd_all_queues_drop_en_queues,
11296 (void *)&cmd_all_queues_drop_en_drop,
11297 (void *)&cmd_all_queues_drop_en_port_id,
11298 (void *)&cmd_all_queues_drop_en_on_off,
11303 /* vf split drop enable configuration */
11305 /* Common result structure for vf split drop enable */
11306 struct cmd_vf_split_drop_en_result {
11307 cmdline_fixed_string_t set;
11308 cmdline_fixed_string_t vf;
11309 cmdline_fixed_string_t split;
11310 cmdline_fixed_string_t drop;
11313 cmdline_fixed_string_t on_off;
11316 /* Common CLI fields for vf split drop enable disable */
11317 cmdline_parse_token_string_t cmd_vf_split_drop_en_set =
11318 TOKEN_STRING_INITIALIZER
11319 (struct cmd_vf_split_drop_en_result,
11321 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf =
11322 TOKEN_STRING_INITIALIZER
11323 (struct cmd_vf_split_drop_en_result,
11325 cmdline_parse_token_string_t cmd_vf_split_drop_en_split =
11326 TOKEN_STRING_INITIALIZER
11327 (struct cmd_vf_split_drop_en_result,
11329 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop =
11330 TOKEN_STRING_INITIALIZER
11331 (struct cmd_vf_split_drop_en_result,
11333 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id =
11334 TOKEN_NUM_INITIALIZER
11335 (struct cmd_vf_split_drop_en_result,
11336 port_id, RTE_UINT16);
11337 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id =
11338 TOKEN_NUM_INITIALIZER
11339 (struct cmd_vf_split_drop_en_result,
11340 vf_id, RTE_UINT16);
11341 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off =
11342 TOKEN_STRING_INITIALIZER
11343 (struct cmd_vf_split_drop_en_result,
11347 cmd_set_vf_split_drop_en_parsed(
11348 void *parsed_result,
11349 __rte_unused struct cmdline *cl,
11350 __rte_unused void *data)
11352 struct cmd_vf_split_drop_en_result *res = parsed_result;
11353 int ret = -ENOTSUP;
11354 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11356 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11359 #ifdef RTE_NET_IXGBE
11360 ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id,
11367 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
11370 printf("invalid port_id %d\n", res->port_id);
11373 printf("not supported on port %d\n", res->port_id);
11376 printf("programming error: (%s)\n", strerror(-ret));
11380 cmdline_parse_inst_t cmd_set_vf_split_drop_en = {
11381 .f = cmd_set_vf_split_drop_en_parsed,
11383 .help_str = "set vf split drop <port_id> <vf_id> on|off",
11385 (void *)&cmd_vf_split_drop_en_set,
11386 (void *)&cmd_vf_split_drop_en_vf,
11387 (void *)&cmd_vf_split_drop_en_split,
11388 (void *)&cmd_vf_split_drop_en_drop,
11389 (void *)&cmd_vf_split_drop_en_port_id,
11390 (void *)&cmd_vf_split_drop_en_vf_id,
11391 (void *)&cmd_vf_split_drop_en_on_off,
11396 /* vf mac address configuration */
11398 /* Common result structure for vf mac address */
11399 struct cmd_set_vf_mac_addr_result {
11400 cmdline_fixed_string_t set;
11401 cmdline_fixed_string_t vf;
11402 cmdline_fixed_string_t mac;
11403 cmdline_fixed_string_t addr;
11406 struct rte_ether_addr mac_addr;
11410 /* Common CLI fields for vf split drop enable disable */
11411 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set =
11412 TOKEN_STRING_INITIALIZER
11413 (struct cmd_set_vf_mac_addr_result,
11415 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf =
11416 TOKEN_STRING_INITIALIZER
11417 (struct cmd_set_vf_mac_addr_result,
11419 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac =
11420 TOKEN_STRING_INITIALIZER
11421 (struct cmd_set_vf_mac_addr_result,
11423 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr =
11424 TOKEN_STRING_INITIALIZER
11425 (struct cmd_set_vf_mac_addr_result,
11427 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id =
11428 TOKEN_NUM_INITIALIZER
11429 (struct cmd_set_vf_mac_addr_result,
11430 port_id, RTE_UINT16);
11431 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id =
11432 TOKEN_NUM_INITIALIZER
11433 (struct cmd_set_vf_mac_addr_result,
11434 vf_id, RTE_UINT16);
11435 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr =
11436 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result,
11440 cmd_set_vf_mac_addr_parsed(
11441 void *parsed_result,
11442 __rte_unused struct cmdline *cl,
11443 __rte_unused void *data)
11445 struct cmd_set_vf_mac_addr_result *res = parsed_result;
11446 int ret = -ENOTSUP;
11448 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11451 #ifdef RTE_NET_IXGBE
11452 if (ret == -ENOTSUP)
11453 ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id,
11456 #ifdef RTE_NET_I40E
11457 if (ret == -ENOTSUP)
11458 ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id,
11461 #ifdef RTE_NET_BNXT
11462 if (ret == -ENOTSUP)
11463 ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id,
11471 printf("invalid vf_id %d or mac_addr\n", res->vf_id);
11474 printf("invalid port_id %d\n", res->port_id);
11477 printf("function not implemented\n");
11480 printf("programming error: (%s)\n", strerror(-ret));
11484 cmdline_parse_inst_t cmd_set_vf_mac_addr = {
11485 .f = cmd_set_vf_mac_addr_parsed,
11487 .help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>",
11489 (void *)&cmd_set_vf_mac_addr_set,
11490 (void *)&cmd_set_vf_mac_addr_vf,
11491 (void *)&cmd_set_vf_mac_addr_mac,
11492 (void *)&cmd_set_vf_mac_addr_addr,
11493 (void *)&cmd_set_vf_mac_addr_port_id,
11494 (void *)&cmd_set_vf_mac_addr_vf_id,
11495 (void *)&cmd_set_vf_mac_addr_mac_addr,
11500 /* MACsec configuration */
11502 /* Common result structure for MACsec offload enable */
11503 struct cmd_macsec_offload_on_result {
11504 cmdline_fixed_string_t set;
11505 cmdline_fixed_string_t macsec;
11506 cmdline_fixed_string_t offload;
11508 cmdline_fixed_string_t on;
11509 cmdline_fixed_string_t encrypt;
11510 cmdline_fixed_string_t en_on_off;
11511 cmdline_fixed_string_t replay_protect;
11512 cmdline_fixed_string_t rp_on_off;
11515 /* Common CLI fields for MACsec offload disable */
11516 cmdline_parse_token_string_t cmd_macsec_offload_on_set =
11517 TOKEN_STRING_INITIALIZER
11518 (struct cmd_macsec_offload_on_result,
11520 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec =
11521 TOKEN_STRING_INITIALIZER
11522 (struct cmd_macsec_offload_on_result,
11524 cmdline_parse_token_string_t cmd_macsec_offload_on_offload =
11525 TOKEN_STRING_INITIALIZER
11526 (struct cmd_macsec_offload_on_result,
11527 offload, "offload");
11528 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id =
11529 TOKEN_NUM_INITIALIZER
11530 (struct cmd_macsec_offload_on_result,
11531 port_id, RTE_UINT16);
11532 cmdline_parse_token_string_t cmd_macsec_offload_on_on =
11533 TOKEN_STRING_INITIALIZER
11534 (struct cmd_macsec_offload_on_result,
11536 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt =
11537 TOKEN_STRING_INITIALIZER
11538 (struct cmd_macsec_offload_on_result,
11539 encrypt, "encrypt");
11540 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off =
11541 TOKEN_STRING_INITIALIZER
11542 (struct cmd_macsec_offload_on_result,
11543 en_on_off, "on#off");
11544 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect =
11545 TOKEN_STRING_INITIALIZER
11546 (struct cmd_macsec_offload_on_result,
11547 replay_protect, "replay-protect");
11548 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off =
11549 TOKEN_STRING_INITIALIZER
11550 (struct cmd_macsec_offload_on_result,
11551 rp_on_off, "on#off");
11554 cmd_set_macsec_offload_on_parsed(
11555 void *parsed_result,
11556 __rte_unused struct cmdline *cl,
11557 __rte_unused void *data)
11559 struct cmd_macsec_offload_on_result *res = parsed_result;
11560 int ret = -ENOTSUP;
11561 portid_t port_id = res->port_id;
11562 int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0;
11563 int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0;
11564 struct rte_eth_dev_info dev_info;
11566 if (port_id_is_invalid(port_id, ENABLED_WARN))
11568 if (!port_is_stopped(port_id)) {
11569 printf("Please stop port %d first\n", port_id);
11573 ret = eth_dev_info_get_print_err(port_id, &dev_info);
11577 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) {
11578 #ifdef RTE_NET_IXGBE
11579 ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp);
11587 ports[port_id].dev_conf.txmode.offloads |=
11588 DEV_TX_OFFLOAD_MACSEC_INSERT;
11589 cmd_reconfig_device_queue(port_id, 1, 1);
11592 printf("invalid port_id %d\n", port_id);
11595 printf("not supported on port %d\n", port_id);
11598 printf("programming error: (%s)\n", strerror(-ret));
11602 cmdline_parse_inst_t cmd_set_macsec_offload_on = {
11603 .f = cmd_set_macsec_offload_on_parsed,
11605 .help_str = "set macsec offload <port_id> on "
11606 "encrypt on|off replay-protect on|off",
11608 (void *)&cmd_macsec_offload_on_set,
11609 (void *)&cmd_macsec_offload_on_macsec,
11610 (void *)&cmd_macsec_offload_on_offload,
11611 (void *)&cmd_macsec_offload_on_port_id,
11612 (void *)&cmd_macsec_offload_on_on,
11613 (void *)&cmd_macsec_offload_on_encrypt,
11614 (void *)&cmd_macsec_offload_on_en_on_off,
11615 (void *)&cmd_macsec_offload_on_replay_protect,
11616 (void *)&cmd_macsec_offload_on_rp_on_off,
11621 /* Common result structure for MACsec offload disable */
11622 struct cmd_macsec_offload_off_result {
11623 cmdline_fixed_string_t set;
11624 cmdline_fixed_string_t macsec;
11625 cmdline_fixed_string_t offload;
11627 cmdline_fixed_string_t off;
11630 /* Common CLI fields for MACsec offload disable */
11631 cmdline_parse_token_string_t cmd_macsec_offload_off_set =
11632 TOKEN_STRING_INITIALIZER
11633 (struct cmd_macsec_offload_off_result,
11635 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec =
11636 TOKEN_STRING_INITIALIZER
11637 (struct cmd_macsec_offload_off_result,
11639 cmdline_parse_token_string_t cmd_macsec_offload_off_offload =
11640 TOKEN_STRING_INITIALIZER
11641 (struct cmd_macsec_offload_off_result,
11642 offload, "offload");
11643 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id =
11644 TOKEN_NUM_INITIALIZER
11645 (struct cmd_macsec_offload_off_result,
11646 port_id, RTE_UINT16);
11647 cmdline_parse_token_string_t cmd_macsec_offload_off_off =
11648 TOKEN_STRING_INITIALIZER
11649 (struct cmd_macsec_offload_off_result,
11653 cmd_set_macsec_offload_off_parsed(
11654 void *parsed_result,
11655 __rte_unused struct cmdline *cl,
11656 __rte_unused void *data)
11658 struct cmd_macsec_offload_off_result *res = parsed_result;
11659 int ret = -ENOTSUP;
11660 struct rte_eth_dev_info dev_info;
11661 portid_t port_id = res->port_id;
11663 if (port_id_is_invalid(port_id, ENABLED_WARN))
11665 if (!port_is_stopped(port_id)) {
11666 printf("Please stop port %d first\n", port_id);
11670 ret = eth_dev_info_get_print_err(port_id, &dev_info);
11674 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) {
11675 #ifdef RTE_NET_IXGBE
11676 ret = rte_pmd_ixgbe_macsec_disable(port_id);
11681 ports[port_id].dev_conf.txmode.offloads &=
11682 ~DEV_TX_OFFLOAD_MACSEC_INSERT;
11683 cmd_reconfig_device_queue(port_id, 1, 1);
11686 printf("invalid port_id %d\n", port_id);
11689 printf("not supported on port %d\n", port_id);
11692 printf("programming error: (%s)\n", strerror(-ret));
11696 cmdline_parse_inst_t cmd_set_macsec_offload_off = {
11697 .f = cmd_set_macsec_offload_off_parsed,
11699 .help_str = "set macsec offload <port_id> off",
11701 (void *)&cmd_macsec_offload_off_set,
11702 (void *)&cmd_macsec_offload_off_macsec,
11703 (void *)&cmd_macsec_offload_off_offload,
11704 (void *)&cmd_macsec_offload_off_port_id,
11705 (void *)&cmd_macsec_offload_off_off,
11710 /* Common result structure for MACsec secure connection configure */
11711 struct cmd_macsec_sc_result {
11712 cmdline_fixed_string_t set;
11713 cmdline_fixed_string_t macsec;
11714 cmdline_fixed_string_t sc;
11715 cmdline_fixed_string_t tx_rx;
11717 struct rte_ether_addr mac;
11721 /* Common CLI fields for MACsec secure connection configure */
11722 cmdline_parse_token_string_t cmd_macsec_sc_set =
11723 TOKEN_STRING_INITIALIZER
11724 (struct cmd_macsec_sc_result,
11726 cmdline_parse_token_string_t cmd_macsec_sc_macsec =
11727 TOKEN_STRING_INITIALIZER
11728 (struct cmd_macsec_sc_result,
11730 cmdline_parse_token_string_t cmd_macsec_sc_sc =
11731 TOKEN_STRING_INITIALIZER
11732 (struct cmd_macsec_sc_result,
11734 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx =
11735 TOKEN_STRING_INITIALIZER
11736 (struct cmd_macsec_sc_result,
11738 cmdline_parse_token_num_t cmd_macsec_sc_port_id =
11739 TOKEN_NUM_INITIALIZER
11740 (struct cmd_macsec_sc_result,
11741 port_id, RTE_UINT16);
11742 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac =
11743 TOKEN_ETHERADDR_INITIALIZER
11744 (struct cmd_macsec_sc_result,
11746 cmdline_parse_token_num_t cmd_macsec_sc_pi =
11747 TOKEN_NUM_INITIALIZER
11748 (struct cmd_macsec_sc_result,
11752 cmd_set_macsec_sc_parsed(
11753 void *parsed_result,
11754 __rte_unused struct cmdline *cl,
11755 __rte_unused void *data)
11757 struct cmd_macsec_sc_result *res = parsed_result;
11758 int ret = -ENOTSUP;
11759 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
11761 #ifdef RTE_NET_IXGBE
11763 rte_pmd_ixgbe_macsec_config_txsc(res->port_id,
11764 res->mac.addr_bytes) :
11765 rte_pmd_ixgbe_macsec_config_rxsc(res->port_id,
11766 res->mac.addr_bytes, res->pi);
11768 RTE_SET_USED(is_tx);
11774 printf("invalid port_id %d\n", res->port_id);
11777 printf("not supported on port %d\n", res->port_id);
11780 printf("programming error: (%s)\n", strerror(-ret));
11784 cmdline_parse_inst_t cmd_set_macsec_sc = {
11785 .f = cmd_set_macsec_sc_parsed,
11787 .help_str = "set macsec sc tx|rx <port_id> <mac> <pi>",
11789 (void *)&cmd_macsec_sc_set,
11790 (void *)&cmd_macsec_sc_macsec,
11791 (void *)&cmd_macsec_sc_sc,
11792 (void *)&cmd_macsec_sc_tx_rx,
11793 (void *)&cmd_macsec_sc_port_id,
11794 (void *)&cmd_macsec_sc_mac,
11795 (void *)&cmd_macsec_sc_pi,
11800 /* Common result structure for MACsec secure connection configure */
11801 struct cmd_macsec_sa_result {
11802 cmdline_fixed_string_t set;
11803 cmdline_fixed_string_t macsec;
11804 cmdline_fixed_string_t sa;
11805 cmdline_fixed_string_t tx_rx;
11810 cmdline_fixed_string_t key;
11813 /* Common CLI fields for MACsec secure connection configure */
11814 cmdline_parse_token_string_t cmd_macsec_sa_set =
11815 TOKEN_STRING_INITIALIZER
11816 (struct cmd_macsec_sa_result,
11818 cmdline_parse_token_string_t cmd_macsec_sa_macsec =
11819 TOKEN_STRING_INITIALIZER
11820 (struct cmd_macsec_sa_result,
11822 cmdline_parse_token_string_t cmd_macsec_sa_sa =
11823 TOKEN_STRING_INITIALIZER
11824 (struct cmd_macsec_sa_result,
11826 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx =
11827 TOKEN_STRING_INITIALIZER
11828 (struct cmd_macsec_sa_result,
11830 cmdline_parse_token_num_t cmd_macsec_sa_port_id =
11831 TOKEN_NUM_INITIALIZER
11832 (struct cmd_macsec_sa_result,
11833 port_id, RTE_UINT16);
11834 cmdline_parse_token_num_t cmd_macsec_sa_idx =
11835 TOKEN_NUM_INITIALIZER
11836 (struct cmd_macsec_sa_result,
11838 cmdline_parse_token_num_t cmd_macsec_sa_an =
11839 TOKEN_NUM_INITIALIZER
11840 (struct cmd_macsec_sa_result,
11842 cmdline_parse_token_num_t cmd_macsec_sa_pn =
11843 TOKEN_NUM_INITIALIZER
11844 (struct cmd_macsec_sa_result,
11846 cmdline_parse_token_string_t cmd_macsec_sa_key =
11847 TOKEN_STRING_INITIALIZER
11848 (struct cmd_macsec_sa_result,
11852 cmd_set_macsec_sa_parsed(
11853 void *parsed_result,
11854 __rte_unused struct cmdline *cl,
11855 __rte_unused void *data)
11857 struct cmd_macsec_sa_result *res = parsed_result;
11858 int ret = -ENOTSUP;
11859 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
11860 uint8_t key[16] = { 0 };
11866 key_len = strlen(res->key) / 2;
11870 for (i = 0; i < key_len; i++) {
11871 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
11874 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
11877 key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
11880 #ifdef RTE_NET_IXGBE
11882 rte_pmd_ixgbe_macsec_select_txsa(res->port_id,
11883 res->idx, res->an, res->pn, key) :
11884 rte_pmd_ixgbe_macsec_select_rxsa(res->port_id,
11885 res->idx, res->an, res->pn, key);
11887 RTE_SET_USED(is_tx);
11894 printf("invalid idx %d or an %d\n", res->idx, res->an);
11897 printf("invalid port_id %d\n", res->port_id);
11900 printf("not supported on port %d\n", res->port_id);
11903 printf("programming error: (%s)\n", strerror(-ret));
11907 cmdline_parse_inst_t cmd_set_macsec_sa = {
11908 .f = cmd_set_macsec_sa_parsed,
11910 .help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>",
11912 (void *)&cmd_macsec_sa_set,
11913 (void *)&cmd_macsec_sa_macsec,
11914 (void *)&cmd_macsec_sa_sa,
11915 (void *)&cmd_macsec_sa_tx_rx,
11916 (void *)&cmd_macsec_sa_port_id,
11917 (void *)&cmd_macsec_sa_idx,
11918 (void *)&cmd_macsec_sa_an,
11919 (void *)&cmd_macsec_sa_pn,
11920 (void *)&cmd_macsec_sa_key,
11925 /* VF unicast promiscuous mode configuration */
11927 /* Common result structure for VF unicast promiscuous mode */
11928 struct cmd_vf_promisc_result {
11929 cmdline_fixed_string_t set;
11930 cmdline_fixed_string_t vf;
11931 cmdline_fixed_string_t promisc;
11934 cmdline_fixed_string_t on_off;
11937 /* Common CLI fields for VF unicast promiscuous mode enable disable */
11938 cmdline_parse_token_string_t cmd_vf_promisc_set =
11939 TOKEN_STRING_INITIALIZER
11940 (struct cmd_vf_promisc_result,
11942 cmdline_parse_token_string_t cmd_vf_promisc_vf =
11943 TOKEN_STRING_INITIALIZER
11944 (struct cmd_vf_promisc_result,
11946 cmdline_parse_token_string_t cmd_vf_promisc_promisc =
11947 TOKEN_STRING_INITIALIZER
11948 (struct cmd_vf_promisc_result,
11949 promisc, "promisc");
11950 cmdline_parse_token_num_t cmd_vf_promisc_port_id =
11951 TOKEN_NUM_INITIALIZER
11952 (struct cmd_vf_promisc_result,
11953 port_id, RTE_UINT16);
11954 cmdline_parse_token_num_t cmd_vf_promisc_vf_id =
11955 TOKEN_NUM_INITIALIZER
11956 (struct cmd_vf_promisc_result,
11957 vf_id, RTE_UINT32);
11958 cmdline_parse_token_string_t cmd_vf_promisc_on_off =
11959 TOKEN_STRING_INITIALIZER
11960 (struct cmd_vf_promisc_result,
11964 cmd_set_vf_promisc_parsed(
11965 void *parsed_result,
11966 __rte_unused struct cmdline *cl,
11967 __rte_unused void *data)
11969 struct cmd_vf_promisc_result *res = parsed_result;
11970 int ret = -ENOTSUP;
11972 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11974 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11977 #ifdef RTE_NET_I40E
11978 ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id,
11979 res->vf_id, is_on);
11986 printf("invalid vf_id %d\n", res->vf_id);
11989 printf("invalid port_id %d\n", res->port_id);
11992 printf("function not implemented\n");
11995 printf("programming error: (%s)\n", strerror(-ret));
11999 cmdline_parse_inst_t cmd_set_vf_promisc = {
12000 .f = cmd_set_vf_promisc_parsed,
12002 .help_str = "set vf promisc <port_id> <vf_id> on|off: "
12003 "Set unicast promiscuous mode for a VF from the PF",
12005 (void *)&cmd_vf_promisc_set,
12006 (void *)&cmd_vf_promisc_vf,
12007 (void *)&cmd_vf_promisc_promisc,
12008 (void *)&cmd_vf_promisc_port_id,
12009 (void *)&cmd_vf_promisc_vf_id,
12010 (void *)&cmd_vf_promisc_on_off,
12015 /* VF multicast promiscuous mode configuration */
12017 /* Common result structure for VF multicast promiscuous mode */
12018 struct cmd_vf_allmulti_result {
12019 cmdline_fixed_string_t set;
12020 cmdline_fixed_string_t vf;
12021 cmdline_fixed_string_t allmulti;
12024 cmdline_fixed_string_t on_off;
12027 /* Common CLI fields for VF multicast promiscuous mode enable disable */
12028 cmdline_parse_token_string_t cmd_vf_allmulti_set =
12029 TOKEN_STRING_INITIALIZER
12030 (struct cmd_vf_allmulti_result,
12032 cmdline_parse_token_string_t cmd_vf_allmulti_vf =
12033 TOKEN_STRING_INITIALIZER
12034 (struct cmd_vf_allmulti_result,
12036 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti =
12037 TOKEN_STRING_INITIALIZER
12038 (struct cmd_vf_allmulti_result,
12039 allmulti, "allmulti");
12040 cmdline_parse_token_num_t cmd_vf_allmulti_port_id =
12041 TOKEN_NUM_INITIALIZER
12042 (struct cmd_vf_allmulti_result,
12043 port_id, RTE_UINT16);
12044 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id =
12045 TOKEN_NUM_INITIALIZER
12046 (struct cmd_vf_allmulti_result,
12047 vf_id, RTE_UINT32);
12048 cmdline_parse_token_string_t cmd_vf_allmulti_on_off =
12049 TOKEN_STRING_INITIALIZER
12050 (struct cmd_vf_allmulti_result,
12054 cmd_set_vf_allmulti_parsed(
12055 void *parsed_result,
12056 __rte_unused struct cmdline *cl,
12057 __rte_unused void *data)
12059 struct cmd_vf_allmulti_result *res = parsed_result;
12060 int ret = -ENOTSUP;
12062 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12064 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12067 #ifdef RTE_NET_I40E
12068 ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id,
12069 res->vf_id, is_on);
12076 printf("invalid vf_id %d\n", res->vf_id);
12079 printf("invalid port_id %d\n", res->port_id);
12082 printf("function not implemented\n");
12085 printf("programming error: (%s)\n", strerror(-ret));
12089 cmdline_parse_inst_t cmd_set_vf_allmulti = {
12090 .f = cmd_set_vf_allmulti_parsed,
12092 .help_str = "set vf allmulti <port_id> <vf_id> on|off: "
12093 "Set multicast promiscuous mode for a VF from the PF",
12095 (void *)&cmd_vf_allmulti_set,
12096 (void *)&cmd_vf_allmulti_vf,
12097 (void *)&cmd_vf_allmulti_allmulti,
12098 (void *)&cmd_vf_allmulti_port_id,
12099 (void *)&cmd_vf_allmulti_vf_id,
12100 (void *)&cmd_vf_allmulti_on_off,
12105 /* vf broadcast mode configuration */
12107 /* Common result structure for vf broadcast */
12108 struct cmd_set_vf_broadcast_result {
12109 cmdline_fixed_string_t set;
12110 cmdline_fixed_string_t vf;
12111 cmdline_fixed_string_t broadcast;
12114 cmdline_fixed_string_t on_off;
12117 /* Common CLI fields for vf broadcast enable disable */
12118 cmdline_parse_token_string_t cmd_set_vf_broadcast_set =
12119 TOKEN_STRING_INITIALIZER
12120 (struct cmd_set_vf_broadcast_result,
12122 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf =
12123 TOKEN_STRING_INITIALIZER
12124 (struct cmd_set_vf_broadcast_result,
12126 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast =
12127 TOKEN_STRING_INITIALIZER
12128 (struct cmd_set_vf_broadcast_result,
12129 broadcast, "broadcast");
12130 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id =
12131 TOKEN_NUM_INITIALIZER
12132 (struct cmd_set_vf_broadcast_result,
12133 port_id, RTE_UINT16);
12134 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id =
12135 TOKEN_NUM_INITIALIZER
12136 (struct cmd_set_vf_broadcast_result,
12137 vf_id, RTE_UINT16);
12138 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off =
12139 TOKEN_STRING_INITIALIZER
12140 (struct cmd_set_vf_broadcast_result,
12144 cmd_set_vf_broadcast_parsed(
12145 void *parsed_result,
12146 __rte_unused struct cmdline *cl,
12147 __rte_unused void *data)
12149 struct cmd_set_vf_broadcast_result *res = parsed_result;
12150 int ret = -ENOTSUP;
12152 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12154 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12157 #ifdef RTE_NET_I40E
12158 ret = rte_pmd_i40e_set_vf_broadcast(res->port_id,
12159 res->vf_id, is_on);
12166 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12169 printf("invalid port_id %d\n", res->port_id);
12172 printf("function not implemented\n");
12175 printf("programming error: (%s)\n", strerror(-ret));
12179 cmdline_parse_inst_t cmd_set_vf_broadcast = {
12180 .f = cmd_set_vf_broadcast_parsed,
12182 .help_str = "set vf broadcast <port_id> <vf_id> on|off",
12184 (void *)&cmd_set_vf_broadcast_set,
12185 (void *)&cmd_set_vf_broadcast_vf,
12186 (void *)&cmd_set_vf_broadcast_broadcast,
12187 (void *)&cmd_set_vf_broadcast_port_id,
12188 (void *)&cmd_set_vf_broadcast_vf_id,
12189 (void *)&cmd_set_vf_broadcast_on_off,
12194 /* vf vlan tag configuration */
12196 /* Common result structure for vf vlan tag */
12197 struct cmd_set_vf_vlan_tag_result {
12198 cmdline_fixed_string_t set;
12199 cmdline_fixed_string_t vf;
12200 cmdline_fixed_string_t vlan;
12201 cmdline_fixed_string_t tag;
12204 cmdline_fixed_string_t on_off;
12207 /* Common CLI fields for vf vlan tag enable disable */
12208 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set =
12209 TOKEN_STRING_INITIALIZER
12210 (struct cmd_set_vf_vlan_tag_result,
12212 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf =
12213 TOKEN_STRING_INITIALIZER
12214 (struct cmd_set_vf_vlan_tag_result,
12216 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan =
12217 TOKEN_STRING_INITIALIZER
12218 (struct cmd_set_vf_vlan_tag_result,
12220 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag =
12221 TOKEN_STRING_INITIALIZER
12222 (struct cmd_set_vf_vlan_tag_result,
12224 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id =
12225 TOKEN_NUM_INITIALIZER
12226 (struct cmd_set_vf_vlan_tag_result,
12227 port_id, RTE_UINT16);
12228 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id =
12229 TOKEN_NUM_INITIALIZER
12230 (struct cmd_set_vf_vlan_tag_result,
12231 vf_id, RTE_UINT16);
12232 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off =
12233 TOKEN_STRING_INITIALIZER
12234 (struct cmd_set_vf_vlan_tag_result,
12238 cmd_set_vf_vlan_tag_parsed(
12239 void *parsed_result,
12240 __rte_unused struct cmdline *cl,
12241 __rte_unused void *data)
12243 struct cmd_set_vf_vlan_tag_result *res = parsed_result;
12244 int ret = -ENOTSUP;
12246 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12248 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12251 #ifdef RTE_NET_I40E
12252 ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id,
12253 res->vf_id, is_on);
12260 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12263 printf("invalid port_id %d\n", res->port_id);
12266 printf("function not implemented\n");
12269 printf("programming error: (%s)\n", strerror(-ret));
12273 cmdline_parse_inst_t cmd_set_vf_vlan_tag = {
12274 .f = cmd_set_vf_vlan_tag_parsed,
12276 .help_str = "set vf vlan tag <port_id> <vf_id> on|off",
12278 (void *)&cmd_set_vf_vlan_tag_set,
12279 (void *)&cmd_set_vf_vlan_tag_vf,
12280 (void *)&cmd_set_vf_vlan_tag_vlan,
12281 (void *)&cmd_set_vf_vlan_tag_tag,
12282 (void *)&cmd_set_vf_vlan_tag_port_id,
12283 (void *)&cmd_set_vf_vlan_tag_vf_id,
12284 (void *)&cmd_set_vf_vlan_tag_on_off,
12289 /* Common definition of VF and TC TX bandwidth configuration */
12290 struct cmd_vf_tc_bw_result {
12291 cmdline_fixed_string_t set;
12292 cmdline_fixed_string_t vf;
12293 cmdline_fixed_string_t tc;
12294 cmdline_fixed_string_t tx;
12295 cmdline_fixed_string_t min_bw;
12296 cmdline_fixed_string_t max_bw;
12297 cmdline_fixed_string_t strict_link_prio;
12302 cmdline_fixed_string_t bw_list;
12306 cmdline_parse_token_string_t cmd_vf_tc_bw_set =
12307 TOKEN_STRING_INITIALIZER
12308 (struct cmd_vf_tc_bw_result,
12310 cmdline_parse_token_string_t cmd_vf_tc_bw_vf =
12311 TOKEN_STRING_INITIALIZER
12312 (struct cmd_vf_tc_bw_result,
12314 cmdline_parse_token_string_t cmd_vf_tc_bw_tc =
12315 TOKEN_STRING_INITIALIZER
12316 (struct cmd_vf_tc_bw_result,
12318 cmdline_parse_token_string_t cmd_vf_tc_bw_tx =
12319 TOKEN_STRING_INITIALIZER
12320 (struct cmd_vf_tc_bw_result,
12322 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio =
12323 TOKEN_STRING_INITIALIZER
12324 (struct cmd_vf_tc_bw_result,
12325 strict_link_prio, "strict-link-priority");
12326 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw =
12327 TOKEN_STRING_INITIALIZER
12328 (struct cmd_vf_tc_bw_result,
12329 min_bw, "min-bandwidth");
12330 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw =
12331 TOKEN_STRING_INITIALIZER
12332 (struct cmd_vf_tc_bw_result,
12333 max_bw, "max-bandwidth");
12334 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id =
12335 TOKEN_NUM_INITIALIZER
12336 (struct cmd_vf_tc_bw_result,
12337 port_id, RTE_UINT16);
12338 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id =
12339 TOKEN_NUM_INITIALIZER
12340 (struct cmd_vf_tc_bw_result,
12341 vf_id, RTE_UINT16);
12342 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no =
12343 TOKEN_NUM_INITIALIZER
12344 (struct cmd_vf_tc_bw_result,
12346 cmdline_parse_token_num_t cmd_vf_tc_bw_bw =
12347 TOKEN_NUM_INITIALIZER
12348 (struct cmd_vf_tc_bw_result,
12350 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list =
12351 TOKEN_STRING_INITIALIZER
12352 (struct cmd_vf_tc_bw_result,
12354 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map =
12355 TOKEN_NUM_INITIALIZER
12356 (struct cmd_vf_tc_bw_result,
12357 tc_map, RTE_UINT8);
12359 /* VF max bandwidth setting */
12361 cmd_vf_max_bw_parsed(
12362 void *parsed_result,
12363 __rte_unused struct cmdline *cl,
12364 __rte_unused void *data)
12366 struct cmd_vf_tc_bw_result *res = parsed_result;
12367 int ret = -ENOTSUP;
12369 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12372 #ifdef RTE_NET_I40E
12373 ret = rte_pmd_i40e_set_vf_max_bw(res->port_id,
12374 res->vf_id, res->bw);
12381 printf("invalid vf_id %d or bandwidth %d\n",
12382 res->vf_id, res->bw);
12385 printf("invalid port_id %d\n", res->port_id);
12388 printf("function not implemented\n");
12391 printf("programming error: (%s)\n", strerror(-ret));
12395 cmdline_parse_inst_t cmd_vf_max_bw = {
12396 .f = cmd_vf_max_bw_parsed,
12398 .help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>",
12400 (void *)&cmd_vf_tc_bw_set,
12401 (void *)&cmd_vf_tc_bw_vf,
12402 (void *)&cmd_vf_tc_bw_tx,
12403 (void *)&cmd_vf_tc_bw_max_bw,
12404 (void *)&cmd_vf_tc_bw_port_id,
12405 (void *)&cmd_vf_tc_bw_vf_id,
12406 (void *)&cmd_vf_tc_bw_bw,
12412 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list,
12417 const char *p, *p0 = str;
12424 p = strchr(p0, '(');
12426 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
12430 p0 = strchr(p, ')');
12432 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
12436 if (size >= sizeof(s)) {
12437 printf("The string size exceeds the internal buffer size\n");
12440 snprintf(s, sizeof(s), "%.*s", size, p);
12441 ret = rte_strsplit(s, sizeof(s), str_fld, 16, ',');
12443 printf("Failed to get the bandwidth list. ");
12447 for (i = 0; i < ret; i++)
12448 bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0);
12453 /* TC min bandwidth setting */
12455 cmd_vf_tc_min_bw_parsed(
12456 void *parsed_result,
12457 __rte_unused struct cmdline *cl,
12458 __rte_unused void *data)
12460 struct cmd_vf_tc_bw_result *res = parsed_result;
12463 int ret = -ENOTSUP;
12465 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12468 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
12472 #ifdef RTE_NET_I40E
12473 ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id,
12481 printf("invalid vf_id %d or bandwidth\n", res->vf_id);
12484 printf("invalid port_id %d\n", res->port_id);
12487 printf("function not implemented\n");
12490 printf("programming error: (%s)\n", strerror(-ret));
12494 cmdline_parse_inst_t cmd_vf_tc_min_bw = {
12495 .f = cmd_vf_tc_min_bw_parsed,
12497 .help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>"
12498 " <bw1, bw2, ...>",
12500 (void *)&cmd_vf_tc_bw_set,
12501 (void *)&cmd_vf_tc_bw_vf,
12502 (void *)&cmd_vf_tc_bw_tc,
12503 (void *)&cmd_vf_tc_bw_tx,
12504 (void *)&cmd_vf_tc_bw_min_bw,
12505 (void *)&cmd_vf_tc_bw_port_id,
12506 (void *)&cmd_vf_tc_bw_vf_id,
12507 (void *)&cmd_vf_tc_bw_bw_list,
12513 cmd_tc_min_bw_parsed(
12514 void *parsed_result,
12515 __rte_unused struct cmdline *cl,
12516 __rte_unused void *data)
12518 struct cmd_vf_tc_bw_result *res = parsed_result;
12519 struct rte_port *port;
12522 int ret = -ENOTSUP;
12524 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12527 port = &ports[res->port_id];
12528 /** Check if the port is not started **/
12529 if (port->port_status != RTE_PORT_STOPPED) {
12530 printf("Please stop port %d first\n", res->port_id);
12534 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
12538 #ifdef RTE_NET_IXGBE
12539 ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw);
12546 printf("invalid bandwidth\n");
12549 printf("invalid port_id %d\n", res->port_id);
12552 printf("function not implemented\n");
12555 printf("programming error: (%s)\n", strerror(-ret));
12559 cmdline_parse_inst_t cmd_tc_min_bw = {
12560 .f = cmd_tc_min_bw_parsed,
12562 .help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>",
12564 (void *)&cmd_vf_tc_bw_set,
12565 (void *)&cmd_vf_tc_bw_tc,
12566 (void *)&cmd_vf_tc_bw_tx,
12567 (void *)&cmd_vf_tc_bw_min_bw,
12568 (void *)&cmd_vf_tc_bw_port_id,
12569 (void *)&cmd_vf_tc_bw_bw_list,
12574 /* TC max bandwidth setting */
12576 cmd_vf_tc_max_bw_parsed(
12577 void *parsed_result,
12578 __rte_unused struct cmdline *cl,
12579 __rte_unused void *data)
12581 struct cmd_vf_tc_bw_result *res = parsed_result;
12582 int ret = -ENOTSUP;
12584 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12587 #ifdef RTE_NET_I40E
12588 ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id,
12589 res->tc_no, res->bw);
12596 printf("invalid vf_id %d, tc_no %d or bandwidth %d\n",
12597 res->vf_id, res->tc_no, res->bw);
12600 printf("invalid port_id %d\n", res->port_id);
12603 printf("function not implemented\n");
12606 printf("programming error: (%s)\n", strerror(-ret));
12610 cmdline_parse_inst_t cmd_vf_tc_max_bw = {
12611 .f = cmd_vf_tc_max_bw_parsed,
12613 .help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>"
12616 (void *)&cmd_vf_tc_bw_set,
12617 (void *)&cmd_vf_tc_bw_vf,
12618 (void *)&cmd_vf_tc_bw_tc,
12619 (void *)&cmd_vf_tc_bw_tx,
12620 (void *)&cmd_vf_tc_bw_max_bw,
12621 (void *)&cmd_vf_tc_bw_port_id,
12622 (void *)&cmd_vf_tc_bw_vf_id,
12623 (void *)&cmd_vf_tc_bw_tc_no,
12624 (void *)&cmd_vf_tc_bw_bw,
12629 /** Set VXLAN encapsulation details */
12630 struct cmd_set_vxlan_result {
12631 cmdline_fixed_string_t set;
12632 cmdline_fixed_string_t vxlan;
12633 cmdline_fixed_string_t pos_token;
12634 cmdline_fixed_string_t ip_version;
12635 uint32_t vlan_present:1;
12639 cmdline_ipaddr_t ip_src;
12640 cmdline_ipaddr_t ip_dst;
12644 struct rte_ether_addr eth_src;
12645 struct rte_ether_addr eth_dst;
12648 cmdline_parse_token_string_t cmd_set_vxlan_set =
12649 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, set, "set");
12650 cmdline_parse_token_string_t cmd_set_vxlan_vxlan =
12651 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, "vxlan");
12652 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_tos_ttl =
12653 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan,
12655 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_with_vlan =
12656 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan,
12657 "vxlan-with-vlan");
12658 cmdline_parse_token_string_t cmd_set_vxlan_ip_version =
12659 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12661 cmdline_parse_token_string_t cmd_set_vxlan_ip_version_value =
12662 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, ip_version,
12664 cmdline_parse_token_string_t cmd_set_vxlan_vni =
12665 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12667 cmdline_parse_token_num_t cmd_set_vxlan_vni_value =
12668 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, vni, RTE_UINT32);
12669 cmdline_parse_token_string_t cmd_set_vxlan_udp_src =
12670 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12672 cmdline_parse_token_num_t cmd_set_vxlan_udp_src_value =
12673 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_src, RTE_UINT16);
12674 cmdline_parse_token_string_t cmd_set_vxlan_udp_dst =
12675 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12677 cmdline_parse_token_num_t cmd_set_vxlan_udp_dst_value =
12678 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_dst, RTE_UINT16);
12679 cmdline_parse_token_string_t cmd_set_vxlan_ip_tos =
12680 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12682 cmdline_parse_token_num_t cmd_set_vxlan_ip_tos_value =
12683 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tos, RTE_UINT8);
12684 cmdline_parse_token_string_t cmd_set_vxlan_ip_ttl =
12685 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12687 cmdline_parse_token_num_t cmd_set_vxlan_ip_ttl_value =
12688 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, ttl, RTE_UINT8);
12689 cmdline_parse_token_string_t cmd_set_vxlan_ip_src =
12690 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12692 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_src_value =
12693 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_src);
12694 cmdline_parse_token_string_t cmd_set_vxlan_ip_dst =
12695 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12697 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_dst_value =
12698 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_dst);
12699 cmdline_parse_token_string_t cmd_set_vxlan_vlan =
12700 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12702 cmdline_parse_token_num_t cmd_set_vxlan_vlan_value =
12703 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tci, RTE_UINT16);
12704 cmdline_parse_token_string_t cmd_set_vxlan_eth_src =
12705 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12707 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_src_value =
12708 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_src);
12709 cmdline_parse_token_string_t cmd_set_vxlan_eth_dst =
12710 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token,
12712 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_dst_value =
12713 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_dst);
12715 static void cmd_set_vxlan_parsed(void *parsed_result,
12716 __rte_unused struct cmdline *cl,
12717 __rte_unused void *data)
12719 struct cmd_set_vxlan_result *res = parsed_result;
12724 .vxlan_id = rte_cpu_to_be_32(res->vni) & RTE_BE32(0x00ffffff),
12727 vxlan_encap_conf.select_tos_ttl = 0;
12728 if (strcmp(res->vxlan, "vxlan") == 0)
12729 vxlan_encap_conf.select_vlan = 0;
12730 else if (strcmp(res->vxlan, "vxlan-with-vlan") == 0)
12731 vxlan_encap_conf.select_vlan = 1;
12732 else if (strcmp(res->vxlan, "vxlan-tos-ttl") == 0) {
12733 vxlan_encap_conf.select_vlan = 0;
12734 vxlan_encap_conf.select_tos_ttl = 1;
12736 if (strcmp(res->ip_version, "ipv4") == 0)
12737 vxlan_encap_conf.select_ipv4 = 1;
12738 else if (strcmp(res->ip_version, "ipv6") == 0)
12739 vxlan_encap_conf.select_ipv4 = 0;
12742 rte_memcpy(vxlan_encap_conf.vni, &id.vni[1], 3);
12743 vxlan_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src);
12744 vxlan_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst);
12745 vxlan_encap_conf.ip_tos = res->tos;
12746 vxlan_encap_conf.ip_ttl = res->ttl;
12747 if (vxlan_encap_conf.select_ipv4) {
12748 IPV4_ADDR_TO_UINT(res->ip_src, vxlan_encap_conf.ipv4_src);
12749 IPV4_ADDR_TO_UINT(res->ip_dst, vxlan_encap_conf.ipv4_dst);
12751 IPV6_ADDR_TO_ARRAY(res->ip_src, vxlan_encap_conf.ipv6_src);
12752 IPV6_ADDR_TO_ARRAY(res->ip_dst, vxlan_encap_conf.ipv6_dst);
12754 if (vxlan_encap_conf.select_vlan)
12755 vxlan_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
12756 rte_memcpy(vxlan_encap_conf.eth_src, res->eth_src.addr_bytes,
12757 RTE_ETHER_ADDR_LEN);
12758 rte_memcpy(vxlan_encap_conf.eth_dst, res->eth_dst.addr_bytes,
12759 RTE_ETHER_ADDR_LEN);
12762 cmdline_parse_inst_t cmd_set_vxlan = {
12763 .f = cmd_set_vxlan_parsed,
12765 .help_str = "set vxlan ip-version ipv4|ipv6 vni <vni> udp-src"
12766 " <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst <ip-dst>"
12767 " eth-src <eth-src> eth-dst <eth-dst>",
12769 (void *)&cmd_set_vxlan_set,
12770 (void *)&cmd_set_vxlan_vxlan,
12771 (void *)&cmd_set_vxlan_ip_version,
12772 (void *)&cmd_set_vxlan_ip_version_value,
12773 (void *)&cmd_set_vxlan_vni,
12774 (void *)&cmd_set_vxlan_vni_value,
12775 (void *)&cmd_set_vxlan_udp_src,
12776 (void *)&cmd_set_vxlan_udp_src_value,
12777 (void *)&cmd_set_vxlan_udp_dst,
12778 (void *)&cmd_set_vxlan_udp_dst_value,
12779 (void *)&cmd_set_vxlan_ip_src,
12780 (void *)&cmd_set_vxlan_ip_src_value,
12781 (void *)&cmd_set_vxlan_ip_dst,
12782 (void *)&cmd_set_vxlan_ip_dst_value,
12783 (void *)&cmd_set_vxlan_eth_src,
12784 (void *)&cmd_set_vxlan_eth_src_value,
12785 (void *)&cmd_set_vxlan_eth_dst,
12786 (void *)&cmd_set_vxlan_eth_dst_value,
12791 cmdline_parse_inst_t cmd_set_vxlan_tos_ttl = {
12792 .f = cmd_set_vxlan_parsed,
12794 .help_str = "set vxlan-tos-ttl ip-version ipv4|ipv6 vni <vni> udp-src"
12795 " <udp-src> udp-dst <udp-dst> ip-tos <ip-tos> ip-ttl <ip-ttl>"
12796 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
12797 " eth-dst <eth-dst>",
12799 (void *)&cmd_set_vxlan_set,
12800 (void *)&cmd_set_vxlan_vxlan_tos_ttl,
12801 (void *)&cmd_set_vxlan_ip_version,
12802 (void *)&cmd_set_vxlan_ip_version_value,
12803 (void *)&cmd_set_vxlan_vni,
12804 (void *)&cmd_set_vxlan_vni_value,
12805 (void *)&cmd_set_vxlan_udp_src,
12806 (void *)&cmd_set_vxlan_udp_src_value,
12807 (void *)&cmd_set_vxlan_udp_dst,
12808 (void *)&cmd_set_vxlan_udp_dst_value,
12809 (void *)&cmd_set_vxlan_ip_tos,
12810 (void *)&cmd_set_vxlan_ip_tos_value,
12811 (void *)&cmd_set_vxlan_ip_ttl,
12812 (void *)&cmd_set_vxlan_ip_ttl_value,
12813 (void *)&cmd_set_vxlan_ip_src,
12814 (void *)&cmd_set_vxlan_ip_src_value,
12815 (void *)&cmd_set_vxlan_ip_dst,
12816 (void *)&cmd_set_vxlan_ip_dst_value,
12817 (void *)&cmd_set_vxlan_eth_src,
12818 (void *)&cmd_set_vxlan_eth_src_value,
12819 (void *)&cmd_set_vxlan_eth_dst,
12820 (void *)&cmd_set_vxlan_eth_dst_value,
12825 cmdline_parse_inst_t cmd_set_vxlan_with_vlan = {
12826 .f = cmd_set_vxlan_parsed,
12828 .help_str = "set vxlan-with-vlan ip-version ipv4|ipv6 vni <vni>"
12829 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst"
12830 " <ip-dst> vlan-tci <vlan-tci> eth-src <eth-src> eth-dst"
12833 (void *)&cmd_set_vxlan_set,
12834 (void *)&cmd_set_vxlan_vxlan_with_vlan,
12835 (void *)&cmd_set_vxlan_ip_version,
12836 (void *)&cmd_set_vxlan_ip_version_value,
12837 (void *)&cmd_set_vxlan_vni,
12838 (void *)&cmd_set_vxlan_vni_value,
12839 (void *)&cmd_set_vxlan_udp_src,
12840 (void *)&cmd_set_vxlan_udp_src_value,
12841 (void *)&cmd_set_vxlan_udp_dst,
12842 (void *)&cmd_set_vxlan_udp_dst_value,
12843 (void *)&cmd_set_vxlan_ip_src,
12844 (void *)&cmd_set_vxlan_ip_src_value,
12845 (void *)&cmd_set_vxlan_ip_dst,
12846 (void *)&cmd_set_vxlan_ip_dst_value,
12847 (void *)&cmd_set_vxlan_vlan,
12848 (void *)&cmd_set_vxlan_vlan_value,
12849 (void *)&cmd_set_vxlan_eth_src,
12850 (void *)&cmd_set_vxlan_eth_src_value,
12851 (void *)&cmd_set_vxlan_eth_dst,
12852 (void *)&cmd_set_vxlan_eth_dst_value,
12857 /** Set NVGRE encapsulation details */
12858 struct cmd_set_nvgre_result {
12859 cmdline_fixed_string_t set;
12860 cmdline_fixed_string_t nvgre;
12861 cmdline_fixed_string_t pos_token;
12862 cmdline_fixed_string_t ip_version;
12864 cmdline_ipaddr_t ip_src;
12865 cmdline_ipaddr_t ip_dst;
12867 struct rte_ether_addr eth_src;
12868 struct rte_ether_addr eth_dst;
12871 cmdline_parse_token_string_t cmd_set_nvgre_set =
12872 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, set, "set");
12873 cmdline_parse_token_string_t cmd_set_nvgre_nvgre =
12874 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, "nvgre");
12875 cmdline_parse_token_string_t cmd_set_nvgre_nvgre_with_vlan =
12876 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre,
12877 "nvgre-with-vlan");
12878 cmdline_parse_token_string_t cmd_set_nvgre_ip_version =
12879 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12881 cmdline_parse_token_string_t cmd_set_nvgre_ip_version_value =
12882 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, ip_version,
12884 cmdline_parse_token_string_t cmd_set_nvgre_tni =
12885 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12887 cmdline_parse_token_num_t cmd_set_nvgre_tni_value =
12888 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tni, RTE_UINT32);
12889 cmdline_parse_token_string_t cmd_set_nvgre_ip_src =
12890 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12892 cmdline_parse_token_num_t cmd_set_nvgre_ip_src_value =
12893 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_src);
12894 cmdline_parse_token_string_t cmd_set_nvgre_ip_dst =
12895 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12897 cmdline_parse_token_ipaddr_t cmd_set_nvgre_ip_dst_value =
12898 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_dst);
12899 cmdline_parse_token_string_t cmd_set_nvgre_vlan =
12900 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12902 cmdline_parse_token_num_t cmd_set_nvgre_vlan_value =
12903 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tci, RTE_UINT16);
12904 cmdline_parse_token_string_t cmd_set_nvgre_eth_src =
12905 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12907 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_src_value =
12908 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_src);
12909 cmdline_parse_token_string_t cmd_set_nvgre_eth_dst =
12910 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token,
12912 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_dst_value =
12913 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_dst);
12915 static void cmd_set_nvgre_parsed(void *parsed_result,
12916 __rte_unused struct cmdline *cl,
12917 __rte_unused void *data)
12919 struct cmd_set_nvgre_result *res = parsed_result;
12921 uint32_t nvgre_tni;
12924 .nvgre_tni = rte_cpu_to_be_32(res->tni) & RTE_BE32(0x00ffffff),
12927 if (strcmp(res->nvgre, "nvgre") == 0)
12928 nvgre_encap_conf.select_vlan = 0;
12929 else if (strcmp(res->nvgre, "nvgre-with-vlan") == 0)
12930 nvgre_encap_conf.select_vlan = 1;
12931 if (strcmp(res->ip_version, "ipv4") == 0)
12932 nvgre_encap_conf.select_ipv4 = 1;
12933 else if (strcmp(res->ip_version, "ipv6") == 0)
12934 nvgre_encap_conf.select_ipv4 = 0;
12937 rte_memcpy(nvgre_encap_conf.tni, &id.tni[1], 3);
12938 if (nvgre_encap_conf.select_ipv4) {
12939 IPV4_ADDR_TO_UINT(res->ip_src, nvgre_encap_conf.ipv4_src);
12940 IPV4_ADDR_TO_UINT(res->ip_dst, nvgre_encap_conf.ipv4_dst);
12942 IPV6_ADDR_TO_ARRAY(res->ip_src, nvgre_encap_conf.ipv6_src);
12943 IPV6_ADDR_TO_ARRAY(res->ip_dst, nvgre_encap_conf.ipv6_dst);
12945 if (nvgre_encap_conf.select_vlan)
12946 nvgre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
12947 rte_memcpy(nvgre_encap_conf.eth_src, res->eth_src.addr_bytes,
12948 RTE_ETHER_ADDR_LEN);
12949 rte_memcpy(nvgre_encap_conf.eth_dst, res->eth_dst.addr_bytes,
12950 RTE_ETHER_ADDR_LEN);
12953 cmdline_parse_inst_t cmd_set_nvgre = {
12954 .f = cmd_set_nvgre_parsed,
12956 .help_str = "set nvgre ip-version <ipv4|ipv6> tni <tni> ip-src"
12957 " <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
12958 " eth-dst <eth-dst>",
12960 (void *)&cmd_set_nvgre_set,
12961 (void *)&cmd_set_nvgre_nvgre,
12962 (void *)&cmd_set_nvgre_ip_version,
12963 (void *)&cmd_set_nvgre_ip_version_value,
12964 (void *)&cmd_set_nvgre_tni,
12965 (void *)&cmd_set_nvgre_tni_value,
12966 (void *)&cmd_set_nvgre_ip_src,
12967 (void *)&cmd_set_nvgre_ip_src_value,
12968 (void *)&cmd_set_nvgre_ip_dst,
12969 (void *)&cmd_set_nvgre_ip_dst_value,
12970 (void *)&cmd_set_nvgre_eth_src,
12971 (void *)&cmd_set_nvgre_eth_src_value,
12972 (void *)&cmd_set_nvgre_eth_dst,
12973 (void *)&cmd_set_nvgre_eth_dst_value,
12978 cmdline_parse_inst_t cmd_set_nvgre_with_vlan = {
12979 .f = cmd_set_nvgre_parsed,
12981 .help_str = "set nvgre-with-vlan ip-version <ipv4|ipv6> tni <tni>"
12982 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>"
12983 " eth-src <eth-src> eth-dst <eth-dst>",
12985 (void *)&cmd_set_nvgre_set,
12986 (void *)&cmd_set_nvgre_nvgre_with_vlan,
12987 (void *)&cmd_set_nvgre_ip_version,
12988 (void *)&cmd_set_nvgre_ip_version_value,
12989 (void *)&cmd_set_nvgre_tni,
12990 (void *)&cmd_set_nvgre_tni_value,
12991 (void *)&cmd_set_nvgre_ip_src,
12992 (void *)&cmd_set_nvgre_ip_src_value,
12993 (void *)&cmd_set_nvgre_ip_dst,
12994 (void *)&cmd_set_nvgre_ip_dst_value,
12995 (void *)&cmd_set_nvgre_vlan,
12996 (void *)&cmd_set_nvgre_vlan_value,
12997 (void *)&cmd_set_nvgre_eth_src,
12998 (void *)&cmd_set_nvgre_eth_src_value,
12999 (void *)&cmd_set_nvgre_eth_dst,
13000 (void *)&cmd_set_nvgre_eth_dst_value,
13005 /** Set L2 encapsulation details */
13006 struct cmd_set_l2_encap_result {
13007 cmdline_fixed_string_t set;
13008 cmdline_fixed_string_t l2_encap;
13009 cmdline_fixed_string_t pos_token;
13010 cmdline_fixed_string_t ip_version;
13011 uint32_t vlan_present:1;
13013 struct rte_ether_addr eth_src;
13014 struct rte_ether_addr eth_dst;
13017 cmdline_parse_token_string_t cmd_set_l2_encap_set =
13018 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, set, "set");
13019 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap =
13020 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap, "l2_encap");
13021 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap_with_vlan =
13022 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap,
13023 "l2_encap-with-vlan");
13024 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version =
13025 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13027 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version_value =
13028 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, ip_version,
13030 cmdline_parse_token_string_t cmd_set_l2_encap_vlan =
13031 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13033 cmdline_parse_token_num_t cmd_set_l2_encap_vlan_value =
13034 TOKEN_NUM_INITIALIZER(struct cmd_set_l2_encap_result, tci, RTE_UINT16);
13035 cmdline_parse_token_string_t cmd_set_l2_encap_eth_src =
13036 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13038 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_src_value =
13039 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_src);
13040 cmdline_parse_token_string_t cmd_set_l2_encap_eth_dst =
13041 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token,
13043 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_dst_value =
13044 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_dst);
13046 static void cmd_set_l2_encap_parsed(void *parsed_result,
13047 __rte_unused struct cmdline *cl,
13048 __rte_unused void *data)
13050 struct cmd_set_l2_encap_result *res = parsed_result;
13052 if (strcmp(res->l2_encap, "l2_encap") == 0)
13053 l2_encap_conf.select_vlan = 0;
13054 else if (strcmp(res->l2_encap, "l2_encap-with-vlan") == 0)
13055 l2_encap_conf.select_vlan = 1;
13056 if (strcmp(res->ip_version, "ipv4") == 0)
13057 l2_encap_conf.select_ipv4 = 1;
13058 else if (strcmp(res->ip_version, "ipv6") == 0)
13059 l2_encap_conf.select_ipv4 = 0;
13062 if (l2_encap_conf.select_vlan)
13063 l2_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13064 rte_memcpy(l2_encap_conf.eth_src, res->eth_src.addr_bytes,
13065 RTE_ETHER_ADDR_LEN);
13066 rte_memcpy(l2_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13067 RTE_ETHER_ADDR_LEN);
13070 cmdline_parse_inst_t cmd_set_l2_encap = {
13071 .f = cmd_set_l2_encap_parsed,
13073 .help_str = "set l2_encap ip-version ipv4|ipv6"
13074 " eth-src <eth-src> eth-dst <eth-dst>",
13076 (void *)&cmd_set_l2_encap_set,
13077 (void *)&cmd_set_l2_encap_l2_encap,
13078 (void *)&cmd_set_l2_encap_ip_version,
13079 (void *)&cmd_set_l2_encap_ip_version_value,
13080 (void *)&cmd_set_l2_encap_eth_src,
13081 (void *)&cmd_set_l2_encap_eth_src_value,
13082 (void *)&cmd_set_l2_encap_eth_dst,
13083 (void *)&cmd_set_l2_encap_eth_dst_value,
13088 cmdline_parse_inst_t cmd_set_l2_encap_with_vlan = {
13089 .f = cmd_set_l2_encap_parsed,
13091 .help_str = "set l2_encap-with-vlan ip-version ipv4|ipv6"
13092 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>",
13094 (void *)&cmd_set_l2_encap_set,
13095 (void *)&cmd_set_l2_encap_l2_encap_with_vlan,
13096 (void *)&cmd_set_l2_encap_ip_version,
13097 (void *)&cmd_set_l2_encap_ip_version_value,
13098 (void *)&cmd_set_l2_encap_vlan,
13099 (void *)&cmd_set_l2_encap_vlan_value,
13100 (void *)&cmd_set_l2_encap_eth_src,
13101 (void *)&cmd_set_l2_encap_eth_src_value,
13102 (void *)&cmd_set_l2_encap_eth_dst,
13103 (void *)&cmd_set_l2_encap_eth_dst_value,
13108 /** Set L2 decapsulation details */
13109 struct cmd_set_l2_decap_result {
13110 cmdline_fixed_string_t set;
13111 cmdline_fixed_string_t l2_decap;
13112 cmdline_fixed_string_t pos_token;
13113 uint32_t vlan_present:1;
13116 cmdline_parse_token_string_t cmd_set_l2_decap_set =
13117 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, set, "set");
13118 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap =
13119 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap,
13121 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap_with_vlan =
13122 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap,
13123 "l2_decap-with-vlan");
13125 static void cmd_set_l2_decap_parsed(void *parsed_result,
13126 __rte_unused struct cmdline *cl,
13127 __rte_unused void *data)
13129 struct cmd_set_l2_decap_result *res = parsed_result;
13131 if (strcmp(res->l2_decap, "l2_decap") == 0)
13132 l2_decap_conf.select_vlan = 0;
13133 else if (strcmp(res->l2_decap, "l2_decap-with-vlan") == 0)
13134 l2_decap_conf.select_vlan = 1;
13137 cmdline_parse_inst_t cmd_set_l2_decap = {
13138 .f = cmd_set_l2_decap_parsed,
13140 .help_str = "set l2_decap",
13142 (void *)&cmd_set_l2_decap_set,
13143 (void *)&cmd_set_l2_decap_l2_decap,
13148 cmdline_parse_inst_t cmd_set_l2_decap_with_vlan = {
13149 .f = cmd_set_l2_decap_parsed,
13151 .help_str = "set l2_decap-with-vlan",
13153 (void *)&cmd_set_l2_decap_set,
13154 (void *)&cmd_set_l2_decap_l2_decap_with_vlan,
13159 /** Set MPLSoGRE encapsulation details */
13160 struct cmd_set_mplsogre_encap_result {
13161 cmdline_fixed_string_t set;
13162 cmdline_fixed_string_t mplsogre;
13163 cmdline_fixed_string_t pos_token;
13164 cmdline_fixed_string_t ip_version;
13165 uint32_t vlan_present:1;
13167 cmdline_ipaddr_t ip_src;
13168 cmdline_ipaddr_t ip_dst;
13170 struct rte_ether_addr eth_src;
13171 struct rte_ether_addr eth_dst;
13174 cmdline_parse_token_string_t cmd_set_mplsogre_encap_set =
13175 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, set,
13177 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap =
13178 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, mplsogre,
13180 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap_with_vlan =
13181 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13182 mplsogre, "mplsogre_encap-with-vlan");
13183 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version =
13184 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13185 pos_token, "ip-version");
13186 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version_value =
13187 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13188 ip_version, "ipv4#ipv6");
13189 cmdline_parse_token_string_t cmd_set_mplsogre_encap_label =
13190 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13191 pos_token, "label");
13192 cmdline_parse_token_num_t cmd_set_mplsogre_encap_label_value =
13193 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, label,
13195 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_src =
13196 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13197 pos_token, "ip-src");
13198 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_src_value =
13199 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_src);
13200 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_dst =
13201 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13202 pos_token, "ip-dst");
13203 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_dst_value =
13204 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_dst);
13205 cmdline_parse_token_string_t cmd_set_mplsogre_encap_vlan =
13206 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13207 pos_token, "vlan-tci");
13208 cmdline_parse_token_num_t cmd_set_mplsogre_encap_vlan_value =
13209 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, tci,
13211 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_src =
13212 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13213 pos_token, "eth-src");
13214 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_src_value =
13215 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13217 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_dst =
13218 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13219 pos_token, "eth-dst");
13220 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_dst_value =
13221 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result,
13224 static void cmd_set_mplsogre_encap_parsed(void *parsed_result,
13225 __rte_unused struct cmdline *cl,
13226 __rte_unused void *data)
13228 struct cmd_set_mplsogre_encap_result *res = parsed_result;
13230 uint32_t mplsogre_label;
13233 .mplsogre_label = rte_cpu_to_be_32(res->label<<12),
13236 if (strcmp(res->mplsogre, "mplsogre_encap") == 0)
13237 mplsogre_encap_conf.select_vlan = 0;
13238 else if (strcmp(res->mplsogre, "mplsogre_encap-with-vlan") == 0)
13239 mplsogre_encap_conf.select_vlan = 1;
13240 if (strcmp(res->ip_version, "ipv4") == 0)
13241 mplsogre_encap_conf.select_ipv4 = 1;
13242 else if (strcmp(res->ip_version, "ipv6") == 0)
13243 mplsogre_encap_conf.select_ipv4 = 0;
13246 rte_memcpy(mplsogre_encap_conf.label, &id.label, 3);
13247 if (mplsogre_encap_conf.select_ipv4) {
13248 IPV4_ADDR_TO_UINT(res->ip_src, mplsogre_encap_conf.ipv4_src);
13249 IPV4_ADDR_TO_UINT(res->ip_dst, mplsogre_encap_conf.ipv4_dst);
13251 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsogre_encap_conf.ipv6_src);
13252 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsogre_encap_conf.ipv6_dst);
13254 if (mplsogre_encap_conf.select_vlan)
13255 mplsogre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13256 rte_memcpy(mplsogre_encap_conf.eth_src, res->eth_src.addr_bytes,
13257 RTE_ETHER_ADDR_LEN);
13258 rte_memcpy(mplsogre_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13259 RTE_ETHER_ADDR_LEN);
13262 cmdline_parse_inst_t cmd_set_mplsogre_encap = {
13263 .f = cmd_set_mplsogre_encap_parsed,
13265 .help_str = "set mplsogre_encap ip-version ipv4|ipv6 label <label>"
13266 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>"
13267 " eth-dst <eth-dst>",
13269 (void *)&cmd_set_mplsogre_encap_set,
13270 (void *)&cmd_set_mplsogre_encap_mplsogre_encap,
13271 (void *)&cmd_set_mplsogre_encap_ip_version,
13272 (void *)&cmd_set_mplsogre_encap_ip_version_value,
13273 (void *)&cmd_set_mplsogre_encap_label,
13274 (void *)&cmd_set_mplsogre_encap_label_value,
13275 (void *)&cmd_set_mplsogre_encap_ip_src,
13276 (void *)&cmd_set_mplsogre_encap_ip_src_value,
13277 (void *)&cmd_set_mplsogre_encap_ip_dst,
13278 (void *)&cmd_set_mplsogre_encap_ip_dst_value,
13279 (void *)&cmd_set_mplsogre_encap_eth_src,
13280 (void *)&cmd_set_mplsogre_encap_eth_src_value,
13281 (void *)&cmd_set_mplsogre_encap_eth_dst,
13282 (void *)&cmd_set_mplsogre_encap_eth_dst_value,
13287 cmdline_parse_inst_t cmd_set_mplsogre_encap_with_vlan = {
13288 .f = cmd_set_mplsogre_encap_parsed,
13290 .help_str = "set mplsogre_encap-with-vlan ip-version ipv4|ipv6"
13291 " label <label> ip-src <ip-src> ip-dst <ip-dst>"
13292 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>",
13294 (void *)&cmd_set_mplsogre_encap_set,
13295 (void *)&cmd_set_mplsogre_encap_mplsogre_encap_with_vlan,
13296 (void *)&cmd_set_mplsogre_encap_ip_version,
13297 (void *)&cmd_set_mplsogre_encap_ip_version_value,
13298 (void *)&cmd_set_mplsogre_encap_label,
13299 (void *)&cmd_set_mplsogre_encap_label_value,
13300 (void *)&cmd_set_mplsogre_encap_ip_src,
13301 (void *)&cmd_set_mplsogre_encap_ip_src_value,
13302 (void *)&cmd_set_mplsogre_encap_ip_dst,
13303 (void *)&cmd_set_mplsogre_encap_ip_dst_value,
13304 (void *)&cmd_set_mplsogre_encap_vlan,
13305 (void *)&cmd_set_mplsogre_encap_vlan_value,
13306 (void *)&cmd_set_mplsogre_encap_eth_src,
13307 (void *)&cmd_set_mplsogre_encap_eth_src_value,
13308 (void *)&cmd_set_mplsogre_encap_eth_dst,
13309 (void *)&cmd_set_mplsogre_encap_eth_dst_value,
13314 /** Set MPLSoGRE decapsulation details */
13315 struct cmd_set_mplsogre_decap_result {
13316 cmdline_fixed_string_t set;
13317 cmdline_fixed_string_t mplsogre;
13318 cmdline_fixed_string_t pos_token;
13319 cmdline_fixed_string_t ip_version;
13320 uint32_t vlan_present:1;
13323 cmdline_parse_token_string_t cmd_set_mplsogre_decap_set =
13324 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, set,
13326 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap =
13327 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, mplsogre,
13329 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap_with_vlan =
13330 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13331 mplsogre, "mplsogre_decap-with-vlan");
13332 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version =
13333 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13334 pos_token, "ip-version");
13335 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version_value =
13336 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result,
13337 ip_version, "ipv4#ipv6");
13339 static void cmd_set_mplsogre_decap_parsed(void *parsed_result,
13340 __rte_unused struct cmdline *cl,
13341 __rte_unused void *data)
13343 struct cmd_set_mplsogre_decap_result *res = parsed_result;
13345 if (strcmp(res->mplsogre, "mplsogre_decap") == 0)
13346 mplsogre_decap_conf.select_vlan = 0;
13347 else if (strcmp(res->mplsogre, "mplsogre_decap-with-vlan") == 0)
13348 mplsogre_decap_conf.select_vlan = 1;
13349 if (strcmp(res->ip_version, "ipv4") == 0)
13350 mplsogre_decap_conf.select_ipv4 = 1;
13351 else if (strcmp(res->ip_version, "ipv6") == 0)
13352 mplsogre_decap_conf.select_ipv4 = 0;
13355 cmdline_parse_inst_t cmd_set_mplsogre_decap = {
13356 .f = cmd_set_mplsogre_decap_parsed,
13358 .help_str = "set mplsogre_decap ip-version ipv4|ipv6",
13360 (void *)&cmd_set_mplsogre_decap_set,
13361 (void *)&cmd_set_mplsogre_decap_mplsogre_decap,
13362 (void *)&cmd_set_mplsogre_decap_ip_version,
13363 (void *)&cmd_set_mplsogre_decap_ip_version_value,
13368 cmdline_parse_inst_t cmd_set_mplsogre_decap_with_vlan = {
13369 .f = cmd_set_mplsogre_decap_parsed,
13371 .help_str = "set mplsogre_decap-with-vlan ip-version ipv4|ipv6",
13373 (void *)&cmd_set_mplsogre_decap_set,
13374 (void *)&cmd_set_mplsogre_decap_mplsogre_decap_with_vlan,
13375 (void *)&cmd_set_mplsogre_decap_ip_version,
13376 (void *)&cmd_set_mplsogre_decap_ip_version_value,
13381 /** Set MPLSoUDP encapsulation details */
13382 struct cmd_set_mplsoudp_encap_result {
13383 cmdline_fixed_string_t set;
13384 cmdline_fixed_string_t mplsoudp;
13385 cmdline_fixed_string_t pos_token;
13386 cmdline_fixed_string_t ip_version;
13387 uint32_t vlan_present:1;
13391 cmdline_ipaddr_t ip_src;
13392 cmdline_ipaddr_t ip_dst;
13394 struct rte_ether_addr eth_src;
13395 struct rte_ether_addr eth_dst;
13398 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_set =
13399 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, set,
13401 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap =
13402 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, mplsoudp,
13404 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan =
13405 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13406 mplsoudp, "mplsoudp_encap-with-vlan");
13407 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version =
13408 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13409 pos_token, "ip-version");
13410 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version_value =
13411 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13412 ip_version, "ipv4#ipv6");
13413 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_label =
13414 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13415 pos_token, "label");
13416 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_label_value =
13417 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, label,
13419 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_src =
13420 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13421 pos_token, "udp-src");
13422 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_src_value =
13423 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_src,
13425 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_dst =
13426 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13427 pos_token, "udp-dst");
13428 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_dst_value =
13429 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_dst,
13431 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_src =
13432 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13433 pos_token, "ip-src");
13434 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_src_value =
13435 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_src);
13436 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_dst =
13437 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13438 pos_token, "ip-dst");
13439 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_dst_value =
13440 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_dst);
13441 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_vlan =
13442 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13443 pos_token, "vlan-tci");
13444 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_vlan_value =
13445 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, tci,
13447 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_src =
13448 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13449 pos_token, "eth-src");
13450 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_src_value =
13451 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13453 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_dst =
13454 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13455 pos_token, "eth-dst");
13456 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_dst_value =
13457 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result,
13460 static void cmd_set_mplsoudp_encap_parsed(void *parsed_result,
13461 __rte_unused struct cmdline *cl,
13462 __rte_unused void *data)
13464 struct cmd_set_mplsoudp_encap_result *res = parsed_result;
13466 uint32_t mplsoudp_label;
13469 .mplsoudp_label = rte_cpu_to_be_32(res->label<<12),
13472 if (strcmp(res->mplsoudp, "mplsoudp_encap") == 0)
13473 mplsoudp_encap_conf.select_vlan = 0;
13474 else if (strcmp(res->mplsoudp, "mplsoudp_encap-with-vlan") == 0)
13475 mplsoudp_encap_conf.select_vlan = 1;
13476 if (strcmp(res->ip_version, "ipv4") == 0)
13477 mplsoudp_encap_conf.select_ipv4 = 1;
13478 else if (strcmp(res->ip_version, "ipv6") == 0)
13479 mplsoudp_encap_conf.select_ipv4 = 0;
13482 rte_memcpy(mplsoudp_encap_conf.label, &id.label, 3);
13483 mplsoudp_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src);
13484 mplsoudp_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst);
13485 if (mplsoudp_encap_conf.select_ipv4) {
13486 IPV4_ADDR_TO_UINT(res->ip_src, mplsoudp_encap_conf.ipv4_src);
13487 IPV4_ADDR_TO_UINT(res->ip_dst, mplsoudp_encap_conf.ipv4_dst);
13489 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsoudp_encap_conf.ipv6_src);
13490 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsoudp_encap_conf.ipv6_dst);
13492 if (mplsoudp_encap_conf.select_vlan)
13493 mplsoudp_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci);
13494 rte_memcpy(mplsoudp_encap_conf.eth_src, res->eth_src.addr_bytes,
13495 RTE_ETHER_ADDR_LEN);
13496 rte_memcpy(mplsoudp_encap_conf.eth_dst, res->eth_dst.addr_bytes,
13497 RTE_ETHER_ADDR_LEN);
13500 cmdline_parse_inst_t cmd_set_mplsoudp_encap = {
13501 .f = cmd_set_mplsoudp_encap_parsed,
13503 .help_str = "set mplsoudp_encap ip-version ipv4|ipv6 label <label>"
13504 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src>"
13505 " ip-dst <ip-dst> eth-src <eth-src> eth-dst <eth-dst>",
13507 (void *)&cmd_set_mplsoudp_encap_set,
13508 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap,
13509 (void *)&cmd_set_mplsoudp_encap_ip_version,
13510 (void *)&cmd_set_mplsoudp_encap_ip_version_value,
13511 (void *)&cmd_set_mplsoudp_encap_label,
13512 (void *)&cmd_set_mplsoudp_encap_label_value,
13513 (void *)&cmd_set_mplsoudp_encap_udp_src,
13514 (void *)&cmd_set_mplsoudp_encap_udp_src_value,
13515 (void *)&cmd_set_mplsoudp_encap_udp_dst,
13516 (void *)&cmd_set_mplsoudp_encap_udp_dst_value,
13517 (void *)&cmd_set_mplsoudp_encap_ip_src,
13518 (void *)&cmd_set_mplsoudp_encap_ip_src_value,
13519 (void *)&cmd_set_mplsoudp_encap_ip_dst,
13520 (void *)&cmd_set_mplsoudp_encap_ip_dst_value,
13521 (void *)&cmd_set_mplsoudp_encap_eth_src,
13522 (void *)&cmd_set_mplsoudp_encap_eth_src_value,
13523 (void *)&cmd_set_mplsoudp_encap_eth_dst,
13524 (void *)&cmd_set_mplsoudp_encap_eth_dst_value,
13529 cmdline_parse_inst_t cmd_set_mplsoudp_encap_with_vlan = {
13530 .f = cmd_set_mplsoudp_encap_parsed,
13532 .help_str = "set mplsoudp_encap-with-vlan ip-version ipv4|ipv6"
13533 " label <label> udp-src <udp-src> udp-dst <udp-dst>"
13534 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>"
13535 " eth-src <eth-src> eth-dst <eth-dst>",
13537 (void *)&cmd_set_mplsoudp_encap_set,
13538 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan,
13539 (void *)&cmd_set_mplsoudp_encap_ip_version,
13540 (void *)&cmd_set_mplsoudp_encap_ip_version_value,
13541 (void *)&cmd_set_mplsoudp_encap_label,
13542 (void *)&cmd_set_mplsoudp_encap_label_value,
13543 (void *)&cmd_set_mplsoudp_encap_udp_src,
13544 (void *)&cmd_set_mplsoudp_encap_udp_src_value,
13545 (void *)&cmd_set_mplsoudp_encap_udp_dst,
13546 (void *)&cmd_set_mplsoudp_encap_udp_dst_value,
13547 (void *)&cmd_set_mplsoudp_encap_ip_src,
13548 (void *)&cmd_set_mplsoudp_encap_ip_src_value,
13549 (void *)&cmd_set_mplsoudp_encap_ip_dst,
13550 (void *)&cmd_set_mplsoudp_encap_ip_dst_value,
13551 (void *)&cmd_set_mplsoudp_encap_vlan,
13552 (void *)&cmd_set_mplsoudp_encap_vlan_value,
13553 (void *)&cmd_set_mplsoudp_encap_eth_src,
13554 (void *)&cmd_set_mplsoudp_encap_eth_src_value,
13555 (void *)&cmd_set_mplsoudp_encap_eth_dst,
13556 (void *)&cmd_set_mplsoudp_encap_eth_dst_value,
13561 /** Set MPLSoUDP decapsulation details */
13562 struct cmd_set_mplsoudp_decap_result {
13563 cmdline_fixed_string_t set;
13564 cmdline_fixed_string_t mplsoudp;
13565 cmdline_fixed_string_t pos_token;
13566 cmdline_fixed_string_t ip_version;
13567 uint32_t vlan_present:1;
13570 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_set =
13571 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, set,
13573 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap =
13574 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, mplsoudp,
13576 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan =
13577 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13578 mplsoudp, "mplsoudp_decap-with-vlan");
13579 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version =
13580 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13581 pos_token, "ip-version");
13582 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version_value =
13583 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result,
13584 ip_version, "ipv4#ipv6");
13586 static void cmd_set_mplsoudp_decap_parsed(void *parsed_result,
13587 __rte_unused struct cmdline *cl,
13588 __rte_unused void *data)
13590 struct cmd_set_mplsoudp_decap_result *res = parsed_result;
13592 if (strcmp(res->mplsoudp, "mplsoudp_decap") == 0)
13593 mplsoudp_decap_conf.select_vlan = 0;
13594 else if (strcmp(res->mplsoudp, "mplsoudp_decap-with-vlan") == 0)
13595 mplsoudp_decap_conf.select_vlan = 1;
13596 if (strcmp(res->ip_version, "ipv4") == 0)
13597 mplsoudp_decap_conf.select_ipv4 = 1;
13598 else if (strcmp(res->ip_version, "ipv6") == 0)
13599 mplsoudp_decap_conf.select_ipv4 = 0;
13602 cmdline_parse_inst_t cmd_set_mplsoudp_decap = {
13603 .f = cmd_set_mplsoudp_decap_parsed,
13605 .help_str = "set mplsoudp_decap ip-version ipv4|ipv6",
13607 (void *)&cmd_set_mplsoudp_decap_set,
13608 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap,
13609 (void *)&cmd_set_mplsoudp_decap_ip_version,
13610 (void *)&cmd_set_mplsoudp_decap_ip_version_value,
13615 cmdline_parse_inst_t cmd_set_mplsoudp_decap_with_vlan = {
13616 .f = cmd_set_mplsoudp_decap_parsed,
13618 .help_str = "set mplsoudp_decap-with-vlan ip-version ipv4|ipv6",
13620 (void *)&cmd_set_mplsoudp_decap_set,
13621 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan,
13622 (void *)&cmd_set_mplsoudp_decap_ip_version,
13623 (void *)&cmd_set_mplsoudp_decap_ip_version_value,
13628 /* Strict link priority scheduling mode setting */
13630 cmd_strict_link_prio_parsed(
13631 void *parsed_result,
13632 __rte_unused struct cmdline *cl,
13633 __rte_unused void *data)
13635 struct cmd_vf_tc_bw_result *res = parsed_result;
13636 int ret = -ENOTSUP;
13638 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13641 #ifdef RTE_NET_I40E
13642 ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map);
13649 printf("invalid tc_bitmap 0x%x\n", res->tc_map);
13652 printf("invalid port_id %d\n", res->port_id);
13655 printf("function not implemented\n");
13658 printf("programming error: (%s)\n", strerror(-ret));
13662 cmdline_parse_inst_t cmd_strict_link_prio = {
13663 .f = cmd_strict_link_prio_parsed,
13665 .help_str = "set tx strict-link-priority <port_id> <tc_bitmap>",
13667 (void *)&cmd_vf_tc_bw_set,
13668 (void *)&cmd_vf_tc_bw_tx,
13669 (void *)&cmd_vf_tc_bw_strict_link_prio,
13670 (void *)&cmd_vf_tc_bw_port_id,
13671 (void *)&cmd_vf_tc_bw_tc_map,
13676 /* Load dynamic device personalization*/
13677 struct cmd_ddp_add_result {
13678 cmdline_fixed_string_t ddp;
13679 cmdline_fixed_string_t add;
13684 cmdline_parse_token_string_t cmd_ddp_add_ddp =
13685 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp");
13686 cmdline_parse_token_string_t cmd_ddp_add_add =
13687 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add");
13688 cmdline_parse_token_num_t cmd_ddp_add_port_id =
13689 TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id,
13691 cmdline_parse_token_string_t cmd_ddp_add_filepath =
13692 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL);
13695 cmd_ddp_add_parsed(
13696 void *parsed_result,
13697 __rte_unused struct cmdline *cl,
13698 __rte_unused void *data)
13700 struct cmd_ddp_add_result *res = parsed_result;
13706 int ret = -ENOTSUP;
13708 if (!all_ports_stopped()) {
13709 printf("Please stop all ports first\n");
13713 filepath = strdup(res->filepath);
13714 if (filepath == NULL) {
13715 printf("Failed to allocate memory\n");
13718 file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ',');
13720 buff = open_file(file_fld[0], &size);
13722 free((void *)filepath);
13726 #ifdef RTE_NET_I40E
13727 if (ret == -ENOTSUP)
13728 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
13730 RTE_PMD_I40E_PKG_OP_WR_ADD);
13733 if (ret == -EEXIST)
13734 printf("Profile has already existed.\n");
13736 printf("Failed to load profile.\n");
13737 else if (file_num == 2)
13738 save_file(file_fld[1], buff, size);
13741 free((void *)filepath);
13744 cmdline_parse_inst_t cmd_ddp_add = {
13745 .f = cmd_ddp_add_parsed,
13747 .help_str = "ddp add <port_id> <profile_path[,backup_profile_path]>",
13749 (void *)&cmd_ddp_add_ddp,
13750 (void *)&cmd_ddp_add_add,
13751 (void *)&cmd_ddp_add_port_id,
13752 (void *)&cmd_ddp_add_filepath,
13757 /* Delete dynamic device personalization*/
13758 struct cmd_ddp_del_result {
13759 cmdline_fixed_string_t ddp;
13760 cmdline_fixed_string_t del;
13765 cmdline_parse_token_string_t cmd_ddp_del_ddp =
13766 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, ddp, "ddp");
13767 cmdline_parse_token_string_t cmd_ddp_del_del =
13768 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, del, "del");
13769 cmdline_parse_token_num_t cmd_ddp_del_port_id =
13770 TOKEN_NUM_INITIALIZER(struct cmd_ddp_del_result, port_id, RTE_UINT16);
13771 cmdline_parse_token_string_t cmd_ddp_del_filepath =
13772 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, filepath, NULL);
13775 cmd_ddp_del_parsed(
13776 void *parsed_result,
13777 __rte_unused struct cmdline *cl,
13778 __rte_unused void *data)
13780 struct cmd_ddp_del_result *res = parsed_result;
13783 int ret = -ENOTSUP;
13785 if (!all_ports_stopped()) {
13786 printf("Please stop all ports first\n");
13790 buff = open_file(res->filepath, &size);
13794 #ifdef RTE_NET_I40E
13795 if (ret == -ENOTSUP)
13796 ret = rte_pmd_i40e_process_ddp_package(res->port_id,
13798 RTE_PMD_I40E_PKG_OP_WR_DEL);
13801 if (ret == -EACCES)
13802 printf("Profile does not exist.\n");
13804 printf("Failed to delete profile.\n");
13809 cmdline_parse_inst_t cmd_ddp_del = {
13810 .f = cmd_ddp_del_parsed,
13812 .help_str = "ddp del <port_id> <backup_profile_path>",
13814 (void *)&cmd_ddp_del_ddp,
13815 (void *)&cmd_ddp_del_del,
13816 (void *)&cmd_ddp_del_port_id,
13817 (void *)&cmd_ddp_del_filepath,
13822 /* Get dynamic device personalization profile info */
13823 struct cmd_ddp_info_result {
13824 cmdline_fixed_string_t ddp;
13825 cmdline_fixed_string_t get;
13826 cmdline_fixed_string_t info;
13830 cmdline_parse_token_string_t cmd_ddp_info_ddp =
13831 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, ddp, "ddp");
13832 cmdline_parse_token_string_t cmd_ddp_info_get =
13833 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, get, "get");
13834 cmdline_parse_token_string_t cmd_ddp_info_info =
13835 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, info, "info");
13836 cmdline_parse_token_string_t cmd_ddp_info_filepath =
13837 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, filepath, NULL);
13840 cmd_ddp_info_parsed(
13841 void *parsed_result,
13842 __rte_unused struct cmdline *cl,
13843 __rte_unused void *data)
13845 struct cmd_ddp_info_result *res = parsed_result;
13848 int ret = -ENOTSUP;
13849 #ifdef RTE_NET_I40E
13852 uint32_t buff_size = 0;
13853 struct rte_pmd_i40e_profile_info info;
13854 uint32_t dev_num = 0;
13855 struct rte_pmd_i40e_ddp_device_id *devs;
13856 uint32_t proto_num = 0;
13857 struct rte_pmd_i40e_proto_info *proto = NULL;
13858 uint32_t pctype_num = 0;
13859 struct rte_pmd_i40e_ptype_info *pctype;
13860 uint32_t ptype_num = 0;
13861 struct rte_pmd_i40e_ptype_info *ptype;
13866 pkg = open_file(res->filepath, &pkg_size);
13870 #ifdef RTE_NET_I40E
13871 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13872 (uint8_t *)&info, sizeof(info),
13873 RTE_PMD_I40E_PKG_INFO_GLOBAL_HEADER);
13875 printf("Global Track id: 0x%x\n", info.track_id);
13876 printf("Global Version: %d.%d.%d.%d\n",
13877 info.version.major,
13878 info.version.minor,
13879 info.version.update,
13880 info.version.draft);
13881 printf("Global Package name: %s\n\n", info.name);
13884 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13885 (uint8_t *)&info, sizeof(info),
13886 RTE_PMD_I40E_PKG_INFO_HEADER);
13888 printf("i40e Profile Track id: 0x%x\n", info.track_id);
13889 printf("i40e Profile Version: %d.%d.%d.%d\n",
13890 info.version.major,
13891 info.version.minor,
13892 info.version.update,
13893 info.version.draft);
13894 printf("i40e Profile name: %s\n\n", info.name);
13897 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13898 (uint8_t *)&buff_size, sizeof(buff_size),
13899 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES_SIZE);
13900 if (!ret && buff_size) {
13901 buff = (uint8_t *)malloc(buff_size);
13903 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13905 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES);
13907 printf("Package Notes:\n%s\n\n", buff);
13912 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13913 (uint8_t *)&dev_num, sizeof(dev_num),
13914 RTE_PMD_I40E_PKG_INFO_DEVID_NUM);
13915 if (!ret && dev_num) {
13916 buff_size = dev_num * sizeof(struct rte_pmd_i40e_ddp_device_id);
13917 devs = (struct rte_pmd_i40e_ddp_device_id *)malloc(buff_size);
13919 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13920 (uint8_t *)devs, buff_size,
13921 RTE_PMD_I40E_PKG_INFO_DEVID_LIST);
13923 printf("List of supported devices:\n");
13924 for (i = 0; i < dev_num; i++) {
13925 printf(" %04X:%04X %04X:%04X\n",
13926 devs[i].vendor_dev_id >> 16,
13927 devs[i].vendor_dev_id & 0xFFFF,
13928 devs[i].sub_vendor_dev_id >> 16,
13929 devs[i].sub_vendor_dev_id & 0xFFFF);
13937 /* get information about protocols and packet types */
13938 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13939 (uint8_t *)&proto_num, sizeof(proto_num),
13940 RTE_PMD_I40E_PKG_INFO_PROTOCOL_NUM);
13941 if (ret || !proto_num)
13942 goto no_print_return;
13944 buff_size = proto_num * sizeof(struct rte_pmd_i40e_proto_info);
13945 proto = (struct rte_pmd_i40e_proto_info *)malloc(buff_size);
13947 goto no_print_return;
13949 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)proto,
13951 RTE_PMD_I40E_PKG_INFO_PROTOCOL_LIST);
13953 printf("List of used protocols:\n");
13954 for (i = 0; i < proto_num; i++)
13955 printf(" %2u: %s\n", proto[i].proto_id,
13959 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size,
13960 (uint8_t *)&pctype_num, sizeof(pctype_num),
13961 RTE_PMD_I40E_PKG_INFO_PCTYPE_NUM);
13962 if (ret || !pctype_num)
13963 goto no_print_pctypes;
13965 buff_size = pctype_num * sizeof(struct rte_pmd_i40e_ptype_info);
13966 pctype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
13968 goto no_print_pctypes;
13970 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)pctype,
13972 RTE_PMD_I40E_PKG_INFO_PCTYPE_LIST);
13975 goto no_print_pctypes;
13978 printf("List of defined packet classification types:\n");
13979 for (i = 0; i < pctype_num; i++) {
13980 printf(" %2u:", pctype[i].ptype_id);
13981 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
13982 proto_id = pctype[i].protocols[j];
13983 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
13984 for (n = 0; n < proto_num; n++) {
13985 if (proto[n].proto_id == proto_id) {
13986 printf(" %s", proto[n].name);
13999 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)&ptype_num,
14001 RTE_PMD_I40E_PKG_INFO_PTYPE_NUM);
14002 if (ret || !ptype_num)
14003 goto no_print_return;
14005 buff_size = ptype_num * sizeof(struct rte_pmd_i40e_ptype_info);
14006 ptype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size);
14008 goto no_print_return;
14010 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)ptype,
14012 RTE_PMD_I40E_PKG_INFO_PTYPE_LIST);
14015 goto no_print_return;
14017 printf("List of defined packet types:\n");
14018 for (i = 0; i < ptype_num; i++) {
14019 printf(" %2u:", ptype[i].ptype_id);
14020 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) {
14021 proto_id = ptype[i].protocols[j];
14022 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) {
14023 for (n = 0; n < proto_num; n++) {
14024 if (proto[n].proto_id == proto_id) {
14025 printf(" %s", proto[n].name);
14041 if (ret == -ENOTSUP)
14042 printf("Function not supported in PMD driver\n");
14046 cmdline_parse_inst_t cmd_ddp_get_info = {
14047 .f = cmd_ddp_info_parsed,
14049 .help_str = "ddp get info <profile_path>",
14051 (void *)&cmd_ddp_info_ddp,
14052 (void *)&cmd_ddp_info_get,
14053 (void *)&cmd_ddp_info_info,
14054 (void *)&cmd_ddp_info_filepath,
14059 /* Get dynamic device personalization profile info list*/
14060 #define PROFILE_INFO_SIZE 48
14061 #define MAX_PROFILE_NUM 16
14063 struct cmd_ddp_get_list_result {
14064 cmdline_fixed_string_t ddp;
14065 cmdline_fixed_string_t get;
14066 cmdline_fixed_string_t list;
14070 cmdline_parse_token_string_t cmd_ddp_get_list_ddp =
14071 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp");
14072 cmdline_parse_token_string_t cmd_ddp_get_list_get =
14073 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get");
14074 cmdline_parse_token_string_t cmd_ddp_get_list_list =
14075 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list");
14076 cmdline_parse_token_num_t cmd_ddp_get_list_port_id =
14077 TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id,
14081 cmd_ddp_get_list_parsed(
14082 __rte_unused void *parsed_result,
14083 __rte_unused struct cmdline *cl,
14084 __rte_unused void *data)
14086 #ifdef RTE_NET_I40E
14087 struct cmd_ddp_get_list_result *res = parsed_result;
14088 struct rte_pmd_i40e_profile_list *p_list;
14089 struct rte_pmd_i40e_profile_info *p_info;
14094 int ret = -ENOTSUP;
14096 #ifdef RTE_NET_I40E
14097 size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4;
14098 p_list = (struct rte_pmd_i40e_profile_list *)malloc(size);
14100 printf("%s: Failed to malloc buffer\n", __func__);
14104 if (ret == -ENOTSUP)
14105 ret = rte_pmd_i40e_get_ddp_list(res->port_id,
14106 (uint8_t *)p_list, size);
14109 p_num = p_list->p_count;
14110 printf("Profile number is: %d\n\n", p_num);
14112 for (i = 0; i < p_num; i++) {
14113 p_info = &p_list->p_info[i];
14114 printf("Profile %d:\n", i);
14115 printf("Track id: 0x%x\n", p_info->track_id);
14116 printf("Version: %d.%d.%d.%d\n",
14117 p_info->version.major,
14118 p_info->version.minor,
14119 p_info->version.update,
14120 p_info->version.draft);
14121 printf("Profile name: %s\n\n", p_info->name);
14129 printf("Failed to get ddp list\n");
14132 cmdline_parse_inst_t cmd_ddp_get_list = {
14133 .f = cmd_ddp_get_list_parsed,
14135 .help_str = "ddp get list <port_id>",
14137 (void *)&cmd_ddp_get_list_ddp,
14138 (void *)&cmd_ddp_get_list_get,
14139 (void *)&cmd_ddp_get_list_list,
14140 (void *)&cmd_ddp_get_list_port_id,
14145 /* Configure input set */
14146 struct cmd_cfg_input_set_result {
14147 cmdline_fixed_string_t port;
14148 cmdline_fixed_string_t cfg;
14150 cmdline_fixed_string_t pctype;
14152 cmdline_fixed_string_t inset_type;
14153 cmdline_fixed_string_t opt;
14154 cmdline_fixed_string_t field;
14159 cmd_cfg_input_set_parsed(
14160 __rte_unused void *parsed_result,
14161 __rte_unused struct cmdline *cl,
14162 __rte_unused void *data)
14164 #ifdef RTE_NET_I40E
14165 struct cmd_cfg_input_set_result *res = parsed_result;
14166 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE;
14167 struct rte_pmd_i40e_inset inset;
14169 int ret = -ENOTSUP;
14171 if (!all_ports_stopped()) {
14172 printf("Please stop all ports first\n");
14176 #ifdef RTE_NET_I40E
14177 if (!strcmp(res->inset_type, "hash_inset"))
14178 inset_type = INSET_HASH;
14179 else if (!strcmp(res->inset_type, "fdir_inset"))
14180 inset_type = INSET_FDIR;
14181 else if (!strcmp(res->inset_type, "fdir_flx_inset"))
14182 inset_type = INSET_FDIR_FLX;
14183 ret = rte_pmd_i40e_inset_get(res->port_id, res->pctype_id,
14184 &inset, inset_type);
14186 printf("Failed to get input set.\n");
14190 if (!strcmp(res->opt, "get")) {
14191 ret = rte_pmd_i40e_inset_field_get(inset.inset,
14194 printf("Field index %d is enabled.\n", res->field_idx);
14196 printf("Field index %d is disabled.\n", res->field_idx);
14198 } else if (!strcmp(res->opt, "set"))
14199 ret = rte_pmd_i40e_inset_field_set(&inset.inset,
14201 else if (!strcmp(res->opt, "clear"))
14202 ret = rte_pmd_i40e_inset_field_clear(&inset.inset,
14205 printf("Failed to configure input set field.\n");
14209 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
14210 &inset, inset_type);
14212 printf("Failed to set input set.\n");
14217 if (ret == -ENOTSUP)
14218 printf("Function not supported\n");
14221 cmdline_parse_token_string_t cmd_cfg_input_set_port =
14222 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14224 cmdline_parse_token_string_t cmd_cfg_input_set_cfg =
14225 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14227 cmdline_parse_token_num_t cmd_cfg_input_set_port_id =
14228 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14229 port_id, RTE_UINT16);
14230 cmdline_parse_token_string_t cmd_cfg_input_set_pctype =
14231 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14233 cmdline_parse_token_num_t cmd_cfg_input_set_pctype_id =
14234 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14235 pctype_id, RTE_UINT8);
14236 cmdline_parse_token_string_t cmd_cfg_input_set_inset_type =
14237 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14239 "hash_inset#fdir_inset#fdir_flx_inset");
14240 cmdline_parse_token_string_t cmd_cfg_input_set_opt =
14241 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14242 opt, "get#set#clear");
14243 cmdline_parse_token_string_t cmd_cfg_input_set_field =
14244 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result,
14246 cmdline_parse_token_num_t cmd_cfg_input_set_field_idx =
14247 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result,
14248 field_idx, RTE_UINT8);
14250 cmdline_parse_inst_t cmd_cfg_input_set = {
14251 .f = cmd_cfg_input_set_parsed,
14253 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|"
14254 "fdir_inset|fdir_flx_inset get|set|clear field <field_idx>",
14256 (void *)&cmd_cfg_input_set_port,
14257 (void *)&cmd_cfg_input_set_cfg,
14258 (void *)&cmd_cfg_input_set_port_id,
14259 (void *)&cmd_cfg_input_set_pctype,
14260 (void *)&cmd_cfg_input_set_pctype_id,
14261 (void *)&cmd_cfg_input_set_inset_type,
14262 (void *)&cmd_cfg_input_set_opt,
14263 (void *)&cmd_cfg_input_set_field,
14264 (void *)&cmd_cfg_input_set_field_idx,
14269 /* Clear input set */
14270 struct cmd_clear_input_set_result {
14271 cmdline_fixed_string_t port;
14272 cmdline_fixed_string_t cfg;
14274 cmdline_fixed_string_t pctype;
14276 cmdline_fixed_string_t inset_type;
14277 cmdline_fixed_string_t clear;
14278 cmdline_fixed_string_t all;
14282 cmd_clear_input_set_parsed(
14283 __rte_unused void *parsed_result,
14284 __rte_unused struct cmdline *cl,
14285 __rte_unused void *data)
14287 #ifdef RTE_NET_I40E
14288 struct cmd_clear_input_set_result *res = parsed_result;
14289 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE;
14290 struct rte_pmd_i40e_inset inset;
14292 int ret = -ENOTSUP;
14294 if (!all_ports_stopped()) {
14295 printf("Please stop all ports first\n");
14299 #ifdef RTE_NET_I40E
14300 if (!strcmp(res->inset_type, "hash_inset"))
14301 inset_type = INSET_HASH;
14302 else if (!strcmp(res->inset_type, "fdir_inset"))
14303 inset_type = INSET_FDIR;
14304 else if (!strcmp(res->inset_type, "fdir_flx_inset"))
14305 inset_type = INSET_FDIR_FLX;
14307 memset(&inset, 0, sizeof(inset));
14309 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id,
14310 &inset, inset_type);
14312 printf("Failed to clear input set.\n");
14318 if (ret == -ENOTSUP)
14319 printf("Function not supported\n");
14322 cmdline_parse_token_string_t cmd_clear_input_set_port =
14323 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14325 cmdline_parse_token_string_t cmd_clear_input_set_cfg =
14326 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14328 cmdline_parse_token_num_t cmd_clear_input_set_port_id =
14329 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result,
14330 port_id, RTE_UINT16);
14331 cmdline_parse_token_string_t cmd_clear_input_set_pctype =
14332 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14334 cmdline_parse_token_num_t cmd_clear_input_set_pctype_id =
14335 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result,
14336 pctype_id, RTE_UINT8);
14337 cmdline_parse_token_string_t cmd_clear_input_set_inset_type =
14338 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14340 "hash_inset#fdir_inset#fdir_flx_inset");
14341 cmdline_parse_token_string_t cmd_clear_input_set_clear =
14342 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14344 cmdline_parse_token_string_t cmd_clear_input_set_all =
14345 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result,
14348 cmdline_parse_inst_t cmd_clear_input_set = {
14349 .f = cmd_clear_input_set_parsed,
14351 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|"
14352 "fdir_inset|fdir_flx_inset clear all",
14354 (void *)&cmd_clear_input_set_port,
14355 (void *)&cmd_clear_input_set_cfg,
14356 (void *)&cmd_clear_input_set_port_id,
14357 (void *)&cmd_clear_input_set_pctype,
14358 (void *)&cmd_clear_input_set_pctype_id,
14359 (void *)&cmd_clear_input_set_inset_type,
14360 (void *)&cmd_clear_input_set_clear,
14361 (void *)&cmd_clear_input_set_all,
14366 /* show vf stats */
14368 /* Common result structure for show vf stats */
14369 struct cmd_show_vf_stats_result {
14370 cmdline_fixed_string_t show;
14371 cmdline_fixed_string_t vf;
14372 cmdline_fixed_string_t stats;
14377 /* Common CLI fields show vf stats*/
14378 cmdline_parse_token_string_t cmd_show_vf_stats_show =
14379 TOKEN_STRING_INITIALIZER
14380 (struct cmd_show_vf_stats_result,
14382 cmdline_parse_token_string_t cmd_show_vf_stats_vf =
14383 TOKEN_STRING_INITIALIZER
14384 (struct cmd_show_vf_stats_result,
14386 cmdline_parse_token_string_t cmd_show_vf_stats_stats =
14387 TOKEN_STRING_INITIALIZER
14388 (struct cmd_show_vf_stats_result,
14390 cmdline_parse_token_num_t cmd_show_vf_stats_port_id =
14391 TOKEN_NUM_INITIALIZER
14392 (struct cmd_show_vf_stats_result,
14393 port_id, RTE_UINT16);
14394 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id =
14395 TOKEN_NUM_INITIALIZER
14396 (struct cmd_show_vf_stats_result,
14397 vf_id, RTE_UINT16);
14400 cmd_show_vf_stats_parsed(
14401 void *parsed_result,
14402 __rte_unused struct cmdline *cl,
14403 __rte_unused void *data)
14405 struct cmd_show_vf_stats_result *res = parsed_result;
14406 struct rte_eth_stats stats;
14407 int ret = -ENOTSUP;
14408 static const char *nic_stats_border = "########################";
14410 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14413 memset(&stats, 0, sizeof(stats));
14415 #ifdef RTE_NET_I40E
14416 if (ret == -ENOTSUP)
14417 ret = rte_pmd_i40e_get_vf_stats(res->port_id,
14421 #ifdef RTE_NET_BNXT
14422 if (ret == -ENOTSUP)
14423 ret = rte_pmd_bnxt_get_vf_stats(res->port_id,
14432 printf("invalid vf_id %d\n", res->vf_id);
14435 printf("invalid port_id %d\n", res->port_id);
14438 printf("function not implemented\n");
14441 printf("programming error: (%s)\n", strerror(-ret));
14444 printf("\n %s NIC statistics for port %-2d vf %-2d %s\n",
14445 nic_stats_border, res->port_id, res->vf_id, nic_stats_border);
14447 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: "
14449 stats.ipackets, stats.imissed, stats.ibytes);
14450 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors);
14451 printf(" RX-nombuf: %-10"PRIu64"\n",
14453 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: "
14455 stats.opackets, stats.oerrors, stats.obytes);
14457 printf(" %s############################%s\n",
14458 nic_stats_border, nic_stats_border);
14461 cmdline_parse_inst_t cmd_show_vf_stats = {
14462 .f = cmd_show_vf_stats_parsed,
14464 .help_str = "show vf stats <port_id> <vf_id>",
14466 (void *)&cmd_show_vf_stats_show,
14467 (void *)&cmd_show_vf_stats_vf,
14468 (void *)&cmd_show_vf_stats_stats,
14469 (void *)&cmd_show_vf_stats_port_id,
14470 (void *)&cmd_show_vf_stats_vf_id,
14475 /* clear vf stats */
14477 /* Common result structure for clear vf stats */
14478 struct cmd_clear_vf_stats_result {
14479 cmdline_fixed_string_t clear;
14480 cmdline_fixed_string_t vf;
14481 cmdline_fixed_string_t stats;
14486 /* Common CLI fields clear vf stats*/
14487 cmdline_parse_token_string_t cmd_clear_vf_stats_clear =
14488 TOKEN_STRING_INITIALIZER
14489 (struct cmd_clear_vf_stats_result,
14491 cmdline_parse_token_string_t cmd_clear_vf_stats_vf =
14492 TOKEN_STRING_INITIALIZER
14493 (struct cmd_clear_vf_stats_result,
14495 cmdline_parse_token_string_t cmd_clear_vf_stats_stats =
14496 TOKEN_STRING_INITIALIZER
14497 (struct cmd_clear_vf_stats_result,
14499 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id =
14500 TOKEN_NUM_INITIALIZER
14501 (struct cmd_clear_vf_stats_result,
14502 port_id, RTE_UINT16);
14503 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id =
14504 TOKEN_NUM_INITIALIZER
14505 (struct cmd_clear_vf_stats_result,
14506 vf_id, RTE_UINT16);
14509 cmd_clear_vf_stats_parsed(
14510 void *parsed_result,
14511 __rte_unused struct cmdline *cl,
14512 __rte_unused void *data)
14514 struct cmd_clear_vf_stats_result *res = parsed_result;
14515 int ret = -ENOTSUP;
14517 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14520 #ifdef RTE_NET_I40E
14521 if (ret == -ENOTSUP)
14522 ret = rte_pmd_i40e_reset_vf_stats(res->port_id,
14525 #ifdef RTE_NET_BNXT
14526 if (ret == -ENOTSUP)
14527 ret = rte_pmd_bnxt_reset_vf_stats(res->port_id,
14535 printf("invalid vf_id %d\n", res->vf_id);
14538 printf("invalid port_id %d\n", res->port_id);
14541 printf("function not implemented\n");
14544 printf("programming error: (%s)\n", strerror(-ret));
14548 cmdline_parse_inst_t cmd_clear_vf_stats = {
14549 .f = cmd_clear_vf_stats_parsed,
14551 .help_str = "clear vf stats <port_id> <vf_id>",
14553 (void *)&cmd_clear_vf_stats_clear,
14554 (void *)&cmd_clear_vf_stats_vf,
14555 (void *)&cmd_clear_vf_stats_stats,
14556 (void *)&cmd_clear_vf_stats_port_id,
14557 (void *)&cmd_clear_vf_stats_vf_id,
14562 /* port config pctype mapping reset */
14564 /* Common result structure for port config pctype mapping reset */
14565 struct cmd_pctype_mapping_reset_result {
14566 cmdline_fixed_string_t port;
14567 cmdline_fixed_string_t config;
14569 cmdline_fixed_string_t pctype;
14570 cmdline_fixed_string_t mapping;
14571 cmdline_fixed_string_t reset;
14574 /* Common CLI fields for port config pctype mapping reset*/
14575 cmdline_parse_token_string_t cmd_pctype_mapping_reset_port =
14576 TOKEN_STRING_INITIALIZER
14577 (struct cmd_pctype_mapping_reset_result,
14579 cmdline_parse_token_string_t cmd_pctype_mapping_reset_config =
14580 TOKEN_STRING_INITIALIZER
14581 (struct cmd_pctype_mapping_reset_result,
14583 cmdline_parse_token_num_t cmd_pctype_mapping_reset_port_id =
14584 TOKEN_NUM_INITIALIZER
14585 (struct cmd_pctype_mapping_reset_result,
14586 port_id, RTE_UINT16);
14587 cmdline_parse_token_string_t cmd_pctype_mapping_reset_pctype =
14588 TOKEN_STRING_INITIALIZER
14589 (struct cmd_pctype_mapping_reset_result,
14591 cmdline_parse_token_string_t cmd_pctype_mapping_reset_mapping =
14592 TOKEN_STRING_INITIALIZER
14593 (struct cmd_pctype_mapping_reset_result,
14594 mapping, "mapping");
14595 cmdline_parse_token_string_t cmd_pctype_mapping_reset_reset =
14596 TOKEN_STRING_INITIALIZER
14597 (struct cmd_pctype_mapping_reset_result,
14601 cmd_pctype_mapping_reset_parsed(
14602 void *parsed_result,
14603 __rte_unused struct cmdline *cl,
14604 __rte_unused void *data)
14606 struct cmd_pctype_mapping_reset_result *res = parsed_result;
14607 int ret = -ENOTSUP;
14609 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14612 #ifdef RTE_NET_I40E
14613 ret = rte_pmd_i40e_flow_type_mapping_reset(res->port_id);
14620 printf("invalid port_id %d\n", res->port_id);
14623 printf("function not implemented\n");
14626 printf("programming error: (%s)\n", strerror(-ret));
14630 cmdline_parse_inst_t cmd_pctype_mapping_reset = {
14631 .f = cmd_pctype_mapping_reset_parsed,
14633 .help_str = "port config <port_id> pctype mapping reset",
14635 (void *)&cmd_pctype_mapping_reset_port,
14636 (void *)&cmd_pctype_mapping_reset_config,
14637 (void *)&cmd_pctype_mapping_reset_port_id,
14638 (void *)&cmd_pctype_mapping_reset_pctype,
14639 (void *)&cmd_pctype_mapping_reset_mapping,
14640 (void *)&cmd_pctype_mapping_reset_reset,
14645 /* show port pctype mapping */
14647 /* Common result structure for show port pctype mapping */
14648 struct cmd_pctype_mapping_get_result {
14649 cmdline_fixed_string_t show;
14650 cmdline_fixed_string_t port;
14652 cmdline_fixed_string_t pctype;
14653 cmdline_fixed_string_t mapping;
14656 /* Common CLI fields for pctype mapping get */
14657 cmdline_parse_token_string_t cmd_pctype_mapping_get_show =
14658 TOKEN_STRING_INITIALIZER
14659 (struct cmd_pctype_mapping_get_result,
14661 cmdline_parse_token_string_t cmd_pctype_mapping_get_port =
14662 TOKEN_STRING_INITIALIZER
14663 (struct cmd_pctype_mapping_get_result,
14665 cmdline_parse_token_num_t cmd_pctype_mapping_get_port_id =
14666 TOKEN_NUM_INITIALIZER
14667 (struct cmd_pctype_mapping_get_result,
14668 port_id, RTE_UINT16);
14669 cmdline_parse_token_string_t cmd_pctype_mapping_get_pctype =
14670 TOKEN_STRING_INITIALIZER
14671 (struct cmd_pctype_mapping_get_result,
14673 cmdline_parse_token_string_t cmd_pctype_mapping_get_mapping =
14674 TOKEN_STRING_INITIALIZER
14675 (struct cmd_pctype_mapping_get_result,
14676 mapping, "mapping");
14679 cmd_pctype_mapping_get_parsed(
14680 void *parsed_result,
14681 __rte_unused struct cmdline *cl,
14682 __rte_unused void *data)
14684 struct cmd_pctype_mapping_get_result *res = parsed_result;
14685 int ret = -ENOTSUP;
14686 #ifdef RTE_NET_I40E
14687 struct rte_pmd_i40e_flow_type_mapping
14688 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
14689 int i, j, first_pctype;
14692 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14695 #ifdef RTE_NET_I40E
14696 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, mapping);
14703 printf("invalid port_id %d\n", res->port_id);
14706 printf("function not implemented\n");
14709 printf("programming error: (%s)\n", strerror(-ret));
14713 #ifdef RTE_NET_I40E
14714 for (i = 0; i < RTE_PMD_I40E_FLOW_TYPE_MAX; i++) {
14715 if (mapping[i].pctype != 0ULL) {
14718 printf("pctype: ");
14719 for (j = 0; j < RTE_PMD_I40E_PCTYPE_MAX; j++) {
14720 if (mapping[i].pctype & (1ULL << j)) {
14721 printf(first_pctype ?
14722 "%02d" : ",%02d", j);
14726 printf(" -> flowtype: %02d\n", mapping[i].flow_type);
14732 cmdline_parse_inst_t cmd_pctype_mapping_get = {
14733 .f = cmd_pctype_mapping_get_parsed,
14735 .help_str = "show port <port_id> pctype mapping",
14737 (void *)&cmd_pctype_mapping_get_show,
14738 (void *)&cmd_pctype_mapping_get_port,
14739 (void *)&cmd_pctype_mapping_get_port_id,
14740 (void *)&cmd_pctype_mapping_get_pctype,
14741 (void *)&cmd_pctype_mapping_get_mapping,
14746 /* port config pctype mapping update */
14748 /* Common result structure for port config pctype mapping update */
14749 struct cmd_pctype_mapping_update_result {
14750 cmdline_fixed_string_t port;
14751 cmdline_fixed_string_t config;
14753 cmdline_fixed_string_t pctype;
14754 cmdline_fixed_string_t mapping;
14755 cmdline_fixed_string_t update;
14756 cmdline_fixed_string_t pctype_list;
14757 uint16_t flow_type;
14760 /* Common CLI fields for pctype mapping update*/
14761 cmdline_parse_token_string_t cmd_pctype_mapping_update_port =
14762 TOKEN_STRING_INITIALIZER
14763 (struct cmd_pctype_mapping_update_result,
14765 cmdline_parse_token_string_t cmd_pctype_mapping_update_config =
14766 TOKEN_STRING_INITIALIZER
14767 (struct cmd_pctype_mapping_update_result,
14769 cmdline_parse_token_num_t cmd_pctype_mapping_update_port_id =
14770 TOKEN_NUM_INITIALIZER
14771 (struct cmd_pctype_mapping_update_result,
14772 port_id, RTE_UINT16);
14773 cmdline_parse_token_string_t cmd_pctype_mapping_update_pctype =
14774 TOKEN_STRING_INITIALIZER
14775 (struct cmd_pctype_mapping_update_result,
14777 cmdline_parse_token_string_t cmd_pctype_mapping_update_mapping =
14778 TOKEN_STRING_INITIALIZER
14779 (struct cmd_pctype_mapping_update_result,
14780 mapping, "mapping");
14781 cmdline_parse_token_string_t cmd_pctype_mapping_update_update =
14782 TOKEN_STRING_INITIALIZER
14783 (struct cmd_pctype_mapping_update_result,
14785 cmdline_parse_token_string_t cmd_pctype_mapping_update_pc_type =
14786 TOKEN_STRING_INITIALIZER
14787 (struct cmd_pctype_mapping_update_result,
14788 pctype_list, NULL);
14789 cmdline_parse_token_num_t cmd_pctype_mapping_update_flow_type =
14790 TOKEN_NUM_INITIALIZER
14791 (struct cmd_pctype_mapping_update_result,
14792 flow_type, RTE_UINT16);
14795 cmd_pctype_mapping_update_parsed(
14796 void *parsed_result,
14797 __rte_unused struct cmdline *cl,
14798 __rte_unused void *data)
14800 struct cmd_pctype_mapping_update_result *res = parsed_result;
14801 int ret = -ENOTSUP;
14802 #ifdef RTE_NET_I40E
14803 struct rte_pmd_i40e_flow_type_mapping mapping;
14805 unsigned int nb_item;
14806 unsigned int pctype_list[RTE_PMD_I40E_PCTYPE_MAX];
14809 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14812 #ifdef RTE_NET_I40E
14813 nb_item = parse_item_list(res->pctype_list, "pctypes",
14814 RTE_PMD_I40E_PCTYPE_MAX, pctype_list, 1);
14815 mapping.flow_type = res->flow_type;
14816 for (i = 0, mapping.pctype = 0ULL; i < nb_item; i++)
14817 mapping.pctype |= (1ULL << pctype_list[i]);
14818 ret = rte_pmd_i40e_flow_type_mapping_update(res->port_id,
14828 printf("invalid pctype or flow type\n");
14831 printf("invalid port_id %d\n", res->port_id);
14834 printf("function not implemented\n");
14837 printf("programming error: (%s)\n", strerror(-ret));
14841 cmdline_parse_inst_t cmd_pctype_mapping_update = {
14842 .f = cmd_pctype_mapping_update_parsed,
14844 .help_str = "port config <port_id> pctype mapping update"
14845 " <pctype_id_0,[pctype_id_1]*> <flowtype_id>",
14847 (void *)&cmd_pctype_mapping_update_port,
14848 (void *)&cmd_pctype_mapping_update_config,
14849 (void *)&cmd_pctype_mapping_update_port_id,
14850 (void *)&cmd_pctype_mapping_update_pctype,
14851 (void *)&cmd_pctype_mapping_update_mapping,
14852 (void *)&cmd_pctype_mapping_update_update,
14853 (void *)&cmd_pctype_mapping_update_pc_type,
14854 (void *)&cmd_pctype_mapping_update_flow_type,
14859 /* ptype mapping get */
14861 /* Common result structure for ptype mapping get */
14862 struct cmd_ptype_mapping_get_result {
14863 cmdline_fixed_string_t ptype;
14864 cmdline_fixed_string_t mapping;
14865 cmdline_fixed_string_t get;
14867 uint8_t valid_only;
14870 /* Common CLI fields for ptype mapping get */
14871 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype =
14872 TOKEN_STRING_INITIALIZER
14873 (struct cmd_ptype_mapping_get_result,
14875 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping =
14876 TOKEN_STRING_INITIALIZER
14877 (struct cmd_ptype_mapping_get_result,
14878 mapping, "mapping");
14879 cmdline_parse_token_string_t cmd_ptype_mapping_get_get =
14880 TOKEN_STRING_INITIALIZER
14881 (struct cmd_ptype_mapping_get_result,
14883 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id =
14884 TOKEN_NUM_INITIALIZER
14885 (struct cmd_ptype_mapping_get_result,
14886 port_id, RTE_UINT16);
14887 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only =
14888 TOKEN_NUM_INITIALIZER
14889 (struct cmd_ptype_mapping_get_result,
14890 valid_only, RTE_UINT8);
14893 cmd_ptype_mapping_get_parsed(
14894 void *parsed_result,
14895 __rte_unused struct cmdline *cl,
14896 __rte_unused void *data)
14898 struct cmd_ptype_mapping_get_result *res = parsed_result;
14899 int ret = -ENOTSUP;
14900 #ifdef RTE_NET_I40E
14901 int max_ptype_num = 256;
14902 struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num];
14907 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
14910 #ifdef RTE_NET_I40E
14911 ret = rte_pmd_i40e_ptype_mapping_get(res->port_id,
14922 printf("invalid port_id %d\n", res->port_id);
14925 printf("function not implemented\n");
14928 printf("programming error: (%s)\n", strerror(-ret));
14931 #ifdef RTE_NET_I40E
14933 for (i = 0; i < count; i++)
14934 printf("%3d\t0x%08x\n",
14935 mapping[i].hw_ptype, mapping[i].sw_ptype);
14940 cmdline_parse_inst_t cmd_ptype_mapping_get = {
14941 .f = cmd_ptype_mapping_get_parsed,
14943 .help_str = "ptype mapping get <port_id> <valid_only>",
14945 (void *)&cmd_ptype_mapping_get_ptype,
14946 (void *)&cmd_ptype_mapping_get_mapping,
14947 (void *)&cmd_ptype_mapping_get_get,
14948 (void *)&cmd_ptype_mapping_get_port_id,
14949 (void *)&cmd_ptype_mapping_get_valid_only,
14954 /* ptype mapping replace */
14956 /* Common result structure for ptype mapping replace */
14957 struct cmd_ptype_mapping_replace_result {
14958 cmdline_fixed_string_t ptype;
14959 cmdline_fixed_string_t mapping;
14960 cmdline_fixed_string_t replace;
14967 /* Common CLI fields for ptype mapping replace */
14968 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype =
14969 TOKEN_STRING_INITIALIZER
14970 (struct cmd_ptype_mapping_replace_result,
14972 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping =
14973 TOKEN_STRING_INITIALIZER
14974 (struct cmd_ptype_mapping_replace_result,
14975 mapping, "mapping");
14976 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace =
14977 TOKEN_STRING_INITIALIZER
14978 (struct cmd_ptype_mapping_replace_result,
14979 replace, "replace");
14980 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id =
14981 TOKEN_NUM_INITIALIZER
14982 (struct cmd_ptype_mapping_replace_result,
14983 port_id, RTE_UINT16);
14984 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target =
14985 TOKEN_NUM_INITIALIZER
14986 (struct cmd_ptype_mapping_replace_result,
14987 target, RTE_UINT32);
14988 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask =
14989 TOKEN_NUM_INITIALIZER
14990 (struct cmd_ptype_mapping_replace_result,
14992 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type =
14993 TOKEN_NUM_INITIALIZER
14994 (struct cmd_ptype_mapping_replace_result,
14995 pkt_type, RTE_UINT32);
14998 cmd_ptype_mapping_replace_parsed(
14999 void *parsed_result,
15000 __rte_unused struct cmdline *cl,
15001 __rte_unused void *data)
15003 struct cmd_ptype_mapping_replace_result *res = parsed_result;
15004 int ret = -ENOTSUP;
15006 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15009 #ifdef RTE_NET_I40E
15010 ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id,
15020 printf("invalid ptype 0x%8x or 0x%8x\n",
15021 res->target, res->pkt_type);
15024 printf("invalid port_id %d\n", res->port_id);
15027 printf("function not implemented\n");
15030 printf("programming error: (%s)\n", strerror(-ret));
15034 cmdline_parse_inst_t cmd_ptype_mapping_replace = {
15035 .f = cmd_ptype_mapping_replace_parsed,
15038 "ptype mapping replace <port_id> <target> <mask> <pkt_type>",
15040 (void *)&cmd_ptype_mapping_replace_ptype,
15041 (void *)&cmd_ptype_mapping_replace_mapping,
15042 (void *)&cmd_ptype_mapping_replace_replace,
15043 (void *)&cmd_ptype_mapping_replace_port_id,
15044 (void *)&cmd_ptype_mapping_replace_target,
15045 (void *)&cmd_ptype_mapping_replace_mask,
15046 (void *)&cmd_ptype_mapping_replace_pkt_type,
15051 /* ptype mapping reset */
15053 /* Common result structure for ptype mapping reset */
15054 struct cmd_ptype_mapping_reset_result {
15055 cmdline_fixed_string_t ptype;
15056 cmdline_fixed_string_t mapping;
15057 cmdline_fixed_string_t reset;
15061 /* Common CLI fields for ptype mapping reset*/
15062 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype =
15063 TOKEN_STRING_INITIALIZER
15064 (struct cmd_ptype_mapping_reset_result,
15066 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping =
15067 TOKEN_STRING_INITIALIZER
15068 (struct cmd_ptype_mapping_reset_result,
15069 mapping, "mapping");
15070 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset =
15071 TOKEN_STRING_INITIALIZER
15072 (struct cmd_ptype_mapping_reset_result,
15074 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id =
15075 TOKEN_NUM_INITIALIZER
15076 (struct cmd_ptype_mapping_reset_result,
15077 port_id, RTE_UINT16);
15080 cmd_ptype_mapping_reset_parsed(
15081 void *parsed_result,
15082 __rte_unused struct cmdline *cl,
15083 __rte_unused void *data)
15085 struct cmd_ptype_mapping_reset_result *res = parsed_result;
15086 int ret = -ENOTSUP;
15088 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15091 #ifdef RTE_NET_I40E
15092 ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id);
15099 printf("invalid port_id %d\n", res->port_id);
15102 printf("function not implemented\n");
15105 printf("programming error: (%s)\n", strerror(-ret));
15109 cmdline_parse_inst_t cmd_ptype_mapping_reset = {
15110 .f = cmd_ptype_mapping_reset_parsed,
15112 .help_str = "ptype mapping reset <port_id>",
15114 (void *)&cmd_ptype_mapping_reset_ptype,
15115 (void *)&cmd_ptype_mapping_reset_mapping,
15116 (void *)&cmd_ptype_mapping_reset_reset,
15117 (void *)&cmd_ptype_mapping_reset_port_id,
15122 /* ptype mapping update */
15124 /* Common result structure for ptype mapping update */
15125 struct cmd_ptype_mapping_update_result {
15126 cmdline_fixed_string_t ptype;
15127 cmdline_fixed_string_t mapping;
15128 cmdline_fixed_string_t reset;
15134 /* Common CLI fields for ptype mapping update*/
15135 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype =
15136 TOKEN_STRING_INITIALIZER
15137 (struct cmd_ptype_mapping_update_result,
15139 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping =
15140 TOKEN_STRING_INITIALIZER
15141 (struct cmd_ptype_mapping_update_result,
15142 mapping, "mapping");
15143 cmdline_parse_token_string_t cmd_ptype_mapping_update_update =
15144 TOKEN_STRING_INITIALIZER
15145 (struct cmd_ptype_mapping_update_result,
15147 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id =
15148 TOKEN_NUM_INITIALIZER
15149 (struct cmd_ptype_mapping_update_result,
15150 port_id, RTE_UINT16);
15151 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype =
15152 TOKEN_NUM_INITIALIZER
15153 (struct cmd_ptype_mapping_update_result,
15154 hw_ptype, RTE_UINT8);
15155 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype =
15156 TOKEN_NUM_INITIALIZER
15157 (struct cmd_ptype_mapping_update_result,
15158 sw_ptype, RTE_UINT32);
15161 cmd_ptype_mapping_update_parsed(
15162 void *parsed_result,
15163 __rte_unused struct cmdline *cl,
15164 __rte_unused void *data)
15166 struct cmd_ptype_mapping_update_result *res = parsed_result;
15167 int ret = -ENOTSUP;
15168 #ifdef RTE_NET_I40E
15169 struct rte_pmd_i40e_ptype_mapping mapping;
15171 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
15174 #ifdef RTE_NET_I40E
15175 mapping.hw_ptype = res->hw_ptype;
15176 mapping.sw_ptype = res->sw_ptype;
15177 ret = rte_pmd_i40e_ptype_mapping_update(res->port_id,
15187 printf("invalid ptype 0x%8x\n", res->sw_ptype);
15190 printf("invalid port_id %d\n", res->port_id);
15193 printf("function not implemented\n");
15196 printf("programming error: (%s)\n", strerror(-ret));
15200 cmdline_parse_inst_t cmd_ptype_mapping_update = {
15201 .f = cmd_ptype_mapping_update_parsed,
15203 .help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>",
15205 (void *)&cmd_ptype_mapping_update_ptype,
15206 (void *)&cmd_ptype_mapping_update_mapping,
15207 (void *)&cmd_ptype_mapping_update_update,
15208 (void *)&cmd_ptype_mapping_update_port_id,
15209 (void *)&cmd_ptype_mapping_update_hw_ptype,
15210 (void *)&cmd_ptype_mapping_update_sw_ptype,
15215 /* Common result structure for file commands */
15216 struct cmd_cmdfile_result {
15217 cmdline_fixed_string_t load;
15218 cmdline_fixed_string_t filename;
15221 /* Common CLI fields for file commands */
15222 cmdline_parse_token_string_t cmd_load_cmdfile =
15223 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load");
15224 cmdline_parse_token_string_t cmd_load_cmdfile_filename =
15225 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL);
15228 cmd_load_from_file_parsed(
15229 void *parsed_result,
15230 __rte_unused struct cmdline *cl,
15231 __rte_unused void *data)
15233 struct cmd_cmdfile_result *res = parsed_result;
15235 cmdline_read_from_file(res->filename);
15238 cmdline_parse_inst_t cmd_load_from_file = {
15239 .f = cmd_load_from_file_parsed,
15241 .help_str = "load <filename>",
15243 (void *)&cmd_load_cmdfile,
15244 (void *)&cmd_load_cmdfile_filename,
15249 /* Get Rx offloads capabilities */
15250 struct cmd_rx_offload_get_capa_result {
15251 cmdline_fixed_string_t show;
15252 cmdline_fixed_string_t port;
15254 cmdline_fixed_string_t rx_offload;
15255 cmdline_fixed_string_t capabilities;
15258 cmdline_parse_token_string_t cmd_rx_offload_get_capa_show =
15259 TOKEN_STRING_INITIALIZER
15260 (struct cmd_rx_offload_get_capa_result,
15262 cmdline_parse_token_string_t cmd_rx_offload_get_capa_port =
15263 TOKEN_STRING_INITIALIZER
15264 (struct cmd_rx_offload_get_capa_result,
15266 cmdline_parse_token_num_t cmd_rx_offload_get_capa_port_id =
15267 TOKEN_NUM_INITIALIZER
15268 (struct cmd_rx_offload_get_capa_result,
15269 port_id, RTE_UINT16);
15270 cmdline_parse_token_string_t cmd_rx_offload_get_capa_rx_offload =
15271 TOKEN_STRING_INITIALIZER
15272 (struct cmd_rx_offload_get_capa_result,
15273 rx_offload, "rx_offload");
15274 cmdline_parse_token_string_t cmd_rx_offload_get_capa_capabilities =
15275 TOKEN_STRING_INITIALIZER
15276 (struct cmd_rx_offload_get_capa_result,
15277 capabilities, "capabilities");
15280 print_rx_offloads(uint64_t offloads)
15282 uint64_t single_offload;
15290 begin = __builtin_ctzll(offloads);
15291 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads);
15293 single_offload = 1ULL << begin;
15294 for (bit = begin; bit < end; bit++) {
15295 if (offloads & single_offload)
15297 rte_eth_dev_rx_offload_name(single_offload));
15298 single_offload <<= 1;
15303 cmd_rx_offload_get_capa_parsed(
15304 void *parsed_result,
15305 __rte_unused struct cmdline *cl,
15306 __rte_unused void *data)
15308 struct cmd_rx_offload_get_capa_result *res = parsed_result;
15309 struct rte_eth_dev_info dev_info;
15310 portid_t port_id = res->port_id;
15311 uint64_t queue_offloads;
15312 uint64_t port_offloads;
15315 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15319 queue_offloads = dev_info.rx_queue_offload_capa;
15320 port_offloads = dev_info.rx_offload_capa ^ queue_offloads;
15322 printf("Rx Offloading Capabilities of port %d :\n", port_id);
15323 printf(" Per Queue :");
15324 print_rx_offloads(queue_offloads);
15327 printf(" Per Port :");
15328 print_rx_offloads(port_offloads);
15332 cmdline_parse_inst_t cmd_rx_offload_get_capa = {
15333 .f = cmd_rx_offload_get_capa_parsed,
15335 .help_str = "show port <port_id> rx_offload capabilities",
15337 (void *)&cmd_rx_offload_get_capa_show,
15338 (void *)&cmd_rx_offload_get_capa_port,
15339 (void *)&cmd_rx_offload_get_capa_port_id,
15340 (void *)&cmd_rx_offload_get_capa_rx_offload,
15341 (void *)&cmd_rx_offload_get_capa_capabilities,
15346 /* Get Rx offloads configuration */
15347 struct cmd_rx_offload_get_configuration_result {
15348 cmdline_fixed_string_t show;
15349 cmdline_fixed_string_t port;
15351 cmdline_fixed_string_t rx_offload;
15352 cmdline_fixed_string_t configuration;
15355 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_show =
15356 TOKEN_STRING_INITIALIZER
15357 (struct cmd_rx_offload_get_configuration_result,
15359 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_port =
15360 TOKEN_STRING_INITIALIZER
15361 (struct cmd_rx_offload_get_configuration_result,
15363 cmdline_parse_token_num_t cmd_rx_offload_get_configuration_port_id =
15364 TOKEN_NUM_INITIALIZER
15365 (struct cmd_rx_offload_get_configuration_result,
15366 port_id, RTE_UINT16);
15367 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_rx_offload =
15368 TOKEN_STRING_INITIALIZER
15369 (struct cmd_rx_offload_get_configuration_result,
15370 rx_offload, "rx_offload");
15371 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_configuration =
15372 TOKEN_STRING_INITIALIZER
15373 (struct cmd_rx_offload_get_configuration_result,
15374 configuration, "configuration");
15377 cmd_rx_offload_get_configuration_parsed(
15378 void *parsed_result,
15379 __rte_unused struct cmdline *cl,
15380 __rte_unused void *data)
15382 struct cmd_rx_offload_get_configuration_result *res = parsed_result;
15383 struct rte_eth_dev_info dev_info;
15384 portid_t port_id = res->port_id;
15385 struct rte_port *port = &ports[port_id];
15386 uint64_t port_offloads;
15387 uint64_t queue_offloads;
15388 uint16_t nb_rx_queues;
15392 printf("Rx Offloading Configuration of port %d :\n", port_id);
15394 port_offloads = port->dev_conf.rxmode.offloads;
15396 print_rx_offloads(port_offloads);
15399 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15403 nb_rx_queues = dev_info.nb_rx_queues;
15404 for (q = 0; q < nb_rx_queues; q++) {
15405 queue_offloads = port->rx_conf[q].offloads;
15406 printf(" Queue[%2d] :", q);
15407 print_rx_offloads(queue_offloads);
15413 cmdline_parse_inst_t cmd_rx_offload_get_configuration = {
15414 .f = cmd_rx_offload_get_configuration_parsed,
15416 .help_str = "show port <port_id> rx_offload configuration",
15418 (void *)&cmd_rx_offload_get_configuration_show,
15419 (void *)&cmd_rx_offload_get_configuration_port,
15420 (void *)&cmd_rx_offload_get_configuration_port_id,
15421 (void *)&cmd_rx_offload_get_configuration_rx_offload,
15422 (void *)&cmd_rx_offload_get_configuration_configuration,
15427 /* Enable/Disable a per port offloading */
15428 struct cmd_config_per_port_rx_offload_result {
15429 cmdline_fixed_string_t port;
15430 cmdline_fixed_string_t config;
15432 cmdline_fixed_string_t rx_offload;
15433 cmdline_fixed_string_t offload;
15434 cmdline_fixed_string_t on_off;
15437 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_port =
15438 TOKEN_STRING_INITIALIZER
15439 (struct cmd_config_per_port_rx_offload_result,
15441 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_config =
15442 TOKEN_STRING_INITIALIZER
15443 (struct cmd_config_per_port_rx_offload_result,
15445 cmdline_parse_token_num_t cmd_config_per_port_rx_offload_result_port_id =
15446 TOKEN_NUM_INITIALIZER
15447 (struct cmd_config_per_port_rx_offload_result,
15448 port_id, RTE_UINT16);
15449 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_rx_offload =
15450 TOKEN_STRING_INITIALIZER
15451 (struct cmd_config_per_port_rx_offload_result,
15452 rx_offload, "rx_offload");
15453 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_offload =
15454 TOKEN_STRING_INITIALIZER
15455 (struct cmd_config_per_port_rx_offload_result,
15456 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#"
15457 "qinq_strip#outer_ipv4_cksum#macsec_strip#"
15458 "header_split#vlan_filter#vlan_extend#jumbo_frame#"
15459 "scatter#buffer_split#timestamp#security#"
15460 "keep_crc#rss_hash");
15461 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_on_off =
15462 TOKEN_STRING_INITIALIZER
15463 (struct cmd_config_per_port_rx_offload_result,
15467 search_rx_offload(const char *name)
15469 uint64_t single_offload;
15470 const char *single_name;
15474 single_offload = 1;
15475 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) {
15476 single_name = rte_eth_dev_rx_offload_name(single_offload);
15477 if (!strcasecmp(single_name, name)) {
15481 single_offload <<= 1;
15485 return single_offload;
15491 cmd_config_per_port_rx_offload_parsed(void *parsed_result,
15492 __rte_unused struct cmdline *cl,
15493 __rte_unused void *data)
15495 struct cmd_config_per_port_rx_offload_result *res = parsed_result;
15496 portid_t port_id = res->port_id;
15497 struct rte_eth_dev_info dev_info;
15498 struct rte_port *port = &ports[port_id];
15499 uint64_t single_offload;
15500 uint16_t nb_rx_queues;
15504 if (port->port_status != RTE_PORT_STOPPED) {
15505 printf("Error: Can't config offload when Port %d "
15506 "is not stopped\n", port_id);
15510 single_offload = search_rx_offload(res->offload);
15511 if (single_offload == 0) {
15512 printf("Unknown offload name: %s\n", res->offload);
15516 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15520 nb_rx_queues = dev_info.nb_rx_queues;
15521 if (!strcmp(res->on_off, "on")) {
15522 port->dev_conf.rxmode.offloads |= single_offload;
15523 for (q = 0; q < nb_rx_queues; q++)
15524 port->rx_conf[q].offloads |= single_offload;
15526 port->dev_conf.rxmode.offloads &= ~single_offload;
15527 for (q = 0; q < nb_rx_queues; q++)
15528 port->rx_conf[q].offloads &= ~single_offload;
15531 cmd_reconfig_device_queue(port_id, 1, 1);
15534 cmdline_parse_inst_t cmd_config_per_port_rx_offload = {
15535 .f = cmd_config_per_port_rx_offload_parsed,
15537 .help_str = "port config <port_id> rx_offload vlan_strip|ipv4_cksum|"
15538 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|"
15539 "macsec_strip|header_split|vlan_filter|vlan_extend|"
15540 "jumbo_frame|scatter|buffer_split|timestamp|security|"
15541 "keep_crc|rss_hash on|off",
15543 (void *)&cmd_config_per_port_rx_offload_result_port,
15544 (void *)&cmd_config_per_port_rx_offload_result_config,
15545 (void *)&cmd_config_per_port_rx_offload_result_port_id,
15546 (void *)&cmd_config_per_port_rx_offload_result_rx_offload,
15547 (void *)&cmd_config_per_port_rx_offload_result_offload,
15548 (void *)&cmd_config_per_port_rx_offload_result_on_off,
15553 /* Enable/Disable a per queue offloading */
15554 struct cmd_config_per_queue_rx_offload_result {
15555 cmdline_fixed_string_t port;
15557 cmdline_fixed_string_t rxq;
15559 cmdline_fixed_string_t rx_offload;
15560 cmdline_fixed_string_t offload;
15561 cmdline_fixed_string_t on_off;
15564 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_port =
15565 TOKEN_STRING_INITIALIZER
15566 (struct cmd_config_per_queue_rx_offload_result,
15568 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_port_id =
15569 TOKEN_NUM_INITIALIZER
15570 (struct cmd_config_per_queue_rx_offload_result,
15571 port_id, RTE_UINT16);
15572 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxq =
15573 TOKEN_STRING_INITIALIZER
15574 (struct cmd_config_per_queue_rx_offload_result,
15576 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_queue_id =
15577 TOKEN_NUM_INITIALIZER
15578 (struct cmd_config_per_queue_rx_offload_result,
15579 queue_id, RTE_UINT16);
15580 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxoffload =
15581 TOKEN_STRING_INITIALIZER
15582 (struct cmd_config_per_queue_rx_offload_result,
15583 rx_offload, "rx_offload");
15584 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_offload =
15585 TOKEN_STRING_INITIALIZER
15586 (struct cmd_config_per_queue_rx_offload_result,
15587 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#"
15588 "qinq_strip#outer_ipv4_cksum#macsec_strip#"
15589 "header_split#vlan_filter#vlan_extend#jumbo_frame#"
15590 "scatter#buffer_split#timestamp#security#keep_crc");
15591 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_on_off =
15592 TOKEN_STRING_INITIALIZER
15593 (struct cmd_config_per_queue_rx_offload_result,
15597 cmd_config_per_queue_rx_offload_parsed(void *parsed_result,
15598 __rte_unused struct cmdline *cl,
15599 __rte_unused void *data)
15601 struct cmd_config_per_queue_rx_offload_result *res = parsed_result;
15602 struct rte_eth_dev_info dev_info;
15603 portid_t port_id = res->port_id;
15604 uint16_t queue_id = res->queue_id;
15605 struct rte_port *port = &ports[port_id];
15606 uint64_t single_offload;
15609 if (port->port_status != RTE_PORT_STOPPED) {
15610 printf("Error: Can't config offload when Port %d "
15611 "is not stopped\n", port_id);
15615 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15619 if (queue_id >= dev_info.nb_rx_queues) {
15620 printf("Error: input queue_id should be 0 ... "
15621 "%d\n", dev_info.nb_rx_queues - 1);
15625 single_offload = search_rx_offload(res->offload);
15626 if (single_offload == 0) {
15627 printf("Unknown offload name: %s\n", res->offload);
15631 if (!strcmp(res->on_off, "on"))
15632 port->rx_conf[queue_id].offloads |= single_offload;
15634 port->rx_conf[queue_id].offloads &= ~single_offload;
15636 cmd_reconfig_device_queue(port_id, 1, 1);
15639 cmdline_parse_inst_t cmd_config_per_queue_rx_offload = {
15640 .f = cmd_config_per_queue_rx_offload_parsed,
15642 .help_str = "port <port_id> rxq <queue_id> rx_offload "
15643 "vlan_strip|ipv4_cksum|"
15644 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|"
15645 "macsec_strip|header_split|vlan_filter|vlan_extend|"
15646 "jumbo_frame|scatter|buffer_split|timestamp|security|"
15649 (void *)&cmd_config_per_queue_rx_offload_result_port,
15650 (void *)&cmd_config_per_queue_rx_offload_result_port_id,
15651 (void *)&cmd_config_per_queue_rx_offload_result_rxq,
15652 (void *)&cmd_config_per_queue_rx_offload_result_queue_id,
15653 (void *)&cmd_config_per_queue_rx_offload_result_rxoffload,
15654 (void *)&cmd_config_per_queue_rx_offload_result_offload,
15655 (void *)&cmd_config_per_queue_rx_offload_result_on_off,
15660 /* Get Tx offloads capabilities */
15661 struct cmd_tx_offload_get_capa_result {
15662 cmdline_fixed_string_t show;
15663 cmdline_fixed_string_t port;
15665 cmdline_fixed_string_t tx_offload;
15666 cmdline_fixed_string_t capabilities;
15669 cmdline_parse_token_string_t cmd_tx_offload_get_capa_show =
15670 TOKEN_STRING_INITIALIZER
15671 (struct cmd_tx_offload_get_capa_result,
15673 cmdline_parse_token_string_t cmd_tx_offload_get_capa_port =
15674 TOKEN_STRING_INITIALIZER
15675 (struct cmd_tx_offload_get_capa_result,
15677 cmdline_parse_token_num_t cmd_tx_offload_get_capa_port_id =
15678 TOKEN_NUM_INITIALIZER
15679 (struct cmd_tx_offload_get_capa_result,
15680 port_id, RTE_UINT16);
15681 cmdline_parse_token_string_t cmd_tx_offload_get_capa_tx_offload =
15682 TOKEN_STRING_INITIALIZER
15683 (struct cmd_tx_offload_get_capa_result,
15684 tx_offload, "tx_offload");
15685 cmdline_parse_token_string_t cmd_tx_offload_get_capa_capabilities =
15686 TOKEN_STRING_INITIALIZER
15687 (struct cmd_tx_offload_get_capa_result,
15688 capabilities, "capabilities");
15691 print_tx_offloads(uint64_t offloads)
15693 uint64_t single_offload;
15701 begin = __builtin_ctzll(offloads);
15702 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads);
15704 single_offload = 1ULL << begin;
15705 for (bit = begin; bit < end; bit++) {
15706 if (offloads & single_offload)
15708 rte_eth_dev_tx_offload_name(single_offload));
15709 single_offload <<= 1;
15714 cmd_tx_offload_get_capa_parsed(
15715 void *parsed_result,
15716 __rte_unused struct cmdline *cl,
15717 __rte_unused void *data)
15719 struct cmd_tx_offload_get_capa_result *res = parsed_result;
15720 struct rte_eth_dev_info dev_info;
15721 portid_t port_id = res->port_id;
15722 uint64_t queue_offloads;
15723 uint64_t port_offloads;
15726 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15730 queue_offloads = dev_info.tx_queue_offload_capa;
15731 port_offloads = dev_info.tx_offload_capa ^ queue_offloads;
15733 printf("Tx Offloading Capabilities of port %d :\n", port_id);
15734 printf(" Per Queue :");
15735 print_tx_offloads(queue_offloads);
15738 printf(" Per Port :");
15739 print_tx_offloads(port_offloads);
15743 cmdline_parse_inst_t cmd_tx_offload_get_capa = {
15744 .f = cmd_tx_offload_get_capa_parsed,
15746 .help_str = "show port <port_id> tx_offload capabilities",
15748 (void *)&cmd_tx_offload_get_capa_show,
15749 (void *)&cmd_tx_offload_get_capa_port,
15750 (void *)&cmd_tx_offload_get_capa_port_id,
15751 (void *)&cmd_tx_offload_get_capa_tx_offload,
15752 (void *)&cmd_tx_offload_get_capa_capabilities,
15757 /* Get Tx offloads configuration */
15758 struct cmd_tx_offload_get_configuration_result {
15759 cmdline_fixed_string_t show;
15760 cmdline_fixed_string_t port;
15762 cmdline_fixed_string_t tx_offload;
15763 cmdline_fixed_string_t configuration;
15766 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_show =
15767 TOKEN_STRING_INITIALIZER
15768 (struct cmd_tx_offload_get_configuration_result,
15770 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_port =
15771 TOKEN_STRING_INITIALIZER
15772 (struct cmd_tx_offload_get_configuration_result,
15774 cmdline_parse_token_num_t cmd_tx_offload_get_configuration_port_id =
15775 TOKEN_NUM_INITIALIZER
15776 (struct cmd_tx_offload_get_configuration_result,
15777 port_id, RTE_UINT16);
15778 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_tx_offload =
15779 TOKEN_STRING_INITIALIZER
15780 (struct cmd_tx_offload_get_configuration_result,
15781 tx_offload, "tx_offload");
15782 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_configuration =
15783 TOKEN_STRING_INITIALIZER
15784 (struct cmd_tx_offload_get_configuration_result,
15785 configuration, "configuration");
15788 cmd_tx_offload_get_configuration_parsed(
15789 void *parsed_result,
15790 __rte_unused struct cmdline *cl,
15791 __rte_unused void *data)
15793 struct cmd_tx_offload_get_configuration_result *res = parsed_result;
15794 struct rte_eth_dev_info dev_info;
15795 portid_t port_id = res->port_id;
15796 struct rte_port *port = &ports[port_id];
15797 uint64_t port_offloads;
15798 uint64_t queue_offloads;
15799 uint16_t nb_tx_queues;
15803 printf("Tx Offloading Configuration of port %d :\n", port_id);
15805 port_offloads = port->dev_conf.txmode.offloads;
15807 print_tx_offloads(port_offloads);
15810 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15814 nb_tx_queues = dev_info.nb_tx_queues;
15815 for (q = 0; q < nb_tx_queues; q++) {
15816 queue_offloads = port->tx_conf[q].offloads;
15817 printf(" Queue[%2d] :", q);
15818 print_tx_offloads(queue_offloads);
15824 cmdline_parse_inst_t cmd_tx_offload_get_configuration = {
15825 .f = cmd_tx_offload_get_configuration_parsed,
15827 .help_str = "show port <port_id> tx_offload configuration",
15829 (void *)&cmd_tx_offload_get_configuration_show,
15830 (void *)&cmd_tx_offload_get_configuration_port,
15831 (void *)&cmd_tx_offload_get_configuration_port_id,
15832 (void *)&cmd_tx_offload_get_configuration_tx_offload,
15833 (void *)&cmd_tx_offload_get_configuration_configuration,
15838 /* Enable/Disable a per port offloading */
15839 struct cmd_config_per_port_tx_offload_result {
15840 cmdline_fixed_string_t port;
15841 cmdline_fixed_string_t config;
15843 cmdline_fixed_string_t tx_offload;
15844 cmdline_fixed_string_t offload;
15845 cmdline_fixed_string_t on_off;
15848 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_port =
15849 TOKEN_STRING_INITIALIZER
15850 (struct cmd_config_per_port_tx_offload_result,
15852 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_config =
15853 TOKEN_STRING_INITIALIZER
15854 (struct cmd_config_per_port_tx_offload_result,
15856 cmdline_parse_token_num_t cmd_config_per_port_tx_offload_result_port_id =
15857 TOKEN_NUM_INITIALIZER
15858 (struct cmd_config_per_port_tx_offload_result,
15859 port_id, RTE_UINT16);
15860 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_tx_offload =
15861 TOKEN_STRING_INITIALIZER
15862 (struct cmd_config_per_port_tx_offload_result,
15863 tx_offload, "tx_offload");
15864 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_offload =
15865 TOKEN_STRING_INITIALIZER
15866 (struct cmd_config_per_port_tx_offload_result,
15867 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#"
15868 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#"
15869 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#"
15870 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#"
15871 "mt_lockfree#multi_segs#mbuf_fast_free#security#"
15872 "send_on_timestamp");
15873 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_on_off =
15874 TOKEN_STRING_INITIALIZER
15875 (struct cmd_config_per_port_tx_offload_result,
15879 search_tx_offload(const char *name)
15881 uint64_t single_offload;
15882 const char *single_name;
15886 single_offload = 1;
15887 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) {
15888 single_name = rte_eth_dev_tx_offload_name(single_offload);
15889 if (single_name == NULL)
15891 if (!strcasecmp(single_name, name)) {
15894 } else if (!strcasecmp(single_name, "UNKNOWN"))
15896 single_offload <<= 1;
15900 return single_offload;
15906 cmd_config_per_port_tx_offload_parsed(void *parsed_result,
15907 __rte_unused struct cmdline *cl,
15908 __rte_unused void *data)
15910 struct cmd_config_per_port_tx_offload_result *res = parsed_result;
15911 portid_t port_id = res->port_id;
15912 struct rte_eth_dev_info dev_info;
15913 struct rte_port *port = &ports[port_id];
15914 uint64_t single_offload;
15915 uint16_t nb_tx_queues;
15919 if (port->port_status != RTE_PORT_STOPPED) {
15920 printf("Error: Can't config offload when Port %d "
15921 "is not stopped\n", port_id);
15925 single_offload = search_tx_offload(res->offload);
15926 if (single_offload == 0) {
15927 printf("Unknown offload name: %s\n", res->offload);
15931 ret = eth_dev_info_get_print_err(port_id, &dev_info);
15935 nb_tx_queues = dev_info.nb_tx_queues;
15936 if (!strcmp(res->on_off, "on")) {
15937 port->dev_conf.txmode.offloads |= single_offload;
15938 for (q = 0; q < nb_tx_queues; q++)
15939 port->tx_conf[q].offloads |= single_offload;
15941 port->dev_conf.txmode.offloads &= ~single_offload;
15942 for (q = 0; q < nb_tx_queues; q++)
15943 port->tx_conf[q].offloads &= ~single_offload;
15946 cmd_reconfig_device_queue(port_id, 1, 1);
15949 cmdline_parse_inst_t cmd_config_per_port_tx_offload = {
15950 .f = cmd_config_per_port_tx_offload_parsed,
15952 .help_str = "port config <port_id> tx_offload "
15953 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|"
15954 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|"
15955 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|"
15956 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|"
15957 "mt_lockfree|multi_segs|mbuf_fast_free|security|"
15958 "send_on_timestamp on|off",
15960 (void *)&cmd_config_per_port_tx_offload_result_port,
15961 (void *)&cmd_config_per_port_tx_offload_result_config,
15962 (void *)&cmd_config_per_port_tx_offload_result_port_id,
15963 (void *)&cmd_config_per_port_tx_offload_result_tx_offload,
15964 (void *)&cmd_config_per_port_tx_offload_result_offload,
15965 (void *)&cmd_config_per_port_tx_offload_result_on_off,
15970 /* Enable/Disable a per queue offloading */
15971 struct cmd_config_per_queue_tx_offload_result {
15972 cmdline_fixed_string_t port;
15974 cmdline_fixed_string_t txq;
15976 cmdline_fixed_string_t tx_offload;
15977 cmdline_fixed_string_t offload;
15978 cmdline_fixed_string_t on_off;
15981 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_port =
15982 TOKEN_STRING_INITIALIZER
15983 (struct cmd_config_per_queue_tx_offload_result,
15985 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_port_id =
15986 TOKEN_NUM_INITIALIZER
15987 (struct cmd_config_per_queue_tx_offload_result,
15988 port_id, RTE_UINT16);
15989 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txq =
15990 TOKEN_STRING_INITIALIZER
15991 (struct cmd_config_per_queue_tx_offload_result,
15993 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_queue_id =
15994 TOKEN_NUM_INITIALIZER
15995 (struct cmd_config_per_queue_tx_offload_result,
15996 queue_id, RTE_UINT16);
15997 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txoffload =
15998 TOKEN_STRING_INITIALIZER
15999 (struct cmd_config_per_queue_tx_offload_result,
16000 tx_offload, "tx_offload");
16001 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_offload =
16002 TOKEN_STRING_INITIALIZER
16003 (struct cmd_config_per_queue_tx_offload_result,
16004 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#"
16005 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#"
16006 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#"
16007 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#"
16008 "mt_lockfree#multi_segs#mbuf_fast_free#security");
16009 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_on_off =
16010 TOKEN_STRING_INITIALIZER
16011 (struct cmd_config_per_queue_tx_offload_result,
16015 cmd_config_per_queue_tx_offload_parsed(void *parsed_result,
16016 __rte_unused struct cmdline *cl,
16017 __rte_unused void *data)
16019 struct cmd_config_per_queue_tx_offload_result *res = parsed_result;
16020 struct rte_eth_dev_info dev_info;
16021 portid_t port_id = res->port_id;
16022 uint16_t queue_id = res->queue_id;
16023 struct rte_port *port = &ports[port_id];
16024 uint64_t single_offload;
16027 if (port->port_status != RTE_PORT_STOPPED) {
16028 printf("Error: Can't config offload when Port %d "
16029 "is not stopped\n", port_id);
16033 ret = eth_dev_info_get_print_err(port_id, &dev_info);
16037 if (queue_id >= dev_info.nb_tx_queues) {
16038 printf("Error: input queue_id should be 0 ... "
16039 "%d\n", dev_info.nb_tx_queues - 1);
16043 single_offload = search_tx_offload(res->offload);
16044 if (single_offload == 0) {
16045 printf("Unknown offload name: %s\n", res->offload);
16049 if (!strcmp(res->on_off, "on"))
16050 port->tx_conf[queue_id].offloads |= single_offload;
16052 port->tx_conf[queue_id].offloads &= ~single_offload;
16054 cmd_reconfig_device_queue(port_id, 1, 1);
16057 cmdline_parse_inst_t cmd_config_per_queue_tx_offload = {
16058 .f = cmd_config_per_queue_tx_offload_parsed,
16060 .help_str = "port <port_id> txq <queue_id> tx_offload "
16061 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|"
16062 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|"
16063 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|"
16064 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|"
16065 "mt_lockfree|multi_segs|mbuf_fast_free|security "
16068 (void *)&cmd_config_per_queue_tx_offload_result_port,
16069 (void *)&cmd_config_per_queue_tx_offload_result_port_id,
16070 (void *)&cmd_config_per_queue_tx_offload_result_txq,
16071 (void *)&cmd_config_per_queue_tx_offload_result_queue_id,
16072 (void *)&cmd_config_per_queue_tx_offload_result_txoffload,
16073 (void *)&cmd_config_per_queue_tx_offload_result_offload,
16074 (void *)&cmd_config_per_queue_tx_offload_result_on_off,
16079 /* *** configure tx_metadata for specific port *** */
16080 struct cmd_config_tx_metadata_specific_result {
16081 cmdline_fixed_string_t port;
16082 cmdline_fixed_string_t keyword;
16084 cmdline_fixed_string_t item;
16089 cmd_config_tx_metadata_specific_parsed(void *parsed_result,
16090 __rte_unused struct cmdline *cl,
16091 __rte_unused void *data)
16093 struct cmd_config_tx_metadata_specific_result *res = parsed_result;
16095 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
16097 ports[res->port_id].tx_metadata = res->value;
16098 /* Add/remove callback to insert valid metadata in every Tx packet. */
16099 if (ports[res->port_id].tx_metadata)
16100 add_tx_md_callback(res->port_id);
16102 remove_tx_md_callback(res->port_id);
16103 rte_flow_dynf_metadata_register();
16106 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_port =
16107 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16109 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_keyword =
16110 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16111 keyword, "config");
16112 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_id =
16113 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16114 port_id, RTE_UINT16);
16115 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_item =
16116 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16117 item, "tx_metadata");
16118 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_value =
16119 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result,
16120 value, RTE_UINT32);
16122 cmdline_parse_inst_t cmd_config_tx_metadata_specific = {
16123 .f = cmd_config_tx_metadata_specific_parsed,
16125 .help_str = "port config <port_id> tx_metadata <value>",
16127 (void *)&cmd_config_tx_metadata_specific_port,
16128 (void *)&cmd_config_tx_metadata_specific_keyword,
16129 (void *)&cmd_config_tx_metadata_specific_id,
16130 (void *)&cmd_config_tx_metadata_specific_item,
16131 (void *)&cmd_config_tx_metadata_specific_value,
16136 /* *** set dynf *** */
16137 struct cmd_config_tx_dynf_specific_result {
16138 cmdline_fixed_string_t port;
16139 cmdline_fixed_string_t keyword;
16141 cmdline_fixed_string_t item;
16142 cmdline_fixed_string_t name;
16143 cmdline_fixed_string_t value;
16147 cmd_config_dynf_specific_parsed(void *parsed_result,
16148 __rte_unused struct cmdline *cl,
16149 __rte_unused void *data)
16151 struct cmd_config_tx_dynf_specific_result *res = parsed_result;
16152 struct rte_mbuf_dynflag desc_flag;
16154 uint64_t old_port_flags;
16156 if (port_id_is_invalid(res->port_id, ENABLED_WARN))
16158 flag = rte_mbuf_dynflag_lookup(res->name, NULL);
16160 if (strlcpy(desc_flag.name, res->name,
16161 RTE_MBUF_DYN_NAMESIZE) >= RTE_MBUF_DYN_NAMESIZE) {
16162 printf("Flag name too long\n");
16165 desc_flag.flags = 0;
16166 flag = rte_mbuf_dynflag_register(&desc_flag);
16168 printf("Can't register flag\n");
16171 strcpy(dynf_names[flag], desc_flag.name);
16173 old_port_flags = ports[res->port_id].mbuf_dynf;
16174 if (!strcmp(res->value, "set")) {
16175 ports[res->port_id].mbuf_dynf |= 1UL << flag;
16176 if (old_port_flags == 0)
16177 add_tx_dynf_callback(res->port_id);
16179 ports[res->port_id].mbuf_dynf &= ~(1UL << flag);
16180 if (ports[res->port_id].mbuf_dynf == 0)
16181 remove_tx_dynf_callback(res->port_id);
16185 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_port =
16186 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16188 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_keyword =
16189 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16190 keyword, "config");
16191 cmdline_parse_token_num_t cmd_config_tx_dynf_specific_port_id =
16192 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16193 port_id, RTE_UINT16);
16194 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_item =
16195 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16197 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_name =
16198 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16200 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_value =
16201 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result,
16202 value, "set#clear");
16204 cmdline_parse_inst_t cmd_config_tx_dynf_specific = {
16205 .f = cmd_config_dynf_specific_parsed,
16207 .help_str = "port config <port id> dynf <name> set|clear",
16209 (void *)&cmd_config_tx_dynf_specific_port,
16210 (void *)&cmd_config_tx_dynf_specific_keyword,
16211 (void *)&cmd_config_tx_dynf_specific_port_id,
16212 (void *)&cmd_config_tx_dynf_specific_item,
16213 (void *)&cmd_config_tx_dynf_specific_name,
16214 (void *)&cmd_config_tx_dynf_specific_value,
16219 /* *** display tx_metadata per port configuration *** */
16220 struct cmd_show_tx_metadata_result {
16221 cmdline_fixed_string_t cmd_show;
16222 cmdline_fixed_string_t cmd_port;
16223 cmdline_fixed_string_t cmd_keyword;
16228 cmd_show_tx_metadata_parsed(void *parsed_result,
16229 __rte_unused struct cmdline *cl,
16230 __rte_unused void *data)
16232 struct cmd_show_tx_metadata_result *res = parsed_result;
16234 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16235 printf("invalid port id %u\n", res->cmd_pid);
16238 if (!strcmp(res->cmd_keyword, "tx_metadata")) {
16239 printf("Port %u tx_metadata: %u\n", res->cmd_pid,
16240 ports[res->cmd_pid].tx_metadata);
16244 cmdline_parse_token_string_t cmd_show_tx_metadata_show =
16245 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16247 cmdline_parse_token_string_t cmd_show_tx_metadata_port =
16248 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16250 cmdline_parse_token_num_t cmd_show_tx_metadata_pid =
16251 TOKEN_NUM_INITIALIZER(struct cmd_show_tx_metadata_result,
16252 cmd_pid, RTE_UINT16);
16253 cmdline_parse_token_string_t cmd_show_tx_metadata_keyword =
16254 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result,
16255 cmd_keyword, "tx_metadata");
16257 cmdline_parse_inst_t cmd_show_tx_metadata = {
16258 .f = cmd_show_tx_metadata_parsed,
16260 .help_str = "show port <port_id> tx_metadata",
16262 (void *)&cmd_show_tx_metadata_show,
16263 (void *)&cmd_show_tx_metadata_port,
16264 (void *)&cmd_show_tx_metadata_pid,
16265 (void *)&cmd_show_tx_metadata_keyword,
16270 /* *** show fec capability per port configuration *** */
16271 struct cmd_show_fec_capability_result {
16272 cmdline_fixed_string_t cmd_show;
16273 cmdline_fixed_string_t cmd_port;
16274 cmdline_fixed_string_t cmd_fec;
16275 cmdline_fixed_string_t cmd_keyword;
16280 cmd_show_fec_capability_parsed(void *parsed_result,
16281 __rte_unused struct cmdline *cl,
16282 __rte_unused void *data)
16284 struct cmd_show_fec_capability_result *res = parsed_result;
16285 struct rte_eth_fec_capa *speed_fec_capa;
16289 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16290 printf("Invalid port id %u\n", res->cmd_pid);
16294 ret = rte_eth_fec_get_capability(res->cmd_pid, NULL, 0);
16295 if (ret == -ENOTSUP) {
16296 printf("Function not implemented\n");
16298 } else if (ret < 0) {
16299 printf("Get FEC capability failed: %d\n", ret);
16303 num = (unsigned int)ret;
16304 speed_fec_capa = calloc(num, sizeof(*speed_fec_capa));
16305 if (speed_fec_capa == NULL) {
16306 printf("Failed to alloc FEC capability buffer\n");
16310 ret = rte_eth_fec_get_capability(res->cmd_pid, speed_fec_capa, num);
16312 printf("Error getting FEC capability: %d\n", ret);
16316 show_fec_capability(num, speed_fec_capa);
16318 free(speed_fec_capa);
16321 cmdline_parse_token_string_t cmd_show_fec_capability_show =
16322 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16324 cmdline_parse_token_string_t cmd_show_fec_capability_port =
16325 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16327 cmdline_parse_token_num_t cmd_show_fec_capability_pid =
16328 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_capability_result,
16329 cmd_pid, RTE_UINT16);
16330 cmdline_parse_token_string_t cmd_show_fec_capability_fec =
16331 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16333 cmdline_parse_token_string_t cmd_show_fec_capability_keyword =
16334 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result,
16335 cmd_keyword, "capabilities");
16337 cmdline_parse_inst_t cmd_show_capability = {
16338 .f = cmd_show_fec_capability_parsed,
16340 .help_str = "show port <port_id> fec capabilities",
16342 (void *)&cmd_show_fec_capability_show,
16343 (void *)&cmd_show_fec_capability_port,
16344 (void *)&cmd_show_fec_capability_pid,
16345 (void *)&cmd_show_fec_capability_fec,
16346 (void *)&cmd_show_fec_capability_keyword,
16351 /* *** show fec mode per port configuration *** */
16352 struct cmd_show_fec_metadata_result {
16353 cmdline_fixed_string_t cmd_show;
16354 cmdline_fixed_string_t cmd_port;
16355 cmdline_fixed_string_t cmd_keyword;
16360 cmd_show_fec_mode_parsed(void *parsed_result,
16361 __rte_unused struct cmdline *cl,
16362 __rte_unused void *data)
16364 #define FEC_NAME_SIZE 16
16365 struct cmd_show_fec_metadata_result *res = parsed_result;
16367 char buf[FEC_NAME_SIZE];
16370 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16371 printf("Invalid port id %u\n", res->cmd_pid);
16374 ret = rte_eth_fec_get(res->cmd_pid, &mode);
16375 if (ret == -ENOTSUP) {
16376 printf("Function not implemented\n");
16378 } else if (ret < 0) {
16379 printf("Get FEC mode failed\n");
16384 case RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC):
16385 strlcpy(buf, "off", sizeof(buf));
16387 case RTE_ETH_FEC_MODE_CAPA_MASK(AUTO):
16388 strlcpy(buf, "auto", sizeof(buf));
16390 case RTE_ETH_FEC_MODE_CAPA_MASK(BASER):
16391 strlcpy(buf, "baser", sizeof(buf));
16393 case RTE_ETH_FEC_MODE_CAPA_MASK(RS):
16394 strlcpy(buf, "rs", sizeof(buf));
16400 printf("%s\n", buf);
16403 cmdline_parse_token_string_t cmd_show_fec_mode_show =
16404 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16406 cmdline_parse_token_string_t cmd_show_fec_mode_port =
16407 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16409 cmdline_parse_token_num_t cmd_show_fec_mode_pid =
16410 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_metadata_result,
16411 cmd_pid, RTE_UINT16);
16412 cmdline_parse_token_string_t cmd_show_fec_mode_keyword =
16413 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result,
16414 cmd_keyword, "fec_mode");
16416 cmdline_parse_inst_t cmd_show_fec_mode = {
16417 .f = cmd_show_fec_mode_parsed,
16419 .help_str = "show port <port_id> fec_mode",
16421 (void *)&cmd_show_fec_mode_show,
16422 (void *)&cmd_show_fec_mode_port,
16423 (void *)&cmd_show_fec_mode_pid,
16424 (void *)&cmd_show_fec_mode_keyword,
16429 /* *** set fec mode per port configuration *** */
16430 struct cmd_set_port_fec_mode {
16431 cmdline_fixed_string_t set;
16432 cmdline_fixed_string_t port;
16434 cmdline_fixed_string_t fec_mode;
16435 cmdline_fixed_string_t fec_value;
16438 /* Common CLI fields for set fec mode */
16439 cmdline_parse_token_string_t cmd_set_port_fec_mode_set =
16440 TOKEN_STRING_INITIALIZER
16441 (struct cmd_set_port_fec_mode,
16443 cmdline_parse_token_string_t cmd_set_port_fec_mode_port =
16444 TOKEN_STRING_INITIALIZER
16445 (struct cmd_set_port_fec_mode,
16447 cmdline_parse_token_num_t cmd_set_port_fec_mode_port_id =
16448 TOKEN_NUM_INITIALIZER
16449 (struct cmd_set_port_fec_mode,
16450 port_id, RTE_UINT16);
16451 cmdline_parse_token_string_t cmd_set_port_fec_mode_str =
16452 TOKEN_STRING_INITIALIZER
16453 (struct cmd_set_port_fec_mode,
16454 fec_mode, "fec_mode");
16455 cmdline_parse_token_string_t cmd_set_port_fec_mode_value =
16456 TOKEN_STRING_INITIALIZER
16457 (struct cmd_set_port_fec_mode,
16461 cmd_set_port_fec_mode_parsed(
16462 void *parsed_result,
16463 __rte_unused struct cmdline *cl,
16464 __rte_unused void *data)
16466 struct cmd_set_port_fec_mode *res = parsed_result;
16467 uint16_t port_id = res->port_id;
16471 ret = parse_fec_mode(res->fec_value, &mode);
16473 printf("Unknown fec mode: %s for Port %d\n", res->fec_value,
16478 ret = rte_eth_fec_set(port_id, mode);
16479 if (ret == -ENOTSUP) {
16480 printf("Function not implemented\n");
16482 } else if (ret < 0) {
16483 printf("Set FEC mode failed\n");
16488 cmdline_parse_inst_t cmd_set_fec_mode = {
16489 .f = cmd_set_port_fec_mode_parsed,
16491 .help_str = "set port <port_id> fec_mode auto|off|rs|baser",
16493 (void *)&cmd_set_port_fec_mode_set,
16494 (void *)&cmd_set_port_fec_mode_port,
16495 (void *)&cmd_set_port_fec_mode_port_id,
16496 (void *)&cmd_set_port_fec_mode_str,
16497 (void *)&cmd_set_port_fec_mode_value,
16502 /* show port supported ptypes */
16504 /* Common result structure for show port ptypes */
16505 struct cmd_show_port_supported_ptypes_result {
16506 cmdline_fixed_string_t show;
16507 cmdline_fixed_string_t port;
16509 cmdline_fixed_string_t ptypes;
16512 /* Common CLI fields for show port ptypes */
16513 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_show =
16514 TOKEN_STRING_INITIALIZER
16515 (struct cmd_show_port_supported_ptypes_result,
16517 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_port =
16518 TOKEN_STRING_INITIALIZER
16519 (struct cmd_show_port_supported_ptypes_result,
16521 cmdline_parse_token_num_t cmd_show_port_supported_ptypes_port_id =
16522 TOKEN_NUM_INITIALIZER
16523 (struct cmd_show_port_supported_ptypes_result,
16524 port_id, RTE_UINT16);
16525 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_ptypes =
16526 TOKEN_STRING_INITIALIZER
16527 (struct cmd_show_port_supported_ptypes_result,
16531 cmd_show_port_supported_ptypes_parsed(
16532 void *parsed_result,
16533 __rte_unused struct cmdline *cl,
16534 __rte_unused void *data)
16536 #define RSVD_PTYPE_MASK 0xf0000000
16537 #define MAX_PTYPES_PER_LAYER 16
16538 #define LTYPE_NAMESIZE 32
16539 #define PTYPE_NAMESIZE 256
16540 struct cmd_show_port_supported_ptypes_result *res = parsed_result;
16541 char buf[PTYPE_NAMESIZE], ltype[LTYPE_NAMESIZE];
16542 uint32_t ptype_mask = RTE_PTYPE_L2_MASK;
16543 uint32_t ptypes[MAX_PTYPES_PER_LAYER];
16544 uint16_t port_id = res->port_id;
16547 ret = rte_eth_dev_get_supported_ptypes(port_id, ptype_mask, NULL, 0);
16551 while (ptype_mask != RSVD_PTYPE_MASK) {
16553 switch (ptype_mask) {
16554 case RTE_PTYPE_L2_MASK:
16555 strlcpy(ltype, "L2", sizeof(ltype));
16557 case RTE_PTYPE_L3_MASK:
16558 strlcpy(ltype, "L3", sizeof(ltype));
16560 case RTE_PTYPE_L4_MASK:
16561 strlcpy(ltype, "L4", sizeof(ltype));
16563 case RTE_PTYPE_TUNNEL_MASK:
16564 strlcpy(ltype, "Tunnel", sizeof(ltype));
16566 case RTE_PTYPE_INNER_L2_MASK:
16567 strlcpy(ltype, "Inner L2", sizeof(ltype));
16569 case RTE_PTYPE_INNER_L3_MASK:
16570 strlcpy(ltype, "Inner L3", sizeof(ltype));
16572 case RTE_PTYPE_INNER_L4_MASK:
16573 strlcpy(ltype, "Inner L4", sizeof(ltype));
16579 ret = rte_eth_dev_get_supported_ptypes(res->port_id,
16580 ptype_mask, ptypes,
16581 MAX_PTYPES_PER_LAYER);
16584 printf("Supported %s ptypes:\n", ltype);
16586 printf("%s ptypes unsupported\n", ltype);
16588 for (i = 0; i < ret; ++i) {
16589 rte_get_ptype_name(ptypes[i], buf, sizeof(buf));
16590 printf("%s\n", buf);
16597 cmdline_parse_inst_t cmd_show_port_supported_ptypes = {
16598 .f = cmd_show_port_supported_ptypes_parsed,
16600 .help_str = "show port <port_id> ptypes",
16602 (void *)&cmd_show_port_supported_ptypes_show,
16603 (void *)&cmd_show_port_supported_ptypes_port,
16604 (void *)&cmd_show_port_supported_ptypes_port_id,
16605 (void *)&cmd_show_port_supported_ptypes_ptypes,
16610 /* *** display rx/tx descriptor status *** */
16611 struct cmd_show_rx_tx_desc_status_result {
16612 cmdline_fixed_string_t cmd_show;
16613 cmdline_fixed_string_t cmd_port;
16614 cmdline_fixed_string_t cmd_keyword;
16615 cmdline_fixed_string_t cmd_desc;
16616 cmdline_fixed_string_t cmd_status;
16623 cmd_show_rx_tx_desc_status_parsed(void *parsed_result,
16624 __rte_unused struct cmdline *cl,
16625 __rte_unused void *data)
16627 struct cmd_show_rx_tx_desc_status_result *res = parsed_result;
16630 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16631 printf("invalid port id %u\n", res->cmd_pid);
16635 if (!strcmp(res->cmd_keyword, "rxq")) {
16636 rc = rte_eth_rx_descriptor_status(res->cmd_pid, res->cmd_qid,
16639 printf("Invalid queueid = %d\n", res->cmd_qid);
16642 if (rc == RTE_ETH_RX_DESC_AVAIL)
16643 printf("Desc status = AVAILABLE\n");
16644 else if (rc == RTE_ETH_RX_DESC_DONE)
16645 printf("Desc status = DONE\n");
16647 printf("Desc status = UNAVAILABLE\n");
16648 } else if (!strcmp(res->cmd_keyword, "txq")) {
16649 rc = rte_eth_tx_descriptor_status(res->cmd_pid, res->cmd_qid,
16652 printf("Invalid queueid = %d\n", res->cmd_qid);
16655 if (rc == RTE_ETH_TX_DESC_FULL)
16656 printf("Desc status = FULL\n");
16657 else if (rc == RTE_ETH_TX_DESC_DONE)
16658 printf("Desc status = DONE\n");
16660 printf("Desc status = UNAVAILABLE\n");
16664 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_show =
16665 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16667 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_port =
16668 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16670 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_pid =
16671 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16672 cmd_pid, RTE_UINT16);
16673 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_keyword =
16674 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16675 cmd_keyword, "rxq#txq");
16676 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_qid =
16677 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16678 cmd_qid, RTE_UINT16);
16679 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_desc =
16680 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16682 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_did =
16683 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16684 cmd_did, RTE_UINT16);
16685 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_status =
16686 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result,
16687 cmd_status, "status");
16688 cmdline_parse_inst_t cmd_show_rx_tx_desc_status = {
16689 .f = cmd_show_rx_tx_desc_status_parsed,
16691 .help_str = "show port <port_id> rxq|txq <queue_id> desc <desc_id> "
16694 (void *)&cmd_show_rx_tx_desc_status_show,
16695 (void *)&cmd_show_rx_tx_desc_status_port,
16696 (void *)&cmd_show_rx_tx_desc_status_pid,
16697 (void *)&cmd_show_rx_tx_desc_status_keyword,
16698 (void *)&cmd_show_rx_tx_desc_status_qid,
16699 (void *)&cmd_show_rx_tx_desc_status_desc,
16700 (void *)&cmd_show_rx_tx_desc_status_did,
16701 (void *)&cmd_show_rx_tx_desc_status_status,
16706 /* *** display rx queue desc used count *** */
16707 struct cmd_show_rx_queue_desc_used_count_result {
16708 cmdline_fixed_string_t cmd_show;
16709 cmdline_fixed_string_t cmd_port;
16710 cmdline_fixed_string_t cmd_rxq;
16711 cmdline_fixed_string_t cmd_desc;
16712 cmdline_fixed_string_t cmd_used;
16713 cmdline_fixed_string_t cmd_count;
16719 cmd_show_rx_queue_desc_used_count_parsed(void *parsed_result,
16720 __rte_unused struct cmdline *cl,
16721 __rte_unused void *data)
16723 struct cmd_show_rx_queue_desc_used_count_result *res = parsed_result;
16726 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) {
16727 printf("invalid port id %u\n", res->cmd_pid);
16731 rc = rte_eth_rx_queue_count(res->cmd_pid, res->cmd_qid);
16733 printf("Invalid queueid = %d\n", res->cmd_qid);
16736 printf("Used desc count = %d\n", rc);
16739 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_show =
16740 TOKEN_STRING_INITIALIZER
16741 (struct cmd_show_rx_queue_desc_used_count_result,
16743 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_port =
16744 TOKEN_STRING_INITIALIZER
16745 (struct cmd_show_rx_queue_desc_used_count_result,
16747 cmdline_parse_token_num_t cmd_show_rx_queue_desc_used_count_pid =
16748 TOKEN_NUM_INITIALIZER
16749 (struct cmd_show_rx_queue_desc_used_count_result,
16750 cmd_pid, RTE_UINT16);
16751 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_rxq =
16752 TOKEN_STRING_INITIALIZER
16753 (struct cmd_show_rx_queue_desc_used_count_result,
16755 cmdline_parse_token_num_t cmd_show_rx_queue_desc_used_count_qid =
16756 TOKEN_NUM_INITIALIZER
16757 (struct cmd_show_rx_queue_desc_used_count_result,
16758 cmd_qid, RTE_UINT16);
16759 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_desc =
16760 TOKEN_STRING_INITIALIZER
16761 (struct cmd_show_rx_queue_desc_used_count_result,
16762 cmd_count, "desc");
16763 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_used =
16764 TOKEN_STRING_INITIALIZER
16765 (struct cmd_show_rx_queue_desc_used_count_result,
16766 cmd_count, "used");
16767 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_count =
16768 TOKEN_STRING_INITIALIZER
16769 (struct cmd_show_rx_queue_desc_used_count_result,
16770 cmd_count, "count");
16771 cmdline_parse_inst_t cmd_show_rx_queue_desc_used_count = {
16772 .f = cmd_show_rx_queue_desc_used_count_parsed,
16774 .help_str = "show port <port_id> rxq <queue_id> desc used count",
16776 (void *)&cmd_show_rx_queue_desc_used_count_show,
16777 (void *)&cmd_show_rx_queue_desc_used_count_port,
16778 (void *)&cmd_show_rx_queue_desc_used_count_pid,
16779 (void *)&cmd_show_rx_queue_desc_used_count_rxq,
16780 (void *)&cmd_show_rx_queue_desc_used_count_qid,
16781 (void *)&cmd_show_rx_queue_desc_used_count_desc,
16782 (void *)&cmd_show_rx_queue_desc_used_count_used,
16783 (void *)&cmd_show_rx_queue_desc_used_count_count,
16788 /* Common result structure for set port ptypes */
16789 struct cmd_set_port_ptypes_result {
16790 cmdline_fixed_string_t set;
16791 cmdline_fixed_string_t port;
16793 cmdline_fixed_string_t ptype_mask;
16797 /* Common CLI fields for set port ptypes */
16798 cmdline_parse_token_string_t cmd_set_port_ptypes_set =
16799 TOKEN_STRING_INITIALIZER
16800 (struct cmd_set_port_ptypes_result,
16802 cmdline_parse_token_string_t cmd_set_port_ptypes_port =
16803 TOKEN_STRING_INITIALIZER
16804 (struct cmd_set_port_ptypes_result,
16806 cmdline_parse_token_num_t cmd_set_port_ptypes_port_id =
16807 TOKEN_NUM_INITIALIZER
16808 (struct cmd_set_port_ptypes_result,
16809 port_id, RTE_UINT16);
16810 cmdline_parse_token_string_t cmd_set_port_ptypes_mask_str =
16811 TOKEN_STRING_INITIALIZER
16812 (struct cmd_set_port_ptypes_result,
16813 ptype_mask, "ptype_mask");
16814 cmdline_parse_token_num_t cmd_set_port_ptypes_mask_u32 =
16815 TOKEN_NUM_INITIALIZER
16816 (struct cmd_set_port_ptypes_result,
16820 cmd_set_port_ptypes_parsed(
16821 void *parsed_result,
16822 __rte_unused struct cmdline *cl,
16823 __rte_unused void *data)
16825 struct cmd_set_port_ptypes_result *res = parsed_result;
16826 #define PTYPE_NAMESIZE 256
16827 char ptype_name[PTYPE_NAMESIZE];
16828 uint16_t port_id = res->port_id;
16829 uint32_t ptype_mask = res->mask;
16832 ret = rte_eth_dev_get_supported_ptypes(port_id, RTE_PTYPE_ALL_MASK,
16835 printf("Port %d doesn't support any ptypes.\n", port_id);
16839 uint32_t ptypes[ret];
16841 ret = rte_eth_dev_set_ptypes(port_id, ptype_mask, ptypes, ret);
16843 printf("Unable to set requested ptypes for Port %d\n", port_id);
16847 printf("Successfully set following ptypes for Port %d\n", port_id);
16848 for (i = 0; i < ret && ptypes[i] != RTE_PTYPE_UNKNOWN; i++) {
16849 rte_get_ptype_name(ptypes[i], ptype_name, sizeof(ptype_name));
16850 printf("%s\n", ptype_name);
16853 clear_ptypes = false;
16856 cmdline_parse_inst_t cmd_set_port_ptypes = {
16857 .f = cmd_set_port_ptypes_parsed,
16859 .help_str = "set port <port_id> ptype_mask <mask>",
16861 (void *)&cmd_set_port_ptypes_set,
16862 (void *)&cmd_set_port_ptypes_port,
16863 (void *)&cmd_set_port_ptypes_port_id,
16864 (void *)&cmd_set_port_ptypes_mask_str,
16865 (void *)&cmd_set_port_ptypes_mask_u32,
16870 /* *** display mac addresses added to a port *** */
16871 struct cmd_showport_macs_result {
16872 cmdline_fixed_string_t cmd_show;
16873 cmdline_fixed_string_t cmd_port;
16874 cmdline_fixed_string_t cmd_keyword;
16879 cmd_showport_macs_parsed(void *parsed_result,
16880 __rte_unused struct cmdline *cl,
16881 __rte_unused void *data)
16883 struct cmd_showport_macs_result *res = parsed_result;
16885 if (port_id_is_invalid(res->cmd_pid, ENABLED_WARN))
16888 if (!strcmp(res->cmd_keyword, "macs"))
16889 show_macs(res->cmd_pid);
16890 else if (!strcmp(res->cmd_keyword, "mcast_macs"))
16891 show_mcast_macs(res->cmd_pid);
16894 cmdline_parse_token_string_t cmd_showport_macs_show =
16895 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16897 cmdline_parse_token_string_t cmd_showport_macs_port =
16898 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16900 cmdline_parse_token_num_t cmd_showport_macs_pid =
16901 TOKEN_NUM_INITIALIZER(struct cmd_showport_macs_result,
16902 cmd_pid, RTE_UINT16);
16903 cmdline_parse_token_string_t cmd_showport_macs_keyword =
16904 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result,
16905 cmd_keyword, "macs#mcast_macs");
16907 cmdline_parse_inst_t cmd_showport_macs = {
16908 .f = cmd_showport_macs_parsed,
16910 .help_str = "show port <port_id> macs|mcast_macs",
16912 (void *)&cmd_showport_macs_show,
16913 (void *)&cmd_showport_macs_port,
16914 (void *)&cmd_showport_macs_pid,
16915 (void *)&cmd_showport_macs_keyword,
16920 /* ******************************************************************************** */
16922 /* list of instructions */
16923 cmdline_parse_ctx_t main_ctx[] = {
16924 (cmdline_parse_inst_t *)&cmd_help_brief,
16925 (cmdline_parse_inst_t *)&cmd_help_long,
16926 (cmdline_parse_inst_t *)&cmd_quit,
16927 (cmdline_parse_inst_t *)&cmd_load_from_file,
16928 (cmdline_parse_inst_t *)&cmd_showport,
16929 (cmdline_parse_inst_t *)&cmd_showqueue,
16930 (cmdline_parse_inst_t *)&cmd_showeeprom,
16931 (cmdline_parse_inst_t *)&cmd_showportall,
16932 (cmdline_parse_inst_t *)&cmd_showdevice,
16933 (cmdline_parse_inst_t *)&cmd_showcfg,
16934 (cmdline_parse_inst_t *)&cmd_showfwdall,
16935 (cmdline_parse_inst_t *)&cmd_start,
16936 (cmdline_parse_inst_t *)&cmd_start_tx_first,
16937 (cmdline_parse_inst_t *)&cmd_start_tx_first_n,
16938 (cmdline_parse_inst_t *)&cmd_set_link_up,
16939 (cmdline_parse_inst_t *)&cmd_set_link_down,
16940 (cmdline_parse_inst_t *)&cmd_reset,
16941 (cmdline_parse_inst_t *)&cmd_set_numbers,
16942 (cmdline_parse_inst_t *)&cmd_set_log,
16943 (cmdline_parse_inst_t *)&cmd_set_rxoffs,
16944 (cmdline_parse_inst_t *)&cmd_set_rxpkts,
16945 (cmdline_parse_inst_t *)&cmd_set_txpkts,
16946 (cmdline_parse_inst_t *)&cmd_set_txsplit,
16947 (cmdline_parse_inst_t *)&cmd_set_txtimes,
16948 (cmdline_parse_inst_t *)&cmd_set_fwd_list,
16949 (cmdline_parse_inst_t *)&cmd_set_fwd_mask,
16950 (cmdline_parse_inst_t *)&cmd_set_fwd_mode,
16951 (cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode,
16952 (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry,
16953 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one,
16954 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all,
16955 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one,
16956 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all,
16957 (cmdline_parse_inst_t *)&cmd_set_flush_rx,
16958 (cmdline_parse_inst_t *)&cmd_set_link_check,
16959 (cmdline_parse_inst_t *)&cmd_set_bypass_mode,
16960 (cmdline_parse_inst_t *)&cmd_set_bypass_event,
16961 (cmdline_parse_inst_t *)&cmd_set_bypass_timeout,
16962 (cmdline_parse_inst_t *)&cmd_show_bypass_config,
16963 #ifdef RTE_NET_BOND
16964 (cmdline_parse_inst_t *) &cmd_set_bonding_mode,
16965 (cmdline_parse_inst_t *) &cmd_show_bonding_config,
16966 (cmdline_parse_inst_t *) &cmd_set_bonding_primary,
16967 (cmdline_parse_inst_t *) &cmd_add_bonding_slave,
16968 (cmdline_parse_inst_t *) &cmd_remove_bonding_slave,
16969 (cmdline_parse_inst_t *) &cmd_create_bonded_device,
16970 (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr,
16971 (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy,
16972 (cmdline_parse_inst_t *) &cmd_set_bond_mon_period,
16973 (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues,
16974 (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy,
16976 (cmdline_parse_inst_t *)&cmd_vlan_offload,
16977 (cmdline_parse_inst_t *)&cmd_vlan_tpid,
16978 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all,
16979 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter,
16980 (cmdline_parse_inst_t *)&cmd_tx_vlan_set,
16981 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq,
16982 (cmdline_parse_inst_t *)&cmd_tx_vlan_reset,
16983 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid,
16984 (cmdline_parse_inst_t *)&cmd_csum_set,
16985 (cmdline_parse_inst_t *)&cmd_csum_show,
16986 (cmdline_parse_inst_t *)&cmd_csum_tunnel,
16987 (cmdline_parse_inst_t *)&cmd_tso_set,
16988 (cmdline_parse_inst_t *)&cmd_tso_show,
16989 (cmdline_parse_inst_t *)&cmd_tunnel_tso_set,
16990 (cmdline_parse_inst_t *)&cmd_tunnel_tso_show,
16991 (cmdline_parse_inst_t *)&cmd_gro_enable,
16992 (cmdline_parse_inst_t *)&cmd_gro_flush,
16993 (cmdline_parse_inst_t *)&cmd_gro_show,
16994 (cmdline_parse_inst_t *)&cmd_gso_enable,
16995 (cmdline_parse_inst_t *)&cmd_gso_size,
16996 (cmdline_parse_inst_t *)&cmd_gso_show,
16997 (cmdline_parse_inst_t *)&cmd_link_flow_control_set,
16998 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx,
16999 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx,
17000 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw,
17001 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw,
17002 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt,
17003 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon,
17004 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd,
17005 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg,
17006 (cmdline_parse_inst_t *)&cmd_priority_flow_control_set,
17007 (cmdline_parse_inst_t *)&cmd_config_dcb,
17008 (cmdline_parse_inst_t *)&cmd_read_reg,
17009 (cmdline_parse_inst_t *)&cmd_read_reg_bit_field,
17010 (cmdline_parse_inst_t *)&cmd_read_reg_bit,
17011 (cmdline_parse_inst_t *)&cmd_write_reg,
17012 (cmdline_parse_inst_t *)&cmd_write_reg_bit_field,
17013 (cmdline_parse_inst_t *)&cmd_write_reg_bit,
17014 (cmdline_parse_inst_t *)&cmd_read_rxd_txd,
17015 (cmdline_parse_inst_t *)&cmd_stop,
17016 (cmdline_parse_inst_t *)&cmd_mac_addr,
17017 (cmdline_parse_inst_t *)&cmd_set_fwd_eth_peer,
17018 (cmdline_parse_inst_t *)&cmd_set_qmap,
17019 (cmdline_parse_inst_t *)&cmd_set_xstats_hide_zero,
17020 (cmdline_parse_inst_t *)&cmd_set_record_core_cycles,
17021 (cmdline_parse_inst_t *)&cmd_set_record_burst_stats,
17022 (cmdline_parse_inst_t *)&cmd_operate_port,
17023 (cmdline_parse_inst_t *)&cmd_operate_specific_port,
17024 (cmdline_parse_inst_t *)&cmd_operate_attach_port,
17025 (cmdline_parse_inst_t *)&cmd_operate_detach_port,
17026 (cmdline_parse_inst_t *)&cmd_operate_detach_device,
17027 (cmdline_parse_inst_t *)&cmd_set_port_setup_on,
17028 (cmdline_parse_inst_t *)&cmd_config_speed_all,
17029 (cmdline_parse_inst_t *)&cmd_config_speed_specific,
17030 (cmdline_parse_inst_t *)&cmd_config_loopback_all,
17031 (cmdline_parse_inst_t *)&cmd_config_loopback_specific,
17032 (cmdline_parse_inst_t *)&cmd_config_rx_tx,
17033 (cmdline_parse_inst_t *)&cmd_config_mtu,
17034 (cmdline_parse_inst_t *)&cmd_config_max_pkt_len,
17035 (cmdline_parse_inst_t *)&cmd_config_max_lro_pkt_size,
17036 (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag,
17037 (cmdline_parse_inst_t *)&cmd_config_rss,
17038 (cmdline_parse_inst_t *)&cmd_config_rxtx_ring_size,
17039 (cmdline_parse_inst_t *)&cmd_config_rxtx_queue,
17040 (cmdline_parse_inst_t *)&cmd_config_deferred_start_rxtx_queue,
17041 (cmdline_parse_inst_t *)&cmd_setup_rxtx_queue,
17042 (cmdline_parse_inst_t *)&cmd_config_rss_reta,
17043 (cmdline_parse_inst_t *)&cmd_showport_reta,
17044 (cmdline_parse_inst_t *)&cmd_showport_macs,
17045 (cmdline_parse_inst_t *)&cmd_config_burst,
17046 (cmdline_parse_inst_t *)&cmd_config_thresh,
17047 (cmdline_parse_inst_t *)&cmd_config_threshold,
17048 (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter,
17049 (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter,
17050 (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter,
17051 (cmdline_parse_inst_t *)&cmd_queue_rate_limit,
17052 (cmdline_parse_inst_t *)&cmd_tunnel_udp_config,
17053 (cmdline_parse_inst_t *)&cmd_set_mirror_mask,
17054 (cmdline_parse_inst_t *)&cmd_set_mirror_link,
17055 (cmdline_parse_inst_t *)&cmd_reset_mirror_rule,
17056 (cmdline_parse_inst_t *)&cmd_showport_rss_hash,
17057 (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key,
17058 (cmdline_parse_inst_t *)&cmd_config_rss_hash_key,
17059 (cmdline_parse_inst_t *)&cmd_dump,
17060 (cmdline_parse_inst_t *)&cmd_dump_one,
17061 #ifdef RTE_NET_I40E
17062 (cmdline_parse_inst_t *)&cmd_add_del_raw_flow_director,
17064 (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask,
17065 (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask,
17066 (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask,
17067 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload,
17068 (cmdline_parse_inst_t *)&cmd_flow,
17069 (cmdline_parse_inst_t *)&cmd_show_port_meter_cap,
17070 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_srtcm,
17071 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_trtcm,
17072 (cmdline_parse_inst_t *)&cmd_del_port_meter_profile,
17073 (cmdline_parse_inst_t *)&cmd_create_port_meter,
17074 (cmdline_parse_inst_t *)&cmd_enable_port_meter,
17075 (cmdline_parse_inst_t *)&cmd_disable_port_meter,
17076 (cmdline_parse_inst_t *)&cmd_del_port_meter,
17077 (cmdline_parse_inst_t *)&cmd_set_port_meter_profile,
17078 (cmdline_parse_inst_t *)&cmd_set_port_meter_dscp_table,
17079 (cmdline_parse_inst_t *)&cmd_set_port_meter_policer_action,
17080 (cmdline_parse_inst_t *)&cmd_set_port_meter_stats_mask,
17081 (cmdline_parse_inst_t *)&cmd_show_port_meter_stats,
17082 (cmdline_parse_inst_t *)&cmd_mcast_addr,
17083 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof,
17084 (cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof,
17085 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq,
17086 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert,
17087 (cmdline_parse_inst_t *)&cmd_set_tx_loopback,
17088 (cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en,
17089 (cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en,
17090 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_on,
17091 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_off,
17092 (cmdline_parse_inst_t *)&cmd_set_macsec_sc,
17093 (cmdline_parse_inst_t *)&cmd_set_macsec_sa,
17094 (cmdline_parse_inst_t *)&cmd_set_vf_traffic,
17095 (cmdline_parse_inst_t *)&cmd_set_vf_rxmode,
17096 (cmdline_parse_inst_t *)&cmd_vf_rate_limit,
17097 (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter,
17098 (cmdline_parse_inst_t *)&cmd_set_vf_mac_addr,
17099 (cmdline_parse_inst_t *)&cmd_set_vf_promisc,
17100 (cmdline_parse_inst_t *)&cmd_set_vf_allmulti,
17101 (cmdline_parse_inst_t *)&cmd_set_vf_broadcast,
17102 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag,
17103 (cmdline_parse_inst_t *)&cmd_vf_max_bw,
17104 (cmdline_parse_inst_t *)&cmd_vf_tc_min_bw,
17105 (cmdline_parse_inst_t *)&cmd_vf_tc_max_bw,
17106 (cmdline_parse_inst_t *)&cmd_strict_link_prio,
17107 (cmdline_parse_inst_t *)&cmd_tc_min_bw,
17108 (cmdline_parse_inst_t *)&cmd_set_vxlan,
17109 (cmdline_parse_inst_t *)&cmd_set_vxlan_tos_ttl,
17110 (cmdline_parse_inst_t *)&cmd_set_vxlan_with_vlan,
17111 (cmdline_parse_inst_t *)&cmd_set_nvgre,
17112 (cmdline_parse_inst_t *)&cmd_set_nvgre_with_vlan,
17113 (cmdline_parse_inst_t *)&cmd_set_l2_encap,
17114 (cmdline_parse_inst_t *)&cmd_set_l2_encap_with_vlan,
17115 (cmdline_parse_inst_t *)&cmd_set_l2_decap,
17116 (cmdline_parse_inst_t *)&cmd_set_l2_decap_with_vlan,
17117 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap,
17118 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap_with_vlan,
17119 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap,
17120 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap_with_vlan,
17121 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap,
17122 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap_with_vlan,
17123 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap,
17124 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap_with_vlan,
17125 (cmdline_parse_inst_t *)&cmd_ddp_add,
17126 (cmdline_parse_inst_t *)&cmd_ddp_del,
17127 (cmdline_parse_inst_t *)&cmd_ddp_get_list,
17128 (cmdline_parse_inst_t *)&cmd_ddp_get_info,
17129 (cmdline_parse_inst_t *)&cmd_cfg_input_set,
17130 (cmdline_parse_inst_t *)&cmd_clear_input_set,
17131 (cmdline_parse_inst_t *)&cmd_show_vf_stats,
17132 (cmdline_parse_inst_t *)&cmd_clear_vf_stats,
17133 (cmdline_parse_inst_t *)&cmd_show_port_supported_ptypes,
17134 (cmdline_parse_inst_t *)&cmd_set_port_ptypes,
17135 (cmdline_parse_inst_t *)&cmd_ptype_mapping_get,
17136 (cmdline_parse_inst_t *)&cmd_ptype_mapping_replace,
17137 (cmdline_parse_inst_t *)&cmd_ptype_mapping_reset,
17138 (cmdline_parse_inst_t *)&cmd_ptype_mapping_update,
17140 (cmdline_parse_inst_t *)&cmd_pctype_mapping_get,
17141 (cmdline_parse_inst_t *)&cmd_pctype_mapping_reset,
17142 (cmdline_parse_inst_t *)&cmd_pctype_mapping_update,
17143 (cmdline_parse_inst_t *)&cmd_queue_region,
17144 (cmdline_parse_inst_t *)&cmd_region_flowtype,
17145 (cmdline_parse_inst_t *)&cmd_user_priority_region,
17146 (cmdline_parse_inst_t *)&cmd_flush_queue_region,
17147 (cmdline_parse_inst_t *)&cmd_show_queue_region_info_all,
17148 (cmdline_parse_inst_t *)&cmd_show_port_tm_cap,
17149 (cmdline_parse_inst_t *)&cmd_show_port_tm_level_cap,
17150 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_cap,
17151 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_type,
17152 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_stats,
17153 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shaper_profile,
17154 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shaper_profile,
17155 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shared_shaper,
17156 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shared_shaper,
17157 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_wred_profile,
17158 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_wred_profile,
17159 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_shaper_profile,
17160 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node,
17161 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node_pmode,
17162 (cmdline_parse_inst_t *)&cmd_add_port_tm_leaf_node,
17163 (cmdline_parse_inst_t *)&cmd_del_port_tm_node,
17164 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_parent,
17165 (cmdline_parse_inst_t *)&cmd_suspend_port_tm_node,
17166 (cmdline_parse_inst_t *)&cmd_resume_port_tm_node,
17167 (cmdline_parse_inst_t *)&cmd_port_tm_hierarchy_commit,
17168 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_ecn,
17169 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_dscp,
17170 (cmdline_parse_inst_t *)&cmd_port_tm_mark_vlan_dei,
17171 (cmdline_parse_inst_t *)&cmd_cfg_tunnel_udp_port,
17172 (cmdline_parse_inst_t *)&cmd_rx_offload_get_capa,
17173 (cmdline_parse_inst_t *)&cmd_rx_offload_get_configuration,
17174 (cmdline_parse_inst_t *)&cmd_config_per_port_rx_offload,
17175 (cmdline_parse_inst_t *)&cmd_config_per_queue_rx_offload,
17176 (cmdline_parse_inst_t *)&cmd_tx_offload_get_capa,
17177 (cmdline_parse_inst_t *)&cmd_tx_offload_get_configuration,
17178 (cmdline_parse_inst_t *)&cmd_config_per_port_tx_offload,
17179 (cmdline_parse_inst_t *)&cmd_config_per_queue_tx_offload,
17181 (cmdline_parse_inst_t *)&cmd_operate_bpf_ld_parse,
17182 (cmdline_parse_inst_t *)&cmd_operate_bpf_unld_parse,
17184 (cmdline_parse_inst_t *)&cmd_config_tx_metadata_specific,
17185 (cmdline_parse_inst_t *)&cmd_show_tx_metadata,
17186 (cmdline_parse_inst_t *)&cmd_show_rx_tx_desc_status,
17187 (cmdline_parse_inst_t *)&cmd_show_rx_queue_desc_used_count,
17188 (cmdline_parse_inst_t *)&cmd_set_raw,
17189 (cmdline_parse_inst_t *)&cmd_show_set_raw,
17190 (cmdline_parse_inst_t *)&cmd_show_set_raw_all,
17191 (cmdline_parse_inst_t *)&cmd_config_tx_dynf_specific,
17192 (cmdline_parse_inst_t *)&cmd_show_fec_mode,
17193 (cmdline_parse_inst_t *)&cmd_set_fec_mode,
17194 (cmdline_parse_inst_t *)&cmd_show_capability,
17198 /* read cmdline commands from file */
17200 cmdline_read_from_file(const char *filename)
17202 struct cmdline *cl;
17204 cl = cmdline_file_new(main_ctx, "testpmd> ", filename);
17206 printf("Failed to create file based cmdline context: %s\n",
17211 cmdline_interact(cl);
17216 printf("Read CLI commands from %s\n", filename);
17219 /* prompt function, called from main on MAIN lcore */
17224 /* initialize non-constant commands */
17225 cmd_set_fwd_mode_init();
17226 cmd_set_fwd_retry_mode_init();
17228 testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> ");
17229 if (testpmd_cl == NULL)
17232 ret = atexit(prompt_exit);
17234 printf("Cannot set exit function for cmdline\n");
17236 cmdline_interact(testpmd_cl);
17238 cmdline_stdin_exit(testpmd_cl);
17244 if (testpmd_cl != NULL) {
17245 cmdline_quit(testpmd_cl);
17246 cmdline_stdin_exit(testpmd_cl);
17251 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue)
17253 if (id == (portid_t)RTE_PORT_ALL) {
17256 RTE_ETH_FOREACH_DEV(pid) {
17257 /* check if need_reconfig has been set to 1 */
17258 if (ports[pid].need_reconfig == 0)
17259 ports[pid].need_reconfig = dev;
17260 /* check if need_reconfig_queues has been set to 1 */
17261 if (ports[pid].need_reconfig_queues == 0)
17262 ports[pid].need_reconfig_queues = queue;
17264 } else if (!port_id_is_invalid(id, DISABLED_WARN)) {
17265 /* check if need_reconfig has been set to 1 */
17266 if (ports[id].need_reconfig == 0)
17267 ports[id].need_reconfig = dev;
17268 /* check if need_reconfig_queues has been set to 1 */
17269 if (ports[id].need_reconfig_queues == 0)
17270 ports[id].need_reconfig_queues = queue;