From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id A124F374C for ; Mon, 20 Apr 2015 10:22:38 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP; 20 Apr 2015 01:22:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,608,1422950400"; d="scan'208";a="712055159" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga002.fm.intel.com with ESMTP; 20 Apr 2015 01:22:36 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t3K8MYOW013096; Mon, 20 Apr 2015 16:22:34 +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 t3K8MV9G028133; Mon, 20 Apr 2015 16:22:33 +0800 Received: (from hzhan75@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t3K8MVeS028129; Mon, 20 Apr 2015 16:22:31 +0800 From: Helin Zhang To: dev@dpdk.org Date: Mon, 20 Apr 2015 16:22:12 +0800 Message-Id: <1429518150-28098-1-git-send-email-helin.zhang@intel.com> X-Mailer: git-send-email 1.7.4.1 Cc: monica.kenguva@intel.com, steven.j.murray@intel.com, chiu-pi.shih@intel.com Subject: [dpdk-dev] [PATCH 00/18] 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: Mon, 20 Apr 2015 08:22:39 -0000 To support firmware version 'FVL3E', i40e base driver should be updated. It mainly includes the base driver update which contains additional enhancements, fixes, changes for future use, and so on, together with neccessary modifications in i40e Poll Mode Driver. The details are listed as follows. Helin Zhang (18): i40e: copyright update i40e: disable setting phy configuration i40e: adjustment of register definitions and relevant i40e: support of CEE DCBX on recent firmware versions i40e: rework of 'i40e_hmc_get_object_va' i40e: support of Fortpark device IDs and mac types i40e: rename 'err' to 'perrno' i40e: support NVM read on Fortpark, with minor enhancements i40e: adminq enhancements i40e: support of firmware build number i40e: support of building both PF and VF driver together i40e: enhancements of AQ commands and common interfaces i40e: replacement of 'i40e_debug_read_register()' i40e: add new interfaces of AQ commands and relevant i40e: support of Fortpark FPGA i40e: add more virtual channel operations i40e: support of structure and command length check i40e: Minor enhancements in i40e_type.h lib/librte_pmd_i40e/Makefile | 5 +- lib/librte_pmd_i40e/i40e/i40e_adminq.c | 59 +- lib/librte_pmd_i40e/i40e/i40e_adminq.h | 16 +- lib/librte_pmd_i40e/i40e/i40e_adminq_cmd.h | 233 +++- lib/librte_pmd_i40e/i40e/i40e_alloc.h | 2 +- lib/librte_pmd_i40e/i40e/i40e_common.c | 839 ++++++++++-- lib/librte_pmd_i40e/i40e/i40e_dcb.c | 263 +++- lib/librte_pmd_i40e/i40e/i40e_dcb.h | 22 +- lib/librte_pmd_i40e/i40e/i40e_diag.c | 2 +- lib/librte_pmd_i40e/i40e/i40e_diag.h | 2 +- lib/librte_pmd_i40e/i40e/i40e_hmc.c | 2 +- lib/librte_pmd_i40e/i40e/i40e_hmc.h | 2 +- lib/librte_pmd_i40e/i40e/i40e_lan_hmc.c | 34 +- lib/librte_pmd_i40e/i40e/i40e_lan_hmc.h | 7 +- lib/librte_pmd_i40e/i40e/i40e_nvm.c | 559 ++++++-- lib/librte_pmd_i40e/i40e/i40e_osdep.h | 64 +- lib/librte_pmd_i40e/i40e/i40e_prototype.h | 49 +- lib/librte_pmd_i40e/i40e/i40e_register.h | 1983 +++++++++++++++++++++++++++- lib/librte_pmd_i40e/i40e/i40e_status.h | 2 +- lib/librte_pmd_i40e/i40e/i40e_type.h | 123 +- lib/librte_pmd_i40e/i40e/i40e_virtchnl.h | 63 +- lib/librte_pmd_i40e/i40e_ethdev.c | 31 +- lib/librte_pmd_i40e/i40e_ethdev.h | 2 +- lib/librte_pmd_i40e/i40e_ethdev_vf.c | 2 +- lib/librte_pmd_i40e/i40e_fdir.c | 2 +- lib/librte_pmd_i40e/i40e_logs.h | 2 +- lib/librte_pmd_i40e/i40e_pf.c | 2 +- lib/librte_pmd_i40e/i40e_pf.h | 2 +- lib/librte_pmd_i40e/i40e_rxtx.c | 2 +- lib/librte_pmd_i40e/i40e_rxtx.h | 2 +- 30 files changed, 3934 insertions(+), 444 deletions(-) -- 1.8.1.4