DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jiawen Wu <jiawenwu@trustnetic.com>
To: dev@dpdk.org
Cc: Jiawen Wu <jiawenwu@trustnetic.com>
Subject: [PATCH v2 00/12] Wangxun fixes and supports
Date: Wed,  9 Feb 2022 18:42:01 +0800	[thread overview]
Message-ID: <20220209104213.602728-1-jiawenwu@trustnetic.com> (raw)

Fixed some bugs for txgbe and ngbe, and support more custom functions.

v2:
- Add more detail describe in commit logs and release notes.
- Fix build error.
- Fix debug logs.

Jiawen Wu (12):
  net/ngbe: fix failed to receive packets
  net/ngbe: fix link interrupt sometimes lost
  net/ngbe: fix Tx pending
  net/ngbe: fix RxTx packet statistics
  net/ngbe: optimize the PHY initialization process
  net/ngbe: add support to custom PHY interfaces
  net/ngbe: add LED OEM support
  net/ngbe: fix debug log
  net/txgbe: add LED OEM support
  net/txgbe: fix debug log
  net/txgbe: fix to set link up and down
  net/txgbe: fix KR auto-negotiation

 doc/guides/nics/features/txgbe.ini     |   1 +
 doc/guides/rel_notes/release_22_03.rst |  12 ++
 drivers/net/ngbe/base/ngbe_devids.h    |  12 +-
 drivers/net/ngbe/base/ngbe_dummy.h     |   9 ++
 drivers/net/ngbe/base/ngbe_hw.c        | 161 ++++++++++++++++++----
 drivers/net/ngbe/base/ngbe_hw.h        |   3 +
 drivers/net/ngbe/base/ngbe_mng.c       | 106 ++++++++++++++
 drivers/net/ngbe/base/ngbe_mng.h       |  24 ++++
 drivers/net/ngbe/base/ngbe_phy.c       |  27 ++--
 drivers/net/ngbe/base/ngbe_phy.h       |   2 +-
 drivers/net/ngbe/base/ngbe_phy_mvl.c   |  81 +++++++++--
 drivers/net/ngbe/base/ngbe_phy_mvl.h   |   5 +
 drivers/net/ngbe/base/ngbe_phy_rtl.c   |  74 ++++++----
 drivers/net/ngbe/base/ngbe_phy_yt.c    | 182 +++++++++++++++++++++----
 drivers/net/ngbe/base/ngbe_phy_yt.h    |  19 ++-
 drivers/net/ngbe/base/ngbe_regs.h      |  51 +++----
 drivers/net/ngbe/base/ngbe_type.h      |  20 +++
 drivers/net/ngbe/ngbe_ethdev.c         | 142 ++++++++-----------
 drivers/net/ngbe/ngbe_ethdev.h         |   1 +
 drivers/net/ngbe/ngbe_logs.h           |  11 +-
 drivers/net/txgbe/base/txgbe_hw.c      |  21 +--
 drivers/net/txgbe/base/txgbe_mng.c     |  69 ++++++++++
 drivers/net/txgbe/base/txgbe_mng.h     |   7 +
 drivers/net/txgbe/base/txgbe_phy.c     |   4 +
 drivers/net/txgbe/base/txgbe_regs.h    |  12 +-
 drivers/net/txgbe/txgbe_ethdev.c       |   6 +-
 drivers/net/txgbe/txgbe_logs.h         |   9 +-
 27 files changed, 833 insertions(+), 238 deletions(-)

-- 
2.21.0.windows.1




             reply	other threads:[~2022-02-09 10:35 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-09 10:42 Jiawen Wu [this message]
2022-02-09 10:42 ` [PATCH v2 01/12] net/ngbe: fix failed to receive packets Jiawen Wu
2022-02-09 10:42 ` [PATCH v2 02/12] net/ngbe: fix link interrupt sometimes lost Jiawen Wu
2022-02-09 10:42 ` [PATCH v2 03/12] net/ngbe: fix Tx pending Jiawen Wu
2022-02-09 19:07   ` Ferruh Yigit
2022-02-09 10:42 ` [PATCH v2 04/12] net/ngbe: fix RxTx packet statistics Jiawen Wu
2022-02-09 10:42 ` [PATCH v2 05/12] net/ngbe: optimize the PHY initialization process Jiawen Wu
2022-02-09 10:42 ` [PATCH v2 06/12] net/ngbe: add support to custom PHY interfaces Jiawen Wu
2022-02-09 10:42 ` [PATCH v2 07/12] net/ngbe: add LED OEM support Jiawen Wu
2022-02-09 19:06   ` Ferruh Yigit
2022-02-09 10:42 ` [PATCH v2 08/12] net/ngbe: fix debug log Jiawen Wu
2022-02-09 19:07   ` Ferruh Yigit
2022-02-10  8:03     ` Jiawen Wu
2022-02-10  9:02       ` Ferruh Yigit
2022-02-10  9:49         ` Jiawen Wu
2022-02-10 10:16           ` Ferruh Yigit
2022-02-11  2:02             ` Jiawen Wu
2022-02-09 10:42 ` [PATCH v2 09/12] net/txgbe: add LED OEM support Jiawen Wu
2022-02-09 10:42 ` [PATCH v2 10/12] net/txgbe: fix debug log Jiawen Wu
2022-02-09 19:07   ` Ferruh Yigit
2022-02-09 10:42 ` [PATCH v2 11/12] net/txgbe: fix to set link up and down Jiawen Wu
2022-02-09 10:42 ` [PATCH v2 12/12] net/txgbe: fix KR auto-negotiation Jiawen Wu
2022-02-09 19:06 ` [PATCH v2 00/12] Wangxun fixes and supports Ferruh Yigit
2022-02-11 13:10 ` Ferruh Yigit

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=20220209104213.602728-1-jiawenwu@trustnetic.com \
    --to=jiawenwu@trustnetic.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).