From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wenzhuo Lu Subject: [PATCH v2 00/11] update ixgbe base driver Date: Sun, 14 Feb 2016 16:54:55 +0800 Message-ID: <1455440106-28547-1-git-send-email-wenzhuo.lu@intel.com> References: <1453171693-25571-1-git-send-email-wenzhuo.lu@intel.com> To: dev@dpdk.org 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 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 In-Reply-To: <1453171693-25571-1-git-send-email-wenzhuo.lu@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" *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