From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 644993772 for ; Fri, 9 Dec 2016 15:40:17 +0100 (CET) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga103.fm.intel.com with ESMTP; 09 Dec 2016 06:40:17 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,324,1477983600"; d="scan'208";a="40775981" Received: from dpdk2.sh.intel.com ([10.239.128.246]) by fmsmga005.fm.intel.com with ESMTP; 09 Dec 2016 06:40:15 -0800 From: Jingjing Wu To: dev@dpdk.org Cc: jingjing.wu@intel.com, helin.zhang@intel.com Date: Fri, 9 Dec 2016 22:38:53 +0800 Message-Id: <1481294364-83505-1-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 2.4.11 In-Reply-To: <1480727953-92137-1-git-send-email-jingjing.wu@intel.com> References: <1480727953-92137-1-git-send-email-jingjing.wu@intel.com> Subject: [dpdk-dev] [PATCH v2 00/31] net/i40e: base code update 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: , X-List-Received-Date: Fri, 09 Dec 2016 14:40:18 -0000 i40e base code upate. The main changes are: - add clause22 and clause45 implementation for PHY registers accessing - replace existing legacy memcpy() calls with i40e_memcpy() calls. - use BIT() macro instead of bit fields - add clear all WoL filters implementation - add ERROR state for NVM update state machine - add broadcast promiscuous control per VLAN - remove unused X722_SUPPORT and I40E_NDIS_SUPPORT MARCOs v2 changes: - comments rework - complie issue fix - rebase to dpdk-next-net Jingjing Wu (31): net/i40e/base: add encap csum VF offload flag net/i40e/base: preserve extended PHY type field net/i40e/base: remove unnecessary code net/i40e/base: fix bit test mask net/i40e/base: group base mode VF offload flags net/i40e/base: fix long link down notification time net/i40e/base: add media type detection for 25G link net/i40e/base: add clause22 and clause45 implementation net/i40e/base: add bus number info net/i40e/base: add protocols when discover capabilities net/i40e/base: pass unknown PHY type for unknown PHYs net/i40e/base: replace memcpy net/i40e/base: deprecating unused macro net/i40e/base: remove FPK HyperV VF device ID net/i40e/base: add FEC bits to PHY capabilities net/i40e/base: use BIT() macro instead of bit fields net/i40e/base: adjust 25G PHY type values net/i40e/base: implement clear all WoL filters net/i40e/base: implement set VSI full promisc mode net/i40e/base: add defines for new aq command net/i40e/base: save link FEC info from link up event net/i40e/base: acquire NVM lock before reads on all devices net/i40e/base: change shift values to hex net/i40e/base: comment that udp port must be in Host order net/i40e/base: remove duplicate definitions net/i40e/base: add ERROR state for NVM update state machine net/i40e/base: add broadcast promiscuous control per VLAN net/i40e/base: avoid division by zero net/i40e/base: fix byte order net/i40e/base: remove unused macro net/i40e: remove unused macro from PMD drivers/net/i40e/Makefile | 2 +- drivers/net/i40e/base/i40e_adminq.c | 4 +- drivers/net/i40e/base/i40e_adminq_cmd.h | 51 ++-- drivers/net/i40e/base/i40e_common.c | 425 ++++++++++++++++++++++++++------ drivers/net/i40e/base/i40e_devids.h | 3 - drivers/net/i40e/base/i40e_lan_hmc.c | 5 - drivers/net/i40e/base/i40e_nvm.c | 52 ++-- drivers/net/i40e/base/i40e_prototype.h | 30 ++- drivers/net/i40e/base/i40e_register.h | 2 - drivers/net/i40e/base/i40e_type.h | 94 +++---- drivers/net/i40e/base/i40e_virtchnl.h | 5 + drivers/net/i40e/i40e_ethdev.c | 42 +--- drivers/net/i40e/i40e_ethdev_vf.c | 1 - 13 files changed, 468 insertions(+), 248 deletions(-) -- 2.4.11