DPDK patches and discussions
 help / color / mirror / Atom feed
From: fengchengwen <fengchengwen@huawei.com>
To: Feifei Wang <wff_light@vip.163.com>, <dev@dpdk.org>
Cc: Xin Wang <wangxin679@h-partners.com>,
	Feifei Wang <wangfeifei40@huawei.com>,
	Yi Chen <chenyi221@huawei.com>
Subject: Re: [V5 10/18] net/hinic3: add context and work queue support
Date: Thu, 21 Aug 2025 14:41:11 +0800	[thread overview]
Message-ID: <1a306c9f-1505-43ea-baba-87842459d252@huawei.com> (raw)
In-Reply-To: <20250702020953.599-11-wff_light@vip.163.com>

On 7/2/2025 10:09 AM, Feifei Wang wrote:
> From: Xin Wang <wangxin679@h-partners.com>
> 
> 
> Work queue is used for cmdq and tx/rx buff description.
> 
> Nic business needs to configure cmdq context and txq/rxq
> 
> context. This patch adds data structures and function codes
> 
> for work queue and context.
> 
> 
> 
> Signed-off-by: Xin Wang <wangxin679@h-partners.com>
> 
> Reviewed-by: Feifei Wang <wangfeifei40@huawei.com>
> 
> Reviewed-by: Yi Chen <chenyi221@huawei.com>
> 
> ---
> 
>  drivers/net/hinic3/base/hinic3_wq.c | 148 ++++++++++++++++++++++++++++
> 
>  drivers/net/hinic3/base/hinic3_wq.h | 109 ++++++++++++++++++++
> 
>  2 files changed, 257 insertions(+)
> 
>  create mode 100644 drivers/net/hinic3/base/hinic3_wq.c
> 
>  create mode 100644 drivers/net/hinic3/base/hinic3_wq.h
> 
> 
> 
> diff --git a/drivers/net/hinic3/base/hinic3_wq.c b/drivers/net/hinic3/base/hinic3_wq.c
> 
> new file mode 100644
> 
> index 0000000000..9bccb10c9a
> 
> --- /dev/null
> 
> +++ b/drivers/net/hinic3/base/hinic3_wq.c
> 
> @@ -0,0 +1,148 @@
> 
> +/* SPDX-License-Identifier: BSD-3-Clause
> 
> + * Copyright(c) 2025 Huawei Technologies Co., Ltd
> 
> + */
> 
> +#include <rte_bus_pci.h>
> 
> +#include <rte_errno.h>
> 
> +#include <rte_ether.h>
> 
> +#include <rte_malloc.h>
> 
> +#include <rte_mbuf.h>
> 
> +#include <rte_mempool.h>
> 
> +#include <rte_pci.h>
> 
> +
> 
> +#include "hinic3_compat.h"
> 
> +#include "hinic3_hwdev.h"
> 
> +#include "hinic3_wq.h"
> 
> +
> 
> +static void
> 
> +free_wq_pages(struct hinic3_wq *wq)
> 
> +{
> 
> +	hinic3_memzone_free(wq->wq_mz);
> 
> +
> 
> +	wq->queue_buf_paddr = 0;
> 
> +	wq->queue_buf_vaddr = 0;
> 
> +}
> 
> +
> 
> +static int
> 
> +alloc_wq_pages(struct hinic3_hwdev *hwdev, struct hinic3_wq *wq, int qid)
> 
> +{
> 
> +	const struct rte_memzone *wq_mz;
> 
> +
> 
> +	wq_mz = hinic3_dma_zone_reserve(hwdev->eth_dev, "hinic3_wq_mz",
> 
> +					(uint16_t)qid, wq->wq_buf_size,
> 
> +					RTE_PGSIZE_256K, SOCKET_ID_ANY);
> 
> +	if (!wq_mz) {
> 
> +		PMD_DRV_LOG(ERR, "Allocate wq[%d] rq_mz failed", qid);
> 
> +		return -ENOMEM;
> 
> +	}
> 
> +
> 
> +	memset(wq_mz->addr, 0, wq->wq_buf_size);
> 
> +	wq->wq_mz = wq_mz;
> 
> +	wq->queue_buf_paddr = wq_mz->iova;
> 
> +	wq->queue_buf_vaddr = (u64)(u64 *)wq_mz->addr;
> 
> +
> 
> +	return 0;
> 
> +}
> 
> +
> 
> +void
> 
> +hinic3_put_wqe(struct hinic3_wq *wq, int num_wqebbs)
> 
> +{
> 
> +	wq->cons_idx += num_wqebbs;
> 
> +	rte_atomic_fetch_add_explicit(&wq->delta, num_wqebbs,
> 
> +				      rte_memory_order_seq_cst);
> 
> +}
> 
> +
> 
> +void *
> 
> +hinic3_read_wqe(struct hinic3_wq *wq, int num_wqebbs, u16 *cons_idx)
> 
> +{
> 
> +	u16 curr_cons_idx;
> 
> +
> 
> +	if ((rte_atomic_load_explicit(&wq->delta, rte_memory_order_seq_cst) +
> 
> +	     num_wqebbs) > wq->q_depth)
> 
> +		return NULL;
> 
> +
> 
> +	curr_cons_idx = (u16)(wq->cons_idx);
> 
> +
> 
> +	curr_cons_idx = MASKED_WQE_IDX(wq, curr_cons_idx);
> 
> +
> 
> +	*cons_idx = curr_cons_idx;
> 
> +
> 
> +	return WQ_WQE_ADDR(wq, (u32)(*cons_idx));
> 
> +}
> 
> +
> 
> +int
> 
> +hinic3_cmdq_alloc(struct hinic3_wq *wq, void *dev, int cmdq_blocks,
> 
> +		  u32 wq_buf_size, u32 wqebb_shift, u16 q_depth)
> 
> +{
> 
> +	struct hinic3_hwdev *hwdev = (struct hinic3_hwdev *)dev;
> 
> +	int i, j;
> 
> +	int err;
> 
> +
> 
> +	/* Validate q_depth is power of 2 & wqebb_size is not 0. */

Where the code of validate q_depth and wqebb_size?

> 
> +	for (i = 0; i < cmdq_blocks; i++) {
> 
> +		wq[i].wqebb_size = 1U << wqebb_shift;
> 
> +		wq[i].wqebb_shift = wqebb_shift;
> 
> +		wq[i].wq_buf_size = wq_buf_size;
> 
> +		wq[i].q_depth = q_depth;
> 
> +
> 
> +		err = alloc_wq_pages(hwdev, &wq[i], i);
> 
> +		if (err) {
> 
> +			PMD_DRV_LOG(ERR, "Failed to alloc CMDQ blocks");
> 
> +			goto cmdq_block_err;
> 
> +		}
> 
> +
> 
> +		wq[i].cons_idx = 0;
> 
> +		wq[i].prod_idx = 0;
> 
> +		rte_atomic_store_explicit(&wq[i].delta, q_depth,
> 
> +					  rte_memory_order_seq_cst);
> 
> +
> 
> +		wq[i].mask = q_depth - 1;
> 
> +	}
> 
> +
> 
> +	return 0;
> 
> +
> 
> +cmdq_block_err:
> 
> +	for (j = 0; j < i; j++)
> 
> +		free_wq_pages(&wq[j]);
> 
> +
> 
> +	return err;
> 
> +}
> 
> +
> 
> +void
> 
> +hinic3_cmdq_free(struct hinic3_wq *wq, int cmdq_blocks)
> 
> +{
> 
> +	int i;
> 
> +
> 
> +	for (i = 0; i < cmdq_blocks; i++)
> 
> +		free_wq_pages(&wq[i]);
> 
> +}
> 
> +
> 
> +void
> 
> +hinic3_wq_wqe_pg_clear(struct hinic3_wq *wq)
> 
> +{
> 
> +	wq->cons_idx = 0;
> 
> +	wq->prod_idx = 0;
> 
> +
> 
> +	memset((void *)wq->queue_buf_vaddr, 0, wq->wq_buf_size);
> 
> +}
> 
> +
> 
> +void *
> 
> +hinic3_get_wqe(struct hinic3_wq *wq, int num_wqebbs, u16 *prod_idx)
> 
> +{
> 
> +	u16 curr_prod_idx;
> 
> +
> 
> +	rte_atomic_fetch_sub_explicit(&wq->delta, num_wqebbs,
> 
> +				      rte_memory_order_seq_cst);
> 
> +	curr_prod_idx = (u16)(wq->prod_idx);
> 
> +	wq->prod_idx += num_wqebbs;
> 
> +	*prod_idx = MASKED_WQE_IDX(wq, curr_prod_idx);
> 
> +
> 
> +	return WQ_WQE_ADDR(wq, (u32)(*prod_idx));
> 
> +}
> 
> +
> 
> +void
> 
> +hinic3_set_sge(struct hinic3_sge *sge, uint64_t addr, u32 len)
> 
> +{
> 
> +	sge->hi_addr = upper_32_bits(addr);
> 
> +	sge->lo_addr = lower_32_bits(addr);
> 
> +	sge->len = len;
> 
> +}
> 
> diff --git a/drivers/net/hinic3/base/hinic3_wq.h b/drivers/net/hinic3/base/hinic3_wq.h
> 
> new file mode 100644
> 
> index 0000000000..84d54c2aeb
> 
> --- /dev/null
> 
> +++ b/drivers/net/hinic3/base/hinic3_wq.h
> 
> @@ -0,0 +1,109 @@
> 
> +/* SPDX-License-Identifier: BSD-3-Clause
> 
> + * Copyright(c) 2025 Huawei Technologies Co., Ltd
> 
> + */
> 
> +
> 
> +#ifndef _HINIC3_WQ_H_
> 
> +#define _HINIC3_WQ_H_
> 
> +
> 
> +/* Use 0-level CLA, page size must be: SQ 16B(wqe) * 64k(max_q_depth). */
> 
> +#define HINIC3_DEFAULT_WQ_PAGE_SIZE 0x100000
> 
> +#define HINIC3_HW_WQ_PAGE_SIZE	    0x1000
> 
> +
> 
> +#define MASKED_WQE_IDX(wq, idx) ((idx) & (wq)->mask)
> 
> +
> 
> +#define WQ_WQE_ADDR(wq, idx)                                                           \
> 
> +	({                                                                             \
> 
> +		typeof(wq) __wq = (wq);                                                \
> 
> +		(void *)((u64)(__wq->queue_buf_vaddr) + ((idx) << __wq->wqebb_shift)); \
> 
> +	})
> 
> +
> 
> +struct hinic3_sge {
> 
> +	u32 hi_addr;
> 
> +	u32 lo_addr;
> 
> +	u32 len;
> 
> +};
> 
> +
> 
> +struct hinic3_wq {
> 
> +	/* The addresses are 64 bit in the HW. */
> 
> +	u64 queue_buf_vaddr;
> 
> +
> 
> +	u16 q_depth;
> 
> +	u16 mask;
> 
> +	RTE_ATOMIC(int32_t)delta;
> 
> +
> 
> +	u32 cons_idx;
> 
> +	u32 prod_idx;
> 
> +
> 
> +	u64 queue_buf_paddr;
> 
> +
> 
> +	u32 wqebb_size;
> 
> +	u32 wqebb_shift;
> 
> +
> 
> +	u32 wq_buf_size;
> 
> +
> 
> +	const struct rte_memzone *wq_mz;
> 
> +
> 
> +	u32 rsvd[5];
> 
> +};
> 
> +
> 
> +void hinic3_put_wqe(struct hinic3_wq *wq, int num_wqebbs);
> 
> +
> 
> +/**
> 
> + * Read a WQE and update CI.
> 
> + *
> 
> + * @param[in] wq
> 
> + * The work queue structure.
> 
> + * @param[in] num_wqebbs
> 
> + * The number of work queue elements to read.
> 
> + * @param[out] cons_idx
> 
> + * The updated consumer index.
> 
> + *
> 
> + * @return
> 
> + * The address of WQE, or NULL if not enough elements are available.
> 
> + */
> 
> +void *hinic3_read_wqe(struct hinic3_wq *wq, int num_wqebbs, u16 *cons_idx);
> 
> +
> 
> +/**
> 
> + * Allocate command queue blocks and initialize related parameters.
> 
> + *
> 
> + * @param[in] wq
> 
> + * The cmdq->wq structure.
> 
> + * @param[in] dev
> 
> + * The device context for the hardware.
> 
> + * @param[in] cmdq_blocks
> 
> + * The number of command queue blocks to allocate.
> 
> + * @param[in] wq_buf_size
> 
> + * The size of each work queue buffer.
> 
> + * @param[in] wqebb_shift
> 
> + * The shift value for determining the work queue element size.
> 
> + * @param[in] q_depth
> 
> + * The depth of each command queue.
> 
> + *
> 
> + * @return
> 
> + * 0 on success, non-zero on failure.
> 
> + */
> 
> +int hinic3_cmdq_alloc(struct hinic3_wq *wq, void *dev, int cmdq_blocks,
> 
> +		      u32 wq_buf_size, u32 wqebb_shift, u16 q_depth);
> 
> +
> 
> +void hinic3_cmdq_free(struct hinic3_wq *wq, int cmdq_blocks);
> 
> +
> 
> +void hinic3_wq_wqe_pg_clear(struct hinic3_wq *wq);
> 
> +
> 
> +/**
> 
> + * Get WQE and update PI.
> 
> + *
> 
> + * @param[in] wq
> 
> + * The cmdq->wq structure.
> 
> + * @param[in] num_wqebbs
> 
> + * The number of work queue elements to allocate.
> 
> + * @param[out] prod_idx
> 
> + * The updated producer index, masked according to the queue size.
> 
> + *
> 
> + * @return
> 
> + * The address of the work queue element.
> 
> + */
> 
> +void *hinic3_get_wqe(struct hinic3_wq *wq, int num_wqebbs, u16 *prod_idx);
> 
> +
> 
> +void hinic3_set_sge(struct hinic3_sge *sge, uint64_t addr, u32 len);
> 
> +
> 
> +#endif /* _HINIC3_WQ_H_ */
> 


  reply	other threads:[~2025-08-21  6:41 UTC|newest]

