From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id B7053A04B5; Thu, 10 Sep 2020 09:41:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2FCE91C0CD; Thu, 10 Sep 2020 09:41:20 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 96D9F1C0CC for ; Thu, 10 Sep 2020 09:41:18 +0200 (CEST) IronPort-SDR: XnyNLwAnQqLblJcn3NGh4OEcFe9mGUFMWGYK4rNglT+ReCi9iQQxHZjr04V7yDQMX4GgA/SwkP /CHEicn3SsUw== X-IronPort-AV: E=McAfee;i="6000,8403,9739"; a="155884469" X-IronPort-AV: E=Sophos;i="5.76,412,1592895600"; d="scan'208";a="155884469" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2020 00:41:18 -0700 IronPort-SDR: 1prxmOXRcx7sMseltEJStbnStdU/7FemWfCFeq1Bq5kBsp0Q0POKcXigCepTto/rGsYG6I2O57 S92lF1Z02/jA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,412,1592895600"; d="scan'208";a="480787355" Received: from unknown (HELO npg-dpdk-cvl-simeisu-118d193.sh.intel.com) ([10.67.110.178]) by orsmga005.jf.intel.com with ESMTP; 10 Sep 2020 00:41:15 -0700 From: Simei Su To: qi.z.zhang@intel.com, qiming.yang@intel.com Cc: dev@dpdk.org, haiyue.wang@intel.com, beilei.xing@intel.com, Simei Su Date: Thu, 10 Sep 2020 15:37:33 +0800 Message-Id: <1599723455-353059-2-git-send-email-simei.su@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1599723455-353059-1-git-send-email-simei.su@intel.com> References: <1599723455-353059-1-git-send-email-simei.su@intel.com> Subject: [dpdk-dev] [PATCH v1 1/3] net/ice: get PF VSI map X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch gets PF vsi number when issuing ACL rule in DCF. Signed-off-by: Simei Su --- drivers/net/ice/ice_dcf.c | 1 + drivers/net/ice/ice_dcf.h | 1 + drivers/net/ice/ice_dcf_parent.c | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/drivers/net/ice/ice_dcf.c b/drivers/net/ice/ice_dcf.c index 2d803c5..d20e2b3 100644 --- a/drivers/net/ice/ice_dcf.c +++ b/drivers/net/ice/ice_dcf.c @@ -318,6 +318,7 @@ } hw->num_vfs = vsi_map->num_vfs; + hw->pf_vsi_id = vsi_map->pf_vsi; } if (!memcmp(hw->vf_vsi_map, vsi_map->vf_vsi, len)) { diff --git a/drivers/net/ice/ice_dcf.h b/drivers/net/ice/ice_dcf.h index a44a01e..ff02996 100644 --- a/drivers/net/ice/ice_dcf.h +++ b/drivers/net/ice/ice_dcf.h @@ -43,6 +43,7 @@ struct ice_dcf_hw { uint16_t num_vfs; uint16_t *vf_vsi_map; + uint16_t pf_vsi_id; struct virtchnl_version_info virtchnl_version; struct virtchnl_vf_resource *vf_res; /* VF resource */ diff --git a/drivers/net/ice/ice_dcf_parent.c b/drivers/net/ice/ice_dcf_parent.c index c5dfdd3..bbe533d 100644 --- a/drivers/net/ice/ice_dcf_parent.c +++ b/drivers/net/ice/ice_dcf_parent.c @@ -78,6 +78,35 @@ ice_dcf_update_vsi_ctx(hw, vf_id, vf_vsi_map[vf_id]); } +static void +ice_dcf_update_pf_vsi_map(struct ice_hw *hw, uint16_t pf_vsi_idx, + uint16_t pf_vsi_num) +{ + struct ice_vsi_ctx *vsi_ctx; + + if (unlikely(pf_vsi_idx >= ICE_MAX_VSI)) { + PMD_DRV_LOG(ERR, "Invalid vsi handle %u", pf_vsi_idx); + return; + } + + vsi_ctx = hw->vsi_ctx[pf_vsi_idx]; + + if (!vsi_ctx) + vsi_ctx = ice_malloc(hw, sizeof(*vsi_ctx)); + + if (!vsi_ctx) { + PMD_DRV_LOG(ERR, "No memory for vsi context %u", + pf_vsi_idx); + return; + } + + vsi_ctx->vsi_num = pf_vsi_num; + hw->vsi_ctx[pf_vsi_idx] = vsi_ctx; + + PMD_DRV_LOG(DEBUG, "VF%u is assigned with vsi number %u", + pf_vsi_idx, vsi_ctx->vsi_num); +} + static void* ice_dcf_vsi_update_service_handler(void *param) { @@ -368,6 +397,10 @@ static void ice_dcf_uninit_parent_hw(struct ice_hw *hw) } parent_adapter->active_pkg_type = ice_load_pkg_type(parent_hw); + parent_adapter->pf.main_vsi->idx = hw->num_vfs; + ice_dcf_update_pf_vsi_map(parent_hw, + parent_adapter->pf.main_vsi->idx, hw->pf_vsi_id); + err = ice_flow_init(parent_adapter); if (err) { PMD_INIT_LOG(ERR, "Failed to initialize flow"); -- 1.8.3.1