[PATCH net-next 0/4] net: rnpgbe: Add TX/RX and link status support
From: Dong Yibo <dong100@mucse.com>
Date: 2026-03-25 09:13:35
Also in:
lkml
This patch series adds the packet transmission, reception, and link status management features to the RNPGBE driver, building upon the previously introduced mailbox communication and basic driver infrastructure. The series introduces: - MSI-X/legacy interrupt handling with NAPI support - TX path with scatter-gather DMA and completion handling - RX path with page pool buffer management - Link status monitoring and carrier management These changes enable the RNPGBE driver to support basic tx/rx network operations. Dong Yibo (4): net: rnpgbe: Add interrupt handling net: rnpgbe: Add basic TX packet transmission support net: rnpgbe: Add RX packet reception support net: rnpgbe: Add link status handling support drivers/net/ethernet/mucse/Kconfig | 1 + drivers/net/ethernet/mucse/rnpgbe/Makefile | 3 +- drivers/net/ethernet/mucse/rnpgbe/rnpgbe.h | 183 +- .../net/ethernet/mucse/rnpgbe/rnpgbe_chip.c | 39 +- drivers/net/ethernet/mucse/rnpgbe/rnpgbe_hw.h | 20 + .../net/ethernet/mucse/rnpgbe/rnpgbe_lib.c | 1917 +++++++++++++++++ .../net/ethernet/mucse/rnpgbe/rnpgbe_lib.h | 90 + .../net/ethernet/mucse/rnpgbe/rnpgbe_main.c | 103 +- .../net/ethernet/mucse/rnpgbe/rnpgbe_mbx.c | 20 + .../net/ethernet/mucse/rnpgbe/rnpgbe_mbx.h | 1 + .../net/ethernet/mucse/rnpgbe/rnpgbe_mbx_fw.c | 165 ++ .../net/ethernet/mucse/rnpgbe/rnpgbe_mbx_fw.h | 47 + 12 files changed, 2579 insertions(+), 10 deletions(-) create mode 100644 drivers/net/ethernet/mucse/rnpgbe/rnpgbe_lib.c create mode 100644 drivers/net/ethernet/mucse/rnpgbe/rnpgbe_lib.h -- 2.25.1