DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2 00/30] update ixgbe shared code to version 16.11.21
@ 2016-12-21  9:47 Wei Dai
  2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 01/30] net/ixgbe/base: fix PHY reset check for x550em-ext Wei Dai
                   ` (30 more replies)
  0 siblings, 31 replies; 33+ messages in thread
From: Wei Dai @ 2016-12-21  9:47 UTC (permalink / raw)
  To: dev; +Cc: helin.zhang, konstantin.ananyev, Wei Dai

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

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

end of thread, other threads:[~2016-12-22  2:38 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-21  9:47 [dpdk-dev] [PATCH v2 00/30] update ixgbe shared code to version 16.11.21 Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 01/30] net/ixgbe/base: fix PHY reset check for x550em-ext Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 02/30] net/ixgbe/base: fix clearing SAN MAC address Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 03/30] net/ixgbe/base: use fast MDIO for non-10G devices Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 04/30] net/ixgbe/base: fix PHY identification for x550a Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 05/30] net/ixgbe/base: clean up X557 link status check Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 06/30] net/ixgbe/base: add driver version to firmware Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 07/30] net/ixgbe/base: store link active LED Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 08/30] net/ixgbe/base: cleanup X540 checksum calculation Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 09/30] net/ixgbe/base: enable LASI only for X552 devices Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 10/30] net/ixgbe/base: limit iXFI setup to " Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 11/30] net/ixgbe/base: fix getting PHY type for some x550 devices Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 12/30] net/ixgbe/base: fix SGMII link setup for M88 PHYs Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 13/30] net/ixgbe/base: cleanup dead EEE code Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 14/30] net/ixgbe/base: fix setting unsupported autoneg speeds Wei Dai
2016-12-21  9:47 ` [dpdk-dev] [PATCH v2 15/30] net/ixgbe/base: support FW commands to control some PHYs Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 16/30] net/ixgbe/base: use " Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 17/30] net/ixgbe/base: support busy SGMII register reads Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 18/30] net/ixgbe/base: include new speeds in VFLINK interpretation Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 19/30] net/ixgbe/base: limit 5Gb support to X550 devices Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 20/30] net/ixgbe/base: add physical layer options for FW PHY type Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 21/30] net/ixgbe/base: remove unneeded MAC type check Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 22/30] net/ixgbe/base: remove unused PHY ID Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 23/30] net/ixgbe/base: update FW PHY flow control Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 24/30] net/ixgbe/base: add EEE support for some PHYs Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 25/30] net/ixgbe/base: remove unused enum type Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 26/30] net/ixgbe/base: fix IXGBE LSWFW register Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 27/30] net/ixgbe/base: remove unused EEE code Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 28/30] net/ixgbe/base: add write flush required by Inphi PHY Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 29/30] net/ixgbe/base: report physical layer for SGMII PHY type Wei Dai
2016-12-21  9:48 ` [dpdk-dev] [PATCH v2 30/30] net/ixgbe/base: update shared code version to 2016.11.21 Wei Dai
2016-12-21 17:20 ` [dpdk-dev] [PATCH v2 00/30] update ixgbe shared code to version 16.11.21 Ferruh Yigit
2016-12-22  2:35   ` Dai, Wei

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).