net/ice: support RSS
authorWenzhuo Lu <wenzhuo.lu@intel.com>
Tue, 18 Dec 2018 08:46:34 +0000 (16:46 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 21 Dec 2018 15:22:41 +0000 (16:22 +0100)
Add below ops,
reta_update
reta_query
rss_hash_update
rss_hash_conf_get

Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
Signed-off-by: Qiming Yang <qiming.yang@intel.com>
Signed-off-by: Xiaoyun Li <xiaoyun.li@intel.com>
Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
doc/guides/nics/features/ice.ini
drivers/net/ice/ice_ethdev.c
drivers/net/ice/ice_ethdev.h
drivers/net/ice/ice_rxtx.c

index b76cae3..b492ccd 100644 (file)
@@ -13,6 +13,9 @@ Jumbo frame          = Y
 TSO                  = Y
 Unicast MAC filter   = Y
 Multicast MAC filter = Y
+RSS hash             = Y
+RSS key update       = Y
+RSS reta update      = Y
 VLAN filter          = Y
 CRC offload          = Y
 VLAN offload         = Y
index 67ab06c..a5e8da6 100644 (file)
@@ -28,6 +28,16 @@ static int ice_vlan_offload_set(struct rte_eth_dev *dev, int mask);
 static int ice_vlan_tpid_set(struct rte_eth_dev *dev,
                             enum rte_vlan_type vlan_type,
                             uint16_t tpid);
+static int ice_rss_reta_update(struct rte_eth_dev *dev,
+                              struct rte_eth_rss_reta_entry64 *reta_conf,
+                              uint16_t reta_size);
+static int ice_rss_reta_query(struct rte_eth_dev *dev,
+                             struct rte_eth_rss_reta_entry64 *reta_conf,
+                             uint16_t reta_size);
+static int ice_rss_hash_update(struct rte_eth_dev *dev,
+                              struct rte_eth_rss_conf *rss_conf);
+static int ice_rss_hash_conf_get(struct rte_eth_dev *dev,
+                                struct rte_eth_rss_conf *rss_conf);
 static int ice_vlan_filter_set(struct rte_eth_dev *dev,
                               uint16_t vlan_id,
                               int on);
@@ -72,6 +82,10 @@ static const struct eth_dev_ops ice_eth_dev_ops = {
        .vlan_filter_set              = ice_vlan_filter_set,
        .vlan_offload_set             = ice_vlan_offload_set,
        .vlan_tpid_set                = ice_vlan_tpid_set,
+       .reta_update                  = ice_rss_reta_update,
+       .reta_query                   = ice_rss_reta_query,
+       .rss_hash_update              = ice_rss_hash_update,
+       .rss_hash_conf_get            = ice_rss_hash_conf_get,
        .vlan_pvid_set                = ice_vlan_pvid_set,
        .rxq_info_get                 = ice_rxq_info_get,
        .txq_info_get                 = ice_txq_info_get,
@@ -1526,6 +1540,7 @@ ice_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
 
        dev_info->reta_size = hw->func_caps.common_cap.rss_table_size;
        dev_info->hash_key_size = (VSIQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
+       dev_info->flow_type_rss_offloads = ICE_RSS_OFFLOAD_ALL;
 
        dev_info->default_rxconf = (struct rte_eth_rxconf) {
                .rx_thresh = {
@@ -2009,6 +2024,234 @@ ice_vlan_tpid_set(struct rte_eth_dev *dev,
        return ret;
 }
 
+static int
+ice_get_rss_lut(struct ice_vsi *vsi, uint8_t *lut, uint16_t lut_size)
+{
+       struct ice_pf *pf = ICE_VSI_TO_PF(vsi);
+       struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
+       int ret;
+
+       if (!lut)
+               return -EINVAL;
+
+       if (pf->flags & ICE_FLAG_RSS_AQ_CAPABLE) {
+               ret = ice_aq_get_rss_lut(hw, vsi->idx, TRUE,
+                                        lut, lut_size);
+               if (ret) {
+                       PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
+                       return -EINVAL;
+               }
+       } else {
+               uint64_t *lut_dw = (uint64_t *)lut;
+               uint16_t i, lut_size_dw = lut_size / 4;
+
+               for (i = 0; i < lut_size_dw; i++)
+                       lut_dw[i] = ICE_READ_REG(hw, PFQF_HLUT(i));
+       }
+
+       return 0;
+}
+
+static int
+ice_set_rss_lut(struct ice_vsi *vsi, uint8_t *lut, uint16_t lut_size)
+{
+       struct ice_pf *pf = ICE_VSI_TO_PF(vsi);
+       struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
+       int ret;
+
+       if (!vsi || !lut)
+               return -EINVAL;
+
+       if (pf->flags & ICE_FLAG_RSS_AQ_CAPABLE) {
+               ret = ice_aq_set_rss_lut(hw, vsi->idx, TRUE,
+                                        lut, lut_size);
+               if (ret) {
+                       PMD_DRV_LOG(ERR, "Failed to set RSS lookup table");
+                       return -EINVAL;
+               }
+       } else {
+               uint64_t *lut_dw = (uint64_t *)lut;
+               uint16_t i, lut_size_dw = lut_size / 4;
+
+               for (i = 0; i < lut_size_dw; i++)
+                       ICE_WRITE_REG(hw, PFQF_HLUT(i), lut_dw[i]);
+
+               ice_flush(hw);
+       }
+
+       return 0;
+}
+
+static int
+ice_rss_reta_update(struct rte_eth_dev *dev,
+                   struct rte_eth_rss_reta_entry64 *reta_conf,
+                   uint16_t reta_size)
+{
+       struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
+       struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+       uint16_t i, lut_size = hw->func_caps.common_cap.rss_table_size;
+       uint16_t idx, shift;
+       uint8_t *lut;
+       int ret;
+
+       if (reta_size != lut_size ||
+           reta_size > ETH_RSS_RETA_SIZE_512) {
+               PMD_DRV_LOG(ERR,
+                           "The size of hash lookup table configured (%d)"
+                           "doesn't match the number hardware can "
+                           "supported (%d)",
+                           reta_size, lut_size);
+               return -EINVAL;
+       }
+
+       lut = rte_zmalloc(NULL, reta_size, 0);
+       if (!lut) {
+               PMD_DRV_LOG(ERR, "No memory can be allocated");
+               return -ENOMEM;
+       }
+       ret = ice_get_rss_lut(pf->main_vsi, lut, reta_size);
+       if (ret)
+               goto out;
+
+       for (i = 0; i < reta_size; i++) {
+               idx = i / RTE_RETA_GROUP_SIZE;
+               shift = i % RTE_RETA_GROUP_SIZE;
+               if (reta_conf[idx].mask & (1ULL << shift))
+                       lut[i] = reta_conf[idx].reta[shift];
+       }
+       ret = ice_set_rss_lut(pf->main_vsi, lut, reta_size);
+
+out:
+       rte_free(lut);
+
+       return ret;
+}
+
+static int
+ice_rss_reta_query(struct rte_eth_dev *dev,
+                  struct rte_eth_rss_reta_entry64 *reta_conf,
+                  uint16_t reta_size)
+{
+       struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
+       struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+       uint16_t i, lut_size = hw->func_caps.common_cap.rss_table_size;
+       uint16_t idx, shift;
+       uint8_t *lut;
+       int ret;
+
+       if (reta_size != lut_size ||
+           reta_size > ETH_RSS_RETA_SIZE_512) {
+               PMD_DRV_LOG(ERR,
+                           "The size of hash lookup table configured (%d)"
+                           "doesn't match the number hardware can "
+                           "supported (%d)",
+                           reta_size, lut_size);
+               return -EINVAL;
+       }
+
+       lut = rte_zmalloc(NULL, reta_size, 0);
+       if (!lut) {
+               PMD_DRV_LOG(ERR, "No memory can be allocated");
+               return -ENOMEM;
+       }
+
+       ret = ice_get_rss_lut(pf->main_vsi, lut, reta_size);
+       if (ret)
+               goto out;
+
+       for (i = 0; i < reta_size; i++) {
+               idx = i / RTE_RETA_GROUP_SIZE;
+               shift = i % RTE_RETA_GROUP_SIZE;
+               if (reta_conf[idx].mask & (1ULL << shift))
+                       reta_conf[idx].reta[shift] = lut[i];
+       }
+
+out:
+       rte_free(lut);
+
+       return ret;
+}
+
+static int
+ice_set_rss_key(struct ice_vsi *vsi, uint8_t *key, uint8_t key_len)
+{
+       struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
+       int ret = 0;
+
+       if (!key || key_len == 0) {
+               PMD_DRV_LOG(DEBUG, "No key to be configured");
+               return 0;
+       } else if (key_len != (VSIQF_HKEY_MAX_INDEX + 1) *
+                  sizeof(uint32_t)) {
+               PMD_DRV_LOG(ERR, "Invalid key length %u", key_len);
+               return -EINVAL;
+       }
+
+       struct ice_aqc_get_set_rss_keys *key_dw =
+               (struct ice_aqc_get_set_rss_keys *)key;
+
+       ret = ice_aq_set_rss_key(hw, vsi->idx, key_dw);
+       if (ret) {
+               PMD_DRV_LOG(ERR, "Failed to configure RSS key via AQ");
+               ret = -EINVAL;
+       }
+
+       return ret;
+}
+
+static int
+ice_get_rss_key(struct ice_vsi *vsi, uint8_t *key, uint8_t *key_len)
+{
+       struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
+       int ret;
+
+       if (!key || !key_len)
+               return -EINVAL;
+
+       ret = ice_aq_get_rss_key
+               (hw, vsi->idx,
+                (struct ice_aqc_get_set_rss_keys *)key);
+       if (ret) {
+               PMD_DRV_LOG(ERR, "Failed to get RSS key via AQ");
+               return -EINVAL;
+       }
+       *key_len = (VSIQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
+
+       return 0;
+}
+
+static int
+ice_rss_hash_update(struct rte_eth_dev *dev,
+                   struct rte_eth_rss_conf *rss_conf)
+{
+       enum ice_status status = ICE_SUCCESS;
+       struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
+       struct ice_vsi *vsi = pf->main_vsi;
+
+       /* set hash key */
+       status = ice_set_rss_key(vsi, rss_conf->rss_key, rss_conf->rss_key_len);
+       if (status)
+               return status;
+
+       /* TODO: hash enable config, ice_add_rss_cfg */
+       return 0;
+}
+
+static int
+ice_rss_hash_conf_get(struct rte_eth_dev *dev,
+                     struct rte_eth_rss_conf *rss_conf)
+{
+       struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
+       struct ice_vsi *vsi = pf->main_vsi;
+
+       ice_get_rss_key(vsi, rss_conf->rss_key,
+                       &rss_conf->rss_key_len);
+
+       /* TODO: default set to 0 as hf config is not supported now */
+       rss_conf->rss_hf = 0;
+       return 0;
+}
+
 static int
 ice_vsi_vlan_pvid_set(struct ice_vsi *vsi, struct ice_vsi_vlan_pvid_info *info)
 {
index 94e45c8..3cefa5b 100644 (file)
                       ICE_FLAG_RSS_AQ_CAPABLE | \
                       ICE_FLAG_VF_MAC_BY_PF)
 
+#define ICE_RSS_OFFLOAD_ALL ( \
+       ETH_RSS_FRAG_IPV4 | \
+       ETH_RSS_NONFRAG_IPV4_TCP | \
+       ETH_RSS_NONFRAG_IPV4_UDP | \
+       ETH_RSS_NONFRAG_IPV4_SCTP | \
+       ETH_RSS_NONFRAG_IPV4_OTHER | \
+       ETH_RSS_FRAG_IPV6 | \
+       ETH_RSS_NONFRAG_IPV6_TCP | \
+       ETH_RSS_NONFRAG_IPV6_UDP | \
+       ETH_RSS_NONFRAG_IPV6_SCTP | \
+       ETH_RSS_NONFRAG_IPV6_OTHER | \
+       ETH_RSS_L2_PAYLOAD)
+
 struct ice_adapter;
 
 /**
index 67bbd08..f88e733 100644 (file)
@@ -946,6 +946,20 @@ ice_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
        return desc;
 }
 
+/* Translate the rx descriptor status to pkt flags */
+static inline uint64_t
+ice_rxd_status_to_pkt_flags(uint64_t qword)
+{
+       uint64_t flags;
+
+       /* Check if RSS_HASH */
+       flags = (((qword >> ICE_RX_DESC_STATUS_FLTSTAT_S) &
+                 ICE_RX_DESC_FLTSTAT_RSS_HASH) ==
+                ICE_RX_DESC_FLTSTAT_RSS_HASH) ? PKT_RX_RSS_HASH : 0;
+
+       return flags;
+}
+
 /* Rx L3/L4 checksum */
 static inline uint64_t
 ice_rxd_error_to_pkt_flags(uint64_t qword)
@@ -1094,6 +1108,7 @@ ice_recv_pkts(void *rx_queue,
        struct ice_rx_queue *rxq = rx_queue;
        volatile union ice_rx_desc *rx_ring = rxq->rx_ring;
        volatile union ice_rx_desc *rxdp;
+       union ice_rx_desc rxd;
        struct ice_rx_entry *sw_ring = rxq->sw_ring;
        struct ice_rx_entry *rxe;
        struct rte_mbuf *nmb; /* new allocated mbuf */
@@ -1126,6 +1141,7 @@ ice_recv_pkts(void *rx_queue,
                        dev->data->rx_mbuf_alloc_failed++;
                        break;
                }
+               rxd = *rxdp; /* copy descriptor in ring to temp variable*/
 
                nb_hold++;
                rxe = &sw_ring[rx_id]; /* get corresponding mbuf in SW ring */
@@ -1160,7 +1176,11 @@ ice_recv_pkts(void *rx_queue,
                rxm->packet_type = ptype_tbl[(uint8_t)((qword1 &
                                                        ICE_RXD_QW1_PTYPE_M) >>
                                                       ICE_RXD_QW1_PTYPE_S)];
+               pkt_flags = ice_rxd_status_to_pkt_flags(qword1);
                pkt_flags |= ice_rxd_error_to_pkt_flags(qword1);
+               if (pkt_flags & PKT_RX_RSS_HASH)
+                       rxm->hash.rss =
+                               rte_le_to_cpu_32(rxd.wb.qword0.hi_dword.rss);
                rxm->ol_flags |= pkt_flags;
                /* copy old mbuf to rx_pkts */
                rx_pkts[nb_rx++] = rxm;