|
@@ -83,8 +83,8 @@ static int wlan_hdd_set_chan_before_pre_cac(struct hdd_adapter *ap_adapter,
|
|
|
* wlan_hdd_validate_and_get_pre_cac_ch() - Validate and get pre cac channel
|
|
|
* @hdd_ctx: HDD context
|
|
|
* @ap_adapter: AP adapter
|
|
|
- * @channel: Channel requested by userspace
|
|
|
- * @pre_cac_chan_freq: Pointer to the pre CAC channel freq
|
|
|
+ * @chan_freq: Channel frequency requested by userspace
|
|
|
+ * @pre_cac_chan_freq: Pointer to the pre CAC channel frequency storage
|
|
|
*
|
|
|
* Validates the channel provided by userspace. If user provided channel 0,
|
|
|
* a valid outdoor channel must be selected from the regulatory channel.
|
|
@@ -93,7 +93,7 @@ static int wlan_hdd_set_chan_before_pre_cac(struct hdd_adapter *ap_adapter,
|
|
|
*/
|
|
|
static int wlan_hdd_validate_and_get_pre_cac_ch(struct hdd_context *hdd_ctx,
|
|
|
struct hdd_adapter *ap_adapter,
|
|
|
- uint8_t channel,
|
|
|
+ uint32_t chan_freq,
|
|
|
uint32_t *pre_cac_chan_freq)
|
|
|
{
|
|
|
uint32_t i;
|
|
@@ -104,7 +104,7 @@ static int wlan_hdd_validate_and_get_pre_cac_ch(struct hdd_context *hdd_ctx,
|
|
|
uint8_t pcl_weights[NUM_CHANNELS] = {0};
|
|
|
mac_handle_t mac_handle;
|
|
|
|
|
|
- if (channel == 0) {
|
|
|
+ if (!chan_freq) {
|
|
|
/* Channel is not obtained from PCL because PCL may not have
|
|
|
* the entire channel list. For example: if SAP is up on
|
|
|
* channel 6 and PCL is queried for the next SAP interface,
|
|
@@ -139,13 +139,12 @@ static int wlan_hdd_validate_and_get_pre_cac_ch(struct hdd_context *hdd_ctx,
|
|
|
* the user is expected to take care of this.
|
|
|
*/
|
|
|
mac_handle = hdd_ctx->mac_handle;
|
|
|
- if (!sme_is_channel_valid(mac_handle, channel) ||
|
|
|
- !wlan_reg_is_dfs_ch(hdd_ctx->pdev, channel)) {
|
|
|
- hdd_err("Invalid channel for pre cac:%d", channel);
|
|
|
+ if (!sme_is_channel_valid(mac_handle, chan_freq) ||
|
|
|
+ !wlan_reg_is_dfs_for_freq(hdd_ctx->pdev, chan_freq)) {
|
|
|
+ hdd_err("Invalid channel for pre cac:%d", chan_freq);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
- *pre_cac_chan_freq = wlan_reg_legacy_chan_to_freq(hdd_ctx->pdev,
|
|
|
- channel);
|
|
|
+ *pre_cac_chan_freq = chan_freq;
|
|
|
}
|
|
|
hdd_debug("selected pre cac channel:%d", *pre_cac_chan_freq);
|
|
|
return 0;
|
|
@@ -154,7 +153,7 @@ static int wlan_hdd_validate_and_get_pre_cac_ch(struct hdd_context *hdd_ctx,
|
|
|
/**
|
|
|
* __wlan_hdd_request_pre_cac() - Start pre CAC in the driver
|
|
|
* @hdd_ctx: the HDD context to operate against
|
|
|
- * @channel: Channel option provided by userspace
|
|
|
+ * @chan_freq: Channel frequency option provided by userspace
|
|
|
* @out_adapter: out parameter for the newly created pre-cac adapter
|
|
|
*
|
|
|
* Sets the driver to the required hardware mode and start an adapter for
|
|
@@ -163,7 +162,7 @@ static int wlan_hdd_validate_and_get_pre_cac_ch(struct hdd_context *hdd_ctx,
|
|
|
* Return: Zero on success, non-zero value on error
|
|
|
*/
|
|
|
static int __wlan_hdd_request_pre_cac(struct hdd_context *hdd_ctx,
|
|
|
- uint8_t channel,
|
|
|
+ uint32_t chan_freq,
|
|
|
struct hdd_adapter **out_adapter)
|
|
|
{
|
|
|
uint8_t *mac_addr;
|
|
@@ -176,7 +175,6 @@ static int __wlan_hdd_request_pre_cac(struct hdd_context *hdd_ctx,
|
|
|
struct net_device *dev;
|
|
|
struct cfg80211_chan_def chandef;
|
|
|
enum nl80211_channel_type channel_type;
|
|
|
- uint32_t freq;
|
|
|
struct ieee80211_channel *chan;
|
|
|
mac_handle_t mac_handle;
|
|
|
bool val;
|
|
@@ -224,10 +222,10 @@ static int __wlan_hdd_request_pre_cac(struct hdd_context *hdd_ctx,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- hdd_debug("channel:%d", channel);
|
|
|
+ hdd_debug("channel: %d", chan_freq);
|
|
|
|
|
|
- ret = wlan_hdd_validate_and_get_pre_cac_ch(hdd_ctx, ap_adapter, channel,
|
|
|
- &pre_cac_chan_freq);
|
|
|
+ ret = wlan_hdd_validate_and_get_pre_cac_ch(
|
|
|
+ hdd_ctx, ap_adapter, chan_freq, &pre_cac_chan_freq);
|
|
|
if (ret != 0) {
|
|
|
hdd_err("can't validate pre-cac channel");
|
|
|
goto release_intf_addr_and_return_failure;
|
|
@@ -312,18 +310,16 @@ static int __wlan_hdd_request_pre_cac(struct hdd_context *hdd_ctx,
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- freq = pre_cac_chan_freq;
|
|
|
- chan = ieee80211_get_channel(wiphy, freq);
|
|
|
+ chan = ieee80211_get_channel(wiphy, pre_cac_chan_freq);
|
|
|
if (!chan) {
|
|
|
hdd_err("channel converion failed");
|
|
|
goto stop_close_pre_cac_adapter;
|
|
|
}
|
|
|
-
|
|
|
cfg80211_chandef_create(&chandef, chan, channel_type);
|
|
|
|
|
|
hdd_debug("orig width:%d channel_type:%d freq:%d",
|
|
|
ap_adapter->session.ap.sap_config.ch_width_orig,
|
|
|
- channel_type, freq);
|
|
|
+ channel_type, pre_cac_chan_freq);
|
|
|
/*
|
|
|
* Doing update after opening and starting pre-cac adapter will make
|
|
|
* sure that driver won't do hardware mode change if there are any
|
|
@@ -397,7 +393,7 @@ release_intf_addr_and_return_failure:
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
-int wlan_hdd_request_pre_cac(struct hdd_context *hdd_ctx, uint8_t channel)
|
|
|
+int wlan_hdd_request_pre_cac(struct hdd_context *hdd_ctx, uint32_t chan_freq)
|
|
|
{
|
|
|
struct hdd_adapter *adapter;
|
|
|
struct osif_vdev_sync *vdev_sync;
|
|
@@ -408,7 +404,7 @@ int wlan_hdd_request_pre_cac(struct hdd_context *hdd_ctx, uint8_t channel)
|
|
|
if (errno)
|
|
|
return errno;
|
|
|
|
|
|
- errno = __wlan_hdd_request_pre_cac(hdd_ctx, channel, &adapter);
|
|
|
+ errno = __wlan_hdd_request_pre_cac(hdd_ctx, chan_freq, &adapter);
|
|
|
if (errno)
|
|
|
goto destroy_sync;
|
|
|
|
|
@@ -450,7 +446,6 @@ __wlan_hdd_cfg80211_conditional_chan_switch(struct wiphy *wiphy,
|
|
|
*tb[QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_MAX + 1];
|
|
|
uint32_t freq_len, i;
|
|
|
uint32_t *freq;
|
|
|
- uint8_t chans[QDF_MAX_NUM_CHAN] = {0};
|
|
|
bool is_dfs_mode_enabled = false;
|
|
|
|
|
|
hdd_enter_dev(dev);
|
|
@@ -512,14 +507,8 @@ __wlan_hdd_cfg80211_conditional_chan_switch(struct wiphy *wiphy,
|
|
|
freq = nla_data(
|
|
|
tb[QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_FREQ_LIST]);
|
|
|
|
|
|
- for (i = 0; i < freq_len; i++) {
|
|
|
- if (freq[i] == 0)
|
|
|
- chans[i] = 0;
|
|
|
- else
|
|
|
- chans[i] = ieee80211_frequency_to_channel(freq[i]);
|
|
|
-
|
|
|
+ for (i = 0; i < freq_len; i++)
|
|
|
hdd_debug("freq[%d]=%d", i, freq[i]);
|
|
|
- }
|
|
|
|
|
|
/*
|
|
|
* The input frequency list from user space is designed to be a
|
|
@@ -530,7 +519,7 @@ __wlan_hdd_cfg80211_conditional_chan_switch(struct wiphy *wiphy,
|
|
|
* If channel is zero, any channel in the available outdoor regulatory
|
|
|
* domain will be selected.
|
|
|
*/
|
|
|
- ret = wlan_hdd_request_pre_cac(hdd_ctx, chans[0]);
|
|
|
+ ret = wlan_hdd_request_pre_cac(hdd_ctx, freq[0]);
|
|
|
if (ret) {
|
|
|
hdd_err("pre cac request failed with reason:%d", ret);
|
|
|
return ret;
|