From patchwork Wed Aug 16 23:57:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Greenwalt, Paul" X-Patchwork-Id: 13355802 X-Patchwork-Delegate: kuba@kernel.org 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 7C635A45 for ; Thu, 17 Aug 2023 00:05:20 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.120]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4E8E02133 for ; Wed, 16 Aug 2023 17:05:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692230719; x=1723766719; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7CpkAGm9AMDYpLCrvBWk5/DAhJHRJZsYuZXPpX0QRn8=; b=NaVGrbS84ipWbK6gWqfmShA1bEmlGLBxSHl3pIQWmhuXUkm+8hvX564R MXtlZdobg3HPl8XHZgF2/wK9Y3CiRHIe5KaK4X4cdFJFo/4vWV495ATMb rZwHHB4ayqKkgwBQUK8N0o/2n+UDlDC8oGQXO/GNKaswFo6N1s/4cbGEa MvPxwFF4QpDm9/QSLI1fWgCE+BiCeoNAfkJQbuTwYHNbaiidpAllTDUHA lopAXYNSSrqBGRxmDwqnhAndyU4VNlQIkpfCOWx5bkIrsrjvCzTLcSh99 L1hLehWbJuewnlCE3+jB/B28B6oBRBF1+acUrFtT2d/AIoSg0J9D74d6K w==; X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="371570665" X-IronPort-AV: E=Sophos;i="6.01,178,1684825200"; d="scan'208";a="371570665" 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:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="824422151" X-IronPort-AV: E=Sophos;i="6.01,178,1684825200"; d="scan'208";a="824422151" Received: from unknown (HELO localhost.jf.intel.com) ([10.166.244.168]) by FMSMGA003.fm.intel.com with ESMTP; 16 Aug 2023 17:04:55 -0700 From: Paul Greenwalt To: intel-wired-lan@lists.osuosl.org Cc: netdev@vger.kernel.org, Pawel Chmielewski , Jesse Brandeburg , Paul Greenwalt Subject: [PATCH iwl-next 7/7] ice: Enable support for E830 device IDs Date: Wed, 16 Aug 2023 16:57:19 -0700 Message-Id: <20230816235719.1120726-8-paul.greenwalt@intel.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230816235719.1120726-1-paul.greenwalt@intel.com> References: <20230816235719.1120726-1-paul.greenwalt@intel.com> 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 X-Patchwork-Delegate: kuba@kernel.org From: Pawel Chmielewski As the previous patches provide support for E830 hardware, add E830 specific IDs to the PCI device ID table, so these devices can now be probed by the kernel. Reviewed-by: Jesse Brandeburg Signed-off-by: Pawel Chmielewski Signed-off-by: Paul Greenwalt --- drivers/net/ethernet/intel/ice/ice_main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c index d6715a89ec78..80013c839579 100644 --- a/drivers/net/ethernet/intel/ice/ice_main.c +++ b/drivers/net/ethernet/intel/ice/ice_main.c @@ -5630,6 +5630,10 @@ static const struct pci_device_id ice_pci_tbl[] = { { PCI_VDEVICE(INTEL, ICE_DEV_ID_E823L_10G_BASE_T)}, { PCI_VDEVICE(INTEL, ICE_DEV_ID_E823L_1GBE)}, { PCI_VDEVICE(INTEL, ICE_DEV_ID_E823L_QSFP)}, + { PCI_VDEVICE(INTEL, ICE_DEV_ID_E830_BACKPLANE)}, + { PCI_VDEVICE(INTEL, ICE_DEV_ID_E830_QSFP56)}, + { PCI_VDEVICE(INTEL, ICE_DEV_ID_E830_SFP)}, + { PCI_VDEVICE(INTEL, ICE_DEV_ID_E830_SFP_DD)}, { PCI_VDEVICE(INTEL, ICE_DEV_ID_E822_SI_DFLT)}, /* required last entry */ { 0, }