net/bnxt: refactor init/uninit
[dpdk.git] / app / test-pmd / config.c
index c76a909..0e2b9f7 100644 (file)
@@ -87,7 +87,7 @@ const struct rss_type_info rss_type_table[] = {
        { "all", ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP | ETH_RSS_TCP |
                ETH_RSS_UDP | ETH_RSS_SCTP | ETH_RSS_L2_PAYLOAD |
                ETH_RSS_L2TPV3 | ETH_RSS_ESP | ETH_RSS_AH | ETH_RSS_PFCP |
-               ETH_RSS_GTPU},
+               ETH_RSS_GTPU | ETH_RSS_ECPRI},
        { "none", 0 },
        { "eth", ETH_RSS_ETH },
        { "l2-src-only", ETH_RSS_L2_SRC_ONLY },
@@ -136,6 +136,7 @@ const struct rss_type_info rss_type_table[] = {
        { "pfcp", ETH_RSS_PFCP },
        { "pppoe", ETH_RSS_PPPOE },
        { "gtpu", ETH_RSS_GTPU },
+       { "ecpri", ETH_RSS_ECPRI },
        { NULL, 0 },
 };
 
@@ -182,8 +183,6 @@ nic_stats_display(portid_t port_id)
                                                                diff_ns;
        uint64_t mpps_rx, mpps_tx, mbps_rx, mbps_tx;
        struct rte_eth_stats stats;
-       struct rte_port *port = &ports[port_id];
-       uint8_t i;
 
        static const char *nic_stats_border = "########################";
 
@@ -195,46 +194,12 @@ nic_stats_display(portid_t port_id)
        printf("\n  %s NIC statistics for port %-2d %s\n",
               nic_stats_border, port_id, nic_stats_border);
 
-       if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
-               printf("  RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes:  "
-                      "%-"PRIu64"\n",
-                      stats.ipackets, stats.imissed, stats.ibytes);
-               printf("  RX-errors: %-"PRIu64"\n", stats.ierrors);
-               printf("  RX-nombuf:  %-10"PRIu64"\n",
-                      stats.rx_nombuf);
-               printf("  TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes:  "
-                      "%-"PRIu64"\n",
-                      stats.opackets, stats.oerrors, stats.obytes);
-       }
-       else {
-               printf("  RX-packets:              %10"PRIu64"    RX-errors: %10"PRIu64
-                      "    RX-bytes: %10"PRIu64"\n",
-                      stats.ipackets, stats.ierrors, stats.ibytes);
-               printf("  RX-errors:  %10"PRIu64"\n", stats.ierrors);
-               printf("  RX-nombuf:               %10"PRIu64"\n",
-                      stats.rx_nombuf);
-               printf("  TX-packets:              %10"PRIu64"    TX-errors: %10"PRIu64
-                      "    TX-bytes: %10"PRIu64"\n",
-                      stats.opackets, stats.oerrors, stats.obytes);
-       }
-
-       if (port->rx_queue_stats_mapping_enabled) {
-               printf("\n");
-               for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
-                       printf("  Stats reg %2d RX-packets: %10"PRIu64
-                              "    RX-errors: %10"PRIu64
-                              "    RX-bytes: %10"PRIu64"\n",
-                              i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
-               }
-       }
-       if (port->tx_queue_stats_mapping_enabled) {
-               printf("\n");
-               for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
-                       printf("  Stats reg %2d TX-packets: %10"PRIu64
-                              "                             TX-bytes: %10"PRIu64"\n",
-                              i, stats.q_opackets[i], stats.q_obytes[i]);
-               }
-       }
+       printf("  RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes:  "
+              "%-"PRIu64"\n", stats.ipackets, stats.imissed, stats.ibytes);
+       printf("  RX-errors: %-"PRIu64"\n", stats.ierrors);
+       printf("  RX-nombuf:  %-10"PRIu64"\n", stats.rx_nombuf);
+       printf("  TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes:  "
+              "%-"PRIu64"\n", stats.opackets, stats.oerrors, stats.obytes);
 
        diff_ns = 0;
        if (clock_gettime(CLOCK_TYPE_ID, &cur_time) == 0) {
@@ -397,54 +362,6 @@ nic_xstats_clear(portid_t port_id)
        }
 }
 
