Main changes: 1. add DCB/FDIR support. 2. add more APIs in switch module. 3. code clean and bug fix.
Qi Zhang (37): net/ice/base: add switch resource allocation and free net/ice/base: improve comments net/ice/base: add two helper functions net/ice/base: add helper macros net/ice/base: allow package copy to be used after resets net/ice/base: code clean net/ice/base: declare functions as external net/ice/base: add more APIs in switch module net/ice/base: add VSI queue context framework net/ice/base: add APIs to add remove ethertype filter net/ice/base: add APIs to get allocated resources net/ice/base: add APIs to alloc/free VLAN resource counter net/ice/base: add APIs to get VSI promiscuous mode net/ice/base: add MAC filter with marker and counter net/ice/base: add two helper functions for flow management net/ice/base: minor fix net/ice/base: update macros net/ice/base: code clean net/ice/base: enable VSI queue context net/ice/base: ensure only valid bits are set net/ice/base: enhance get link status command net/ice/base: add RSS key related macro and structures net/ice/base: do not write TCAM entries back net/ice/base: remove local VSIG allocations net/ice/base: minor fix net/ice/base: update copyright time net/ice/base: resolve static analysis reported issues net/ice/base: return config error without queue to disable net/ice/base: add function to check FW recovery mode net/ice/base: change profile id reference counting net/ice/base: add DCB support net/ice/base: add FDIR support net/ice/base: change profile priority for RSS reply net/ice/base: remove duplicate resource allocations net/ice/base: minor fix net/ice/base: increase prototol offset size net/ice/base: revert the workaround for resource allocation drivers/net/ice/Makefile | 2 + drivers/net/ice/base/ice_adminq_cmd.h | 515 +++++- drivers/net/ice/base/ice_alloc.h | 2 +- drivers/net/ice/base/ice_common.c | 650 ++++++-- drivers/net/ice/base/ice_common.h | 36 +- drivers/net/ice/base/ice_controlq.c | 10 +- drivers/net/ice/base/ice_controlq.h | 2 +- drivers/net/ice/base/ice_dcb.c | 1393 ++++++++++++++++ drivers/net/ice/base/ice_dcb.h | 223 +++ drivers/net/ice/base/ice_devids.h | 2 +- drivers/net/ice/base/ice_fdir.c | 742 +++++++++ drivers/net/ice/base/ice_fdir.h | 205 +++ drivers/net/ice/base/ice_flex_pipe.c | 1075 +++++++------ drivers/net/ice/base/ice_flex_pipe.h | 4 +- drivers/net/ice/base/ice_flex_type.h | 19 +- drivers/net/ice/base/ice_flow.c | 224 +-- drivers/net/ice/base/ice_flow.h | 22 +- drivers/net/ice/base/ice_hw_autogen.h | 2 +- drivers/net/ice/base/ice_lan_tx_rx.h | 149 +- drivers/net/ice/base/ice_nvm.c | 17 +- drivers/net/ice/base/ice_osdep.h | 16 + drivers/net/ice/base/ice_protocol_type.h | 8 +- drivers/net/ice/base/ice_sbq_cmd.h | 2 +- drivers/net/ice/base/ice_sched.c | 2563 +++++++++++++++--------------- drivers/net/ice/base/ice_sched.h | 34 +- drivers/net/ice/base/ice_status.h | 3 +- drivers/net/ice/base/ice_switch.c | 1315 ++++++++++++++- drivers/net/ice/base/ice_switch.h | 109 +- drivers/net/ice/base/ice_type.h | 119 +- drivers/net/ice/base/meson.build | 2 + drivers/net/ice/ice_rxtx.c | 11 +- 31 files changed, 7114 insertions(+), 2362 deletions(-) create mode 100644 drivers/net/ice/base/ice_dcb.c create mode 100644 drivers/net/ice/base/ice_dcb.h create mode 100644 drivers/net/ice/base/ice_fdir.c create mode 100644 drivers/net/ice/base/ice_fdir.h -- 2.13.6