net/sfc: use switch port ID as representor ID
[dpdk.git] / drivers / net / sfc / sfc_ethdev.c
index dd7e5c2..0297e79 100644 (file)
 #include "sfc_flow.h"
 #include "sfc_dp.h"
 #include "sfc_dp_rx.h"
+#include "sfc_repr.h"
+#include "sfc_sw_stats.h"
+#include "sfc_switch.h"
+
+#define SFC_XSTAT_ID_INVALID_VAL  UINT64_MAX
+#define SFC_XSTAT_ID_INVALID_NAME '\0'
 
 uint32_t sfc_logtype_driver;
 
@@ -209,9 +215,9 @@ sfc_dev_configure(struct rte_eth_dev *dev)
 
        sfc_adapter_lock(sa);
        switch (sa->state) {
-       case SFC_ADAPTER_CONFIGURED:
+       case SFC_ETHDEV_CONFIGURED:
                /* FALLTHROUGH */
-       case SFC_ADAPTER_INITIALIZED:
+       case SFC_ETHDEV_INITIALIZED:
                rc = sfc_configure(sa);
                break;
        default:
@@ -253,7 +259,7 @@ sfc_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
 
        sfc_log_init(sa, "entry");
 
-       if (sa->state != SFC_ADAPTER_STARTED) {
+       if (sa->state != SFC_ETHDEV_STARTED) {
                sfc_port_link_mode_to_info(EFX_LINK_UNKNOWN, &current_link);
        } else if (wait_to_complete) {
                efx_link_mode_t link_mode;
@@ -340,17 +346,19 @@ sfc_dev_close(struct rte_eth_dev *dev)
                return 0;
        }
 
+       sfc_pre_detach(sa);
+
        sfc_adapter_lock(sa);
        switch (sa->state) {
-       case SFC_ADAPTER_STARTED:
+       case SFC_ETHDEV_STARTED:
                sfc_stop(sa);
-               SFC_ASSERT(sa->state == SFC_ADAPTER_CONFIGURED);
+               SFC_ASSERT(sa->state == SFC_ETHDEV_CONFIGURED);
                /* FALLTHROUGH */
-       case SFC_ADAPTER_CONFIGURED:
+       case SFC_ETHDEV_CONFIGURED:
                sfc_close(sa);
-               SFC_ASSERT(sa->state == SFC_ADAPTER_INITIALIZED);
+               SFC_ASSERT(sa->state == SFC_ETHDEV_INITIALIZED);
                /* FALLTHROUGH */
-       case SFC_ADAPTER_INITIALIZED:
+       case SFC_ETHDEV_INITIALIZED:
                break;
        default:
                sfc_err(sa, "unexpected adapter state %u on close", sa->state);
@@ -406,7 +414,7 @@ sfc_dev_filter_set(struct rte_eth_dev *dev, enum sfc_dev_filter_mode mode,
                        sfc_warn(sa, "the change is to be applied on the next "
                                     "start provided that isolated mode is "
                                     "disabled prior the next start");
-               } else if ((sa->state == SFC_ADAPTER_STARTED) &&
+               } else if ((sa->state == SFC_ETHDEV_STARTED) &&
                           ((rc = sfc_set_rx_mode(sa)) != 0)) {
                        *toggle = !(enabled);
                        sfc_warn(sa, "Failed to %s %s mode, rc = %d",
@@ -500,9 +508,9 @@ fail_rx_qinit:
 }
 
 static void
-sfc_rx_queue_release(void *queue)
+sfc_rx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
 {
-       struct sfc_dp_rxq *dp_rxq = queue;
+       struct sfc_dp_rxq *dp_rxq = dev->data->rx_queues[qid];
        struct sfc_rxq *rxq;
        struct sfc_adapter *sa;
        sfc_sw_index_t sw_index;
@@ -557,9 +565,9 @@ fail_tx_qinit:
 }
 
 static void
-sfc_tx_queue_release(void *queue)
+sfc_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
 {
-       struct sfc_dp_txq *dp_txq = queue;
+       struct sfc_dp_txq *dp_txq = dev->data->tx_queues[qid];
        struct sfc_txq *txq;
        sfc_sw_index_t sw_index;
        struct sfc_adapter *sa;
@@ -582,6 +590,60 @@ sfc_tx_queue_release(void *queue)
        sfc_adapter_unlock(sa);
 }
 
+static void
+sfc_stats_get_dp_rx(struct sfc_adapter *sa, uint64_t *pkts, uint64_t *bytes)
+{
+       struct sfc_adapter_shared *sas = sfc_sa2shared(sa);
+       uint64_t pkts_sum = 0;
+       uint64_t bytes_sum = 0;
+       unsigned int i;
+
+       for (i = 0; i < sas->ethdev_rxq_count; ++i) {
+               struct sfc_rxq_info *rxq_info;
+
+               rxq_info = sfc_rxq_info_by_ethdev_qid(sas, i);
+               if (rxq_info->state & SFC_RXQ_INITIALIZED) {
+                       union sfc_pkts_bytes qstats;
+
+                       sfc_pkts_bytes_get(&rxq_info->dp->dpq.stats, &qstats);
+                       pkts_sum += qstats.pkts -
+                                       sa->sw_stats.reset_rx_pkts[i];
+                       bytes_sum += qstats.bytes -
+                                       sa->sw_stats.reset_rx_bytes[i];
+               }
+       }
+
+       *pkts = pkts_sum;
+       *bytes = bytes_sum;
+}
+
+static void
+sfc_stats_get_dp_tx(struct sfc_adapter *sa, uint64_t *pkts, uint64_t *bytes)
+{
+       struct sfc_adapter_shared *sas = sfc_sa2shared(sa);
+       uint64_t pkts_sum = 0;
+       uint64_t bytes_sum = 0;
+       unsigned int i;
+
+       for (i = 0; i < sas->ethdev_txq_count; ++i) {
+               struct sfc_txq_info *txq_info;
+
+               txq_info = sfc_txq_info_by_ethdev_qid(sas, i);
+               if (txq_info->state & SFC_TXQ_INITIALIZED) {
+                       union sfc_pkts_bytes qstats;
+
+                       sfc_pkts_bytes_get(&txq_info->dp->dpq.stats, &qstats);
+                       pkts_sum += qstats.pkts -
+                                       sa->sw_stats.reset_tx_pkts[i];
+                       bytes_sum += qstats.bytes -
+                                       sa->sw_stats.reset_tx_bytes[i];
+               }
+       }
+
+       *pkts = pkts_sum;
+       *bytes = bytes_sum;
+}
+
 /*
  * Some statistics are computed as A - B where A and B each increase
  * monotonically with some hardware counter(s) and the counters are read
@@ -608,6 +670,9 @@ sfc_update_diff_stat(uint64_t *stat, uint64_t newval)
 static int
 sfc_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
 {
+       const struct sfc_adapter_priv *sap = sfc_adapter_priv_by_eth_dev(dev);
+       bool have_dp_rx_stats = sap->dp_rx->features & SFC_DP_RX_FEAT_STATS;
+       bool have_dp_tx_stats = sap->dp_tx->features & SFC_DP_TX_FEAT_STATS;
        struct sfc_adapter *sa = sfc_adapter_by_eth_dev(dev);
        struct sfc_port *port = &sa->port;
        uint64_t *mac_stats;
@@ -615,6 +680,11 @@ sfc_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
 
        sfc_adapter_lock(sa);
 
+       if (have_dp_rx_stats)
+               sfc_stats_get_dp_rx(sa, &stats->ipackets, &stats->ibytes);
+       if (have_dp_tx_stats)
+               sfc_stats_get_dp_tx(sa, &stats->opackets, &stats->obytes);
+
        ret = sfc_port_update_mac_stats(sa, B_FALSE);
        if (ret != 0)
                goto unlock;
@@ -623,36 +693,40 @@ sfc_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
 
        if (EFX_MAC_STAT_SUPPORTED(port->mac_stats_mask,
                                   EFX_MAC_VADAPTER_RX_UNICAST_PACKETS)) {
-               stats->ipackets =
-                       mac_stats[EFX_MAC_VADAPTER_RX_UNICAST_PACKETS] +
-                       mac_stats[EFX_MAC_VADAPTER_RX_MULTICAST_PACKETS] +
-                       mac_stats[EFX_MAC_VADAPTER_RX_BROADCAST_PACKETS];
-               stats->opackets =
-                       mac_stats[EFX_MAC_VADAPTER_TX_UNICAST_PACKETS] +
-                       mac_stats[EFX_MAC_VADAPTER_TX_MULTICAST_PACKETS] +
-                       mac_stats[EFX_MAC_VADAPTER_TX_BROADCAST_PACKETS];
-               stats->ibytes =
-                       mac_stats[EFX_MAC_VADAPTER_RX_UNICAST_BYTES] +
-                       mac_stats[EFX_MAC_VADAPTER_RX_MULTICAST_BYTES] +
-                       mac_stats[EFX_MAC_VADAPTER_RX_BROADCAST_BYTES];
-               stats->obytes =
-                       mac_stats[EFX_MAC_VADAPTER_TX_UNICAST_BYTES] +
-                       mac_stats[EFX_MAC_VADAPTER_TX_MULTICAST_BYTES] +
-                       mac_stats[EFX_MAC_VADAPTER_TX_BROADCAST_BYTES];
+               if (!have_dp_rx_stats) {
+                       stats->ipackets =
+                               mac_stats[EFX_MAC_VADAPTER_RX_UNICAST_PACKETS] +
+                               mac_stats[EFX_MAC_VADAPTER_RX_MULTICAST_PACKETS] +
+                               mac_stats[EFX_MAC_VADAPTER_RX_BROADCAST_PACKETS];
+                       stats->ibytes =
+                               mac_stats[EFX_MAC_VADAPTER_RX_UNICAST_BYTES] +
+                               mac_stats[EFX_MAC_VADAPTER_RX_MULTICAST_BYTES] +
+                               mac_stats[EFX_MAC_VADAPTER_RX_BROADCAST_BYTES];
+
+                       /* CRC is included in these stats, but shouldn't be */
+                       stats->ibytes -= stats->ipackets * RTE_ETHER_CRC_LEN;
+               }
+               if (!have_dp_tx_stats) {
+                       stats->opackets =
+                               mac_stats[EFX_MAC_VADAPTER_TX_UNICAST_PACKETS] +
+                               mac_stats[EFX_MAC_VADAPTER_TX_MULTICAST_PACKETS] +
+                               mac_stats[EFX_MAC_VADAPTER_TX_BROADCAST_PACKETS];
+                       stats->obytes =
+                               mac_stats[EFX_MAC_VADAPTER_TX_UNICAST_BYTES] +
+                               mac_stats[EFX_MAC_VADAPTER_TX_MULTICAST_BYTES] +
+                               mac_stats[EFX_MAC_VADAPTER_TX_BROADCAST_BYTES];
+
+                       /* CRC is included in these stats, but shouldn't be */
+                       stats->obytes -= stats->opackets * RTE_ETHER_CRC_LEN;
+               }
                stats->imissed = mac_stats[EFX_MAC_VADAPTER_RX_BAD_PACKETS];
                stats->oerrors = mac_stats[EFX_MAC_VADAPTER_TX_BAD_PACKETS];
-
-               /* CRC is included in these stats, but shouldn't be */
-               stats->ibytes -= stats->ipackets * RTE_ETHER_CRC_LEN;
-               stats->obytes -= stats->opackets * RTE_ETHER_CRC_LEN;
        } else {
-               stats->opackets = mac_stats[EFX_MAC_TX_PKTS];
-               stats->ibytes = mac_stats[EFX_MAC_RX_OCTETS];
-               stats->obytes = mac_stats[EFX_MAC_TX_OCTETS];
-
-               /* CRC is included in these stats, but shouldn't be */
-               stats->ibytes -= mac_stats[EFX_MAC_RX_PKTS] * RTE_ETHER_CRC_LEN;
-               stats->obytes -= mac_stats[EFX_MAC_TX_PKTS] * RTE_ETHER_CRC_LEN;
+               if (!have_dp_tx_stats) {
+                       stats->opackets = mac_stats[EFX_MAC_TX_PKTS];
+                       stats->obytes = mac_stats[EFX_MAC_TX_OCTETS] -
+                               mac_stats[EFX_MAC_TX_PKTS] * RTE_ETHER_CRC_LEN;
+               }
 
                /*
                 * Take into account stats which are whenever supported
@@ -677,12 +751,16 @@ sfc_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
                        mac_stats[EFX_MAC_RX_JABBER_PKTS];
                /* no oerrors counters supported on EF10 */
 
-               /* Exclude missed, errors and pauses from Rx packets */
-               sfc_update_diff_stat(&port->ipackets,
-                       mac_stats[EFX_MAC_RX_PKTS] -
-                       mac_stats[EFX_MAC_RX_PAUSE_PKTS] -
-                       stats->imissed - stats->ierrors);
-               stats->ipackets = port->ipackets;
+               if (!have_dp_rx_stats) {
+                       /* Exclude missed, errors and pauses from Rx packets */
+                       sfc_update_diff_stat(&port->ipackets,
+                               mac_stats[EFX_MAC_RX_PKTS] -
+                               mac_stats[EFX_MAC_RX_PAUSE_PKTS] -
+                               stats->imissed - stats->ierrors);
+                       stats->ipackets = port->ipackets;
+                       stats->ibytes = mac_stats[EFX_MAC_RX_OCTETS] -
+                               mac_stats[EFX_MAC_RX_PKTS] * RTE_ETHER_CRC_LEN;
+               }
        }
 
 unlock:
@@ -700,7 +778,7 @@ sfc_stats_reset(struct rte_eth_dev *dev)
 
        sfc_adapter_lock(sa);
 
-       if (sa->state != SFC_ADAPTER_STARTED) {
+       if (sa->state != SFC_ETHDEV_STARTED) {
                /*
                 * The operation cannot be done if port is not started; it
                 * will be scheduled to be done during the next port start
@@ -714,29 +792,49 @@ sfc_stats_reset(struct rte_eth_dev *dev)
        if (rc != 0)
                sfc_err(sa, "failed to reset statistics (rc = %d)", rc);
 
+       sfc_sw_xstats_reset(sa);
+
        sfc_adapter_unlock(sa);
 
        SFC_ASSERT(rc >= 0);
        return -rc;
 }
 
+static unsigned int
+sfc_xstats_get_nb_supported(struct sfc_adapter *sa)
+{
+       struct sfc_port *port = &sa->port;
+       unsigned int nb_supported;
+
+       sfc_adapter_lock(sa);
+       nb_supported = port->mac_stats_nb_supported +
+                      sfc_sw_xstats_get_nb_supported(sa);
+       sfc_adapter_unlock(sa);
+
+       return nb_supported;
+}
+
 static int
 sfc_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
               unsigned int xstats_count)
 {
        struct sfc_adapter *sa = sfc_adapter_by_eth_dev(dev);
-       struct sfc_port *port = &sa->port;
        unsigned int nb_written = 0;
-       unsigned int nb_supp;
+       unsigned int nb_supported = 0;
+       int rc;
 
-       if (unlikely(xstats == NULL)) {
-               sfc_adapter_lock(sa);
-               nb_supp = port->mac_stats_nb_supported;
-               sfc_adapter_unlock(sa);
-               return nb_supp;
-       }
+       if (unlikely(xstats == NULL))
+               return sfc_xstats_get_nb_supported(sa);
+
+       rc = sfc_port_get_mac_stats(sa, xstats, xstats_count, &nb_written);
+       if (rc < 0)
+               return rc;
 
-       return sfc_port_get_mac_stats(sa, xstats, xstats_count, &nb_written);
+       nb_supported = rc;
+       sfc_sw_xstats_get_vals(sa, xstats, xstats_count, &nb_written,
+                              &nb_supported);
+
+       return nb_supported;
 }
 
 static int
@@ -748,24 +846,31 @@ sfc_xstats_get_names(struct rte_eth_dev *dev,
        struct sfc_port *port = &sa->port;
        unsigned int i;
        unsigned int nstats = 0;
+       unsigned int nb_written = 0;
+       int ret;
 
-       if (unlikely(xstats_names == NULL)) {
-               sfc_adapter_lock(sa);
-               nstats = port->mac_stats_nb_supported;
-               sfc_adapter_unlock(sa);
-               return nstats;
-       }
+       if (unlikely(xstats_names == NULL))
+               return sfc_xstats_get_nb_supported(sa);
 
        for (i = 0; i < EFX_MAC_NSTATS; ++i) {
                if (EFX_MAC_STAT_SUPPORTED(port->mac_stats_mask, i)) {
-                       if (nstats < xstats_count)
+                       if (nstats < xstats_count) {
                                strlcpy(xstats_names[nstats].name,
                                        efx_mac_stat_name(sa->nic, i),
                                        sizeof(xstats_names[0].name));
+                               nb_written++;
+                       }
                        nstats++;
                }
        }
 
+       ret = sfc_sw_xstats_get_names(sa, xstats_names, xstats_count,
+                                     &nb_written, &nstats);
+       if (ret != 0) {
+               SFC_ASSERT(ret < 0);
+               return ret;
+       }
+
        return nstats;
 }
 
@@ -774,34 +879,64 @@ sfc_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
                     uint64_t *values, unsigned int n)
 {
        struct sfc_adapter *sa = sfc_adapter_by_eth_dev(dev);
+       struct sfc_port *port = &sa->port;
+       unsigned int nb_supported;
+       unsigned int i;
+       int rc;
 
        if (unlikely(ids == NULL || values == NULL))
                return -EINVAL;
 
-       return sfc_port_get_mac_stats_by_id(sa, ids, values, n);
+       /*
+        * Values array could be filled in nonsequential order. Fill values with
+        * constant indicating invalid ID first.
+        */
+       for (i = 0; i < n; i++)
+               values[i] = SFC_XSTAT_ID_INVALID_VAL;
+
+       rc = sfc_port_get_mac_stats_by_id(sa, ids, values, n);
+       if (rc != 0)
+               return rc;
+
+       nb_supported = port->mac_stats_nb_supported;
+       sfc_sw_xstats_get_vals_by_id(sa, ids, values, n, &nb_supported);
+
+       /* Return number of written stats before invalid ID is encountered. */
+       for (i = 0; i < n; i++) {
+               if (values[i] == SFC_XSTAT_ID_INVALID_VAL)
+                       return i;
+       }
+
+       return n;
 }
 
 static int
 sfc_xstats_get_names_by_id(struct rte_eth_dev *dev,
+                          const uint64_t *ids,
                           struct rte_eth_xstat_name *xstats_names,
-                          const uint64_t *ids, unsigned int size)
+                          unsigned int size)
 {
        struct sfc_adapter *sa = sfc_adapter_by_eth_dev(dev);
        struct sfc_port *port = &sa->port;
        unsigned int nb_supported;
        unsigned int i;
+       int ret;
 
        if (unlikely(xstats_names == NULL && ids != NULL) ||
            unlikely(xstats_names != NULL && ids == NULL))
                return -EINVAL;
 
-       sfc_adapter_lock(sa);
+       if (unlikely(xstats_names == NULL && ids == NULL))
+               return sfc_xstats_get_nb_supported(sa);
 
-       if (unlikely(xstats_names == NULL && ids == NULL)) {
-               nb_supported = port->mac_stats_nb_supported;
-               sfc_adapter_unlock(sa);
-               return nb_supported;
-       }
+       /*
+        * Names array could be filled in nonsequential order. Fill names with
+        * string indicating invalid ID first.
+        */
+       for (i = 0; i < size; i++)
+               xstats_names[i].name[0] = SFC_XSTAT_ID_INVALID_NAME;
+
+       sfc_adapter_lock(sa);
 
        SFC_ASSERT(port->mac_stats_nb_supported <=
                   RTE_DIM(port->mac_stats_by_id));
@@ -812,14 +947,26 @@ sfc_xstats_get_names_by_id(struct rte_eth_dev *dev,
                                efx_mac_stat_name(sa->nic,
                                                 port->mac_stats_by_id[ids[i]]),
                                sizeof(xstats_names[0].name));
-               } else {
-                       sfc_adapter_unlock(sa);
-                       return i;
                }
        }
 
+       nb_supported = port->mac_stats_nb_supported;
+
        sfc_adapter_unlock(sa);
 
+       ret = sfc_sw_xstats_get_names_by_id(sa, ids, xstats_names, size,
+                                           &nb_supported);
+       if (ret != 0) {
+               SFC_ASSERT(ret < 0);
+               return ret;
+       }
+
+       /* Return number of written names before invalid ID is encountered. */
+       for (i = 0; i < size; i++) {
+               if (xstats_names[i].name[0] == SFC_XSTAT_ID_INVALID_NAME)
+                       return i;
+       }
+
        return size;
 }
 
