|
@@ -52,6 +52,7 @@
|
|
|
#include "wlan_blm_api.h"
|
|
|
#include "qdf_crypto.h"
|
|
|
#include <wlan_crypto_global_api.h>
|
|
|
+#include "wlan_reg_ucfg_api.h"
|
|
|
|
|
|
static void csr_set_cfg_valid_channel_list(struct mac_context *mac,
|
|
|
uint32_t *pchan_freq_list,
|
|
@@ -61,9 +62,6 @@ static void csr_save_tx_power_to_cfg(struct mac_context *mac,
|
|
|
tDblLinkList *pList,
|
|
|
uint32_t cfgId);
|
|
|
|
|
|
-static void csr_set_cfg_country_code(struct mac_context *mac,
|
|
|
- uint8_t *countryCode);
|
|
|
-
|
|
|
static void csr_purge_channel_power(struct mac_context *mac,
|
|
|
tDblLinkList *pChannelList);
|
|
|
|
|
@@ -609,7 +607,7 @@ void csr_apply_channel_power_info_to_fw(struct mac_context *mac_ctx,
|
|
|
} else {
|
|
|
sme_err("11D channel list is empty");
|
|
|
}
|
|
|
- csr_set_cfg_country_code(mac_ctx, countryCode);
|
|
|
+ sch_edca_profile_update_all(mac_ctx);
|
|
|
}
|
|
|
|
|
|
#ifdef FEATURE_WLAN_DIAG_SUPPORT_CSR
|
|
@@ -1589,58 +1587,6 @@ static void csr_save_tx_power_to_cfg(struct mac_context *mac,
|
|
|
qdf_mem_free(p_buf);
|
|
|
}
|
|
|
|
|
|
-static void csr_set_cfg_country_code(struct mac_context *mac,
|
|
|
- uint8_t *countryCode)
|
|
|
-{
|
|
|
- uint8_t cc[CFG_COUNTRY_CODE_LEN];
|
|
|
- /* v_REGDOMAIN_t DomainId */
|
|
|
-
|
|
|
- sme_debug("Set Country in Cfg %s", countryCode);
|
|
|
- qdf_mem_copy(cc, countryCode, CFG_COUNTRY_CODE_LEN);
|
|
|
-
|
|
|
- /*
|
|
|
- * Don't program the bogus country codes that we created for Korea in
|
|
|
- * the MAC. if we see the bogus country codes, program the MAC with
|
|
|
- * the right country code.
|
|
|
- */
|
|
|
- if (('K' == countryCode[0] && '1' == countryCode[1]) ||
|
|
|
- ('K' == countryCode[0] && '2' == countryCode[1]) ||
|
|
|
- ('K' == countryCode[0] && '3' == countryCode[1]) ||
|
|
|
- ('K' == countryCode[0] && '4' == countryCode[1])) {
|
|
|
- /*
|
|
|
- * replace the alternate Korea country codes, 'K1', 'K2', ..
|
|
|
- * with 'KR' for Korea
|
|
|
- */
|
|
|
- cc[1] = 'R';
|
|
|
- }
|
|
|
-
|
|
|
- /*
|
|
|
- * country code is moved to mlme component, and it is limited to call
|
|
|
- * legacy api, so required to call sch_edca_profile_update_all if
|
|
|
- * overwrite country code in mlme component
|
|
|
- */
|
|
|
- qdf_mem_copy(mac->mlme_cfg->reg.country_code, cc, CFG_COUNTRY_CODE_LEN);
|
|
|
- mac->mlme_cfg->reg.country_code_len = CFG_COUNTRY_CODE_LEN;
|
|
|
- sch_edca_profile_update_all(mac);
|
|
|
- /*
|
|
|
- * Need to let HALPHY know about the current domain so it can apply some
|
|
|
- * domain-specific settings (TX filter...)
|
|
|
- */
|
|
|
-}
|
|
|
-
|
|
|
-QDF_STATUS csr_get_country_code(struct mac_context *mac, uint8_t *pBuf,
|
|
|
- uint8_t *pbLen)
|
|
|
-{
|
|
|
- if (pBuf && pbLen && (*pbLen >= CFG_COUNTRY_CODE_LEN)) {
|
|
|
- *pbLen = mac->mlme_cfg->reg.country_code_len;
|
|
|
- qdf_mem_copy(pBuf, mac->mlme_cfg->reg.country_code,
|
|
|
- (uint32_t)*pbLen);
|
|
|
- return QDF_STATUS_SUCCESS;
|
|
|
- }
|
|
|
-
|
|
|
- return QDF_STATUS_E_INVAL;
|
|
|
-}
|
|
|
-
|
|
|
QDF_STATUS csr_scan_abort_mac_scan(struct mac_context *mac_ctx,
|
|
|
uint32_t vdev_id,
|
|
|
uint32_t scan_id)
|