DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 00/17] Update ixgbe base code
@ 2015-11-20  7:17 Wenzhuo Lu
  2015-11-20  7:17 ` [dpdk-dev] [PATCH 01/17] ixgbe/base: update README Wenzhuo Lu
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: Wenzhuo Lu @ 2015-11-20  7:17 UTC (permalink / raw)
  To: dev

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

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2016-01-14 12:32 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-20  7:17 [dpdk-dev] [PATCH 00/17] Update ixgbe base code Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 01/17] ixgbe/base: update README Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 02/17] ixgbe/base: avoid needless PHY access on copper phys Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 03/17] ixgbe/base: do not wait for signature rule addition Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 04/17] ixgbe/base: use mvals values instead of defines Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 05/17] ixgbe/base: add Single-port Sage Pond device ID Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 06/17] ixgbe/base: remove driver config of KX4 PHY Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 07/17] ixgbe/base: add Flow Control Ethertype to ETQF filter list Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 08/17] ixgbe/base: add KR mode support Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 09/17] ixgbe/base: add flow director drop queue Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 10/17] ixgbe/base: check mac type for iosf and phy Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 11/17] ixgbe/base: configure x550 MDIO clock speed Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 12/17] ixgbe/base: fill at least min credits to a TC credit refills Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 13/17] ixgbe/base: support new thermal alarm Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 14/17] ixgbe/base: add new iXFI configuration helper function Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 15/17] ixgbe/base: prevent KR PHY reset in init Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 16/17] ixgbe/base: new defines for FW Wenzhuo Lu
2015-11-20  7:17 ` [dpdk-dev] [PATCH 17/17] ixgbe: add new device X550T1 Wenzhuo Lu
2015-11-20 16:41   ` Stephen Hemminger
2016-01-14  8:48 ` [dpdk-dev] [PATCH 00/17] Update ixgbe base code Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).