|
@@ -2354,18 +2354,13 @@ static void hdd_disable_power_management(void)
|
|
|
hif_disable_power_management(hif_ctx);
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * hdd_update_hw_sw_info() - API to update the HW/SW information
|
|
|
- *
|
|
|
- * API to update the HW and SW information in the driver
|
|
|
- *
|
|
|
- * Return: None
|
|
|
- */
|
|
|
-static void hdd_update_hw_sw_info(struct hdd_context *hdd_ctx)
|
|
|
+void hdd_update_hw_sw_info(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
void *hif_sc;
|
|
|
size_t target_hw_name_len;
|
|
|
const char *target_hw_name;
|
|
|
+ uint8_t *buf;
|
|
|
+ uint32_t buf_len;
|
|
|
|
|
|
hif_sc = cds_get_context(QDF_MODULE_ID_HIF);
|
|
|
if (!hif_sc) {
|
|
@@ -2373,12 +2368,7 @@ static void hdd_update_hw_sw_info(struct hdd_context *hdd_ctx)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- /*
|
|
|
- * target hw version/revision would only be retrieved after firmware
|
|
|
- * download
|
|
|
- */
|
|
|
- hif_get_hw_info(hif_sc,
|
|
|
- &hdd_ctx->target_hw_version,
|
|
|
+ hif_get_hw_info(hif_sc, &hdd_ctx->target_hw_version,
|
|
|
&hdd_ctx->target_hw_revision,
|
|
|
&target_hw_name);
|
|
|
|
|
@@ -2391,8 +2381,12 @@ static void hdd_update_hw_sw_info(struct hdd_context *hdd_ctx)
|
|
|
qdf_mem_copy(hdd_ctx->target_hw_name, target_hw_name,
|
|
|
target_hw_name_len);
|
|
|
|
|
|
- /* Get the wlan hw/fw version */
|
|
|
- hdd_wlan_get_version(hdd_ctx, NULL, NULL);
|
|
|
+ buf = qdf_mem_malloc(WE_MAX_STR_LEN);
|
|
|
+ if (buf) {
|
|
|
+ buf_len = hdd_wlan_get_version(hdd_ctx, WE_MAX_STR_LEN, buf);
|
|
|
+ hdd_info("%s", buf);
|
|
|
+ qdf_mem_free(buf);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -2467,6 +2461,37 @@ hdd_update_cds_ac_specs_params(struct hdd_context *hdd_ctx)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+uint32_t hdd_wlan_get_version(struct hdd_context *hdd_ctx,
|
|
|
+ const size_t version_len, uint8_t *version)
|
|
|
+{
|
|
|
+ uint32_t size;
|
|
|
+ uint32_t msp_id = 0, mspid = 0, siid = 0, crmid = 0, sub_id = 0;
|
|
|
+
|
|
|
+ if (!hdd_ctx) {
|
|
|
+ hdd_err("Invalid context, HDD context is null");
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!version && version_len == 0) {
|
|
|
+ hdd_err("Invalid buffer pointr or buffer len\n");
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ msp_id = (hdd_ctx->target_fw_version & 0xf0000000) >> 28;
|
|
|
+ mspid = (hdd_ctx->target_fw_version & 0xf000000) >> 24;
|
|
|
+ siid = (hdd_ctx->target_fw_version & 0xf00000) >> 20;
|
|
|
+ crmid = hdd_ctx->target_fw_version & 0x7fff;
|
|
|
+ sub_id = (hdd_ctx->target_fw_vers_ext & 0xf0000000) >> 28;
|
|
|
+
|
|
|
+ size = scnprintf(version, version_len,
|
|
|
+ "Host SW:%s, FW:%d.%d.%d.%d.%d, HW:%s",
|
|
|
+ QWLAN_VERSIONSTR,
|
|
|
+ msp_id, mspid, siid, crmid, sub_id,
|
|
|
+ hdd_ctx->target_hw_name);
|
|
|
+
|
|
|
+ return size;
|
|
|
+}
|
|
|
+
|
|
|
#ifdef IPA_OFFLOAD
|
|
|
/**
|
|
|
* hdd_update_ipa_component_config() - update ipa config
|