|
@@ -751,6 +751,11 @@ int hdd_reg_set_country(struct hdd_context *hdd_ctx, char *country_code)
|
|
|
qdf_mem_copy(cc, country_code, REG_ALPHA2_LEN);
|
|
|
cc[REG_ALPHA2_LEN] = '\0';
|
|
|
|
|
|
+ qdf_event_reset(&hdd_ctx->regulatory_update_event);
|
|
|
+ qdf_mutex_acquire(&hdd_ctx->regulatory_status_lock);
|
|
|
+ hdd_ctx->is_regulatory_update_in_progress = true;
|
|
|
+ qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
+
|
|
|
status = ucfg_reg_set_country(hdd_ctx->pdev, cc);
|
|
|
if (QDF_IS_STATUS_ERROR(status))
|
|
|
hdd_err("Failed to set country");
|
|
@@ -910,6 +915,11 @@ void hdd_reg_notifier(struct wiphy *wiphy,
|
|
|
NL80211_USER_REG_HINT_CELL_BASE)
|
|
|
return;
|
|
|
|
|
|
+ qdf_event_reset(&hdd_ctx->regulatory_update_event);
|
|
|
+ qdf_mutex_acquire(&hdd_ctx->regulatory_status_lock);
|
|
|
+ hdd_ctx->is_regulatory_update_in_progress = true;
|
|
|
+ qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
+
|
|
|
qdf_mem_copy(country, request->alpha2, QDF_MIN(
|
|
|
sizeof(request->alpha2), sizeof(country)));
|
|
|
status = ucfg_reg_set_country(hdd_ctx->pdev, country);
|
|
@@ -1658,6 +1668,10 @@ static void hdd_regulatory_dyn_cbk(struct wlan_objmgr_psoc *psoc,
|
|
|
|
|
|
hdd_config_tdls_with_band_switch(hdd_ctx);
|
|
|
qdf_sched_work(0, &hdd_ctx->country_change_work);
|
|
|
+ qdf_event_set(&hdd_ctx->regulatory_update_event);
|
|
|
+ qdf_mutex_acquire(&hdd_ctx->regulatory_status_lock);
|
|
|
+ hdd_ctx->is_regulatory_update_in_progress = false;
|
|
|
+ qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
}
|
|
|
|
|
|
int hdd_update_regulatory_config(struct hdd_context *hdd_ctx)
|
|
@@ -1687,6 +1701,9 @@ int hdd_regulatory_init(struct hdd_context *hdd_ctx, struct wiphy *wiphy)
|
|
|
hdd_regulatory_dyn_cbk,
|
|
|
NULL);
|
|
|
|
|
|
+ qdf_event_create(&hdd_ctx->regulatory_update_event);
|
|
|
+ qdf_mutex_create(&hdd_ctx->regulatory_status_lock);
|
|
|
+ hdd_ctx->is_regulatory_update_in_progress = false;
|
|
|
|
|
|
wiphy->regulatory_flags |= REGULATORY_WIPHY_SELF_MANAGED;
|
|
|
/* Check the kernel version for upstream commit aced43ce780dc5 that
|
|
@@ -1749,6 +1766,8 @@ void hdd_regulatory_deinit(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
qdf_flush_work(&hdd_ctx->country_change_work);
|
|
|
qdf_destroy_work(0, &hdd_ctx->country_change_work);
|
|
|
+ qdf_event_destroy(&hdd_ctx->regulatory_update_event);
|
|
|
+ qdf_mutex_destroy(&hdd_ctx->regulatory_status_lock);
|
|
|
}
|
|
|
|
|
|
void hdd_update_regdb_offload_config(struct hdd_context *hdd_ctx)
|