From patchwork Mon Jul 23 23:13:35 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anirudh Venkataramanan X-Patchwork-Id: 948151 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=osuosl.org (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=intel-wired-lan-bounces@osuosl.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=intel.com Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41ZHNz4wVXz9s2M for ; Tue, 24 Jul 2018 09:13:54 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2213A81811; Mon, 23 Jul 2018 23:13:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tblYPHez9NVC; Mon, 23 Jul 2018 23:13:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 70FAE8180D; Mon, 23 Jul 2018 23:13:51 +0000 (UTC) X-Original-To: intel-wired-lan@lists.osuosl.org Delivered-To: intel-wired-lan@lists.osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 6B6021C1237 for ; Mon, 23 Jul 2018 23:13:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 687E18344C for ; Mon, 23 Jul 2018 23:13:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tJ98IRXrE00H for ; Mon, 23 Jul 2018 23:13:49 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by hemlock.osuosl.org (Postfix) with ESMTPS id 6DBB3822DA for ; Mon, 23 Jul 2018 23:13:49 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Jul 2018 16:13:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,394,1526367600"; d="scan'208";a="248252719" Received: from shasta.jf.intel.com ([10.166.241.10]) by fmsmga006.fm.intel.com with ESMTP; 23 Jul 2018 16:13:48 -0700 From: Anirudh Venkataramanan To: intel-wired-lan@lists.osuosl.org Date: Mon, 23 Jul 2018 16:13:35 -0700 Message-Id: <20180723231348.14838-1-anirudh.venkataramanan@intel.com> X-Mailer: git-send-email 2.14.3 Subject: [Intel-wired-lan] [PATCH 00/13] Feature updates for ice X-BeenThere: intel-wired-lan@osuosl.org X-Mailman-Version: 2.1.24 Precedence: list List-Id: Intel Wired Ethernet Linux Kernel Driver Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-wired-lan-bounces@osuosl.org Sender: "Intel-wired-lan" This patch series includes new features and implementation updates for the ice driver. Akeem G Abodunrin (1): ice: Introduce SERVICE_DIS flag and service routine functions Anirudh Venkataramanan (5): ice: Minor updates to Tx scheduler code ice: Prevent control queue operations during reset ice: Refactor switch rule management structures and functions ice: Refactor VSI allocation, deletion and rebuild flow ice: Clean up register file Brett Creeley (1): ice: Make ice_vsi_kill_vlan return an error code Chinh Cao (1): ice: Implement handlers for ethtool PHY/link operations Hieu Tran (1): ice: Enable firmware logging during device initialization. Md Fahad Iqbal Polash (1): ice: Implement ice_bridge_getlink and ice_bridge_setlink Phani R Burra (1): ice: Get both device and function capabilities Sudheer Mogilappagari (1): ice: Add support for Tx hang, Tx timeout and malicious driver detection Zhenning Xiao (1): ice: Code optimization for ice_fill_sw_rule() drivers/net/ethernet/intel/ice/ice.h | 7 + drivers/net/ethernet/intel/ice/ice_adminq_cmd.h | 94 +- drivers/net/ethernet/intel/ice/ice_common.c | 361 +++++- drivers/net/ethernet/intel/ice/ice_common.h | 15 +- drivers/net/ethernet/intel/ice/ice_controlq.c | 3 + drivers/net/ethernet/intel/ice/ice_ethtool.c | 805 ++++++++++++- drivers/net/ethernet/intel/ice/ice_hw_autogen.h | 456 ++++--- drivers/net/ethernet/intel/ice/ice_main.c | 967 ++++++++++++--- drivers/net/ethernet/intel/ice/ice_sched.c | 117 +- drivers/net/ethernet/intel/ice/ice_status.h | 1 + drivers/net/ethernet/intel/ice/ice_switch.c | 1460 ++++++++++++++--------- drivers/net/ethernet/intel/ice/ice_switch.h | 50 +- drivers/net/ethernet/intel/ice/ice_txrx.c | 1 + drivers/net/ethernet/intel/ice/ice_txrx.h | 1 + drivers/net/ethernet/intel/ice/ice_type.h | 42 +- 15 files changed, 3207 insertions(+), 1173 deletions(-)