From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id C1EC08E68 for ; Tue, 19 Jan 2016 03:48:19 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP; 18 Jan 2016 18:48:18 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,315,1449561600"; d="scan'208";a="896079050" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga002.fm.intel.com with ESMTP; 18 Jan 2016 18:48:19 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u0J2mGIG009072 for ; Tue, 19 Jan 2016 10:48:16 +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 u0J2mDLk025607 for ; Tue, 19 Jan 2016 10:48:15 +0800 Received: (from wenzhuol@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u0J2mDmQ025603 for dev@dpdk.org; Tue, 19 Jan 2016 10:48:13 +0800 From: Wenzhuo Lu To: dev@dpdk.org Date: Tue, 19 Jan 2016 10:48:01 +0800 Message-Id: <1453171693-25571-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH 00/12] 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: Tue, 19 Jan 2016 02:48:20 -0000 *add new devices and mac type *use PHY token for X550EM_a *set VF mac address only when acked by PF *always turn PHY power on when requested *add definition of a register for mac SGMII busy *support fuse for both x550em_x V1 and V2 *remove duplicate setting for fdir no match drop *consolidate MDIO speed-setting *use link instead of I2C combined abstraction Wenzhuo Lu (12): ixgbe/base: update readme ixgbe/base: add new devices and mac type ixgeb/base: use PHY token for X550EM_a ixgbe/base: set VF mac address only when acked by PF ixgbe/base: always turn PHY power on when requested ixgbe/base: add definition of a register for mac SGMII busy ixgbe/base: support fuse for both x550em_x V1 and V2 ixgbe/base: remove duplicate setting for fdir no match drop ixgbe/base: consolidate MDIO speed-setting ixgbe/base: use link instead of I2C combined abstraction ixgbe: support new devices and mac types doc: update release note for ixgbe base code update doc/guides/rel_notes/release_2_3.rst | 54 ++++ 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, 589 insertions(+), 165 deletions(-) -- 1.9.3