-void
-nic_stats_mapping_display(portid_t port_id)
-{
-       struct rte_port *port = &ports[port_id];
-       uint16_t i;
-
-       static const char *nic_stats_mapping_border = "########################";
-
-       if (port_id_is_invalid(port_id, ENABLED_WARN)) {
-               print_valid_ports();
-               return;
-       }
-
-       if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
-               printf("Port id %d - either does not support queue statistic mapping or"
-                      " no queue statistic mapping set\n", port_id);
-               return;
-       }
-
-       printf("\n  %s NIC statistics mapping for port %-2d %s\n",
-              nic_stats_mapping_border, port_id, nic_stats_mapping_border);
-
-       if (port->rx_queue_stats_mapping_enabled) {
-               for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
-                       if (rx_queue_stats_mappings[i].port_id == port_id) {
-                               printf("  RX-queue %2d mapped to Stats Reg %2d\n",
-                                      rx_queue_stats_mappings[i].queue_id,
-                                      rx_queue_stats_mappings[i].stats_counter_id);
-                       }
-               }
-               printf("\n");
-       }
-
-
-       if (port->tx_queue_stats_mapping_enabled) {
-               for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
-                       if (tx_queue_stats_mappings[i].port_id == port_id) {
-                               printf("  TX-queue %2d mapped to Stats Reg %2d\n",
-                                      tx_queue_stats_mappings[i].queue_id,
-                                      tx_queue_stats_mappings[i].stats_counter_id);
-                       }
-               }
-       }
-
-       printf("  %s####################################%s\n",
-              nic_stats_mapping_border, nic_stats_mapping_border);
-}
-
 void
 rx_queue_infos_display(portid_t port_id, uint16_t queue_id)
 {
@@ -1517,7 +1434,7 @@ port_mtu_set(portid_t port_id, uint16_t mtu)
                 * device supports jumbo frame.
                 */
                eth_overhead = dev_info.max_rx_pktlen - dev_info.max_mtu;
-               if (mtu > RTE_ETHER_MAX_LEN - eth_overhead) {
+               if (mtu > RTE_ETHER_MTU) {
                        rte_port->dev_conf.rxmode.offloads |=
                                                DEV_RX_OFFLOAD_JUMBO_FRAME;
                        rte_port->dev_conf.rxmode.max_rx_pkt_len =
@@ -1849,6 +1766,13 @@ port_shared_action_create(portid_t port_id, uint32_t id,
        ret = action_alloc(port_id, id, &psa);
        if (ret)
                return ret;
+       if (action->type == RTE_FLOW_ACTION_TYPE_AGE) {
+               struct rte_flow_action_age *age =
+                       (struct rte_flow_action_age *)(uintptr_t)(action->conf);
+
+               psa->age_type = ACTION_AGE_CONTEXT_TYPE_SHARED_ACTION;
+               age->context = &psa->age_type;
+       }
        /* Poisoning to make sure PMDs update it in case of error. */
        memset(&error, 0x22, sizeof(error));
        psa->action = rte_flow_shared_action_create(port_id, conf, action,
@@ -1900,8 +1824,8 @@ port_shared_action_destroy(portid_t port_id,
                                continue;
                        }
                        *tmp = psa->next;
-                       free(psa);
                        printf("Shared action #%u destroyed\n", psa->id);
+                       free(psa);
                        break;
                }
                if (i == n)
@@ -2113,24 +2037,20 @@ port_flow_validate(portid_t port_id,
        return 0;
 }
 
-/** Update age action context by port_flow pointer. */
-void
-update_age_action_context(const struct rte_flow_action *actions,
-                       struct port_flow *pf)
+/** Return age action structure if exists, otherwise NULL. */
+static struct rte_flow_action_age *
+age_action_get(const struct rte_flow_action *actions)
 {
-       struct rte_flow_action_age *age = NULL;
-
        for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
                switch (actions->type) {
                case RTE_FLOW_ACTION_TYPE_AGE:
-                       age = (struct rte_flow_action_age *)
+                       return (struct rte_flow_action_age *)
                                (uintptr_t)actions->conf;
-                       age->context = pf;
-                       return;
                default:
                        break;
                }
        }
+       return NULL;
 }
 
 /** Create flow rule. */
@@ -2147,6 +2067,7 @@ port_flow_create(portid_t port_id,
        uint32_t id = 0;
        struct rte_flow_error error;
        struct port_flow_tunnel *pft = NULL;
+       struct rte_flow_action_age *age = age_action_get(actions);
 
        port = &ports[port_id];
        if (port->flow_list) {
@@ -2170,7 +2091,10 @@ port_flow_create(portid_t port_id,
        pf = port_flow_new(attr, pattern, actions, &error);
        if (!pf)
                return port_flow_complain(&error);
-       update_age_action_context(actions, pf);
+       if (age) {
+               pf->age_type = ACTION_AGE_CONTEXT_TYPE_FLOW;
+               age->context = &pf->age_type;
+       }
        /* Poisoning to make sure PMDs update it in case of error. */
        memset(&error, 0x22, sizeof(error));
        flow = rte_flow_create(port_id, attr, pattern, actions, &error);
@@ -2379,7 +2303,11 @@ port_flow_aged(portid_t port_id, uint8_t destroy)
        void **contexts;
        int nb_context, total = 0, idx;
        struct rte_flow_error error;
-       struct port_flow *pf;
+       enum age_action_context_type *type;
+       union {
+               struct port_flow *pf;
+               struct port_shared_action *psa;
+       } ctx;
 
        if (port_id_is_invalid(port_id, ENABLED_WARN) ||
            port_id == (portid_t)RTE_PORT_ALL)
@@ -2397,7 +2325,7 @@ port_flow_aged(portid_t port_id, uint8_t destroy)
                printf("Cannot allocate contexts for aged flow\n");
                return;
        }
-       printf("ID\tGroup\tPrio\tAttr\n");
+       printf("%-20s\tID\tGroup\tPrio\tAttr\n", "Type");
        nb_context = rte_flow_get_aged_flows(port_id, contexts, total, &error);
        if (nb_context != total) {
                printf("Port:%d get aged flows count(%d) != total(%d)\n",
@@ -2405,37 +2333,41 @@ port_flow_aged(portid_t port_id, uint8_t destroy)
                free(contexts);
                return;
        }
+       total = 0;
        for (idx = 0; idx < nb_context; idx++) {
-               pf = (struct port_flow *)contexts[idx];
-               if (!pf) {
+               if (!contexts[idx]) {
                        printf("Error: get Null context in port %u\n", port_id);
                        continue;
                }
-               printf("%" PRIu32 "\t%" PRIu32 "\t%" PRIu32 "\t%c%c%c\t\n",
-                      pf->id,
-                      pf->rule.attr->group,
-                      pf->rule.attr->priority,
-                      pf->rule.attr->ingress ? 'i' : '-',
-                      pf->rule.attr->egress ? 'e' : '-',
-                      pf->rule.attr->transfer ? 't' : '-');
-       }
-       if (destroy) {
-               int ret;
-               uint32_t flow_id;
-
-               total = 0;
-               printf("\n");
-               for (idx = 0; idx < nb_context; idx++) {
-                       pf = (struct port_flow *)contexts[idx];
-                       if (!pf)
-                               continue;
-                       flow_id = pf->id;
-                       ret = port_flow_destroy(port_id, 1, &flow_id);
-                       if (!ret)
+               type = (enum age_action_context_type *)contexts[idx];
+               switch (*type) {
+               case ACTION_AGE_CONTEXT_TYPE_FLOW:
+                       ctx.pf = container_of(type, struct port_flow, age_type);
+                       printf("%-20s\t%" PRIu32 "\t%" PRIu32 "\t%" PRIu32
+                                                                "\t%c%c%c\t\n",
+                              "Flow",
+                              ctx.pf->id,
+                              ctx.pf->rule.attr->group,
+                              ctx.pf->rule.attr->priority,
+                              ctx.pf->rule.attr->ingress ? 'i' : '-',
+                              ctx.pf->rule.attr->egress ? 'e' : '-',
+                              ctx.pf->rule.attr->transfer ? 't' : '-');
+                       if (destroy && !port_flow_destroy(port_id, 1,
+                                                         &ctx.pf->id))
                                total++;
+                       break;
+               case ACTION_AGE_CONTEXT_TYPE_SHARED_ACTION:
+                       ctx.psa = container_of(type, struct port_shared_action,
+                                              age_type);
+                       printf("%-20s\t%" PRIu32 "\n", "Shared action",
+                              ctx.psa->id);
+                       break;
+               default:
+                       printf("Error: invalid context type %u\n", port_id);
+                       break;
                }
-               printf("%d flows be destroyed\n", total);
        }
+       printf("\n%d flows destroyed\n", total);
        free(contexts);
 }
 
@@ -2557,7 +2489,7 @@ tx_queue_id_is_invalid(queueid_t txq_id)
 {
        if (txq_id < nb_txq)
                return 0;
-       printf("Invalid TX queue %d (must be < nb_rxq=%d)\n", txq_id, nb_txq);
+       printf("Invalid TX queue %d (must be < nb_txq=%d)\n", txq_id, nb_txq);
        return 1;
 }
 
@@ -3456,9 +3388,9 @@ set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc)
                        printf("lcore %u not enabled\n", lcore_cpuid);
                        return -1;
                }
-               if (lcore_cpuid == rte_get_master_lcore()) {
+               if (lcore_cpuid == rte_get_main_lcore()) {
                        printf("lcore %u cannot be masked on for running "
-                              "packet forwarding, which is the master lcore "
+                              "packet forwarding, which is the main lcore "
                               "and reserved for command line parsing only\n",
                               lcore_cpuid);
                        return -1;
@@ -3504,6 +3436,10 @@ set_fwd_lcores_mask(uint64_t lcoremask)
 void
 set_fwd_lcores_number(uint16_t nb_lc)
 {
+       if (test_done == 0) {
+               printf("Please stop forwarding first\n");
+               return;
+       }
        if (nb_lc > nb_cfg_lcores) {
                printf("nb fwd cores %u > %u (max. number of configured "
                       "lcores) - ignored\n",
@@ -3765,7 +3701,7 @@ show_fec_capability(unsigned int num, struct rte_eth_fec_capa *speed_fec_capa)
                printf("%s : ",
                        rte_eth_link_speed_to_str(speed_fec_capa[i].speed));
 
-               for (j = RTE_ETH_FEC_AUTO; j < RTE_DIM(fec_mode_name); j++) {
+               for (j = 0; j < RTE_DIM(fec_mode_name); j++) {
                        if (RTE_ETH_FEC_MODE_TO_CAPA(j) &
                                                speed_fec_capa[i].capa)
                                printf("%s ", fec_mode_name[j].name);
@@ -3955,44 +3891,6 @@ show_tx_pkt_times(void)
 void
 set_tx_pkt_times(unsigned int *tx_times)
 {
-       uint16_t port_id;
-       int offload_found = 0;
-       int offset;
-       int flag;
-
-       static const struct rte_mbuf_dynfield desc_offs = {
-               .name = RTE_MBUF_DYNFIELD_TIMESTAMP_NAME,
-               .size = sizeof(uint64_t),
-               .align = __alignof__(uint64_t),
-       };
-       static const struct rte_mbuf_dynflag desc_flag = {
-               .name = RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME,
-       };
-
-       RTE_ETH_FOREACH_DEV(port_id) {
-               struct rte_eth_dev_info dev_info = { 0 };
-               int ret;
-
-               ret = rte_eth_dev_info_get(port_id, &dev_info);
-               if (ret == 0 && dev_info.tx_offload_capa &
-                               DEV_TX_OFFLOAD_SEND_ON_TIMESTAMP) {
-                       offload_found = 1;
-                       break;
-               }
-       }
-       if (!offload_found) {
-               printf("No device supporting Tx timestamp scheduling found, "
-                      "dynamic flag and field not registered\n");
-               return;
-       }
-       offset = rte_mbuf_dynfield_register(&desc_offs);
-       if (offset < 0 && rte_errno != EEXIST)
-               printf("Dynamic timestamp field registration error: %d",
-                      rte_errno);
-       flag = rte_mbuf_dynflag_register(&desc_flag);
-       if (flag < 0 && rte_errno != EEXIST)
-               printf("Dynamic timestamp flag registration error: %d",
-                      rte_errno);
        tx_pkt_times_inter = tx_times[0];
        tx_pkt_times_intra = tx_times[1];
 }
@@ -4546,8 +4444,7 @@ tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on)
 void
 set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
 {
-       uint16_t i;
-       uint8_t existing_mapping_found = 0;
+       int ret;
 
        if (port_id_is_invalid(port_id, ENABLED_WARN))
                return;
@@ -4557,40 +4454,23 @@ set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
 
        if (map_value >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
                printf("map_value not in required range 0..%d\n",
-                               RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
+                      RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
                return;
        }
 
-       if (!is_rx) { /*then tx*/
-               for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
-                       if ((tx_queue_stats_mappings[i].port_id == port_id) &&
-                           (tx_queue_stats_mappings[i].queue_id == queue_id)) {
-                               tx_queue_stats_mappings[i].stats_counter_id = map_value;
-                               existing_mapping_found = 1;
-                               break;
-                       }
-               }
-               if (!existing_mapping_found) { /* A new additional mapping... */
-                       tx_queue_stats_mappings[nb_tx_queue_stats_mappings].port_id = port_id;
-                       tx_queue_stats_mappings[nb_tx_queue_stats_mappings].queue_id = queue_id;
-                       tx_queue_stats_mappings[nb_tx_queue_stats_mappings].stats_counter_id = map_value;
-                       nb_tx_queue_stats_mappings++;
-               }
-       }
-       else { /*rx*/
-               for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
-                       if ((rx_queue_stats_mappings[i].port_id == port_id) &&
-                           (rx_queue_stats_mappings[i].queue_id == queue_id)) {
-                               rx_queue_stats_mappings[i].stats_counter_id = map_value;
-                               existing_mapping_found = 1;
-                               break;
-                       }
+       if (!is_rx) { /* tx */
+               ret = rte_eth_dev_set_tx_queue_stats_mapping(port_id, queue_id,
+                                                            map_value);
+               if (ret) {
+                       printf("failed to set tx queue stats mapping.\n");
+                       return;
                }
-               if (!existing_mapping_found) { /* A new additional mapping... */
-                       rx_queue_stats_mappings[nb_rx_queue_stats_mappings].port_id = port_id;
-                       rx_queue_stats_mappings[nb_rx_queue_stats_mappings].queue_id = queue_id;
-                       rx_queue_stats_mappings[nb_rx_queue_stats_mappings].stats_counter_id = map_value;
-                       nb_rx_queue_stats_mappings++;
+       } else { /* rx */
+               ret = rte_eth_dev_set_rx_queue_stats_mapping(port_id, queue_id,
+                                                            map_value);
+               if (ret) {
+                       printf("failed to set rx queue stats mapping.\n");
+                       return;
                }
        }
 }
@@ -4711,6 +4591,8 @@ flowtype_to_str(uint16_t flow_type)
        return NULL;
 }
 
+#if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
+
 static inline void
 print_fdir_flex_mask(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
 {
@@ -4750,16 +4632,7 @@ static int
 get_fdir_info(portid_t port_id, struct rte_eth_fdir_info *fdir_info,
                    struct rte_eth_fdir_stats *fdir_stat)
 {
-       int ret;
-
-       ret = rte_eth_dev_filter_supported(port_id, RTE_ETH_FILTER_FDIR);
-       if (!ret) {
-               rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
-                              RTE_ETH_FILTER_INFO, fdir_info);
-               rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
-                              RTE_ETH_FILTER_STATS, fdir_stat);
-               return 0;
-       }
+       int ret = -ENOTSUP;
 
 #ifdef RTE_NET_I40E
        if (ret == -ENOTSUP) {
@@ -4857,6 +4730,8 @@ fdir_get_infos(portid_t port_id)
               fdir_stats_border, fdir_stats_border);
 }
 
+#endif /* RTE_NET_I40E || RTE_NET_IXGBE */
+
 void
 fdir_set_flex_mask(portid_t port_id, struct rte_eth_fdir_flex_mask *cfg)
 {