Thread overview: 167+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-18  9:05 [RFC 00/18] add hinic3 PMD driver Feifei Wang
2025-04-18  9:05 ` [RFC 01/18] net/hinic3: add intro doc for hinic3 Feifei Wang
2025-04-18  9:05 ` [RFC 02/18] net/hinic3: add basic header files Feifei Wang
2025-04-18  9:05 ` [RFC 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-04-18  9:05 ` [RFC 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-04-18  9:05 ` [RFC 05/18] net/hinic3: add NIC event module Feifei Wang
2025-04-18  9:05 ` [RFC 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-04-18  9:05 ` [RFC 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-04-18  9:05 ` [RFC 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-04-18  9:05 ` [RFC 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-04-18  9:05 ` [RFC 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-04-18  9:05 ` [RFC 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-04-18  9:05 ` [RFC 12/18] net/hinic3: add device initailization Feifei Wang
2025-04-18  9:05 ` [RFC 13/18] net/hinic3: add dev ops Feifei Wang
2025-06-26 21:29   ` Stephen Hemminger
2025-06-26 21:30   ` Stephen Hemminger
2025-06-26 21:32   ` Stephen Hemminger
2025-04-18  9:06 ` [RFC 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-06-26 21:40   ` Stephen Hemminger
2025-06-26 21:41   ` Stephen Hemminger
2025-04-18  9:06 ` [RFC 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-04-18  9:06 ` [RFC 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-04-18  9:06 ` [RFC 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-04-18 18:25   ` Stephen Hemminger
2025-04-18 18:27   ` Stephen Hemminger
2025-04-18 18:28   ` Stephen Hemminger
2025-04-18 18:30   ` Stephen Hemminger
2025-04-18  9:06 ` [RFC 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-04-18 17:22   ` Stephen Hemminger
2025-04-19  2:52     ` 回复: " wangfeifei (J)
2025-05-29  8:14   ` [PATCH v1 00/18] add hinic3 pmd driver Feifei
2025-05-29  8:15   ` [PATCH v1 01/18] This patch adds some basic files to describe the hinic3 driver Feifei
2025-05-29  8:15   ` [PATCH v1 02/18] net/hinic3: add basic header files Feifei
2025-05-29  8:15   ` [PATCH v1 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei
2025-05-29  8:15   ` [PATCH v1 04/18] net/hinic3: add support for cmdq mechanism Feifei
2025-05-29  8:15   ` [PATCH v1 05/18] net/hinic3: add NIC event module Feifei
2025-05-29  8:15   ` [PATCH v1 06/18] net/hinic3: add eq mechanism function code Feifei
2025-05-29  8:15   ` [PATCH v1 07/18] net/hinic3: add mgmt module " Feifei
2025-05-29  8:15   ` [PATCH v1 08/18] net/hinic3: add module about hardware operation Feifei
2025-05-29  8:15   ` [PATCH v1 09/18] net/hinic3: add a NIC business configuration module Feifei
2025-05-29  8:15   ` [PATCH v1 10/18] net/hinic3: add context and work queue support Feifei
2025-05-29  8:15   ` [PATCH v1 11/18] net/hinic3: add a mailbox communication module Feifei
2025-05-29  8:15   ` [PATCH v1 12/18] net/hinic3: add device initialization Feifei
2025-05-29  8:15   ` [PATCH v1 13/18] net/hinic3: add dev ops Feifei
2025-05-29  8:15   ` [PATCH v1 14/18] net/hinic3: add Rx/Tx functions Feifei
2025-05-29  8:15   ` [PATCH v1 15/18] net/hinic3: add MML and EEPROM access feature Feifei
2025-05-29  8:15   ` [PATCH v1 16/18] net/hinic3: add RSS promiscuous ops Feifei
2025-05-29  8:15   ` [PATCH v1 17/18] net/hinic3: add FDIR flow control module Feifei
2025-05-29  8:15   ` [PATCH v1 18/18] drivers/net: add hinic3 PMD build and doc files Feifei
2025-04-18 18:18 ` [RFC 00/18] add hinic3 PMD driver Stephen Hemminger
2025-04-19  2:44   ` 回复: " wangfeifei (J)
2025-04-18 18:20 ` Stephen Hemminger
2025-04-18 18:32 ` Stephen Hemminger
2025-04-19  3:30   ` 回复: " wangfeifei (J)
2025-06-04  2:52 ` Stephen Hemminger
2025-06-09 16:40 ` Stephen Hemminger
2025-06-25  2:27 ` [V2 00/18] add hinic3 pmd driver Feifei Wang
2025-06-25  2:27   ` [V2 01/18] add some basic files about hinic3 driver Feifei Wang
2025-06-26 15:46     ` Stephen Hemminger
2025-06-26 15:58     ` Stephen Hemminger
2025-06-25  2:27   ` [V2 02/18] net/hinic3: add basic header files Feifei Wang
2025-06-25  2:27   ` [V2 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-06-25  2:28   ` [V2 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-06-25  2:28   ` [V2 05/18] net/hinic3: add NIC event module Feifei Wang
2025-06-25  2:28   ` [V2 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-06-25  2:28   ` [V2 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-06-25  2:28   ` [V2 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-06-25  2:28   ` [V2 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-06-25  2:28   ` [V2 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-06-25  2:28   ` [V2 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-06-25  2:28   ` [V2 12/18] net/hinic3: add device initialization Feifei Wang
2025-06-25  2:28   ` [V2 13/18] net/hinic3: add dev ops Feifei Wang
2025-06-25  2:28   ` [V2 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-06-26 20:04     ` Stephen Hemminger
2025-06-25  2:28   ` [V2 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-06-25  2:28   ` [V2 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-06-25  2:28   ` [V2 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-06-26 15:59     ` Stephen Hemminger
2025-06-26 19:58     ` Stephen Hemminger
2025-06-25  2:28   ` [V2 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-06-26 15:47   ` [V2 00/18] add hinic3 pmd driver Stephen Hemminger
2025-06-26 21:41   ` Stephen Hemminger
2025-07-08 15:47   ` Stephen Hemminger
2025-06-28  7:25 ` [V3 " Feifei Wang
2025-06-28  7:25   ` [V3 01/18] add some basic files about hinic3 driver Feifei Wang
2025-06-29 17:57     ` Stephen Hemminger
2025-06-28  7:25   ` [V3 02/18] net/hinic3: add basic header files Feifei Wang
2025-06-28  7:25   ` [V3 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-06-28  7:25   ` [V3 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-06-28  7:25   ` [V3 05/18] net/hinic3: add NIC event module Feifei Wang
2025-06-28  7:25   ` [V3 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-06-28  7:25   ` [V3 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-06-28  7:25   ` [V3 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-06-28  7:25   ` [V3 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-06-28  7:25   ` [V3 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-06-28  7:25   ` [V3 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-06-28  7:25   ` [V3 12/18] net/hinic3: add device initialization Feifei Wang
2025-06-28  7:25   ` [V3 13/18] net/hinic3: add dev ops Feifei Wang
2025-06-28  7:25   ` [V3 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-06-29 18:00     ` Stephen Hemminger
2025-06-28  7:25   ` [V3 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-06-28  7:25   ` [V3 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-06-28  7:25   ` [V3 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-06-28  7:25   ` [V3 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-06-28 15:04     ` Stephen Hemminger
2025-07-01  1:41 ` [V4 00/18] add hinic3 pmd driver Feifei Wang
2025-07-01  1:41   ` [V4 01/18] doc: add some basic files to describe the hinic3 driver Feifei Wang
2025-07-01  1:41   ` [V4 02/18] net/hinic3: add basic header files Feifei Wang
2025-07-01  1:41   ` [V4 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-07-01  1:41   ` [V4 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-07-01  1:41   ` [V4 05/18] net/hinic3: add NIC event module Feifei Wang
2025-07-01  1:41   ` [V4 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-07-01  1:41   ` [V4 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-07-01  1:41   ` [V4 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-07-01  1:42   ` [V4 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-07-01  1:42   ` [V4 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-07-01  1:42   ` [V4 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-07-01  1:42   ` [V4 12/18] net/hinic3: add device initialization Feifei Wang
2025-07-01  1:42   ` [V4 13/18] net/hinic3: add dev ops Feifei Wang
2025-07-01  1:42   ` [V4 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-07-01  1:42   ` [V4 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-07-01  1:42   ` [V4 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-07-01  1:42   ` [V4 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-07-01  1:42   ` [V4 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-07-01 13:53   ` [V4 00/18] add hinic3 pmd driver Stephen Hemminger
2025-07-02  2:09 ` [V5 " Feifei Wang
2025-07-02  2:09   ` [V5 01/18] doc: add some basic files to describe the hinic3 driver Feifei Wang
2025-08-21  1:25     ` fengchengwen
2025-07-02  2:09   ` [V5 02/18] net/hinic3: add basic header files Feifei Wang
2025-08-03 17:19     ` Stephen Hemminger
2025-08-21  1:51     ` fengchengwen
2025-07-02  2:09   ` [V5 03/18] net/hinic3: add hardware interfaces of BAR operation Feifei Wang
2025-08-21  2:13     ` fengchengwen
2025-07-02  2:09   ` [V5 04/18] net/hinic3: add support for cmdq mechanism Feifei Wang
2025-08-21  3:03     ` fengchengwen
2025-07-02  2:09   ` [V5 05/18] net/hinic3: add NIC event module Feifei Wang
2025-08-21  3:25     ` fengchengwen
2025-07-02  2:09   ` [V5 06/18] net/hinic3: add eq mechanism function code Feifei Wang
2025-08-21  4:06     ` fengchengwen
2025-07-02  2:09   ` [V5 07/18] net/hinic3: add mgmt module " Feifei Wang
2025-07-02  2:09   ` [V5 08/18] net/hinic3: add module about hardware operation Feifei Wang
2025-08-21  6:20     ` fengchengwen
2025-07-02  2:09   ` [V5 09/18] net/hinic3: add a NIC business configuration module Feifei Wang
2025-08-21  6:34     ` fengchengwen
2025-07-02  2:09   ` [V5 10/18] net/hinic3: add context and work queue support Feifei Wang
2025-08-21  6:41     ` fengchengwen [this message]
2025-07-02  2:09   ` [V5 11/18] net/hinic3: add a mailbox communication module Feifei Wang
2025-08-21  6:48     ` fengchengwen
2025-07-02  2:09   ` [V5 12/18] net/hinic3: add device initialization Feifei Wang
2025-08-21  6:58     ` fengchengwen
2025-07-02  2:09   ` [V5 13/18] net/hinic3: add dev ops Feifei Wang
2025-08-03 17:24     ` Stephen Hemminger
2025-08-21  7:43     ` fengchengwen
2025-07-02  2:09   ` [V5 14/18] net/hinic3: add Rx/Tx functions Feifei Wang
2025-08-21  8:05     ` fengchengwen
2025-07-02  2:09   ` [V5 15/18] net/hinic3: add MML and EEPROM access feature Feifei Wang
2025-08-21  8:13     ` fengchengwen
2025-07-02  2:09   ` [V5 16/18] net/hinic3: add RSS promiscuous ops Feifei Wang
2025-08-21  8:22     ` fengchengwen
2025-07-02  2:09   ` [V5 17/18] net/hinic3: add FDIR flow control module Feifei Wang
2025-08-21  8:38     ` fengchengwen
2025-07-02  2:09   ` [V5 18/18] drivers/net: add hinic3 PMD build and doc files Feifei Wang
2025-08-21  8:44     ` fengchengwen
2025-07-02 14:55   ` [V5 00/18] add hinic3 pmd driver Stephen Hemminger
2025-07-07  3:27     ` 回复: " wangfeifei (J)
2025-07-07  3:32       ` Stephen Hemminger
2025-07-07  7:39         ` 回复: " wangfeifei (J)

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=1a306c9f-1505-43ea-baba-87842459d252@huawei.com \
    --to=fengchengwen@huawei.com \
    --cc=chenyi221@huawei.com \
    --cc=dev@dpdk.org \
    --cc=wangfeifei40@huawei.com \
    --cc=wangxin679@h-partners.com \
    --cc=wff_light@vip.163.com \
    /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).