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 348F76837 for ; Thu, 12 Feb 2015 13:01:16 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP; 12 Feb 2015 04:01:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,565,1418112000"; d="scan'208";a="453649595" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by FMSMGA003.fm.intel.com with ESMTP; 12 Feb 2015 03:46:32 -0800 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id t1CC1BEK005800; Thu, 12 Feb 2015 20:01:11 +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 t1CC18w9030437; Thu, 12 Feb 2015 20:01:10 +0800 Received: (from couyang@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id t1CC188B030433; Thu, 12 Feb 2015 20:01:08 +0800 From: Ouyang Changchun To: dev@dpdk.org Date: Thu, 12 Feb 2015 20:00:32 +0800 Message-Id: <1423742468-30404-1-git-send-email-changchun.ouyang@intel.com> X-Mailer: git-send-email 1.7.12.2 Subject: [dpdk-dev] [PATCH 00/36] Update IXGBE base codes 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: Thu, 12 Feb 2015 12:01:16 -0000 This patch set update IXGBE base codes to the version of cid-10g-shared-code.2015.02.03. and this patch set add 2 new device id as following: #define IXGBE_DEV_ID_X550EM_X_10G_T 0x15AD #define IXGBE_DEV_ID_X550EM_X_1G_T 0x15AE Changchun Ouyang (36): ixgbe base codes: Code cleanup and minor changes ixgbe base codes: Debug output macro ixgbe base codes: Fix bus type issue ixgbe base codes: Fix link speed issue ixgbe base codes: Fix early return ixgbe base codes: Update the CS address ixgbe base codes: Extract function for management capability ixgbe base codes: Set phy power ixgbe base codes: Use mng present function ixgbe base codes: Get host interface command status ixgbe base codes: Refine function for host interface command ixgbe base codes: Refine struct for physical information ixgbe base codes: Clear Tx pending ixgbe base codes: Use IOMEM ixgbe base codes: Update macros ixgbe base codes: New phy ID ixgbe base codes: Get bus info ixgbe base codes: Restructure host interface command ixgbe base codes: Fix mac type issue ixgbe base codes: API for setup internal phy ixgbe base codes: API for set phy power ixgbe base codes: API for read i2c combined ixgbe base codes: API for write i2c combined ixgbe base codes: Support 5G link speed ixgbe base codes: Refine branch statement ixgbe base codes: SFP probe ixgbe base codes: Set LAN ID ixgbe base codes: Calculate checksum ixgbe base codes: Command for flow director ixgbe base codes: Auto-negotiation ixgbe base codes: Bit-bang mode ixgbe base codes: Setup kx4 phy ixgbe base codes: Read/write iosf sb stat ixgbe base codes: New device id ixgbe base codes: Update readme eal: Add 2 device ids for ixgbe lib/librte_eal/common/include/rte_pci_dev_ids.h | 6 +- lib/librte_pmd_ixgbe/ixgbe/README | 2 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_82598.c | 55 ++- lib/librte_pmd_ixgbe/ixgbe/ixgbe_82598.h | 1 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_82599.c | 237 +++++----- lib/librte_pmd_ixgbe/ixgbe/ixgbe_82599.h | 1 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_api.c | 61 ++- lib/librte_pmd_ixgbe/ixgbe/ixgbe_api.h | 5 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_common.c | 189 +++++--- lib/librte_pmd_ixgbe/ixgbe/ixgbe_common.h | 5 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb.c | 1 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb.h | 2 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82598.c | 1 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82598.h | 1 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82599.c | 3 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82599.h | 1 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_osdep.h | 4 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_phy.c | 220 +++++++-- lib/librte_pmd_ixgbe/ixgbe/ixgbe_phy.h | 7 +- lib/librte_pmd_ixgbe/ixgbe/ixgbe_type.h | 131 +++++- lib/librte_pmd_ixgbe/ixgbe/ixgbe_vf.c | 1 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_vf.h | 5 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_x540.c | 82 ++-- lib/librte_pmd_ixgbe/ixgbe/ixgbe_x540.h | 1 - lib/librte_pmd_ixgbe/ixgbe/ixgbe_x550.c | 582 ++++++++++++++++++------ lib/librte_pmd_ixgbe/ixgbe/ixgbe_x550.h | 9 +- 26 files changed, 1158 insertions(+), 455 deletions(-) -- 1.8.4.2