[PATCH 00/70] ice base code update
Qi Zhang
qi.z.zhang at intel.com
Mon Aug 15 09:11:56 CEST 2022
Update ice base code to 2022-Aug internal release.
Summary:
1. Baseline support for L2TPv2 FDIR/RSS.
2. Refactor DDP module.
3. Support 56G PHY
4. Add GTP/GRE tunnel.
6. Clean code and fix bug
5. update copyright.
Qi Zhang (70):
net/ice/base: add netlist helper functions
net/ice/base: get NVM CSS Header length from the CSS Header
net/ice/base: combine functions for VSI promisc
net/ice/base: make function names more generic
net/ice/base: fix incorrect division during E822 PTP init
net/ice/base: added auto drop blocking packets functionality
net/ice/base: fix 100M speed
net/ice/base: support VXLAN and GRE for RSS
net/ice/base: fix DSCP PFC TLV creation
net/ice/base: complete the health status codes
net/ice/base: explicitly name E822 HW-dependent functions
net/ice/base: move code block
net/ice/base: add PHY 56G destination address
net/ice/base: add 56G PHY register definitions
net/ice/base: implement 56G PHY access functions
net/ice/base: implement 56G PHY setup functions
net/ice/base: work around missing PTP caps
net/ice/base: enable calling of ETH56G functions
net/ice/base: fix PHY type 10G SFI C2C to media type mapping
net/ice/base: refactor DDP code
net/ice/base: add E822 generic PCI device ID
net/ice/base: support double VLAN rules
net/ice/base: report NVM version numbers on mismatch
net/ice/base: create duplicate detection for ACL rules
net/ice/base: fix incorrect function descriptions for parser
net/ice/base: fix endian format
net/ice/base: convert IO expander handle to u16
net/ice/base: convert array of u8 to bitmap
net/ice/base: fix array overflow in add switch recipe code
net/ice/base: fix bit finding range over ptype bitmap
net/ice/base: move function to internal
net/ice/base: change PHY/QUAD/ports definitions
net/ice/base: add AQ command to config node attribute
net/ice/base: fix null pointer dereference during
net/ice/base: refine default VSI config
net/ice/base: ice-shared: fix add mac rule
net/ice/base: support Tx topo config
net/ice/base: adjust the VSI/Aggregator layers
net/ice/base: add data typecasting to match sizes
net/ice/base: add helper function to check if device is E823
net/ice/base: add low latency Tx timestamp read
net/ice/base: fix double VLAN error in promisc mode
net/ice/base: move functions
net/ice/base: complete support for Tx balancing
net/ice/base: update definitions for AQ internal debug dump
net/ice/base: update macros of L2TPv2 ptype value
net/ice/base: refine header file include
net/ice/base: ignore already exist error
net/ice/base: clean up with no lookups
net/ice/base: add support for Auto FEC with FEC disabled
net/ice/base: update PHY type high max index
net/ice/base: clean the main timer command register
net/ice/base: add support for custom WPC and LGB NICs
net/ice/base: add generic MAC with 3K signature segment
net/ice/base: enable RSS support for L2TPv2 session ID
net/ice/base: enable FDIR support for L2TPv2
net/ice/base: add GRE Tap tunnel type
net/ice/base: fix wrong inputset of GTPoGRE packet
net/ice/base: add unload flag for control queue shutdown
net/ice/base: update comment for overloaded GCO bit
net/ice/base: complete pending LLDP MIB
net/ice/base: add function to parse DCBX config
net/ice/base: handle default VSI lookup type
net/ice/base: convert 1588 structs to use bitfields
net/ice/base: remove unnecessary fields
net/ice/base: add GTP tunnel
net/ice/base: check for PTP HW lock more frequently
net/ice/base: expose API for move sched element
net/ice/base: couple code clean
net/ice/base: update copyright
drivers/net/ice/base/README | 4 +-
drivers/net/ice/base/ice_acl.c | 2 +-
drivers/net/ice/base/ice_acl.h | 2 +-
drivers/net/ice/base/ice_acl_ctrl.c | 36 +-
drivers/net/ice/base/ice_adminq_cmd.h | 175 +-
drivers/net/ice/base/ice_alloc.h | 2 +-
drivers/net/ice/base/ice_bitops.h | 7 +-
drivers/net/ice/base/ice_bst_tcam.c | 8 +-
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 | 371 ++-
drivers/net/ice/base/ice_common.h | 22 +-
drivers/net/ice/base/ice_controlq.c | 33 +-
drivers/net/ice/base/ice_controlq.h | 2 +-
drivers/net/ice/base/ice_dcb.c | 52 +-
drivers/net/ice/base/ice_dcb.h | 4 +-
drivers/net/ice/base/ice_ddp.c | 2475 ++++++++++++++++++++
drivers/net/ice/base/ice_ddp.h | 466 ++++
drivers/net/ice/base/ice_defs.h | 49 +
drivers/net/ice/base/ice_devids.h | 9 +-
drivers/net/ice/base/ice_fdir.c | 812 ++++++-
drivers/net/ice/base/ice_fdir.h | 28 +-
drivers/net/ice/base/ice_flex_pipe.c | 2541 +++------------------
drivers/net/ice/base/ice_flex_pipe.h | 66 +-
drivers/net/ice/base/ice_flex_type.h | 359 +--
drivers/net/ice/base/ice_flg_rd.c | 6 +-
drivers/net/ice/base/ice_flg_rd.h | 2 +-
drivers/net/ice/base/ice_flow.c | 100 +-
drivers/net/ice/base/ice_flow.h | 16 +-
drivers/net/ice/base/ice_hw_autogen.h | 2 +-
drivers/net/ice/base/ice_imem.c | 6 +-
drivers/net/ice/base/ice_imem.h | 2 +-
drivers/net/ice/base/ice_lan_tx_rx.h | 4 +-
drivers/net/ice/base/ice_metainit.c | 6 +-
drivers/net/ice/base/ice_metainit.h | 2 +-
drivers/net/ice/base/ice_mk_grp.c | 6 +-
drivers/net/ice/base/ice_mk_grp.h | 2 +-
drivers/net/ice/base/ice_nvm.c | 67 +-
drivers/net/ice/base/ice_nvm.h | 2 +-
drivers/net/ice/base/ice_osdep.h | 2 +-
drivers/net/ice/base/ice_parser.c | 9 +-
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 | 14 +-
drivers/net/ice/base/ice_pg_cam.h | 2 +-
drivers/net/ice/base/ice_proto_grp.c | 6 +-
drivers/net/ice/base/ice_proto_grp.h | 2 +-
drivers/net/ice/base/ice_protocol_type.h | 4 +-
drivers/net/ice/base/ice_ptp_consts.h | 2 +-
drivers/net/ice/base/ice_ptp_hw.c | 2618 +++++++++++++++++-----
drivers/net/ice/base/ice_ptp_hw.h | 149 +-
drivers/net/ice/base/ice_ptype_mk.c | 6 +-
drivers/net/ice/base/ice_ptype_mk.h | 2 +-
drivers/net/ice/base/ice_sbq_cmd.h | 3 +-
drivers/net/ice/base/ice_sched.c | 106 +-
drivers/net/ice/base/ice_sched.h | 19 +-
drivers/net/ice/base/ice_status.h | 2 +-
drivers/net/ice/base/ice_switch.c | 986 ++++----
drivers/net/ice/base/ice_switch.h | 9 +-
drivers/net/ice/base/ice_tmatch.h | 2 +-
drivers/net/ice/base/ice_type.h | 200 +-
drivers/net/ice/base/ice_vlan_mode.c | 3 +-
drivers/net/ice/base/ice_vlan_mode.h | 2 +-
drivers/net/ice/base/ice_xlt_kb.c | 12 +-
drivers/net/ice/base/ice_xlt_kb.h | 2 +-
drivers/net/ice/base/meson.build | 1 +
drivers/net/ice/ice_ethdev.c | 5 +-
69 files changed, 7890 insertions(+), 4038 deletions(-)
create mode 100644 drivers/net/ice/base/ice_ddp.c
create mode 100644 drivers/net/ice/base/ice_ddp.h
create mode 100644 drivers/net/ice/base/ice_defs.h
--
2.31.1
More information about the dev
mailing list