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 514CD2C50 for ; Sun, 6 Mar 2016 16:42:08 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP; 06 Mar 2016 07:42:07 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,546,1449561600"; d="scan'208";a="759070046" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga003.jf.intel.com with ESMTP; 06 Mar 2016 07:42:06 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u26Fg4Le031811; Sun, 6 Mar 2016 23:42:04 +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 u26Fg1WN030834; Sun, 6 Mar 2016 23:42:03 +0800 Received: (from hzhan75@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u26Fg1AG030830; Sun, 6 Mar 2016 23:42:01 +0800 From: Helin Zhang To: dev@dpdk.org Date: Sun, 6 Mar 2016 23:41:30 +0800 Message-Id: <1457278919-30800-1-git-send-email-helin.zhang@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1455806076-18497-1-git-send-email-helin.zhang@intel.com> References: <1455806076-18497-1-git-send-email-helin.zhang@intel.com> Subject: [dpdk-dev] [PATCH v4 00/29] i40e base driver update 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: Sun, 06 Mar 2016 15:42:08 -0000 i40e base driver is updated, to support new X722 device IDs, and use rx control AQ commands to read/write rx control registers. Of cause, fixes and enhancements are added as listed as below. v4: - Reworded the commit logs. - Reorganized patches, in order to put together the code changes of the same purpose. - Reorganized the release notes changes. v3: - As release_2_3.rst has been renamed to release_16_04.rst, then all modifications in release_2_3.rst should be moved into release_16_04.rst. v2: - Used i40e_set_mac_type() in base driver to replace the similar in PMD source files, in order to support newly added X722 VF device IDs. - Used small letter in all commit log titles. Helin Zhang (29): i40e/base: fix compilation warnings i40e/base: acquire NVM ownership before reading it i40e/base: add hw flag for X722 register access i40e/base: add X722 support on nvm read i40e/base: limit version check of DCB i40e/base: fix missing check for stopped admin queue i40e/base: set aq count after memory allocation i40e/base: fix uncertain event descriptor issue i40e: update device id i40e/base: fix up recent wol bits for X722_SUPPORT i40e/base: fix up recent proxy bits for X722_SUPPORT i40e/base: unify the capability function i40e/base: fix for PHY NVM interaction problem i40e/base: set shared bit for multicast filters i40e/base: support operating port mirroring rules i40e: add VEB stat control i40e/base: implement new API function i40e/base: add functions to blink led i40e/base: apply promisc mode to Tx Traffic i40e/base: fix driver load failure i40e/base: save off VSI resource count i40e/base: coding style fixes i40e: use AQ rx control register read/write i40e: expose some registers i40e/base: add a new Virtchnl offload i40e/base: add AQ thermal sensor control struct i40e: update structure and macro definitions i40e: add base driver release info i40evf: use base driver defined interface doc/guides/rel_notes/release_16_04.rst | 15 + drivers/net/i40e/Makefile | 1 + drivers/net/i40e/base/i40e_adminq.c | 27 +- drivers/net/i40e/base/i40e_adminq_cmd.h | 234 +++--- drivers/net/i40e/base/i40e_common.c | 942 +++++++++++++++++++++--- drivers/net/i40e/base/i40e_dcb.c | 34 +- drivers/net/i40e/base/i40e_devids.h | 10 +- drivers/net/i40e/base/i40e_lan_hmc.c | 4 +- drivers/net/i40e/base/i40e_nvm.c | 142 +++- drivers/net/i40e/base/i40e_osdep.h | 36 + drivers/net/i40e/base/i40e_prototype.h | 48 +- drivers/net/i40e/base/i40e_register.h | 48 ++ drivers/net/i40e/base/i40e_type.h | 24 +- drivers/net/i40e/base/i40e_virtchnl.h | 1 + drivers/net/i40e/i40e_ethdev.c | 81 +- drivers/net/i40e/i40e_ethdev.h | 2 +- drivers/net/i40e/i40e_ethdev_vf.c | 50 +- drivers/net/i40e/i40e_fdir.c | 13 +- drivers/net/i40e/i40e_pf.c | 6 +- drivers/net/i40e/i40e_rxtx.c | 8 +- lib/librte_eal/common/include/rte_pci_dev_ids.h | 8 +- 21 files changed, 1391 insertions(+), 343 deletions(-) -- 2.5.0