All of lore.kernel.org
 help / color / mirror / Atom feed
From: Qiming Yang <qiming.yang@intel.com>
To: dev@dpdk.org
Cc: qi.z.zhang@intel.com, Qiming Yang <qiming.yang@intel.com>
Subject: [PATCH 00/30] net/ice/base: share code update
Date: Thu, 27 Apr 2023 06:19:31 +0000	[thread overview]
Message-ID: <20230427062001.478032-1-qiming.yang@intel.com> (raw)

Updated share code to 2023.03 version.

Qiming Yang (30):
  net/ice/base: updated copyright
  net/ice/base: add flex array safe allocations
  net/ice/base: remove unnecessary control queue array
  net/ice/base: update flow seg fields to declared bitmaps
  net/ice/base: clean up RSS LUT and fix media type
  net/ice/base: add ability to set markid via switch filter
  net/ice/base: add reading cap and ropo cap
  net/ice/base: add function to read HW sensors
  net/ice/base: add pre-allocate memory argument
  net/ice/base: use coccinelle to instead macro
  net/ice/base: add new fls function
  net/ice/base: add E830 device ids
  net/ice/base: add function to get rxq context
  net/ice/base: removed no need 56G releated code
  net/ice/base: allow skip main timer
  net/ice/base: add E830 PTP init
  net/ice/base: add C825X device support
  net/ice/base: add VLAN TPID in switchdev
  net/ice/base: reduce time to read Option ROM CIVD
  net/ice/base: add L2TPv3 support for adv rules
  net/ice/base: add PHY OFFSET READY register clear
  net/ice/base: return CGU PLL config function params
  net/ice/base: change method to get pca9575 handle
  net/ice/base: cleanup timestamp registers correct
  net/ice/base: add PPPoE hardware offload
  net/ice/base: remove bypass mode
  net/ice/base: support inner etype in switchdev
  net/ice/base: use const array to store link modes
  net/ice/base: introduce a new ID for E810 NIC
  net/ice/base: fix Generic Checksum acronym

 drivers/net/ice/base/README              |    2 +-
 drivers/net/ice/base/ice_acl.c           |    2 +-
 drivers/net/ice/base/ice_acl.h           |    2 +-
 drivers/net/ice/base/ice_acl_ctrl.c      |    2 +-
 drivers/net/ice/base/ice_adminq_cmd.h    |  143 +-
 drivers/net/ice/base/ice_alloc.h         |    2 +-
 drivers/net/ice/base/ice_bitops.h        |    2 +-
 drivers/net/ice/base/ice_bst_tcam.c      |    2 +-
 drivers/net/ice/base/ice_bst_tcam.h      |    2 +-
 drivers/net/ice/base/ice_cgu_regs.h      |    2 +-
 drivers/net/ice/base/ice_common.c        |  820 ++++----
 drivers/net/ice/base/ice_common.h        |   25 +-
 drivers/net/ice/base/ice_controlq.c      |  109 +-
 drivers/net/ice/base/ice_controlq.h      |    5 +-
 drivers/net/ice/base/ice_dcb.c           |    6 +-
 drivers/net/ice/base/ice_dcb.h           |    2 +-
 drivers/net/ice/base/ice_ddp.c           |   19 +-
 drivers/net/ice/base/ice_ddp.h           |    4 +-
 drivers/net/ice/base/ice_defs.h          |    2 +-
 drivers/net/ice/base/ice_devids.h        |   26 +-
 drivers/net/ice/base/ice_fdir.c          |    2 +-
 drivers/net/ice/base/ice_fdir.h          |    2 +-
 drivers/net/ice/base/ice_flex_pipe.c     |    2 +-
 drivers/net/ice/base/ice_flex_pipe.h     |    2 +-
 drivers/net/ice/base/ice_flex_type.h     |    2 +-
 drivers/net/ice/base/ice_flg_rd.c        |    2 +-
 drivers/net/ice/base/ice_flg_rd.h        |    2 +-
 drivers/net/ice/base/ice_flow.c          |   76 +-
 drivers/net/ice/base/ice_flow.h          |    9 +-
 drivers/net/ice/base/ice_hw_autogen.h    | 1642 +++++++++++++++-
 drivers/net/ice/base/ice_imem.c          |    2 +-
 drivers/net/ice/base/ice_imem.h          |    2 +-
 drivers/net/ice/base/ice_lan_tx_rx.h     |   20 +-
 drivers/net/ice/base/ice_metainit.c      |    2 +-
 drivers/net/ice/base/ice_metainit.h      |    2 +-
 drivers/net/ice/base/ice_mk_grp.c        |    2 +-
 drivers/net/ice/base/ice_mk_grp.h        |    2 +-
 drivers/net/ice/base/ice_nvm.c           |   71 +-
 drivers/net/ice/base/ice_nvm.h           |    3 +-
 drivers/net/ice/base/ice_parser.c        |    2 +-
 drivers/net/ice/base/ice_parser.h        |    2 +-
 drivers/net/ice/base/ice_parser_rt.c     |    2 +-
 drivers/net/ice/base/ice_parser_rt.h     |    2 +-
 drivers/net/ice/base/ice_parser_util.h   |    2 +-
 drivers/net/ice/base/ice_pg_cam.c        |    2 +-
 drivers/net/ice/base/ice_pg_cam.h        |    2 +-
 drivers/net/ice/base/ice_proto_grp.c     |    2 +-
 drivers/net/ice/base/ice_proto_grp.h     |    2 +-
 drivers/net/ice/base/ice_protocol_type.h |   24 +-
 drivers/net/ice/base/ice_ptp_consts.h    |    2 +-
 drivers/net/ice/base/ice_ptp_hw.c        | 2263 +++++-----------------
 drivers/net/ice/base/ice_ptp_hw.h        |  149 +-
 drivers/net/ice/base/ice_ptype_mk.c      |    2 +-
 drivers/net/ice/base/ice_ptype_mk.h      |    2 +-
 drivers/net/ice/base/ice_sbq_cmd.h       |    2 +-
 drivers/net/ice/base/ice_sched.c         |  415 +++-
 drivers/net/ice/base/ice_sched.h         |   73 +-
 drivers/net/ice/base/ice_status.h        |    2 +-
 drivers/net/ice/base/ice_switch.c        | 1271 +++++++-----
 drivers/net/ice/base/ice_switch.h        |   44 +-
 drivers/net/ice/base/ice_tmatch.h        |    2 +-
 drivers/net/ice/base/ice_type.h          |  153 +-
 drivers/net/ice/base/ice_vlan_mode.c     |    2 +-
 drivers/net/ice/base/ice_vlan_mode.h     |    2 +-
 drivers/net/ice/base/ice_xlt_kb.c        |    2 +-
 drivers/net/ice/base/ice_xlt_kb.h        |    2 +-
 drivers/net/ice/ice_ethdev.c             |   13 +-
 67 files changed, 4594 insertions(+), 2875 deletions(-)

