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 94E26454EF; Tue, 25 Jun 2024 13:29:01 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B1D3542EBE; Tue, 25 Jun 2024 13:19:58 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.19]) by mails.dpdk.org (Postfix) with ESMTP id 7DF8F42F39 for ; Tue, 25 Jun 2024 13:17:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1719314278; x=1750850278; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=QcAgUHZsJ8AQ8FEOqJEj+r8gqtabq4MR7zZEunolT9Q=; b=hOKOf+Dphlueyd2ZvsWL3NKIGBWukFh/Sk9QD+U9afzvKMSYwI8hDr8W ngS5ES34GKrFcZOAZs+JmZlLp2RvZQNOKwSKtVTwieKzDq/WPF7IREi1e UWC+hi/pcpkSZ9QYuCnj80ArEj2xJrxU446D3yYtV+m6E8Pdka9xOCVU6 3YDz0QSXhlNZW1eEFz4WKJXf0iTgRP6VE2iOaBauWlZtBu8Wqb4qb5NqG 6XBTnsH1yGmyViiZgH6Bgk3tUZdkJukXMFBdUNnNWq5y9p2WR2NUWjqsW Kver7U4L6+59tRnBPZ36swHOAVGs0+EWSahl4kW0RwpphF1hdaWQEAWbo A==; X-CSE-ConnectionGUID: WGxE5732RhecTj1MNxC9pg== X-CSE-MsgGUID: piZXGtUZTmOgJ3M77VOVpA== X-IronPort-AV: E=McAfee;i="6700,10204,11113"; a="16080623" X-IronPort-AV: E=Sophos;i="6.08,263,1712646000"; d="scan'208";a="16080623" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by fmvoesa113.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Jun 2024 04:17:58 -0700 X-CSE-ConnectionGUID: 91lzb3ptRT+hxYjYZTADjg== X-CSE-MsgGUID: ToP/MBReTpiQLijT3gGJAA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,263,1712646000"; d="scan'208";a="43719715" Received: from unknown (HELO silpixa00401119.ir.intel.com) ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 25 Jun 2024 04:17:57 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Eric Joyner , bruce.richardson@intel.com, ian.stokes@intel.com Subject: [PATCH v3 110/129] net/ice/base: detect and store device sensor reading capability Date: Tue, 25 Jun 2024 12:13:55 +0100 Message-ID: <36c6da5ffdf8d05150d4266e545d60264cd1c9bb.1719313663.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: References: 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: Eric Joyner The driver can use this capability to see if temperature sensor reading or other HW sensor reading capabilities are supported before reading them using the Get Sensor Reading AQ command. Signed-off-by: Eric Joyner Signed-off-by: Ian Stokes --- drivers/net/ice/base/ice_adminq_cmd.h | 1 + drivers/net/ice/base/ice_common.c | 23 +++++++++++++++++++++++ drivers/net/ice/base/ice_type.h | 3 +++ 3 files changed, 27 insertions(+) diff --git a/drivers/net/ice/base/ice_adminq_cmd.h b/drivers/net/ice/base/ice_adminq_cmd.h index 3c00b65e15..d67f50e144 100644 --- a/drivers/net/ice/base/ice_adminq_cmd.h +++ b/drivers/net/ice/base/ice_adminq_cmd.h @@ -119,6 +119,7 @@ struct ice_aqc_list_caps_elem { #define ICE_AQC_CAPS_1588 0x0046 #define ICE_AQC_CAPS_MAX_MTU 0x0047 #define ICE_AQC_CAPS_IWARP 0x0051 +#define ICE_AQC_CAPS_SENSOR_READING 0x0067 #define ICE_AQC_CAPS_PCIE_RESET_AVOIDANCE 0x0076 #define ICE_AQC_CAPS_POST_UPDATE_RESET_RESTRICT 0x0077 #define ICE_AQC_CAPS_NVM_MGMT 0x0080 diff --git a/drivers/net/ice/base/ice_common.c b/drivers/net/ice/base/ice_common.c index f314719325..58a2aaad19 100644 --- a/drivers/net/ice/base/ice_common.c +++ b/drivers/net/ice/base/ice_common.c @@ -2849,6 +2849,26 @@ ice_parse_nac_topo_dev_caps(struct ice_hw *hw, struct ice_hw_dev_caps *dev_p, dev_p->nac_topo.id); } +/** + * ice_parse_sensor_reading_cap - Parse ICE_AQC_CAPS_SENSOR_READING cap + * @hw: pointer to the HW struct + * @dev_p: pointer to device capabilities structure + * @cap: capability element to parse + * + * Parse ICE_AQC_CAPS_SENSOR_READING for device capability for reading + * enabled sensors. + */ +static void +ice_parse_sensor_reading_cap(struct ice_hw *hw, struct ice_hw_dev_caps *dev_p, + struct ice_aqc_list_caps_elem *cap) +{ + dev_p->supported_sensors = LE32_TO_CPU(cap->number); + + ice_debug(hw, ICE_DBG_INIT, + "dev caps: supported sensors (bitmap) = 0x%x\n", + dev_p->supported_sensors); +} + /** * ice_parse_dev_caps - Parse device capabilities * @hw: pointer to the HW struct @@ -2897,6 +2917,9 @@ ice_parse_dev_caps(struct ice_hw *hw, struct ice_hw_dev_caps *dev_p, case ICE_AQC_CAPS_NAC_TOPOLOGY: ice_parse_nac_topo_dev_caps(hw, dev_p, &cap_resp[i]); break; + case ICE_AQC_CAPS_SENSOR_READING: + ice_parse_sensor_reading_cap(hw, dev_p, &cap_resp[i]); + break; default: /* Don't list common capabilities as unknown */ if (!found) diff --git a/drivers/net/ice/base/ice_type.h b/drivers/net/ice/base/ice_type.h index 25dd91db88..330af40b7a 100644 --- a/drivers/net/ice/base/ice_type.h +++ b/drivers/net/ice/base/ice_type.h @@ -827,6 +827,9 @@ struct ice_hw_dev_caps { struct ice_ts_dev_info ts_dev_info; u32 num_funcs; struct ice_nac_topology nac_topo; + /* bitmap of supported sensors */ + u32 supported_sensors; +#define ICE_SENSOR_SUPPORT_E810_INT_TEMP BIT(0) }; /* Information about MAC such as address, etc... */ -- 2.43.0