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 E5A485A95 for ; Sun, 14 Feb 2016 09:55:10 +0100 (CET) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP; 14 Feb 2016 00:55:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,444,1449561600"; d="scan'208";a="47716663" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga004.fm.intel.com with ESMTP; 14 Feb 2016 00:55:09 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u1E8t8Ag029978 for ; Sun, 14 Feb 2016 16:55:08 +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 u1E8t6IG028584 for ; Sun, 14 Feb 2016 16:55:08 +0800 Received: (from wenzhuol@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u1E8t6nw028580 for dev@dpdk.org; Sun, 14 Feb 2016 16:55:06 +0800 From: Wenzhuo Lu To: dev@dpdk.org Date: Sun, 14 Feb 2016 16:54:55 +0800 Message-Id: <1455440106-28547-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1453171693-25571-1-git-send-email-wenzhuo.lu@intel.com> References: <1453171693-25571-1-git-send-email-wenzhuo.lu@intel.com> Subject: [dpdk-dev] [PATCH v2 00/11] update ixgbe base driver 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, 14 Feb 2016 08:55:11 -0000 *add x550em_a device support *add x550em_x V2 device support *sw-firmware sync for resource sharing *set VF mac addr only when acked by PF *ignore manageability for phy power on *add register definition for SGMII busy *fix setting flow dir flag twice *set MDIO speed after MAC reset *abstract out link read/write ops V2: Rework the tittles and comments. Split the release note update to each patch. Wenzhuo Lu (11): ixgbe/base: add x550em_a device support ixgbe/base: add x550em_x V2 device support ixgbe/base: sw-firmware sync for resource sharing ixgbe/base: set VF mac addr only when acked by PF ixgbe/base: ignore manageability for phy power on ixgbe/base: add register definition for SGMII busy ixgbe/base: fix setting flow dir flag twice ixgbe/base: set MDIO speed after MAC reset ixgbe/base: abstract out link read/write ops ixgbe/base: update readme ixgbe: support new devices and mac types doc/guides/rel_notes/release_16_04.rst | 36 +++ drivers/net/ixgbe/base/README | 2 +- drivers/net/ixgbe/base/ixgbe_82599.c | 7 +- drivers/net/ixgbe/base/ixgbe_api.c | 70 +++-- drivers/net/ixgbe/base/ixgbe_api.h | 10 +- drivers/net/ixgbe/base/ixgbe_common.c | 1 + drivers/net/ixgbe/base/ixgbe_dcb.c | 10 + drivers/net/ixgbe/base/ixgbe_mbx.c | 2 + drivers/net/ixgbe/base/ixgbe_phy.c | 79 +----- drivers/net/ixgbe/base/ixgbe_phy.h | 6 +- drivers/net/ixgbe/base/ixgbe_type.h | 82 ++++-- drivers/net/ixgbe/base/ixgbe_vf.c | 4 +- drivers/net/ixgbe/base/ixgbe_x540.c | 3 +- drivers/net/ixgbe/base/ixgbe_x550.c | 359 ++++++++++++++++++++++-- drivers/net/ixgbe/base/ixgbe_x550.h | 6 + drivers/net/ixgbe/ixgbe_bypass_api.h | 1 + drivers/net/ixgbe/ixgbe_ethdev.c | 12 +- drivers/net/ixgbe/ixgbe_fdir.c | 10 +- drivers/net/ixgbe/ixgbe_pf.c | 3 +- drivers/net/ixgbe/ixgbe_rxtx.c | 11 +- lib/librte_eal/common/include/rte_pci_dev_ids.h | 22 ++ 21 files changed, 571 insertions(+), 165 deletions(-) -- 1.9.3