From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C764AA0563; Mon, 23 Mar 2020 08:14:38 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9E7811BEDE; Mon, 23 Mar 2020 08:14:37 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 479463B5 for ; Mon, 23 Mar 2020 08:14:34 +0100 (CET) IronPort-SDR: B8XdyUIUHfj1Vcd6AlnZBzQUmoSQXzEM1HhwzTB8dwPJcgNBiyJzFWiFhl1p6iWz8tAlVB0MGT V9Om2nkvlOeg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Mar 2020 00:14:32 -0700 IronPort-SDR: 7VwBg1mv//X97ND7tp9TWgV81xMJkRp1FNJrq5Oh3ZRhnxZ7AqqeWjmEOVDP0BARawIFB6DqQa e6FoySTB+88w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,295,1580803200"; d="scan'208";a="246111465" Received: from dpdk51.sh.intel.com ([10.67.110.245]) by orsmga003.jf.intel.com with ESMTP; 23 Mar 2020 00:14:30 -0700 From: Qi Zhang To: qiming.yang@intel.com Cc: dev@dpdk.org, xiaolong.ye@intel.com, Qi Zhang Date: Mon, 23 Mar 2020 15:17:23 +0800 Message-Id: <20200323071759.13075-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20200309114357.31800-1-qi.z.zhang@intel.com> References: <20200309114357.31800-1-qi.z.zhang@intel.com> Subject: [dpdk-dev] [PATCH v2 00/36] update ice base code X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Main changes: 1) Support GTPU uplink and downlink 2) add new ACL module 3) couple fixes and code clean v2: - add fixline in patch 5, and move unrelated chanages. - add more fixes and code clean - add IPv4 proto support in switch rule - add IPv6 dummy packet support - add tunnel refreence count. - check DDP package compatibility Qi Zhang (36): net/ice/base: fix uninitialized stack variables net/ice/base: add and update E822 device IDs net/ice/base: fix removing MAC rule net/ice/base: read PSM clock frequency from register net/ice/base: allow VLAN and ethertype filter for port net/ice/base: replace u16 with enum net/ice/base: use struct size helper net/ice/base: use descriptive vairiable name than type net/ice/base: refactor a function net/ice/base: add NVM netlist macros net/ice/base: minor fixes net/ice/base: support GTPU uplink and downlink net/ice/base: add link default override support net/ice/base: add dedicate MAC type for E810 net/ice/base: capitalize abbreviations net/ice/base: add PHY number definition values net/ice/base: add shared driver parameter command net/ice/base: add AN masks to Get PHY Caps net/ice/base: xtract logic of flat NVM read to function net/ice/base: add macro specifying max NVM offset net/ice/base: implement new sr read functions net/ice/base: couple casting issue fixes net/ice/base: support PHY persistent feature net/ice/base: store NVM version info in extracted format net/ice/base: add ACL module net/ice/base: update copyright date net/ice/base: add the hook to send AdminQ command net/ice/base: don't access some hardware registers in DCF net/ice/base: move functions from common to NVM module net/ice/base: discover and store size of available flash net/ice/base: check DDP package compatibility net/ice/base: fix MAC write command net/ice/base: misc cleanups for Flow Director net/ice/base: add check to ipv4 next protocol net/ice/base: add reference count to tunnels net/ice/base: add pppoe ipv6 dummy packet drivers/net/ice/Makefile | 2 + drivers/net/ice/base/ice_acl.c | 629 ++++++++++++++++ drivers/net/ice/base/ice_acl.h | 206 +++++ drivers/net/ice/base/ice_acl_ctrl.c | 1185 +++++++++++++++++++++++++++++ drivers/net/ice/base/ice_adminq_cmd.h | 542 +++++++++++++- drivers/net/ice/base/ice_alloc.h | 2 +- drivers/net/ice/base/ice_bitops.h | 2 +- drivers/net/ice/base/ice_common.c | 408 ++++++---- drivers/net/ice/base/ice_common.h | 26 +- drivers/net/ice/base/ice_controlq.c | 20 +- drivers/net/ice/base/ice_controlq.h | 2 +- drivers/net/ice/base/ice_dcb.c | 10 +- drivers/net/ice/base/ice_dcb.h | 2 +- drivers/net/ice/base/ice_devids.h | 30 +- drivers/net/ice/base/ice_fdir.c | 64 +- drivers/net/ice/base/ice_fdir.h | 7 +- drivers/net/ice/base/ice_flex_pipe.c | 450 +++++++---- drivers/net/ice/base/ice_flex_pipe.h | 6 +- drivers/net/ice/base/ice_flex_type.h | 17 +- drivers/net/ice/base/ice_flow.c | 1209 +++++++++++++++++++++++++++++- drivers/net/ice/base/ice_flow.h | 14 +- drivers/net/ice/base/ice_hw_autogen.h | 2 +- drivers/net/ice/base/ice_lan_tx_rx.h | 2 +- drivers/net/ice/base/ice_nvm.c | 398 +++++++--- drivers/net/ice/base/ice_nvm.h | 8 +- drivers/net/ice/base/ice_protocol_type.h | 2 +- drivers/net/ice/base/ice_sbq_cmd.h | 2 +- drivers/net/ice/base/ice_sched.c | 63 +- drivers/net/ice/base/ice_sched.h | 9 +- drivers/net/ice/base/ice_status.h | 3 +- drivers/net/ice/base/ice_switch.c | 331 +++++--- drivers/net/ice/base/ice_switch.h | 2 +- drivers/net/ice/base/ice_type.h | 97 ++- drivers/net/ice/base/meson.build | 2 + drivers/net/ice/ice_ethdev.c | 28 +- drivers/net/ice/ice_fdir_filter.c | 4 +- 36 files changed, 5081 insertions(+), 705 deletions(-) create mode 100644 drivers/net/ice/base/ice_acl.c create mode 100644 drivers/net/ice/base/ice_acl.h create mode 100644 drivers/net/ice/base/ice_acl_ctrl.c -- 2.13.6