From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 9DB305A6C for ; Fri, 20 Nov 2015 08:18:03 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP; 19 Nov 2015 23:18:02 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,321,1444719600"; d="scan'208";a="690211200" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga003.jf.intel.com with ESMTP; 19 Nov 2015 23:18:01 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id tAK7I1FM031949 for ; Fri, 20 Nov 2015 15:18:01 +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 tAK7HxkA029995 for ; Fri, 20 Nov 2015 15:18:01 +0800 Received: (from wenzhuol@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id tAK7HxRI029991 for dev@dpdk.org; Fri, 20 Nov 2015 15:17:59 +0800 From: Wenzhuo Lu To: dev@dpdk.org Date: Fri, 20 Nov 2015 15:17:41 +0800 Message-Id: <1448003879-29960-1-git-send-email-wenzhuo.lu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH 00/17] Update ixgbe base code 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: Fri, 20 Nov 2015 07:18:04 -0000 Short summary: *update README *avoid needless PHY access on copper phys *do not wait for signature rule addition *use mvals values instead of defines *add Single-port Sage Pond device ID *remove driver config of KX4 PHY *add Flow Control Ethertype to ETQF filter list *add KR mode support *add flow director drop queue *check mac type for iosf and phy *configure x550 MDIO clock speed *fill at least min credits to a TC credit refills *support new thermal alarm *add new iXFI configuration helper function *prevent KR PHY reset in init *new defines for FW *add new device X550T1 Note: Release note is not updated for the target of this patch is R2.3. Send these patchs in case someone may hit related issues on new platforms. Wenzhuo Lu (17): ixgbe/base: update README ixgbe/base: avoid needless PHY access on copper phys ixgbe/base: do not wait for signature rule addition ixgbe/base: use mvals values instead of defines ixgbe/base: add Single-port Sage Pond device ID ixgbe/base: remove driver config of KX4 PHY ixgbe/base: add Flow Control Ethertype to ETQF filter list ixgbe/base: add KR mode support ixgbe/base: add flow director drop queue ixgbe/base: check mac type for iosf and phy ixgbe/base: configure x550 MDIO clock speed ixgbe/base: fill at least min credits to a TC credit refills ixgbe/base: support new thermal alarm ixgbe/base: add new iXFI configuration helper function ixgbe/base: prevent KR PHY reset in init ixgbe/base: new defines for FW ixgbe: add new device X550T1 drivers/net/ixgbe/base/README | 4 +- drivers/net/ixgbe/base/ixgbe_82599.c | 61 ++- drivers/net/ixgbe/base/ixgbe_api.c | 1 + drivers/net/ixgbe/base/ixgbe_api.h | 9 +- drivers/net/ixgbe/base/ixgbe_common.c | 64 ++- drivers/net/ixgbe/base/ixgbe_dcb.c | 9 +- drivers/net/ixgbe/base/ixgbe_phy.c | 78 ++-- drivers/net/ixgbe/base/ixgbe_phy.h | 11 +- drivers/net/ixgbe/base/ixgbe_type.h | 60 ++- drivers/net/ixgbe/base/ixgbe_x540.c | 41 +- drivers/net/ixgbe/base/ixgbe_x550.c | 552 +++++++++++------------- drivers/net/ixgbe/base/ixgbe_x550.h | 3 +- lib/librte_eal/common/include/rte_pci_dev_ids.h | 2 + 13 files changed, 470 insertions(+), 425 deletions(-) -- 1.9.3