-- 
2.25.1


             reply	other threads:[~2023-04-27  6:37 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-27  6:19 Qiming Yang [this message]
2023-04-27  6:19 ` [PATCH 01/30] net/ice/base: updated copyright Qiming Yang
2023-04-27  6:19 ` [PATCH 02/30] net/ice/base: add flex array safe allocations Qiming Yang
2023-04-27  6:19 ` [PATCH 03/30] net/ice/base: remove unnecessary control queue array Qiming Yang
2024-03-05 18:05   ` [**EXTERNAL**] " Gudimetla, Leela Sankar
2023-04-27  6:19 ` [PATCH 04/30] net/ice/base: update flow seg fields to declared bitmaps Qiming Yang
2023-04-27  6:19 ` [PATCH 05/30] net/ice/base: clean up RSS LUT and fix media type Qiming Yang
2023-04-27  6:19 ` [PATCH 06/30] net/ice/base: add ability to set markid via switch filter Qiming Yang
2023-04-27  6:19 ` [PATCH 07/30] net/ice/base: add reading cap and ropo cap Qiming Yang
2023-04-27  6:19 ` [PATCH 08/30] net/ice/base: add function to read HW sensors Qiming Yang
2023-04-27  6:19 ` [PATCH 09/30] net/ice/base: add pre-allocate memory argument Qiming Yang
2023-04-27  6:19 ` [PATCH 10/30] net/ice/base: use coccinelle to instead macro Qiming Yang
2023-04-27  6:19 ` [PATCH 11/30] net/ice/base: add new fls function Qiming Yang
2023-04-27  6:19 ` [PATCH 12/30] net/ice/base: add E830 device ids Qiming Yang
2023-04-27  6:19 ` [PATCH 13/30] net/ice/base: add function to get rxq context Qiming Yang
2023-04-27  6:19 ` [PATCH 14/30] net/ice/base: removed no need 56G releated code Qiming Yang
2023-04-27  6:19 ` [PATCH 15/30] net/ice/base: allow skip main timer Qiming Yang
2023-04-27  6:19 ` [PATCH 16/30] net/ice/base: add E830 PTP init Qiming Yang
2023-04-27  6:19 ` [PATCH 17/30] net/ice/base: add C825X device support Qiming Yang
2023-04-27  6:19 ` [PATCH 18/30] net/ice/base: add VLAN TPID in switchdev Qiming Yang
2023-04-27  6:19 ` [PATCH 19/30] net/ice/base: reduce time to read Option ROM CIVD Qiming Yang
2023-04-27  6:19 ` [PATCH 20/30] net/ice/base: add L2TPv3 support for adv rules Qiming Yang
2023-04-27  6:19 ` [PATCH 21/30] net/ice/base: add PHY OFFSET READY register clear Qiming Yang
2023-04-27  6:19 ` [PATCH 22/30] net/ice/base: return CGU PLL config function params Qiming Yang
2023-04-27  6:19 ` [PATCH 23/30] net/ice/base: change method to get pca9575 handle Qiming Yang
2023-04-27  6:19 ` [PATCH 24/30] net/ice/base: cleanup timestamp registers correct Qiming Yang
2023-04-27  6:19 ` [PATCH 25/30] net/ice/base: add PPPoE hardware offload Qiming Yang
2023-04-27  6:19 ` [PATCH 26/30] net/ice/base: remove bypass mode Qiming Yang
2023-04-27  6:19 ` [PATCH 27/30] net/ice/base: support inner etype in switchdev Qiming Yang
2023-04-27  6:19 ` [PATCH 28/30] net/ice/base: use const array to store link modes Qiming Yang
2023-04-27  6:20 ` [PATCH 29/30] net/ice/base: introduce a new ID for E810 NIC Qiming Yang
2023-04-27  6:20 ` [PATCH 30/30] net/ice/base: fix Generic Checksum acronym Qiming Yang
2023-04-27 21:18   ` Greenwalt, Paul
2023-05-18 15:16 ` [PATCH v2 00/20] net/ice/base: code update Qiming Yang
2023-05-18 15:16   ` [PATCH v2 01/20] net/ice/base: updated copyright Qiming Yang
2023-05-18 15:16   ` [PATCH v2 02/20] net/ice/base: add NAC Topology device capability parser Qiming Yang
2023-05-18 15:16   ` [PATCH v2 03/20] net/ice/base: add new device for E810 Qiming Yang
2023-05-18 15:16   ` [PATCH v2 04/20] net/ice/base: fix incorrect defines for DCBx Qiming Yang
2023-05-18 15:16   ` [PATCH v2 05/20] net/ice/base: introduce a non-atomic function Qiming Yang
2023-05-18 15:16   ` [PATCH v2 06/20] net/ice/base: add missing AQ flag to AQ command Qiming Yang
2023-05-18 15:16   ` [PATCH v2 07/20] net/ice/base: add support for inner etype in switchdev Qiming Yang
2023-05-18 15:16   ` [PATCH v2 08/20] net/ice/base: add support for PPPoE hardware offload Qiming Yang
2023-05-18 15:16   ` [PATCH v2 09/20] net/ice/base: remove direction metadata for switchdev Qiming Yang
2023-05-18 15:16   ` [PATCH v2 10/20] net/ice/base: reduce time to read Option data Qiming Yang
2023-05-18 17:08     ` Keller, Jacob E
2023-05-18 15:16   ` [PATCH v2 11/20] net/ice/base: add support for VLAN TPID filters Qiming Yang
2023-05-18 15:16   ` [PATCH v2 12/20] net/ice/base: add C825-X device ID Qiming Yang
2023-05-18 15:16   ` [PATCH v2 13/20] net/ice/base: add function to get rxq context Qiming Yang
2023-05-18 15:16   ` [PATCH v2 14/20] net/ice/base: modify tunnel match mask Qiming Yang
2023-05-18 15:16   ` [PATCH v2 15/20] net/ice/base: check VSIG before disassociating VSI Qiming Yang
2023-05-18 15:16   ` [PATCH v2 16/20] net/ice/base: delete get field vector function Qiming Yang
2023-05-18 15:16   ` [PATCH v2 17/20] net/ice/base: update 3k-sign DDP support for E825C Qiming Yang
2023-05-18 15:16   ` [PATCH v2 18/20] net/ice/base: fix static analyzer bug Qiming Yang
2023-05-18 15:16   ` [PATCH v2 19/20] net/ice/base: offer memory config for schedual node Qiming Yang
2023-05-18 15:16   ` [PATCH v2 20/20] net/ice/base: add new AQ ro read HW sensors Qiming Yang
2023-05-23  2:12   ` [PATCH v2 00/20] net/ice/base: code update Zhang, Qi Z

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=20230427062001.478032-1-qiming.yang@intel.com \
    --to=qiming.yang@intel.com \
    --cc=dev@dpdk.org \
    --cc=qi.z.zhang@intel.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 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.