@@ -833,7 +980,7 @@ sfc_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
 
        sfc_adapter_lock(sa);
 
-       if (sa->state == SFC_ADAPTER_STARTED)
+       if (sa->state == SFC_ETHDEV_STARTED)
                efx_mac_fcntl_get(sa->nic, &wanted_fc, &link_fc);
        else
                link_fc = sa->port.flow_ctrl;
@@ -899,7 +1046,7 @@ sfc_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
 
        sfc_adapter_lock(sa);
 
-       if (sa->state == SFC_ADAPTER_STARTED) {
+       if (sa->state == SFC_ETHDEV_STARTED) {
                rc = efx_mac_fcntl_set(sa->nic, fcntl, fc_conf->autoneg);
                if (rc != 0)
                        goto fail_mac_fcntl_set;
@@ -979,7 +1126,7 @@ sfc_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
                goto fail_check_scatter;
 
        if (pdu != sa->port.pdu) {
-               if (sa->state == SFC_ADAPTER_STARTED) {
+               if (sa->state == SFC_ETHDEV_STARTED) {
                        sfc_stop(sa);
 
                        old_pdu = sa->port.pdu;
@@ -1056,7 +1203,7 @@ sfc_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr)
                goto unlock;
        }
 
-       if (sa->state != SFC_ADAPTER_STARTED) {
+       if (sa->state != SFC_ETHDEV_STARTED) {
                sfc_notice(sa, "the port is not started");
                sfc_notice(sa, "the new MAC address will be set on port start");
 
@@ -1143,7 +1290,7 @@ sfc_set_mc_addr_list(struct rte_eth_dev *dev,
 
        port->nb_mcast_addrs = nb_mc_addr;
 
-       if (sa->state != SFC_ADAPTER_STARTED)
+       if (sa->state != SFC_ETHDEV_STARTED)
                return 0;
 
        rc = efx_mac_multicast_list_set(sa->nic, port->mcast_addrs,
@@ -1224,21 +1371,6 @@ sfc_rx_queue_count(struct rte_eth_dev *dev, uint16_t ethdev_qid)
        return sap->dp_rx->qdesc_npending(rxq_info->dp);
 }
 
-/*
- * The function is used by the secondary process as well. It must not
- * use any process-local pointers from the adapter data.
- */
-static int
-sfc_rx_descriptor_done(void *queue, uint16_t offset)
-{
-       struct sfc_dp_rxq *dp_rxq = queue;
-       const struct sfc_dp_rx *dp_rx;
-
-       dp_rx = sfc_dp_rx_by_dp_rxq(dp_rxq);
-
-       return offset < dp_rx->qdesc_npending(dp_rxq);
-}
-
 /*
  * The function is used by the secondary process as well. It must not
  * use any process-local pointers from the adapter data.
@@ -1284,7 +1416,7 @@ sfc_rx_queue_start(struct rte_eth_dev *dev, uint16_t ethdev_qid)
        sfc_adapter_lock(sa);
 
        rc = EINVAL;
-       if (sa->state != SFC_ADAPTER_STARTED)
+       if (sa->state != SFC_ETHDEV_STARTED)
                goto fail_not_started;
 
        rxq_info = sfc_rxq_info_by_ethdev_qid(sas, sfc_ethdev_qid);
@@ -1348,7 +1480,7 @@ sfc_tx_queue_start(struct rte_eth_dev *dev, uint16_t ethdev_qid)
        sfc_adapter_lock(sa);
 
        rc = EINVAL;
-       if (sa->state != SFC_ADAPTER_STARTED)
+       if (sa->state != SFC_ETHDEV_STARTED)
                goto fail_not_started;
 
        txq_info = sfc_txq_info_by_ethdev_qid(sas, ethdev_qid);
@@ -1456,7 +1588,7 @@ sfc_dev_udp_tunnel_op(struct rte_eth_dev *dev,
        if (rc != 0)
                goto fail_op;
 
-       if (sa->state == SFC_ADAPTER_STARTED) {
+       if (sa->state == SFC_ETHDEV_STARTED) {
                rc = efx_tunnel_reconfigure(sa->nic);
                if (rc == EAGAIN) {
                        /*
@@ -1592,7 +1724,7 @@ sfc_dev_rss_hash_update(struct rte_eth_dev *dev,
        }
 
        if (rss_conf->rss_key != NULL) {
-               if (sa->state == SFC_ADAPTER_STARTED) {
+               if (sa->state == SFC_ETHDEV_STARTED) {
                        for (key_i = 0; key_i < n_contexts; key_i++) {
                                rc = efx_rx_scale_key_set(sa->nic,
                                                          contexts[key_i],
@@ -1719,7 +1851,7 @@ sfc_dev_rss_reta_update(struct rte_eth_dev *dev,
                }
        }
 
-       if (sa->state == SFC_ADAPTER_STARTED) {
+       if (sa->state == SFC_ETHDEV_STARTED) {
                rc = efx_rx_scale_tbl_set(sa->nic, EFX_RSS_CONTEXT_DEFAULT,
                                          rss_tbl_new, EFX_RSS_TBL_SIZE);
                if (rc != 0)
@@ -1787,6 +1919,177 @@ sfc_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t ethdev_qid)
        return sap->dp_rx->intr_disable(rxq_info->dp);
 }
 
+struct sfc_mport_journal_ctx {
+       struct sfc_adapter              *sa;
+       uint16_t                        switch_domain_id;
+       uint32_t                        mcdi_handle;
+       bool                            controllers_assigned;
+       efx_pcie_interface_t            *controllers;
+       size_t                          nb_controllers;
+};
+
+static int
+sfc_journal_ctx_add_controller(struct sfc_mport_journal_ctx *ctx,
+                              efx_pcie_interface_t intf)
+{
+       efx_pcie_interface_t *new_controllers;
+       size_t i, target;
+       size_t new_size;
+
+       if (ctx->controllers == NULL) {
+               ctx->controllers = rte_malloc("sfc_controller_mapping",
+                                             sizeof(ctx->controllers[0]), 0);
+               if (ctx->controllers == NULL)
+                       return ENOMEM;
+
+               ctx->controllers[0] = intf;
+               ctx->nb_controllers = 1;
+
+               return 0;
+       }
+
+       for (i = 0; i < ctx->nb_controllers; i++) {
+               if (ctx->controllers[i] == intf)
+                       return 0;
+               if (ctx->controllers[i] > intf)
+                       break;
+       }
+       target = i;
+
+       ctx->nb_controllers += 1;
+       new_size = ctx->nb_controllers * sizeof(ctx->controllers[0]);
+
+       new_controllers = rte_realloc(ctx->controllers, new_size, 0);
+       if (new_controllers == NULL) {
+               rte_free(ctx->controllers);
+               return ENOMEM;
+       }
+       ctx->controllers = new_controllers;
+
+       for (i = target + 1; i < ctx->nb_controllers; i++)
+               ctx->controllers[i] = ctx->controllers[i - 1];
+
+       ctx->controllers[target] = intf;
+
+       return 0;
+}
+
+static efx_rc_t
+sfc_process_mport_journal_entry(struct sfc_mport_journal_ctx *ctx,
+                               efx_mport_desc_t *mport)
+{
+       efx_mport_sel_t ethdev_mport;
+       int rc;
+
+       sfc_dbg(ctx->sa,
+               "processing mport id %u (controller %u pf %u vf %u)",
+               mport->emd_id.id, mport->emd_vnic.ev_intf,
+               mport->emd_vnic.ev_pf, mport->emd_vnic.ev_vf);
+       efx_mae_mport_invalid(&ethdev_mport);
+
+       if (!ctx->controllers_assigned) {
+               rc = sfc_journal_ctx_add_controller(ctx,
+                                                   mport->emd_vnic.ev_intf);
+               if (rc != 0)
+                       return rc;
+       }
+
+       return 0;
+}
+
+static efx_rc_t
+sfc_process_mport_journal_cb(void *data, efx_mport_desc_t *mport,
+                            size_t mport_len)
+{
+       struct sfc_mport_journal_ctx *ctx = data;
+
+       if (ctx == NULL || ctx->sa == NULL) {
+               sfc_err(ctx->sa, "received NULL context or SFC adapter");
+               return EINVAL;
+       }
+
+       if (mport_len != sizeof(*mport)) {
+               sfc_err(ctx->sa, "actual and expected mport buffer sizes differ");
+               return EINVAL;
+       }
+
+       SFC_ASSERT(sfc_adapter_is_locked(ctx->sa));
+
+       /*
+        * If a zombie flag is set, it means the mport has been marked for
+        * deletion and cannot be used for any new operations. The mport will
+        * be destroyed completely once all references to it are released.
+        */
+       if (mport->emd_zombie) {
+               sfc_dbg(ctx->sa, "mport is a zombie, skipping");
+               return 0;
+       }
+       if (mport->emd_type != EFX_MPORT_TYPE_VNIC) {
+               sfc_dbg(ctx->sa, "mport is not a VNIC, skipping");
+               return 0;
+       }
+       if (mport->emd_vnic.ev_client_type != EFX_MPORT_VNIC_CLIENT_FUNCTION) {
+               sfc_dbg(ctx->sa, "mport is not a function, skipping");
+               return 0;
+       }
+       if (mport->emd_vnic.ev_handle == ctx->mcdi_handle) {
+               sfc_dbg(ctx->sa, "mport is this driver instance, skipping");
+               return 0;
+       }
+
+       return sfc_process_mport_journal_entry(ctx, mport);
+}
+
+static int
+sfc_process_mport_journal(struct sfc_adapter *sa)
+{
+       struct sfc_mport_journal_ctx ctx;
+       const efx_pcie_interface_t *controllers;
+       size_t nb_controllers;
+       efx_rc_t efx_rc;
+       int rc;
+
+       memset(&ctx, 0, sizeof(ctx));
+       ctx.sa = sa;
+       ctx.switch_domain_id = sa->mae.switch_domain_id;
+
+       efx_rc = efx_mcdi_get_own_client_handle(sa->nic, &ctx.mcdi_handle);
+       if (efx_rc != 0) {
+               sfc_err(sa, "failed to get own MCDI handle");
+               SFC_ASSERT(efx_rc > 0);
+               return efx_rc;
+       }
+
+       rc = sfc_mae_switch_domain_controllers(ctx.switch_domain_id,
+                                              &controllers, &nb_controllers);
+       if (rc != 0) {
+               sfc_err(sa, "failed to get controller mapping");
+               return rc;
+       }
+
+       ctx.controllers_assigned = controllers != NULL;
+       ctx.controllers = NULL;
+       ctx.nb_controllers = 0;
+
+       efx_rc = efx_mae_read_mport_journal(sa->nic,
+                                           sfc_process_mport_journal_cb, &ctx);
+       if (efx_rc != 0) {
+               sfc_err(sa, "failed to process MAE mport journal");
+               SFC_ASSERT(efx_rc > 0);
+               return efx_rc;
+       }
+
+       if (controllers == NULL) {
+               rc = sfc_mae_switch_domain_map_controllers(ctx.switch_domain_id,
+                                                          ctx.controllers,
+                                                          ctx.nb_controllers);
+               if (rc != 0)
+                       return rc;
+       }
+
+       return 0;
+}
+
 static const struct eth_dev_ops sfc_eth_dev_ops = {
        .dev_configure                  = sfc_dev_configure,
        .dev_start                      = sfc_dev_start,
@@ -1836,6 +2139,10 @@ static const struct eth_dev_ops sfc_eth_dev_ops = {
        .pool_ops_supported             = sfc_pool_ops_supported,
 };
 
+struct sfc_ethdev_init_data {
+       uint16_t                nb_representors;
+};
+
 /**
  * Duplicate a string in potentially shared memory required for
  * multi-process support.
@@ -1973,7 +2280,6 @@ sfc_eth_dev_set_ops(struct rte_eth_dev *dev)
        dev->tx_pkt_burst = dp_tx->pkt_burst;
 
        dev->rx_queue_count = sfc_rx_queue_count;
-       dev->rx_descriptor_done = sfc_rx_descriptor_done;
        dev->rx_descriptor_status = sfc_rx_descriptor_status;
        dev->tx_descriptor_status = sfc_tx_descriptor_status;
        dev->dev_ops = &sfc_eth_dev_ops;
@@ -2081,7 +2387,6 @@ sfc_eth_dev_secondary_init(struct rte_eth_dev *dev, uint32_t logtype_main)
        dev->tx_pkt_prepare = dp_tx->pkt_prepare;
        dev->tx_pkt_burst = dp_tx->pkt_burst;
        dev->rx_queue_count = sfc_rx_queue_count;
-       dev->rx_descriptor_done = sfc_rx_descriptor_done;
        dev->rx_descriptor_status = sfc_rx_descriptor_status;
        dev->tx_descriptor_status = sfc_tx_descriptor_status;
        dev->dev_ops = &sfc_eth_dev_secondary_ops;
@@ -2117,10 +2422,52 @@ sfc_register_dp(void)
 }
 
 static int
-sfc_eth_dev_init(struct rte_eth_dev *dev)
+sfc_parse_switch_mode(struct sfc_adapter *sa, bool has_representors)
+{
+       const efx_nic_cfg_t *encp = efx_nic_cfg_get(sa->nic);
+       const char *switch_mode = NULL;
+       int rc;
+
+       sfc_log_init(sa, "entry");
+
+       rc = sfc_kvargs_process(sa, SFC_KVARG_SWITCH_MODE,
+                               sfc_kvarg_string_handler, &switch_mode);
+       if (rc != 0)
+               goto fail_kvargs;
+
+       if (switch_mode == NULL) {
+               sa->switchdev = encp->enc_mae_supported &&
+                               (!encp->enc_datapath_cap_evb ||
+                                has_representors);
+       } else if (strcasecmp(switch_mode, SFC_KVARG_SWITCH_MODE_LEGACY) == 0) {
+               sa->switchdev = false;
+       } else if (strcasecmp(switch_mode,
+                             SFC_KVARG_SWITCH_MODE_SWITCHDEV) == 0) {
+               sa->switchdev = true;
+       } else {
+               sfc_err(sa, "invalid switch mode device argument '%s'",
+                       switch_mode);
+               rc = EINVAL;
+               goto fail_mode;
+       }
+
+       sfc_log_init(sa, "done");
+
+       return 0;
+
+fail_mode:
+fail_kvargs:
+       sfc_log_init(sa, "failed: %s", rte_strerror(rc));
+
+       return rc;
+}
+
+static int
+sfc_eth_dev_init(struct rte_eth_dev *dev, void *init_params)
 {
        struct sfc_adapter_shared *sas = sfc_adapter_shared_by_eth_dev(dev);
        struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
+       struct sfc_ethdev_init_data *init_data = init_params;
        uint32_t logtype_main;
        struct sfc_adapter *sa;
        int rc;
@@ -2135,6 +2482,10 @@ sfc_eth_dev_init(struct rte_eth_dev *dev)
                return 1;
        }
 
+       rc = sfc_dp_mport_register();
+       if (rc != 0)
+               return rc;
+
        sfc_register_dp();
 
        logtype_main = sfc_register_logtype(&pci_dev->addr,
@@ -2203,6 +2554,14 @@ sfc_eth_dev_init(struct rte_eth_dev *dev)
        if (rc != 0)
                goto fail_probe;
 
+       /*
+        * Selecting a default switch mode requires the NIC to be probed and
+        * to have its capabilities filled in.
+        */
+       rc = sfc_parse_switch_mode(sa, init_data->nb_representors > 0);
+       if (rc != 0)
+               goto fail_switch_mode;
+
        sfc_log_init(sa, "set device ops");
        rc = sfc_eth_dev_set_ops(dev);
        if (rc != 0)
@@ -2213,6 +2572,13 @@ sfc_eth_dev_init(struct rte_eth_dev *dev)
        if (rc != 0)
                goto fail_attach;
 
+       if (sa->switchdev && sa->mae.status != SFC_MAE_STATUS_SUPPORTED) {
+               sfc_err(sa,
+                       "failed to enable switchdev mode without MAE support");
+               rc = ENOTSUP;
+               goto fail_switchdev_no_mae;
+       }
+
        encp = efx_nic_cfg_get(sa->nic);
 
        /*
@@ -2227,10 +2593,14 @@ sfc_eth_dev_init(struct rte_eth_dev *dev)
        sfc_log_init(sa, "done");
        return 0;
 
+fail_switchdev_no_mae:
+       sfc_detach(sa);
+
 fail_attach:
        sfc_eth_dev_clear_ops(dev);
 
 fail_set_ops:
+fail_switch_mode:
        sfc_unprobe(sa);
 
 fail_probe:
@@ -2273,11 +2643,297 @@ static const struct rte_pci_id pci_id_sfc_efx_map[] = {
        { .vendor_id = 0 /* sentinel */ }
 };
 
+static int
+sfc_parse_rte_devargs(const char *args, struct rte_eth_devargs *devargs)
+{
+       struct rte_eth_devargs eth_da = { .nb_representor_ports = 0 };
+       int rc;
+
+       if (args != NULL) {
+               rc = rte_eth_devargs_parse(args, &eth_da);
+               if (rc != 0) {
+                       SFC_GENERIC_LOG(ERR,
+                                       "Failed to parse generic devargs '%s'",
+                                       args);
+                       return rc;
+               }
+       }
+
+       *devargs = eth_da;
+
+       return 0;
+}
+
+static int
+sfc_eth_dev_find_or_create(struct rte_pci_device *pci_dev,
+                          struct sfc_ethdev_init_data *init_data,
+                          struct rte_eth_dev **devp,
+                          bool *dev_created)
+{
+       struct rte_eth_dev *dev;
+       bool created = false;
+       int rc;
+
+       dev = rte_eth_dev_allocated(pci_dev->device.name);
+       if (dev == NULL) {
+               rc = rte_eth_dev_create(&pci_dev->device, pci_dev->device.name,
+                                       sizeof(struct sfc_adapter_shared),
+                                       eth_dev_pci_specific_init, pci_dev,
+                                       sfc_eth_dev_init, init_data);
+               if (rc != 0) {
+                       SFC_GENERIC_LOG(ERR, "Failed to create sfc ethdev '%s'",
+                                       pci_dev->device.name);
+                       return rc;
+               }
+
+               created = true;
+
+               dev = rte_eth_dev_allocated(pci_dev->device.name);
+               if (dev == NULL) {
+                       SFC_GENERIC_LOG(ERR,
+                               "Failed to find allocated sfc ethdev '%s'",
+                               pci_dev->device.name);
+                       return -ENODEV;
+               }
+       }
+
+       *devp = dev;
+       *dev_created = created;
+
+       return 0;
+}
+
+static int
+sfc_eth_dev_create_repr(struct sfc_adapter *sa,
+                       efx_pcie_interface_t controller,
+                       uint16_t port,
+                       uint16_t repr_port,
+                       enum rte_eth_representor_type type)
+{
+       struct sfc_repr_entity_info entity;
+       efx_mport_sel_t mport_sel;
+       int rc;
+
+       switch (type) {
+       case RTE_ETH_REPRESENTOR_NONE:
+               return 0;
+       case RTE_ETH_REPRESENTOR_VF:
+       case RTE_ETH_REPRESENTOR_PF:
+               break;
+       case RTE_ETH_REPRESENTOR_SF:
+               sfc_err(sa, "SF representors are not supported");
+               return ENOTSUP;
+       default:
+               sfc_err(sa, "unknown representor type: %d", type);
+               return ENOTSUP;
+       }
+
+       rc = efx_mae_mport_by_pcie_mh_function(controller,
+                                              port,
+                                              repr_port,
+                                              &mport_sel);
+       if (rc != 0) {
+               sfc_err(sa,
+                       "failed to get m-port selector for controller %u port %u repr_port %u: %s",
+                       controller, port, repr_port, rte_strerror(-rc));
+               return rc;
+       }
+
+       memset(&entity, 0, sizeof(entity));
+       entity.type = type;
+       entity.intf = controller;
+       entity.pf = port;
+       entity.vf = repr_port;
+
+       rc = sfc_repr_create(sa->eth_dev, &entity, sa->mae.switch_domain_id,
+                            &mport_sel);
+       if (rc != 0) {
+               sfc_err(sa,
+                       "failed to create representor for controller %u port %u repr_port %u: %s",
+                       controller, port, repr_port, rte_strerror(-rc));
+               return rc;
+       }
+
+       return 0;
+}
+
+static int
+sfc_eth_dev_create_repr_port(struct sfc_adapter *sa,
+                            const struct rte_eth_devargs *eth_da,
+                            efx_pcie_interface_t controller,
+                            uint16_t port)
+{
+       int first_error = 0;
+       uint16_t i;
+       int rc;
+
+       if (eth_da->type == RTE_ETH_REPRESENTOR_PF) {
+               return sfc_eth_dev_create_repr(sa, controller, port,
+                                              EFX_PCI_VF_INVALID,
+                                              eth_da->type);
+       }
+
+       for (i = 0; i < eth_da->nb_representor_ports; i++) {
+               rc = sfc_eth_dev_create_repr(sa, controller, port,
+                                            eth_da->representor_ports[i],
+                                            eth_da->type);
+               if (rc != 0 && first_error == 0)
+                       first_error = rc;
+       }
+
+       return first_error;
+}
+
+static int
+sfc_eth_dev_create_repr_controller(struct sfc_adapter *sa,
+                                  const struct rte_eth_devargs *eth_da,
+                                  efx_pcie_interface_t controller)
+{
+       const efx_nic_cfg_t *encp;
+       int first_error = 0;
+       uint16_t default_port;
+       uint16_t i;
+       int rc;
+
+       if (eth_da->nb_ports == 0) {
+               encp = efx_nic_cfg_get(sa->nic);
+               default_port = encp->enc_intf == controller ? encp->enc_pf : 0;
+               return sfc_eth_dev_create_repr_port(sa, eth_da, controller,
+                                                   default_port);
+       }
+
+       for (i = 0; i < eth_da->nb_ports; i++) {
+               rc = sfc_eth_dev_create_repr_port(sa, eth_da, controller,
+                                                 eth_da->ports[i]);
+               if (rc != 0 && first_error == 0)
+                       first_error = rc;
+       }
+
+       return first_error;
+}
+
+static int
+sfc_eth_dev_create_representors(struct rte_eth_dev *dev,
+                               const struct rte_eth_devargs *eth_da)
+{
+       efx_pcie_interface_t intf;
+       const efx_nic_cfg_t *encp;
+       struct sfc_adapter *sa;
+       uint16_t switch_domain_id;
+       uint16_t i;
+       int rc;
+
+       sa = sfc_adapter_by_eth_dev(dev);
+       switch_domain_id = sa->mae.switch_domain_id;
+
+       switch (eth_da->type) {
+       case RTE_ETH_REPRESENTOR_NONE:
+               return 0;
+       case RTE_ETH_REPRESENTOR_PF:
+       case RTE_ETH_REPRESENTOR_VF:
+               break;
+       case RTE_ETH_REPRESENTOR_SF:
+               sfc_err(sa, "SF representors are not supported");
+               return -ENOTSUP;
+       default:
+               sfc_err(sa, "unknown representor type: %d",
+                       eth_da->type);
+               return -ENOTSUP;
+       }
+
+       if (!sa->switchdev) {
+               sfc_err(sa, "cannot create representors in non-switchdev mode");
+               return -EINVAL;
+       }
+
+       if (!sfc_repr_available(sfc_sa2shared(sa))) {
+               sfc_err(sa, "cannot create representors: unsupported");
+
+               return -ENOTSUP;
+       }
+
+       /*
+        * This is needed to construct the DPDK controller -> EFX interface
+        * mapping.
+        */
+       sfc_adapter_lock(sa);
+       rc = sfc_process_mport_journal(sa);
+       sfc_adapter_unlock(sa);
+       if (rc != 0) {
+               SFC_ASSERT(rc > 0);
+               return -rc;
+       }
+
+       if (eth_da->nb_mh_controllers > 0) {
+               for (i = 0; i < eth_da->nb_mh_controllers; i++) {
+                       rc = sfc_mae_switch_domain_get_intf(switch_domain_id,
+                                               eth_da->mh_controllers[i],
+                                               &intf);
+                       if (rc != 0) {
+                               sfc_err(sa, "failed to get representor");
+                               continue;
+                       }
+                       sfc_eth_dev_create_repr_controller(sa, eth_da, intf);
+               }
+       } else {
+               encp = efx_nic_cfg_get(sa->nic);
+               sfc_eth_dev_create_repr_controller(sa, eth_da, encp->enc_intf);
+       }
+
+       return 0;
+}
+
 static int sfc_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
        struct rte_pci_device *pci_dev)
 {
-       return rte_eth_dev_pci_generic_probe(pci_dev,
-               sizeof(struct sfc_adapter_shared), sfc_eth_dev_init);
+       struct sfc_ethdev_init_data init_data;
+       struct rte_eth_devargs eth_da;
+       struct rte_eth_dev *dev;
+       bool dev_created;
+       int rc;
+
+       if (pci_dev->device.devargs != NULL) {
+               rc = sfc_parse_rte_devargs(pci_dev->device.devargs->args,
+                                          &eth_da);
+               if (rc != 0)
+                       return rc;
+       } else {
+               memset(&eth_da, 0, sizeof(eth_da));
+       }
+
+       /* If no VF representors specified, check for PF ones */
+       if (eth_da.nb_representor_ports > 0)
+               init_data.nb_representors = eth_da.nb_representor_ports;
+       else
+               init_data.nb_representors = eth_da.nb_ports;
+
+       if (init_data.nb_representors > 0 &&
+           rte_eal_process_type() != RTE_PROC_PRIMARY) {
+               SFC_GENERIC_LOG(ERR,
+                       "Create representors from secondary process not supported, dev '%s'",
+                       pci_dev->device.name);
+               return -ENOTSUP;
+       }
+
+       /*
+        * Driver supports RTE_PCI_DRV_PROBE_AGAIN. Hence create device only
+        * if it does not already exist. Re-probing an existing device is
+        * expected to allow additional representors to be configured.
+        */
+       rc = sfc_eth_dev_find_or_create(pci_dev, &init_data, &dev,
+                                       &dev_created);
+       if (rc != 0)
+               return rc;
+
+       rc = sfc_eth_dev_create_representors(dev, &eth_da);
+       if (rc != 0) {
+               if (dev_created)
+                       (void)rte_eth_dev_destroy(dev, sfc_eth_dev_uninit);
+
+               return rc;
+       }
+
+       return 0;
 }
 
 static int sfc_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
@@ -2289,7 +2945,8 @@ static struct rte_pci_driver sfc_efx_pmd = {
        .id_table = pci_id_sfc_efx_map,
        .drv_flags =
                RTE_PCI_DRV_INTR_LSC |
-               RTE_PCI_DRV_NEED_MAPPING,
+               RTE_PCI_DRV_NEED_MAPPING |
+               RTE_PCI_DRV_PROBE_AGAIN,
        .probe = sfc_eth_dev_pci_probe,
        .remove = sfc_eth_dev_pci_remove,
 };
@@ -2298,6 +2955,7 @@ RTE_PMD_REGISTER_PCI(net_sfc_efx, sfc_efx_pmd);
 RTE_PMD_REGISTER_PCI_TABLE(net_sfc_efx, pci_id_sfc_efx_map);
 RTE_PMD_REGISTER_KMOD_DEP(net_sfc_efx, "* igb_uio | uio_pci_generic | vfio-pci");
 RTE_PMD_REGISTER_PARAM_STRING(net_sfc_efx,
+       SFC_KVARG_SWITCH_MODE "=" SFC_KVARG_VALUES_SWITCH_MODE " "
        SFC_KVARG_RX_DATAPATH "=" SFC_KVARG_VALUES_RX_DATAPATH " "
        SFC_KVARG_TX_DATAPATH "=" SFC_KVARG_VALUES_TX_DATAPATH " "
        SFC_KVARG_PERF_PROFILE "=" SFC_KVARG_VALUES_PERF_PROFILE " "