|
@@ -516,18 +516,14 @@ QDF_STATUS csr_open(struct mac_context *mac)
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
-QDF_STATUS csr_init_chan_list(struct mac_context *mac, uint8_t *alpha2)
|
|
|
+QDF_STATUS csr_init_chan_list(struct mac_context *mac)
|
|
|
{
|
|
|
QDF_STATUS status;
|
|
|
+ uint8_t reg_cc[REG_ALPHA2_LEN + 1];
|
|
|
|
|
|
- mac->scan.countryCodeDefault[0] = alpha2[0];
|
|
|
- mac->scan.countryCodeDefault[1] = alpha2[1];
|
|
|
- mac->scan.countryCodeDefault[2] = alpha2[2];
|
|
|
+ wlan_reg_read_current_country(mac->psoc, reg_cc);
|
|
|
+ sme_debug("init time country code %.2s", reg_cc);
|
|
|
|
|
|
- sme_debug("init time country code %.2s", mac->scan.countryCodeDefault);
|
|
|
-
|
|
|
- qdf_mem_copy(mac->scan.countryCodeCurrent,
|
|
|
- mac->scan.countryCodeDefault, REG_ALPHA2_LEN + 1);
|
|
|
status = csr_get_channel_and_power_list(mac);
|
|
|
|
|
|
return status;
|
|
@@ -539,8 +535,6 @@ QDF_STATUS csr_set_channels(struct mac_context *mac,
|
|
|
QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
uint8_t index = 0;
|
|
|
|
|
|
- qdf_mem_copy(pParam->Csr11dinfo.countryCode,
|
|
|
- mac->scan.countryCodeCurrent, REG_ALPHA2_LEN + 1);
|
|
|
for (index = 0; index < mac->scan.base_channels.numChannels;
|
|
|
index++) {
|
|
|
pParam->Csr11dinfo.Channels.channel_freq_list[index] =
|
|
@@ -2141,8 +2135,7 @@ QDF_STATUS csr_apply_channel_and_power_list(struct mac_context *mac)
|
|
|
csr_save_channel_power_for_band(mac, false);
|
|
|
csr_save_channel_power_for_band(mac, true);
|
|
|
csr_apply_channel_power_info_to_fw(mac,
|
|
|
- &mac->scan.base_channels,
|
|
|
- mac->scan.countryCodeCurrent);
|
|
|
+ &mac->scan.base_channels);
|
|
|
|
|
|
csr_init_operating_classes(mac);
|
|
|
return status;
|
|
@@ -2174,17 +2167,6 @@ static QDF_STATUS csr_init11d_info(struct mac_context *mac, tCsr11dinfo *ps11din
|
|
|
}
|
|
|
/* legacy maintenance */
|
|
|
|
|
|
- qdf_mem_copy(mac->scan.countryCodeDefault, ps11dinfo->countryCode,
|
|
|
- REG_ALPHA2_LEN + 1);
|
|
|
-
|
|
|
- /* Tush: at csropen get this initialized with default,
|
|
|
- * during csr reset if this already set with some value
|
|
|
- * no need initilaize with default again
|
|
|
- */
|
|
|
- if (0 == mac->scan.countryCodeCurrent[0]) {
|
|
|
- qdf_mem_copy(mac->scan.countryCodeCurrent,
|
|
|
- ps11dinfo->countryCode, REG_ALPHA2_LEN + 1);
|
|
|
- }
|
|
|
/* need to add the max power channel list */
|
|
|
pChanInfo =
|
|
|
qdf_mem_malloc(sizeof(struct pwr_channel_info) *
|
|
@@ -2226,9 +2208,7 @@ static QDF_STATUS csr_init11d_info(struct mac_context *mac, tCsr11dinfo *ps11din
|
|
|
*/
|
|
|
csr_apply_channel_power_info_to_fw(mac,
|
|
|
&mac->scan.
|
|
|
- base_channels,
|
|
|
- mac->scan.
|
|
|
- countryCodeCurrent);
|
|
|
+ base_channels);
|
|
|
}
|
|
|
}
|
|
|
return status;
|
|
@@ -7333,10 +7313,10 @@ static void csr_init_operating_classes(struct mac_context *mac)
|
|
|
uint8_t swap = 0;
|
|
|
uint8_t numClasses = 0;
|
|
|
uint8_t opClasses[REG_MAX_SUPP_OPER_CLASSES] = {0,};
|
|
|
+ uint8_t reg_cc[REG_ALPHA2_LEN + 1];
|
|
|
|
|
|
- sme_debug("Current Country = %c%c",
|
|
|
- mac->scan.countryCodeCurrent[0],
|
|
|
- mac->scan.countryCodeCurrent[1]);
|
|
|
+ wlan_reg_read_current_country(mac->psoc, reg_cc);
|
|
|
+ sme_debug("Current Country = %s", reg_cc);
|
|
|
|
|
|
csr_update_op_class_array(mac, opClasses,
|
|
|
&mac->scan.base_channels, "20MHz", &i);
|