From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 383D410BB0 for ; Wed, 21 Dec 2016 10:51:48 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 21 Dec 2016 01:51:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,382,1477983600"; d="scan'208";a="1084967366" Received: from dpdk4.bj.intel.com ([172.16.182.178]) by fmsmga001.fm.intel.com with ESMTP; 21 Dec 2016 01:51:46 -0800 From: Wei Dai To: dev@dpdk.org Cc: helin.zhang@intel.com, konstantin.ananyev@intel.com, Wei Dai Date: Wed, 21 Dec 2016 17:47:44 +0800 Message-Id: <1482313694-31602-1-git-send-email-wei.dai@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH v2 00/30] update ixgbe shared code to version 16.11.21 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Dec 2016 09:51:48 -0000 update ixgbe shared code to version 16.11.21 . v2 changes: modify subject line and message body of git log according to feedbacks from communtiy. split the 24th patch into 2 separate ones. the 24th of v1 is net/ixgbe/base: add EEE support for DNL-controlled PHYs the 24th of v2 is net/ixgbe/base: add EEE support for some PHYs the 25th of v2 is net/ixgbe/base: remove unused enum type correct RAEDME Wei Dai (30): net/ixgbe/base: fix PHY reset check for x550em-ext net/ixgbe/base: fix clearing SAN MAC address net/ixgbe/base: use fast MDIO for non-10G devices net/ixgbe/base: fix PHY identification for x550a net/ixgbe/base: clean up X557 link status check net/ixgbe/base: add driver version to firmware net/ixgbe/base: store link active LED net/ixgbe/base: cleanup X540 checksum calculation net/ixgbe/base: enable LASI only for X552 devices net/ixgbe/base: limit iXFI setup to X552 devices net/ixgbe/base: fix getting PHY type for some x550 devices net/ixgbe/base: fix SGMII link setup for M88 PHYs net/ixgbe/base: cleanup dead EEE code net/ixgbe/base: fix setting unsupported autoneg speeds net/ixgbe/base: support FW commands to control some PHYs net/ixgbe/base: use FW commands to control some PHYs net/ixgbe/base: support busy SGMII register reads net/ixgbe/base: include new speeds in VFLINK interpretation net/ixgbe/base: limit 5Gb support to X550 devices net/ixgbe/base: add physical layer options for FW PHY type net/ixgbe/base: remove unneeded MAC type check net/ixgbe/base: remove unused PHY ID net/ixgbe/base: update FW PHY flow control net/ixgbe/base: add EEE support for some PHYs net/ixgbe/base: remove unused enum type net/ixgbe/base: fix IXGBE LSWFW register net/ixgbe/base: remove unused EEE code net/ixgbe/base: add write flush required by Inphi PHY net/ixgbe/base: report physical layer for SGMII PHY type net/ixgbe/base: update shared code version to 2016.11.21 drivers/net/ixgbe/Makefile | 1 + drivers/net/ixgbe/base/README | 3 +- drivers/net/ixgbe/base/ixgbe_api.c | 7 +- drivers/net/ixgbe/base/ixgbe_api.h | 2 +- drivers/net/ixgbe/base/ixgbe_common.c | 54 +- drivers/net/ixgbe/base/ixgbe_common.h | 7 +- drivers/net/ixgbe/base/ixgbe_hv_vf.c | 240 +++++++++ drivers/net/ixgbe/base/ixgbe_hv_vf.h | 41 ++ drivers/net/ixgbe/base/ixgbe_osdep.h | 4 +- drivers/net/ixgbe/base/ixgbe_phy.c | 168 +++--- drivers/net/ixgbe/base/ixgbe_phy.h | 72 +-- drivers/net/ixgbe/base/ixgbe_type.h | 104 +++- drivers/net/ixgbe/base/ixgbe_vf.c | 16 + drivers/net/ixgbe/base/ixgbe_vf.h | 3 + drivers/net/ixgbe/base/ixgbe_x540.c | 10 +- drivers/net/ixgbe/base/ixgbe_x550.c | 977 +++++++++++++++------------------- drivers/net/ixgbe/base/ixgbe_x550.h | 4 +- 17 files changed, 977 insertions(+), 736 deletions(-) create mode 100644 drivers/net/ixgbe/base/ixgbe_hv_vf.c create mode 100644 drivers/net/ixgbe/base/ixgbe_hv_vf.h -- 2.7.4