[PATCH v7 0/8] support dump reigser names and filter

2024-09-14 Thread Jie Hai
The registers can be dumped through the API rte_eth_dev_get_reg_info. However, only register values are exported, which is inconvenient for users to interpret. Therefore, an extension of the structure "rte_dev_reg_info" and a new API rte_eth_dev_get_reg_info_ext is added to support the capability o

[PATCH v7 1/8] ethdev: support report register names and filter

2024-09-14 Thread Jie Hai
This patch adds "filter" and "names" fields to "rte_dev_reg_info" structure. Names of registers in data fields can be reported and the registers can be filtered by their module names. The new API rte_eth_dev_get_reg_info_ext() is added to support reporting names and filtering by modules. And the o

[PATCH v7 4/8] net/hns3: fix dump counter of registers

2024-09-14 Thread Jie Hai
Since the driver dumps the queue interrupt registers according to the intr_tqps_num, the counter should be the same. Fixes: acb3260fac5c ("net/hns3: fix dump register out of range") Fixes: 936eda25e8da ("net/hns3: support dump register") Cc: sta...@dpdk.org Signed-off-by: Jie Hai Acked-by: Huiso

[PATCH v7 3/8] net/hns3: remove some basic address dump

2024-09-14 Thread Jie Hai
For security reasons, some address registers are not suitable to be exposed, remove them. Cc: sta...@dpdk.org Signed-off-by: Jie Hai Acked-by: Huisong Li --- drivers/net/hns3/hns3_regs.c | 12 ++-- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/drivers/net/hns3/hns3_regs

[PATCH v7 0/8] support dump reigser names and filter

2024-09-14 Thread Jie Hai
The registers can be dumped through the API rte_eth_dev_get_reg_info. However, only register values are exported, which is inconvenient for users to interpret. Therefore, an extension of the structure "rte_dev_reg_info" and a new API rte_eth_dev_get_reg_info_ext is added to support the capability o

[PATCH v7 2/8] ethdev: add telemetry cmd for registers

2024-09-14 Thread Jie Hai
This patch adds a telemetry command for registers dump, and supports obtaining the registers of a specified module. In one way, the number of registers that can be exported is limited by the number of elements carried by dict and container. In another way, the length of the string exported by tele

[PATCH v7 6/8] net/hns3: refactor register dump

2024-09-14 Thread Jie Hai
This patch refactors codes dumping registers from firmware. Signed-off-by: Jie Hai --- drivers/net/hns3/hns3_regs.c | 203 --- 1 file changed, 115 insertions(+), 88 deletions(-) diff --git a/drivers/net/hns3/hns3_regs.c b/drivers/net/hns3/hns3_regs.c index c8e3fb

[PATCH v7 8/8] net/hns3: support filter registers by module names

2024-09-14 Thread Jie Hai
This patch support dumping registers which name contains the `filter` string. The module names are in lower case and so is the `filter`. Available module names are cmdq, common_pf, common_vf, ring, tqp_intr, 32_bit_dfx, 64_bit_dfx, bios, igu_egu, ssu, ppp, rpu, ncsi, rtc, rcb, etc. Signed-off-by:

[PATCH v7 5/8] net/hns3: remove separators between register module

2024-09-14 Thread Jie Hai
Since the driver is going to support reporting names of all registers, remove the counter and insert of separators between different register modules. Signed-off-by: Jie Hai Reviewed-by: Huisong Li Acked-by: Chengwen Feng --- drivers/net/hns3/hns3_regs.c | 68 ++

[PATCH v7 7/8] net/hns3: support report names of registers

2024-09-14 Thread Jie Hai
This patch adds names for register lists, and support report names of registers. Some registers has different names on different platform, use names of HIP08 as default names. Signed-off-by: Jie Hai --- drivers/net/hns3/hns3_regs.c | 1090 +- 1 file changed, 957 i

Re: [PATCH v3 2/2] app/testpmd: add set dev led on/off command

2024-09-14 Thread fengchengwen
there are three minor comments, with these fixed, Acked-by: Chengwen Feng On 2024/9/14 9:49, Chaoyong He wrote: > From: James Hershaw > > Add command to change the state of a controllable LED on an ethdev port > to on/off. This is for the purpose of identifying which physical port is > associat

Re: [PATCH v3 1/2] app/testpmd: add support for setting device EEPROM

2024-09-14 Thread fengchengwen
On 2024/9/14 9:49, Chaoyong He wrote: > From: James Hershaw > > There is currently no means to test the .set_eeprom function callback of > a given PMD in drivers/net/. This patch adds functionality to allow a > user to set device eeprom from the testpmd cmdline. > > Usage: > testpmd> set port

Re: [PATCH v7 2/8] ethdev: add telemetry cmd for registers

2024-09-14 Thread fengchengwen
On 2024/9/14 15:13, Jie Hai wrote: > This patch adds a telemetry command for registers dump, > and supports obtaining the registers of a specified module. > > In one way, the number of registers that can be exported > is limited by the number of elements carried by dict and > container. In another

Re: [PATCH v7 3/8] net/hns3: remove some basic address dump

2024-09-14 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/9/14 15:13, Jie Hai wrote: > For security reasons, some address registers are not suitable > to be exposed, remove them. > > Cc: sta...@dpdk.org > > Signed-off-by: Jie Hai > Acked-by: Huisong Li > --- > drivers/net/hns3/hns3_regs.c | 12 ++-- > 1 file c

Re: [PATCH v7 6/8] net/hns3: refactor register dump

2024-09-14 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/9/14 15:13, Jie Hai wrote: > This patch refactors codes dumping registers from firmware. > > Signed-off-by: Jie Hai > --- > drivers/net/hns3/hns3_regs.c | 203 --- > 1 file changed, 115 insertions(+), 88 deletions(-) >

Re: [PATCH v7 7/8] net/hns3: support report names of registers

2024-09-14 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/9/14 15:13, Jie Hai wrote: > This patch adds names for register lists, and support report > names of registers. Some registers has different names on > different platform, use names of HIP08 as default names. > > Signed-off-by: Jie Hai > ---

Re: [PATCH v7 8/8] net/hns3: support filter registers by module names

2024-09-14 Thread fengchengwen
On 2024/9/14 15:13, Jie Hai wrote: > This patch support dumping registers which name contains the > `filter` string. The module names are in lower case and so is > the `filter`. Available module names are cmdq, common_pf, > common_vf, ring, tqp_intr, 32_bit_dfx, 64_bit_dfx, bios, igu_egu, > ssu, pp

Re: [RFC v0 1/1] dmadev: provide priority configuration support

2024-09-14 Thread fengchengwen
On 2024/9/13 20:10, Vamsi Krishna wrote: > From: Vamsi Attunuru > > Some DMA controllers offer the ability to configure priority level > for the hardware command queues, allowing for the prioritization of > DMA command execution based on queue importance. > > This patch introduces the necessary

Incoming changes for GVNIC

2024-09-14 Thread Garrett D'Amore
This is mostly a heads up We (WEKA) use various drivers with specific alignment requirements, which causes us to need to need to use multibuffer (scatter/gather) functionality in various drivers. Unfortunately, the GVNIC driver was ... very... buggy in this regard (in fact it doesn't work