|
@@ -6298,6 +6298,11 @@ __wlan_hdd_cfg80211_set_ratemask_config(struct wiphy *wiphy,
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
|
int ret;
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (ret)
|
|
|
return ret;
|
|
@@ -6567,6 +6572,11 @@ static int __wlan_hdd_cfg80211_disable_dfs_chan_scan(struct wiphy *wiphy,
|
|
|
bool enable_dfs_scan = true;
|
|
|
hdd_enter_dev(dev);
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
ret_val = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (ret_val)
|
|
|
return ret_val;
|
|
@@ -12527,6 +12537,11 @@ __wlan_hdd_cfg80211_set_ns_offload(struct wiphy *wiphy,
|
|
|
|
|
|
hdd_enter_dev(wdev->netdev);
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
status = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (0 != status)
|
|
|
return status;
|
|
@@ -12713,6 +12728,11 @@ static int __wlan_hdd_cfg80211_get_preferred_freq_list(struct wiphy *wiphy,
|
|
|
|
|
|
hdd_enter_dev(wdev->netdev);
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (ret)
|
|
|
return -EINVAL;
|
|
@@ -12909,6 +12929,11 @@ static int __wlan_hdd_cfg80211_set_probable_oper_channel(struct wiphy *wiphy,
|
|
|
|
|
|
hdd_enter_dev(ndev);
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (ret)
|
|
|
return ret;
|
|
@@ -13553,6 +13578,11 @@ static int __wlan_hdd_cfg80211_dual_sta_policy(struct wiphy *wiphy,
|
|
|
uint8_t dual_sta_config =
|
|
|
QCA_WLAN_CONCURRENT_STA_POLICY_UNBIASED;
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
if (wlan_hdd_validate_context(hdd_ctx)) {
|
|
|
hdd_err("Invalid hdd context");
|
|
|
return -EINVAL;
|
|
@@ -14097,6 +14127,11 @@ static int __wlan_hdd_cfg80211_setband(struct wiphy *wiphy,
|
|
|
|
|
|
hdd_enter();
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (ret)
|
|
|
return ret;
|
|
@@ -14775,6 +14810,11 @@ static int __wlan_hdd_cfg80211_getband(struct wiphy *wiphy,
|
|
|
|
|
|
hdd_enter();
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (ret)
|
|
|
return ret;
|
|
@@ -16637,6 +16677,11 @@ static int __wlan_hdd_cfg80211_get_usable_channel(struct wiphy *wiphy,
|
|
|
uint32_t count = 0;
|
|
|
QDF_STATUS status;
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (0 != ret)
|
|
|
return ret;
|
|
@@ -16759,6 +16804,11 @@ static int __wlan_hdd_cfg80211_set_roam_events(struct wiphy *wiphy,
|
|
|
int ret;
|
|
|
uint8_t config, state, param = 0;
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (ret != 0) {
|
|
|
hdd_err("Invalid hdd_ctx");
|
|
@@ -16881,6 +16931,11 @@ static int __wlan_hdd_cfg80211_get_chain_rssi(struct wiphy *wiphy,
|
|
|
|
|
|
hdd_enter();
|
|
|
|
|
|
+ if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
|
|
|
+ hdd_err("Command not allowed in FTM mode");
|
|
|
+ return -EPERM;
|
|
|
+ }
|
|
|
+
|
|
|
retval = wlan_hdd_validate_context(hdd_ctx);
|
|
|
if (0 != retval)
|
|
|
return retval;
|
|
@@ -18660,15 +18715,11 @@ int wlan_hdd_cfg80211_init(struct device *dev,
|
|
|
wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
|
|
|
wiphy->max_remain_on_channel_duration = MAX_REMAIN_ON_CHANNEL_DURATION;
|
|
|
|
|
|
- if (cds_get_conparam() != QDF_GLOBAL_FTM_MODE) {
|
|
|
- wiphy->n_vendor_commands =
|
|
|
- ARRAY_SIZE(hdd_wiphy_vendor_commands);
|
|
|
- wiphy->vendor_commands = hdd_wiphy_vendor_commands;
|
|
|
+ wiphy->n_vendor_commands = ARRAY_SIZE(hdd_wiphy_vendor_commands);
|
|
|
+ wiphy->vendor_commands = hdd_wiphy_vendor_commands;
|
|
|
|
|
|
- wiphy->vendor_events = wlan_hdd_cfg80211_vendor_events;
|
|
|
- wiphy->n_vendor_events =
|
|
|
- ARRAY_SIZE(wlan_hdd_cfg80211_vendor_events);
|
|
|
- }
|
|
|
+ wiphy->vendor_events = wlan_hdd_cfg80211_vendor_events;
|
|
|
+ wiphy->n_vendor_events = ARRAY_SIZE(wlan_hdd_cfg80211_vendor_events);
|
|
|
|
|
|
#ifdef QCA_HT_2040_COEX
|
|
|
wiphy->features |= NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE;
|