DPDK patches and discussions
 help / color / mirror / Atom feed
From: Wenzhuo Lu <wenzhuo.lu@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH 12/12] doc: update release note for ixgbe base code update
Date: Tue, 19 Jan 2016 10:48:13 +0800	[thread overview]
Message-ID: <1453171693-25571-13-git-send-email-wenzhuo.lu@intel.com> (raw)
In-Reply-To: <1453171693-25571-1-git-send-email-wenzhuo.lu@intel.com>

Update the release note.
Also include the update for the last time of the ixgbe base
code update.

Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
---
 doc/guides/rel_notes/release_2_3.rst | 54 ++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/doc/guides/rel_notes/release_2_3.rst b/doc/guides/rel_notes/release_2_3.rst
index 99de186..0e2369d 100644
--- a/doc/guides/rel_notes/release_2_3.rst
+++ b/doc/guides/rel_notes/release_2_3.rst
@@ -4,6 +4,15 @@ DPDK Release 2.3
 New Features
 ------------
 
+* **Added the support for new ixgbe devices and MAC types.**
+
+* **Added new ixgbe iXFI configuration helper function.**
+
+* **Added support for the new thermal sensor alarms indication on ixgbe.**
+
+* **Added support for enabling and setting fdir drop queue on ixgbe.**
+
+* **Added support fuse for both x550em_x V1 and V2 on ixgbe.**
 
 Resolved Issues
 ---------------
@@ -15,6 +24,51 @@ EAL
 Drivers
 ~~~~~~~
 
+* **ixgbe/base: Fixed TX hang for CEE mode configuration.**
+
+  Credit_refill and credit_max could be zero for a TC and that
+  is causing TX hang for CEE mode configuration, so to fix that
+  have a min credit assigned to a TC.
+
+* **ixgbe/base: Fixed the invalid default MDIO clock speed.**
+
+  The x550 MDIO clock speed must be configured prior to first MDIO
+  read or write. The default MDIO clock speed is not valid, therefore
+  the driver is configuring a valid speed prior to reading the copper
+  PHY device id.
+
+* **ixgbe/base: Fixed subtle semaphore error in the CS4227 reset flow.**
+
+* **ixgbe/base: Removed driver config of KX4 PHY.**
+  The KX4 PHY will be configured by the NVM image. The driver
+  had been overwriting this config.
+
+* **ixgbe/base: Avoid needless PHY access on copper phys.**
+  Avoid a needless PHY access on copper phys to save the 10ms wait
+  time for each PHY access. A helper function is introduced to
+  actually do the register access and process the contents.
+
+* **ixgbe/base: Removed duplicate setting for fdir no match drop.**
+
+  Do not set FDIRCTRL.DROP_NO_MATCH in ixgbe_init_fdir_perfect_82599(),
+  this bit is already set in ixgbe_set_fdir_drop_queue_82599() which
+  makes more sense for drivers that call that function.
+  This resolves an issue where packets were being dropped when switching
+  to perfect filters mode.
+
+* **ixgbe/base: Always turn PHY power on when requested.**
+
+  Instead of not defining the callback for set_phy_power when
+  manageability is enabled, put the check in the set_phy_power
+  function so that only turning the power off is conditional on
+  management, but not turning the PHY on.
+
+* **ixgbe/base: Set VF mac address only when acked by PF.**
+
+  Resolve an issue where VF mac address is zeroed out in cases where
+  the VF driver is loaded while the PF interface is down.
+  The solution is to only set it when we get an ACK from the PF.
+
 
 Libraries
 ~~~~~~~~~
-- 
1.9.3

  parent reply	other threads:[~2016-01-19  2:49 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-19  2:48 [dpdk-dev] [PATCH 00/12] update ixgbe base driver Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 01/12] ixgbe/base: update readme Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 02/12] ixgbe/base: add new devices and mac type Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 03/12] ixgeb/base: use PHY token for X550EM_a Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 04/12] ixgbe/base: set VF mac address only when acked by PF Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 05/12] ixgbe/base: always turn PHY power on when requested Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 06/12] ixgbe/base: add definition of a register for mac SGMII busy Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 07/12] ixgbe/base: support fuse for both x550em_x V1 and V2 Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 08/12] ixgbe/base: remove duplicate setting for fdir no match drop Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 09/12] ixgbe/base: consolidate MDIO speed-setting Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 10/12] ixgbe/base: use link instead of I2C combined abstraction Wenzhuo Lu
2016-01-19  2:48 ` [dpdk-dev] [PATCH 11/12] ixgbe: support new devices and mac types Wenzhuo Lu
2016-01-19  2:48 ` Wenzhuo Lu [this message]
2016-02-11 22:35 ` [dpdk-dev] [PATCH 00/12] update ixgbe base driver Bruce Richardson
2016-02-14  2:33   ` Lu, Wenzhuo
2016-02-14  8:54 ` [dpdk-dev] [PATCH v2 00/11] " Wenzhuo Lu
2016-02-14  8:54   ` [dpdk-dev] [PATCH v2 01/11] ixgbe/base: add x550em_a device support Wenzhuo Lu
2016-02-14  8:54   ` [dpdk-dev] [PATCH v2 02/11] ixgbe/base: add x550em_x V2 " Wenzhuo Lu
2016-02-14  8:54   ` [dpdk-dev] [PATCH v2 03/11] ixgbe/base: sw-firmware sync for resource sharing Wenzhuo Lu
2016-02-14  8:54   ` [dpdk-dev] [PATCH v2 04/11] ixgbe/base: set VF mac addr only when acked by PF Wenzhuo Lu
2016-02-14  8:55   ` [dpdk-dev] [PATCH v2 05/11] ixgbe/base: ignore manageability for phy power on Wenzhuo Lu
2016-02-14  8:55   ` [dpdk-dev] [PATCH v2 06/11] ixgbe/base: add register definition for SGMII busy Wenzhuo Lu
2016-02-14  8:55   ` [dpdk-dev] [PATCH v2 07/11] ixgbe/base: fix setting flow dir flag twice Wenzhuo Lu
2016-02-14  8:55   ` [dpdk-dev] [PATCH v2 08/11] ixgbe/base: set MDIO speed after MAC reset Wenzhuo Lu
2016-02-14  8:55   ` [dpdk-dev] [PATCH v2 09/11] ixgbe/base: abstract out link read/write ops Wenzhuo Lu
2016-02-14  8:55   ` [dpdk-dev] [PATCH v2 10/11] ixgbe/base: update readme Wenzhuo Lu
2016-02-14  8:55   ` [dpdk-dev] [PATCH v2 11/11] ixgbe: support new devices and mac types Wenzhuo Lu
2016-02-15 21:39   ` [dpdk-dev] [PATCH v2 00/11] update ixgbe base driver Bruce Richardson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1453171693-25571-13-git-send-email-wenzhuo.lu@intel.com \
    --to=wenzhuo.lu@intel.com \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).