[v5,00/11] update idpf base code

Message ID 20230920062236.375308-1-simei.su@intel.com (mailing list archive)
Headers
Series update idpf base code |

Message

Simei Su Sept. 20, 2023, 6:22 a.m. UTC
  Currently, single queue Tx data path uses flex Tx data
descriptor(DTYPE3) which is removed in the latest idpf spec.
[PATCH v5 01/11] replaces flex Tx data descriptor with base Tx data
descriptor for single queue Tx data path and refines Tx single
queue setup to align with Tx data path.

[PATCH v5 02/11]~[PATCH v5 11/11] update idpf base code based on
[PATCH v5 01/11].        

v5:
* Refine commit title and commit log.
* Combine several patches into one patch.

v4:
* Put single queue Tx data path refactor patch in this patchset.

v3:
* Fix coding style issue.
* Modify unexpected error in the update version patch.

v2:
* Add two patches for share code update.
* Add version update.
* Fix coding style issue.

Simei Su (11):
  common/idpf: refactor single queue Tx data path
  common/idpf/base: enable support for physical port stats
  common/idpf/base: add miss completion capabilities
  common/idpf/base: initialize PTP support
  common/idpf/base: remove mailbox registers
  common/idpf/base: refine structure and necessary check
  common/idpf/base: add union for SW cookie fields
  common/idpf/base: refine code and alignments
  common/idpf/base: use GENMASK macro
  common/idpf/base: remove unused Tx descriptor types
  common/idpf/base: update version

 .mailmap                                      |   7 +
 drivers/common/idpf/base/README               |   2 +-
 drivers/common/idpf/base/idpf_common.c        |  10 +-
 drivers/common/idpf/base/idpf_controlq.c      |  64 ++--
 drivers/common/idpf/base/idpf_controlq_api.h  |  17 +-
 .../common/idpf/base/idpf_controlq_setup.c    |   5 +-
 drivers/common/idpf/base/idpf_lan_pf_regs.h   |  33 +-
 drivers/common/idpf/base/idpf_lan_txrx.h      | 284 +++++------------
 drivers/common/idpf/base/idpf_lan_vf_regs.h   |  41 ++-
 drivers/common/idpf/base/idpf_osdep.h         |   7 +
 drivers/common/idpf/base/idpf_prototype.h     |   2 +-
 drivers/common/idpf/base/siov_regs.h          |  13 +-
 drivers/common/idpf/base/virtchnl2.h          | 301 ++++++++++++++++--
 drivers/common/idpf/idpf_common_rxtx.c        |  39 ++-
 drivers/common/idpf/idpf_common_rxtx.h        |   2 +-
 drivers/common/idpf/idpf_common_rxtx_avx512.c |  37 ++-
 drivers/net/cpfl/cpfl_rxtx.c                  |   2 +-
 drivers/net/idpf/idpf_rxtx.c                  |   2 +-
 18 files changed, 500 insertions(+), 368 deletions(-)
  

Comments

Qi Zhang Sept. 21, 2023, 1:21 a.m. UTC | #1
> -----Original Message-----
> From: Su, Simei <simei.su@intel.com>
> Sent: Wednesday, September 20, 2023 2:22 PM
> To: Wu, Jingjing <jingjing.wu@intel.com>; Xing, Beilei <beilei.xing@intel.com>;
> Zhang, Qi Z <qi.z.zhang@intel.com>
> Cc: dev@dpdk.org; Wu, Wenjun1 <wenjun1.wu@intel.com>; Liu, Mingxia
> <mingxia.liu@intel.com>; Qiao, Wenjing <wenjing.qiao@intel.com>; Su, Simei
> <simei.su@intel.com>
> Subject: [PATCH v5 00/11] update idpf base code
> 
> Currently, single queue Tx data path uses flex Tx data
> descriptor(DTYPE3) which is removed in the latest idpf spec.
> [PATCH v5 01/11] replaces flex Tx data descriptor with base Tx data descriptor
> for single queue Tx data path and refines Tx single queue setup to align with
> Tx data path.
> 
> [PATCH v5 02/11]~[PATCH v5 11/11] update idpf base code based on
> [PATCH v5 01/11].
> 
> v5:
> * Refine commit title and commit log.
> * Combine several patches into one patch.
> 
> v4:
> * Put single queue Tx data path refactor patch in this patchset.
> 
> v3:
> * Fix coding style issue.
> * Modify unexpected error in the update version patch.
> 
> v2:
> * Add two patches for share code update.
> * Add version update.
> * Fix coding style issue.
> 
> Simei Su (11):
>   common/idpf: refactor single queue Tx data path
>   common/idpf/base: enable support for physical port stats
>   common/idpf/base: add miss completion capabilities
>   common/idpf/base: initialize PTP support
>   common/idpf/base: remove mailbox registers
>   common/idpf/base: refine structure and necessary check
>   common/idpf/base: add union for SW cookie fields
>   common/idpf/base: refine code and alignments
>   common/idpf/base: use GENMASK macro
>   common/idpf/base: remove unused Tx descriptor types
>   common/idpf/base: update version
> 
>  .mailmap                                      |   7 +
>  drivers/common/idpf/base/README               |   2 +-
>  drivers/common/idpf/base/idpf_common.c        |  10 +-
>  drivers/common/idpf/base/idpf_controlq.c      |  64 ++--
>  drivers/common/idpf/base/idpf_controlq_api.h  |  17 +-
>  .../common/idpf/base/idpf_controlq_setup.c    |   5 +-
>  drivers/common/idpf/base/idpf_lan_pf_regs.h   |  33 +-
>  drivers/common/idpf/base/idpf_lan_txrx.h      | 284 +++++------------
>  drivers/common/idpf/base/idpf_lan_vf_regs.h   |  41 ++-
>  drivers/common/idpf/base/idpf_osdep.h         |   7 +
>  drivers/common/idpf/base/idpf_prototype.h     |   2 +-
>  drivers/common/idpf/base/siov_regs.h          |  13 +-
>  drivers/common/idpf/base/virtchnl2.h          | 301 ++++++++++++++++--
>  drivers/common/idpf/idpf_common_rxtx.c        |  39 ++-
>  drivers/common/idpf/idpf_common_rxtx.h        |   2 +-
>  drivers/common/idpf/idpf_common_rxtx_avx512.c |  37 ++-
>  drivers/net/cpfl/cpfl_rxtx.c                  |   2 +-
>  drivers/net/idpf/idpf_rxtx.c                  |   2 +-
>  18 files changed, 500 insertions(+), 368 deletions(-)
> 
> --
> 2.25.1

Patch 11 has been squashed with Patch 10, as it's not necessary to have a dedicate path for internal version tag.

Applied to dpdk-next-net-intel.

Thanks
Qi