All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jiawen Wu <jiawenwu@trustnetic.com>
To: netdev@vger.kernel.org, mengyuanlou@net-swift.com
Cc: Jiawen Wu <jiawenwu@trustnetic.com>
Subject: [PATCH net-next v3 00/10] Wangxun interrupt and RxTx support
Date: Fri,  3 Feb 2023 17:11:25 +0800	[thread overview]
Message-ID: <20230203091135.3294377-1-jiawenwu@trustnetic.com> (raw)

Configure interrupt, setup RxTx ring, support to receive and transmit
packets.

change log:
v3:
- Use upper_32_bits() to avoid compile warning.
- Remove useless codes.
v2:
- Andrew Lunn: https://lore.kernel.org/netdev/Y86kDphvyHj21IxK@lunn.ch/
- Add a judgment when allocate dma for descriptor.

Jiawen Wu (6):
  net: txgbe: Add interrupt support
  net: libwx: Configure Rx and Tx unit on hardware
  net: libwx: Allocate Rx and Tx resources
  net: txgbe: Setup Rx and Tx ring
  net: libwx: Support to receive packets in NAPI
  net: txgbe: Support Rx and Tx process path

Mengyuan Lou (4):
  net: libwx: Add irq flow functions
  net: ngbe: Add irqs request flow
  net: libwx: Add tx path to process packets
  net: ngbe: Support Rx and Tx process path

 drivers/net/ethernet/wangxun/Kconfig          |    1 +
 drivers/net/ethernet/wangxun/libwx/Makefile   |    2 +-
 drivers/net/ethernet/wangxun/libwx/wx_hw.c    |  675 +++++-
 drivers/net/ethernet/wangxun/libwx/wx_hw.h    |    5 +
 drivers/net/ethernet/wangxun/libwx/wx_lib.c   | 2004 +++++++++++++++++
 drivers/net/ethernet/wangxun/libwx/wx_lib.h   |   32 +
 drivers/net/ethernet/wangxun/libwx/wx_type.h  |  314 +++
 drivers/net/ethernet/wangxun/ngbe/ngbe_main.c |  249 +-
 drivers/net/ethernet/wangxun/ngbe/ngbe_type.h |   18 +
 .../net/ethernet/wangxun/txgbe/txgbe_main.c   |  271 ++-
 .../net/ethernet/wangxun/txgbe/txgbe_type.h   |   21 +
 11 files changed, 3574 insertions(+), 18 deletions(-)
 create mode 100644 drivers/net/ethernet/wangxun/libwx/wx_lib.c
 create mode 100644 drivers/net/ethernet/wangxun/libwx/wx_lib.h

-- 
2.27.0


             reply	other threads:[~2023-02-03  9:15 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-03  9:11 Jiawen Wu [this message]
2023-02-03  9:11 ` [PATCH net-next v3 01/10] net: libwx: Add irq flow functions Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 02/10] net: ngbe: Add irqs request flow Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 03/10] net: txgbe: Add interrupt support Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 04/10] net: libwx: Configure Rx and Tx unit on hardware Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 05/10] net: libwx: Allocate Rx and Tx resources Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 06/10] net: txgbe: Setup Rx and Tx ring Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 07/10] net: libwx: Support to receive packets in NAPI Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 08/10] net: libwx: Add tx path to process packets Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 09/10] net: txgbe: Support Rx and Tx process path Jiawen Wu
2023-02-03  9:11 ` [PATCH net-next v3 10/10] net: ngbe: " Jiawen Wu
2023-02-06  9:30 ` [PATCH net-next v3 00/10] Wangxun interrupt and RxTx support patchwork-bot+netdevbpf

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=20230203091135.3294377-1-jiawenwu@trustnetic.com \
    --to=jiawenwu@trustnetic.com \
    --cc=mengyuanlou@net-swift.com \
    --cc=netdev@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.