Browse Source

qcacld-3.0: Add STT field in firmware version

Currently as part of QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_INFO
vendor command host is providing firmware version
Add extra field of STT info along with firmware version.

Change-Id: I6fe7a18fa29fb0652dc09e71f25263f9cc9b3db7
CRs-Fixed: 3302243
Divyajyothi Goparaju 2 years ago
parent
commit
c4a1e00afb
2 changed files with 9 additions and 3 deletions
  1. 8 2
      core/hdd/src/wlan_hdd_cfg80211.c
  2. 1 1
      core/mac/inc/sir_api.h

+ 8 - 2
core/hdd/src/wlan_hdd_cfg80211.c

@@ -7178,6 +7178,8 @@ __wlan_hdd_cfg80211_get_wifi_info(struct wiphy *wiphy,
 	int status;
 	struct sk_buff *reply_skb;
 	uint32_t skb_len = 0, count = 0;
+	struct pld_soc_info info;
+	bool stt_flag = false;
 
 	hdd_enter_dev(wdev->netdev);
 
@@ -7208,15 +7210,19 @@ __wlan_hdd_cfg80211_get_wifi_info(struct wiphy *wiphy,
 
 	if (tb_vendor[QCA_WLAN_VENDOR_ATTR_WIFI_INFO_FIRMWARE_VERSION]) {
 		hdd_debug("Rcvd req for FW version");
+		if (!pld_get_soc_info(hdd_ctx->parent_dev, &info))
+			stt_flag = true;
+
 		snprintf(firmware_version, sizeof(firmware_version),
-			"FW:%d.%d.%d.%d.%d.%d HW:%s",
+			"FW:%d.%d.%d.%d.%d.%d HW:%s STT:%s",
 			hdd_ctx->fw_version_info.major_spid,
 			hdd_ctx->fw_version_info.minor_spid,
 			hdd_ctx->fw_version_info.siid,
 			hdd_ctx->fw_version_info.rel_id,
 			hdd_ctx->fw_version_info.crmid,
 			hdd_ctx->fw_version_info.sub_id,
-			hdd_ctx->target_hw_name);
+			hdd_ctx->target_hw_name,
+			(stt_flag ? info.fw_build_id : " "));
 		skb_len += strlen(firmware_version) + 1;
 		count++;
 	}

+ 1 - 1
core/mac/inc/sir_api.h

@@ -78,7 +78,7 @@ struct mac_context;
 
 typedef uint8_t tSirIpv4Addr[QDF_IPV4_ADDR_SIZE];
 
-#define SIR_VERSION_STRING_LEN 64
+#define SIR_VERSION_STRING_LEN 1024
 typedef uint8_t tSirVersionString[SIR_VERSION_STRING_LEN];
 
 /* Periodic Tx pattern offload feature */