From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id D81002BC2 for ; Mon, 13 Jun 2016 08:47:46 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP; 12 Jun 2016 23:47:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,465,1459839600"; d="scan'208";a="718111857" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by FMSMGA003.fm.intel.com with ESMTP; 12 Jun 2016 23:46:08 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u5D6k6R2015634; Mon, 13 Jun 2016 14:46:06 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id u5D6k3ec002058; Mon, 13 Jun 2016 14:46:05 +0800 Received: (from zhetao@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u5D6k3DI002054; Mon, 13 Jun 2016 14:46:03 +0800 From: Zhe Tao To: dev@dpdk.org Cc: zhe.tao@intel.com, jingjing.wu@intel.com Date: Mon, 13 Jun 2016 14:45:47 +0800 Message-Id: <1465800350-2024-1-git-send-email-zhe.tao@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1464110886-9504-1-git-send-email-zhe.tao@intel.com> References: <1464110886-9504-1-git-send-email-zhe.tao@intel.com> Subject: [dpdk-dev] [PATCH v9 0/3] i40e: add floating VEB support for i40e X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jun 2016 06:47:47 -0000 This patch-set add the support for floating VEB in i40e. All the VFs VSIs can decide whether to connect to the legacy VEB/VEPA or the floating VEB. When connect to the floating VEB a new floating VEB is created. Now all the VFs need to connect to floating VEB or legacy VEB, cannot connect to both of them. The PF and VMDQ,FD VSIs connect to the old legacy VEB/VEPA. All the VEB/VEPA concepts are not specific for FVL, they are defined in the 802.1Qbg spec. This floating VEB only take effects on the specific version F/W which newer than 5.0. Zhe Tao (3): Support floating VEB config Add floating VEB support in i40e Add floating VEB extention support for i40e doc/guides/nics/i40e.rst | 25 ++++ doc/guides/rel_notes/release_16_07.rst | 4 + drivers/net/i40e/i40e_ethdev.c | 205 +++++++++++++++++++++++++++++---- drivers/net/i40e/i40e_ethdev.h | 9 ++ drivers/net/i40e/i40e_pf.c | 12 +- 5 files changed, 232 insertions(+), 23 deletions(-) V2: Added the release notes and changed commit log. V3: Changed the VSI release operation. V4: Added the FW version check otherwise it will cause the segment fault. V5: Edited the code for new share code APIs V6: Changed the floating VEB configuration method V7: Added global reset for i40e V8: removed global reset and added floating VEB extension support V9: Added floating VEB related explanation into commit log -- 2.1.4