From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8E88C4404F; Wed, 12 Jun 2024 17:18:48 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1932942F27; Wed, 12 Jun 2024 17:05:57 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) by mails.dpdk.org (Postfix) with ESMTP id 9CAEE42D7A for ; Wed, 12 Jun 2024 17:05:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1718204752; x=1749740752; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=sSKc2da1PKlR0oEcpR+UPot8wxr+TFyx/ldDVdM4eCk=; b=jQGPh+ZZw1pwFiJEU+Ctr0k5NbRSe46TkJ6ofdaSAOgEevLMZwj0l6cB Ci+1KB3427RlE2oUhvXOGMDXojsjWuiHwkcqcn7v7zSmz2E+XHiLbakl9 lF85zn5LHXwnjaq3CXC1WA0BBLeZhhbNXsDkuX7dC4FjyG3VKCEQzjQiW 0ewPJQwov6ExaUpV2u69dzol938JpX85v0O1Prn6oQKv8hGCQUjKP7aqq s0RFtBlXccU+XlR6P4yE2XOMnP0CMMvT2lh/q5sofb5XNptD121opShXA QkQbFNU1aG28OmixRU2avHNrJsjH653Y+Bmd8E9IEN8qUPtiULzGRpAb3 Q==; X-CSE-ConnectionGUID: PXWqSi8hSKeHsSptmwKDvQ== X-CSE-MsgGUID: UQcwdaOARwam9BTzonhCyg== X-IronPort-AV: E=McAfee;i="6700,10204,11101"; a="32459799" X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="32459799" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jun 2024 08:05:51 -0700 X-CSE-ConnectionGUID: +hRr7Gh+TjizifWC6x+dLQ== X-CSE-MsgGUID: azOmhAnRRMW3iM7cvLJvzA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="39925675" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 12 Jun 2024 08:05:50 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Ian Stokes , bruce.richardson@intel.com, Dan Nowlin Subject: [PATCH v2 094/148] net/ice/base: add 32 GT bus speed enumerated value Date: Wed, 12 Jun 2024 16:01:28 +0100 Message-ID: <111de7ddbe60f5101b41ff27b3e8eeaa36dd2872.1718204529.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: References: <20240430154014.1026-1-ian.stokes@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Ian Stokes Add ice_pcie_speed_32_0GT bus speed enum to support E830 device's higher bus speed. Signed-off-by: Dan Nowlin Signed-off-by: Ian Stokes --- drivers/net/ice/base/ice_type.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/ice/base/ice_type.h b/drivers/net/ice/base/ice_type.h index d462423891..eed4a69173 100644 --- a/drivers/net/ice/base/ice_type.h +++ b/drivers/net/ice/base/ice_type.h @@ -849,7 +849,8 @@ enum ice_pcie_bus_speed { ice_pcie_speed_2_5GT = 0x14, ice_pcie_speed_5_0GT = 0x15, ice_pcie_speed_8_0GT = 0x16, - ice_pcie_speed_16_0GT = 0x17 + ice_pcie_speed_16_0GT = 0x17, + ice_pcie_speed_32_0GT = 0x18, }; /* PCI bus widths */ -- 2.43.0