|
@@ -11746,6 +11746,7 @@ hdd_convert_sarv1_to_sarv2(struct hdd_context *hdd_ctx,
|
|
|
uint32_t bdf_index, set;
|
|
|
struct sar_limit_cmd_row *row;
|
|
|
|
|
|
+ hdd_enter();
|
|
|
if (hdd_ctx->sar_version != SAR_VERSION_2) {
|
|
|
hdd_debug("SAR version: %d", hdd_ctx->sar_version);
|
|
|
return false;
|
|
@@ -11791,6 +11792,7 @@ hdd_convert_sarv1_to_sarv2(struct hdd_context *hdd_ctx,
|
|
|
row[0].validity_bitmap = WMI_SAR_CHAIN_ID_VALID_MASK;
|
|
|
row[1].validity_bitmap = WMI_SAR_CHAIN_ID_VALID_MASK;
|
|
|
|
|
|
+ hdd_exit();
|
|
|
return true;
|
|
|
}
|
|
|
|
|
@@ -11990,6 +11992,7 @@ static int __wlan_hdd_set_sar_power_limits(struct wiphy *wiphy,
|
|
|
QDF_STATUS status;
|
|
|
uint32_t num_limit_rows = 0;
|
|
|
struct sar_limit_cmd_row *row;
|
|
|
+ uint32_t sar_enable;
|
|
|
|
|
|
hdd_enter();
|
|
|
|
|
@@ -12007,12 +12010,31 @@ static int __wlan_hdd_set_sar_power_limits(struct wiphy *wiphy,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
+ if (tb[SAR_LIMITS_SAR_ENABLE]) {
|
|
|
+ sar_enable = nla_get_u32(tb[SAR_LIMITS_SAR_ENABLE]);
|
|
|
+
|
|
|
+ if ((sar_enable >=
|
|
|
+ QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF0 &&
|
|
|
+ sar_enable <=
|
|
|
+ QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF4) &&
|
|
|
+ hdd_ctx->sar_version == SAR_VERSION_2 &&
|
|
|
+ !hdd_ctx->config->enable_sar_conversion) {
|
|
|
+ hdd_err("SARV1 to SARV2 is disabled from ini");
|
|
|
+ return -EINVAL;
|
|
|
+ } else if (sar_enable ==
|
|
|
+ QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_V2_0 &&
|
|
|
+ hdd_ctx->sar_version == SAR_VERSION_1) {
|
|
|
+ hdd_err("FW expects SARV1 given command is SARV2");
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
sar_limit_cmd = qdf_mem_malloc(sizeof(struct sar_limit_cmd_params));
|
|
|
if (!sar_limit_cmd)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
/* is special SAR V1 => SAR V2 logic enabled and applicable? */
|
|
|
- if (hdd_ctx->config->sar_version == 2 &&
|
|
|
+ if (hdd_ctx->config->enable_sar_conversion &&
|
|
|
(hdd_convert_sarv1_to_sarv2(hdd_ctx, tb, sar_limit_cmd)))
|
|
|
goto send_sar_limits;
|
|
|
|
|
@@ -12020,9 +12042,9 @@ static int __wlan_hdd_set_sar_power_limits(struct wiphy *wiphy,
|
|
|
sar_limit_cmd->commit_limits = 1;
|
|
|
sar_limit_cmd->sar_enable = WMI_SAR_FEATURE_NO_CHANGE;
|
|
|
if (tb[SAR_LIMITS_SAR_ENABLE]) {
|
|
|
- uint32_t sar_enable = nla_get_u32(tb[SAR_LIMITS_SAR_ENABLE]);
|
|
|
uint32_t *sar_ptr = &sar_limit_cmd->sar_enable;
|
|
|
|
|
|
+ sar_enable = nla_get_u32(tb[SAR_LIMITS_SAR_ENABLE]);
|
|
|
ret = wlan_hdd_cfg80211_sar_convert_limit_set(sar_enable,
|
|
|
sar_ptr);
|
|
|
if (ret) {
|