|
@@ -8193,79 +8193,6 @@ void lim_send_start_bss_confirm(struct mac_context *mac_ctx,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * lim_get_dot11d_transmit_power() - regulatory max transmit power
|
|
|
- * @mac: pointer to mac data
|
|
|
- * @channel: channel number
|
|
|
- *
|
|
|
- * Return: int8_t - power
|
|
|
- */
|
|
|
-static int8_t
|
|
|
-lim_get_dot11d_transmit_power(struct mac_context *mac, uint8_t channel)
|
|
|
-{
|
|
|
- uint32_t cfg_length = 0;
|
|
|
- int8_t max_tx_pwr = 0;
|
|
|
- tSirMacChanInfo *country_info = NULL;
|
|
|
- uint8_t count = 0;
|
|
|
- uint8_t first_channel;
|
|
|
- uint8_t maxChannels;
|
|
|
- int32_t rem_length = 0;
|
|
|
-
|
|
|
- if (WLAN_REG_IS_5GHZ_CH(channel))
|
|
|
- cfg_length = mac->mlme_cfg->power.max_tx_power_5.len;
|
|
|
- else if (WLAN_REG_IS_24GHZ_CH(channel))
|
|
|
- cfg_length = mac->mlme_cfg->power.max_tx_power_24.len;
|
|
|
- else
|
|
|
- return max_tx_pwr;
|
|
|
-
|
|
|
- country_info = qdf_mem_malloc(cfg_length);
|
|
|
- if (!country_info)
|
|
|
- goto error;
|
|
|
-
|
|
|
- if (WLAN_REG_IS_5GHZ_CH(channel)) {
|
|
|
- if (cfg_length > CFG_MAX_TX_POWER_5_LEN)
|
|
|
- goto error;
|
|
|
- qdf_mem_copy(country_info,
|
|
|
- mac->mlme_cfg->power.max_tx_power_5.data,
|
|
|
- cfg_length);
|
|
|
- } else if (WLAN_REG_IS_24GHZ_CH(channel)) {
|
|
|
- if (cfg_length > CFG_MAX_TX_POWER_2_4_LEN)
|
|
|
- goto error;
|
|
|
- qdf_mem_copy(country_info,
|
|
|
- mac->mlme_cfg->power.max_tx_power_24.data,
|
|
|
- cfg_length);
|
|
|
- }
|
|
|
-
|
|
|
- /* Identify the channel and maxtxpower */
|
|
|
- rem_length = cfg_length;
|
|
|
- while (rem_length >= (sizeof(tSirMacChanInfo))) {
|
|
|
- first_channel = wlan_reg_freq_to_chan(
|
|
|
- mac->pdev,
|
|
|
- country_info[count].first_freq);
|
|
|
- maxChannels = country_info[count].numChannels;
|
|
|
- max_tx_pwr = country_info[count].maxTxPower;
|
|
|
- count++;
|
|
|
- rem_length -= (sizeof(tSirMacChanInfo));
|
|
|
-
|
|
|
- if ((channel >= first_channel) &&
|
|
|
- (channel < (first_channel + maxChannels))) {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-error:
|
|
|
- if (country_info)
|
|
|
- qdf_mem_free(country_info);
|
|
|
-
|
|
|
- return max_tx_pwr;
|
|
|
-}
|
|
|
-
|
|
|
-int8_t lim_get_regulatory_max_transmit_power(struct mac_context *mac,
|
|
|
- uint8_t channel)
|
|
|
-{
|
|
|
- return lim_get_dot11d_transmit_power(mac, channel);
|
|
|
-}
|
|
|
-
|
|
|
QDF_STATUS lim_get_capability_info(struct mac_context *mac, uint16_t *pcap,
|
|
|
struct pe_session *pe_session)
|
|
|
{
|