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 8A872568A for ; Sat, 27 Aug 2016 17:48:35 +0200 (CEST) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP; 27 Aug 2016 08:48:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,587,1464678000"; d="scan'208";a="1833943" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga006.fm.intel.com with ESMTP; 27 Aug 2016 08:48:33 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u7RFmVMX007050; Sat, 27 Aug 2016 23:48:31 +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 u7RFmSDW016997; Sat, 27 Aug 2016 23:48:31 +0800 Received: (from xiaowan1@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u7RFmSYZ016993; Sat, 27 Aug 2016 23:48:28 +0800 From: Xiao Wang To: wenzhuo.lu@intel.com Cc: dev@dpdk.org, Xiao Wang Date: Sat, 27 Aug 2016 23:47:43 +0800 Message-Id: <1472312902-16963-1-git-send-email-xiao.w.wang@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH 00/39] net/ixgbe: base code 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: Sat, 27 Aug 2016 15:48:36 -0000 Update ixgbe base driver, including the following changes: * add X550em_a 10G PHY support * add VF multicast promiscuous mode support * support flow control auto negotiation for X550em_a 1G PHY * add X550em_a FW ALEF support * some functional fixes Xiao Wang (39): net/ixgbe/base: fix delta check for setting VFTA net/ixgbe/base: remove X550em SFP iXFI setup net/ixgbe/base: change endianness of PHY data net/ixgbe/base: add X550em_a 10G PHY support net/ixgbe/base: support VF multicast promiscuous net/ixgbe/base: introduce new ops init functions net/ixgbe/base: separate PHY probe code net/ixgbe/base: fully initialize X550em_a 1G PHYs net/ixgbe/base: add macros for VF promiscuous mode net/ixgbe/base: add FC setup for X550em_a fiber net/ixgbe/base: add FC autoneg for X550em_a fiber net/ixgbe/base: clear page register in error path net/ixgbe/base: configure DMAC for 10Mb operation net/ixgbe/base: fix function comments about X550 net/ixgbe/base: report setting LPE register error net/ixgbe/base: bump mailbox version net/ixgbe/base: access IOSF by host interface net/ixgbe/base: fix check on NACK net/ixgbe/base: define X550 PCIe serial MAC addr net/ixgbe/base: bypass checking link for crosstalk net/ixgbe/base: support X550em_a SGMII FC autoneg net/ixgbe/base: add macros for GENEVE UDP port net/ixgbe/base: add bound check in LED functions net/ixgbe/base: use default check link function net/ixgbe/base: set default autoneg speed at reset net/ixgbe/base: add missing FDIRSCTPM mask setting net/ixgbe/base: commonize mailbox write and read net/ixgbe/base: reduce delay for SWFW semaphore net/ixgbe/base: report autoneg supported for X550 net/ixgbe/base: remove X550em_a 100Mbps support net/ixgbe/base: unify link speed value net/ixgbe/base: separate ops init from PHY init net/ixgbe/base: add X550em_a FW ALEF support net/ixgbe/base: add two MAC ops for Hyper-V net/ixgbe/base: hold semaphore for shadow RAM access net/ixgbe/base: update X550em_a backplane speed net/ixgbe/base: clean code of flow control autoneg net/ixgbe/base: do not skip PHY configuration net/ixgbe/base: add base driver update brief doc/guides/rel_notes/release_16_11.rst | 8 + drivers/net/ixgbe/base/README | 2 +- drivers/net/ixgbe/base/ixgbe_82598.c | 6 +- drivers/net/ixgbe/base/ixgbe_82599.c | 16 +- drivers/net/ixgbe/base/ixgbe_api.c | 11 +- drivers/net/ixgbe/base/ixgbe_api.h | 2 + drivers/net/ixgbe/base/ixgbe_common.c | 258 +++++-- drivers/net/ixgbe/base/ixgbe_common.h | 3 +- drivers/net/ixgbe/base/ixgbe_mbx.h | 7 +- drivers/net/ixgbe/base/ixgbe_osdep.h | 1 + drivers/net/ixgbe/base/ixgbe_phy.c | 100 ++- drivers/net/ixgbe/base/ixgbe_phy.h | 71 +- drivers/net/ixgbe/base/ixgbe_type.h | 73 +- drivers/net/ixgbe/base/ixgbe_vf.c | 103 ++- drivers/net/ixgbe/base/ixgbe_vf.h | 3 +- drivers/net/ixgbe/base/ixgbe_x540.c | 10 +- drivers/net/ixgbe/base/ixgbe_x550.c | 1262 +++++++++++++++++++++----------- drivers/net/ixgbe/base/ixgbe_x550.h | 61 +- drivers/net/ixgbe/ixgbe_ethdev.c | 43 +- 19 files changed, 1359 insertions(+), 681 deletions(-) -- 1.9.3