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 365D74404F; Wed, 12 Jun 2024 17:11:11 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BBE69427CE; Wed, 12 Jun 2024 17:04:26 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) by mails.dpdk.org (Postfix) with ESMTP id DE4E340E39 for ; Wed, 12 Jun 2024 17:04:21 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1718204662; x=1749740662; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=+yCOvOFVN2EFIf+Pyn3pWvZc/UjbpdftWlTNWYoKuDw=; b=LLHu2t4Gjs3T6ekimGXNEP5QbBCHXUApn7Iea9pWIdQwu8grct+ZQUZS rm/W7Bb41/Vt51N7v2+tVYT60i2GSzVJXTfNrYjLNuxOODx7ZkQWu5x/d cEFYnW6Yjae+hc9auFPbBx5qQcwgNNmyXyREhKLcNdW7szHceOcI7s7P5 Za8DA8Il7g/QASfjQgBpQwsJHAs+aU++zGq+BFH1QF+vpWqpjTxXunjFC lTOijB4An3xnWOgBrRDqlEnXhlPjwPxYB/qKDDz/Xx2fEOodqcGvi/4cy YoYGA+lUmH08lfEQ1m2gNZ+xhGThcFWvrUGugyHNq8i6Qy9GZDOyI0T7N w==; X-CSE-ConnectionGUID: DtjmldG9SN2H5SZG+0Hsow== X-CSE-MsgGUID: PVXIdvaLReG/Bzh+VNbNCQ== X-IronPort-AV: E=McAfee;i="6700,10204,11101"; a="32459361" X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="32459361" 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:04:18 -0700 X-CSE-ConnectionGUID: 4y4SaVGQRdukJMf36sU+ZQ== X-CSE-MsgGUID: NX1UURxPQ9mPY9Yhe8ZFyg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="39925107" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 12 Jun 2024 08:04:17 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Ian Stokes , bruce.richardson@intel.com Subject: [PATCH v2 037/148] net/ice/base: fix NVM feature check Date: Wed, 12 Jun 2024 16:00:31 +0100 Message-ID: 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 defines required by NVM feature check. Although not directly used in this patch this change is required in order to better match upstream. Signed-off-by: Ian Stokes --- drivers/net/ice/base/ice_adminq_cmd.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ice/base/ice_adminq_cmd.h b/drivers/net/ice/base/ice_adminq_cmd.h index 6add57d797..89f565d09f 100644 --- a/drivers/net/ice/base/ice_adminq_cmd.h +++ b/drivers/net/ice/base/ice_adminq_cmd.h @@ -131,6 +131,8 @@ struct ice_aqc_list_caps_elem { #define ICE_AQC_CAPS_NAC_TOPOLOGY 0x0087 #define ICE_AQC_CAPS_OROM_RECOVERY_UPDATE 0x0090 #define ICE_AQC_CAPS_ROCEV2_LAG 0x0092 +#define ICE_AQC_BIT_ROCEV2_LAG 0x01 +#define ICE_AQC_BIT_SRIOV_LAG 0x02 u8 major_ver; u8 minor_ver; -- 2.43.0