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 D4CE5C37E for ; Thu, 23 Jun 2016 09:22:44 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP; 23 Jun 2016 00:22:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,509,1459839600"; d="scan'208";a="833682500" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga003.jf.intel.com with ESMTP; 23 Jun 2016 00:22:43 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id u5N7Menh012235; Thu, 23 Jun 2016 15:22:40 +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 u5N7Mbxg014346; Thu, 23 Jun 2016 15:22:39 +0800 Received: (from beileixi@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id u5N7Mbb6014342; Thu, 23 Jun 2016 15:22:37 +0800 From: Beilei Xing To: wenzhuo.lu@intel.com Cc: dev@dpdk.org Date: Thu, 23 Jun 2016 15:22:08 +0800 Message-Id: <1466666557-14312-1-git-send-email-beilei.xing@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1465977220-3970-1-git-send-email-beilei.xing@intel.com> References: <1465977220-3970-1-git-send-email-beilei.xing@intel.com> Subject: [dpdk-dev] [PATCH v4 00/29] ixgbe/base: update 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: Thu, 23 Jun 2016 07:22:45 -0000 Update base driver for ixgbe, mainly work on new features and bug fixes. v4 changes: Update some commit logs. Merge related patched. v3 changes: Fix some commit log issues. Beilei Xing (29): ixgbe/base: add new VF requests for mailbox API ixgbe/base: add sgmii link for X550 ixgbe/base: fix problematic return value ixgbe/base: add MAC link setup for X550a SFP ixgbe/base: fix firmware command checksum error ixgbe/base: refactor eee setup for X550 ixgbe/base: add KR support for X550em_a devices ixgbe/base: change access method ixgbe/base: add link MAC setup for X550a SFP+ ixgbe/base: clear stale pool mappings ixgbe/base: rename macro of TDL ixgbe/base: fix error path to release lock ixgbe/base: fix for code style ixgbe/base: optimize internal PHY mode determination ixgbe/base: add new phy definitions ixgbe/base: change device IDs ixgbe/base: add function to reset swfw semaphore ixgbe/base: fix possible race issue ixgbe/base: fix register access error ixgbe/base: limit PHY token accessing to MDIO only ixgbe/base: simplify add/remove VLANs ixgbe/base: add bypassing VLVF ixgbe/base: unify coding style ixgbe/base: use u8 to replace u16 for a variable ixgbe/base: fix endianness issues ixgbe/base: allow setting MAC anti spoofing per VF ixgbe/base: add flow control autoneg for X550a ixgbe/base: define if enable crosstalk work around ixgbe/base: update README doc/guides/rel_notes/release_16_07.rst | 11 + drivers/net/ixgbe/base/README | 2 +- drivers/net/ixgbe/base/ixgbe_82598.c | 5 +- drivers/net/ixgbe/base/ixgbe_82598.h | 3 +- drivers/net/ixgbe/base/ixgbe_82599.c | 9 +- drivers/net/ixgbe/base/ixgbe_api.c | 41 +- drivers/net/ixgbe/base/ixgbe_api.h | 8 +- drivers/net/ixgbe/base/ixgbe_common.c | 361 ++++--- drivers/net/ixgbe/base/ixgbe_common.h | 9 +- drivers/net/ixgbe/base/ixgbe_mbx.h | 4 +- drivers/net/ixgbe/base/ixgbe_osdep.h | 1 + drivers/net/ixgbe/base/ixgbe_phy.c | 16 +- drivers/net/ixgbe/base/ixgbe_phy.h | 3 + drivers/net/ixgbe/base/ixgbe_type.h | 118 ++- drivers/net/ixgbe/base/ixgbe_vf.c | 10 +- drivers/net/ixgbe/base/ixgbe_vf.h | 7 +- drivers/net/ixgbe/base/ixgbe_x540.c | 29 +- drivers/net/ixgbe/base/ixgbe_x540.h | 1 + drivers/net/ixgbe/base/ixgbe_x550.c | 1158 +++++++++++++++++++---- drivers/net/ixgbe/base/ixgbe_x550.h | 52 + drivers/net/ixgbe/ixgbe_ethdev.c | 11 +- drivers/net/ixgbe/ixgbe_pf.c | 2 +- lib/librte_eal/common/include/rte_pci_dev_ids.h | 12 +- 23 files changed, 1457 insertions(+), 416 deletions(-) Acked-by: Helin Zhang -- 2.5.0