From patchwork Wed Aug 16 23:57:12 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Greenwalt, Paul" X-Patchwork-Id: 13355797 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A626737F for ; Thu, 17 Aug 2023 00:04:55 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.120]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7ECD62133 for ; Wed, 16 Aug 2023 17:04:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692230694; x=1723766694; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=ByDqMIT5XcDzT3mDs4jnxW/xVImD9X2oNn+YpGBMXQE=; b=DNSDBtRlst1Bx7mdi6C50xdBja7tzhF/mkO2+7Zn6xyCFyzoI8Bl4e7H h37n7nnMtbJR2j3sFzGj0QY5Pz0hFzgqJ0tV9kxEkmH9WBdCTE7oIHWB4 k6IXfNpNKqmze6YhuZFo7ugucQp6ycNJvXsBmV1QTNX2Q5/Woi4D1lBF7 hoL8qgyyT6P7wTzfF5iTaHYW+Sire3Fg86Vjd93b8Sd6QAs5ZpMhnEldV 1ugMYzw0sF9B4XSfA04KXI4P+KABihtESfzsjnlJ9c7uZMzUFpm8+n+zS ISvy+0G/c5674Vby4Zw2piCGLK8/sIKp8n7o98guIuO79IGf0JY6SWrip A==; X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="371570646" X-IronPort-AV: E=Sophos;i="6.01,178,1684825200"; d="scan'208";a="371570646" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Aug 2023 17:04:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="824422118" X-IronPort-AV: E=Sophos;i="6.01,178,1684825200"; d="scan'208";a="824422118" Received: from unknown (HELO localhost.jf.intel.com) ([10.166.244.168]) by FMSMGA003.fm.intel.com with ESMTP; 16 Aug 2023 17:04:47 -0700 From: Paul Greenwalt To: intel-wired-lan@lists.osuosl.org Cc: netdev@vger.kernel.org, Paul Greenwalt Subject: [PATCH iwl-next 0/7] ice: Add basic E830 support Date: Wed, 16 Aug 2023 16:57:12 -0700 Message-Id: <20230816235719.1120726-1-paul.greenwalt@intel.com> X-Mailer: git-send-email 2.39.2 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, RCVD_IN_DNSWL_BLOCKED,SPF_HELO_NONE,SPF_NONE,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net This is an initial patchset adding the basic support for E830. E830 is the 200G ethernet controller family that is a follow on to the E810 100G family. The series adds new devices IDs, a new MAC type, several registers and a support for new link speeds. As the new devices use another version of ice_aqc_get_link_status_data admin command, the driver should use different buffer length for this AQ command when loaded on E830. Alice Michael (1): ice: Add 200G speed/phy type use Dan Nowlin (1): ice: Add support for E830 DDP package segment Paul Greenwalt (2): ice: Add E830 device IDs, MAC type and registers ice: Add ice_get_link_status_datalen Pawel Chmielewski (3): ice: Refactor finding advertised link speed ice: Remove redundant zeroing of the fields. ice: Enable support for E830 device IDs drivers/net/ethernet/intel/ice/ice.h | 1 + .../net/ethernet/intel/ice/ice_adminq_cmd.h | 48 +- drivers/net/ethernet/intel/ice/ice_common.c | 94 ++-- drivers/net/ethernet/intel/ice/ice_ddp.c | 426 +++++++++++++++--- drivers/net/ethernet/intel/ice/ice_ddp.h | 27 +- drivers/net/ethernet/intel/ice/ice_devids.h | 10 +- drivers/net/ethernet/intel/ice/ice_ethtool.c | 192 +++++--- drivers/net/ethernet/intel/ice/ice_ethtool.h | 8 + .../net/ethernet/intel/ice/ice_ethtool_fdir.c | 24 +- .../net/ethernet/intel/ice/ice_hw_autogen.h | 52 ++- drivers/net/ethernet/intel/ice/ice_main.c | 71 +-- drivers/net/ethernet/intel/ice/ice_type.h | 6 +- .../ethernet/intel/ice/ice_virtchnl_fdir.c | 29 +- 13 files changed, 753 insertions(+), 235 deletions(-)