Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * This file is provided under a dual BSD/GPLv2 license. When using or |
| 4 | * redistributing this file, you may do so under either license. |
| 5 | * |
| 6 | * GPL LICENSE SUMMARY |
| 7 | * |
| 8 | * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of version 2 of the GNU General Public License as |
| 12 | * published by the Free Software Foundation. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 22 | * USA |
| 23 | * |
| 24 | * The full GNU General Public License is included in this distribution |
Emmanuel Grumbach | 410dc5a | 2013-02-18 09:22:28 +0200 | [diff] [blame] | 25 | * in the file called COPYING. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 26 | * |
| 27 | * Contact Information: |
| 28 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 29 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 30 | * |
| 31 | * BSD LICENSE |
| 32 | * |
| 33 | * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved. |
| 34 | * All rights reserved. |
| 35 | * |
| 36 | * Redistribution and use in source and binary forms, with or without |
| 37 | * modification, are permitted provided that the following conditions |
| 38 | * are met: |
| 39 | * |
| 40 | * * Redistributions of source code must retain the above copyright |
| 41 | * notice, this list of conditions and the following disclaimer. |
| 42 | * * Redistributions in binary form must reproduce the above copyright |
| 43 | * notice, this list of conditions and the following disclaimer in |
| 44 | * the documentation and/or other materials provided with the |
| 45 | * distribution. |
| 46 | * * Neither the name Intel Corporation nor the names of its |
| 47 | * contributors may be used to endorse or promote products derived |
| 48 | * from this software without specific prior written permission. |
| 49 | * |
| 50 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 51 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 52 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 53 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 54 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 55 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 56 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 57 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 58 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 59 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 60 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 61 | * |
| 62 | *****************************************************************************/ |
| 63 | |
| 64 | #include <linux/kernel.h> |
| 65 | #include <linux/module.h> |
| 66 | #include <linux/slab.h> |
| 67 | #include <linux/init.h> |
| 68 | |
| 69 | #include <net/mac80211.h> |
| 70 | |
| 71 | #include "iwl-debug.h" |
| 72 | #include "mvm.h" |
| 73 | #include "iwl-modparams.h" |
| 74 | #include "fw-api-power.h" |
| 75 | |
| 76 | #define POWER_KEEP_ALIVE_PERIOD_SEC 25 |
| 77 | |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 78 | static int iwl_mvm_beacon_filter_send_cmd(struct iwl_mvm *mvm, |
| 79 | struct iwl_beacon_filter_cmd *cmd) |
| 80 | { |
| 81 | int ret; |
| 82 | |
| 83 | ret = iwl_mvm_send_cmd_pdu(mvm, REPLY_BEACON_FILTERING_CMD, CMD_SYNC, |
| 84 | sizeof(struct iwl_beacon_filter_cmd), cmd); |
| 85 | |
| 86 | if (!ret) { |
| 87 | IWL_DEBUG_POWER(mvm, "ba_enable_beacon_abort is: %d\n", |
| 88 | cmd->ba_enable_beacon_abort); |
| 89 | IWL_DEBUG_POWER(mvm, "ba_escape_timer is: %d\n", |
| 90 | cmd->ba_escape_timer); |
| 91 | IWL_DEBUG_POWER(mvm, "bf_debug_flag is: %d\n", |
| 92 | cmd->bf_debug_flag); |
| 93 | IWL_DEBUG_POWER(mvm, "bf_enable_beacon_filter is: %d\n", |
| 94 | cmd->bf_enable_beacon_filter); |
| 95 | IWL_DEBUG_POWER(mvm, "bf_energy_delta is: %d\n", |
| 96 | cmd->bf_energy_delta); |
| 97 | IWL_DEBUG_POWER(mvm, "bf_escape_timer is: %d\n", |
| 98 | cmd->bf_escape_timer); |
| 99 | IWL_DEBUG_POWER(mvm, "bf_roaming_energy_delta is: %d\n", |
| 100 | cmd->bf_roaming_energy_delta); |
| 101 | IWL_DEBUG_POWER(mvm, "bf_roaming_state is: %d\n", |
| 102 | cmd->bf_roaming_state); |
| 103 | IWL_DEBUG_POWER(mvm, "bf_temperature_delta is: %d\n", |
| 104 | cmd->bf_temperature_delta); |
| 105 | } |
| 106 | return ret; |
| 107 | } |
| 108 | |
| 109 | static int iwl_mvm_update_beacon_abort(struct iwl_mvm *mvm, |
| 110 | struct ieee80211_vif *vif, bool enable) |
| 111 | { |
| 112 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 113 | struct iwl_beacon_filter_cmd cmd = { |
| 114 | IWL_BF_CMD_CONFIG_DEFAULTS, |
| 115 | .bf_enable_beacon_filter = 1, |
| 116 | .ba_enable_beacon_abort = enable, |
| 117 | }; |
| 118 | |
| 119 | if (!mvmvif->bf_enabled) |
| 120 | return 0; |
| 121 | |
Alexander Bondar | b571a69 | 2013-05-21 14:49:09 +0300 | [diff] [blame^] | 122 | iwl_mvm_beacon_filter_debugfs_parameters(vif, &cmd); |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 123 | return iwl_mvm_beacon_filter_send_cmd(mvm, &cmd); |
| 124 | } |
| 125 | |
Alexander Bondar | 3f0b2b3 | 2013-03-05 14:08:23 +0200 | [diff] [blame] | 126 | static void iwl_mvm_power_log(struct iwl_mvm *mvm, |
| 127 | struct iwl_powertable_cmd *cmd) |
| 128 | { |
| 129 | IWL_DEBUG_POWER(mvm, |
| 130 | "Sending power table command for power level %d, flags = 0x%X\n", |
| 131 | iwlmvm_mod_params.power_scheme, |
| 132 | le16_to_cpu(cmd->flags)); |
| 133 | IWL_DEBUG_POWER(mvm, "Keep alive = %u sec\n", cmd->keep_alive_seconds); |
| 134 | |
| 135 | if (cmd->flags & cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK)) { |
| 136 | IWL_DEBUG_POWER(mvm, "Rx timeout = %u usec\n", |
| 137 | le32_to_cpu(cmd->rx_data_timeout)); |
| 138 | IWL_DEBUG_POWER(mvm, "Tx timeout = %u usec\n", |
| 139 | le32_to_cpu(cmd->tx_data_timeout)); |
| 140 | IWL_DEBUG_POWER(mvm, "LP RX RSSI threshold = %u\n", |
| 141 | cmd->lprx_rssi_threshold); |
Alexander Bondar | 5b1dbfc | 2013-04-23 13:32:35 +0300 | [diff] [blame] | 142 | if (cmd->flags & cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK)) |
Alexander Bondar | 1bd2d17 | 2013-05-21 14:49:09 +0300 | [diff] [blame] | 143 | IWL_DEBUG_POWER(mvm, "DTIM periods to skip = %u\n", |
| 144 | le32_to_cpu(cmd->skip_dtim_periods)); |
Alexander Bondar | 3f0b2b3 | 2013-03-05 14:08:23 +0200 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | |
Alexander Bondar | 4d1c4b1 | 2013-03-06 16:28:43 +0200 | [diff] [blame] | 148 | void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm, struct ieee80211_vif *vif, |
| 149 | struct iwl_powertable_cmd *cmd) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 150 | { |
| 151 | struct ieee80211_hw *hw = mvm->hw; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 152 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 153 | struct ieee80211_channel *chan; |
| 154 | int dtimper, dtimper_msec; |
| 155 | int keep_alive; |
| 156 | bool radar_detect = false; |
Alexander Bondar | b571a69 | 2013-05-21 14:49:09 +0300 | [diff] [blame^] | 157 | struct iwl_mvm_vif *mvmvif __maybe_unused = |
| 158 | iwl_mvm_vif_from_mac80211(vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 159 | |
Alexander Bondar | e16cf7e | 2013-03-05 14:01:27 +0200 | [diff] [blame] | 160 | /* |
| 161 | * Regardless of power management state the driver must set |
| 162 | * keep alive period. FW will use it for sending keep alive NDPs |
| 163 | * immediately after association. |
| 164 | */ |
| 165 | cmd->keep_alive_seconds = POWER_KEEP_ALIVE_PERIOD_SEC; |
| 166 | |
Alexander Bondar | ade5065 | 2013-04-03 16:28:47 +0300 | [diff] [blame] | 167 | if (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 168 | return; |
| 169 | |
Alexander Bondar | 9a61304 | 2013-03-05 12:54:00 +0200 | [diff] [blame] | 170 | cmd->flags |= cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK); |
| 171 | |
Alexander Bondar | b571a69 | 2013-05-21 14:49:09 +0300 | [diff] [blame^] | 172 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 173 | if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_DISABLE_POWER_OFF && |
| 174 | mvmvif->dbgfs_pm.disable_power_off) |
| 175 | cmd->flags &= cpu_to_le16(~POWER_FLAGS_POWER_SAVE_ENA_MSK); |
| 176 | #endif |
Alexander Bondar | 9a61304 | 2013-03-05 12:54:00 +0200 | [diff] [blame] | 177 | if (!vif->bss_conf.ps) |
| 178 | return; |
| 179 | |
| 180 | cmd->flags |= cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 181 | |
| 182 | dtimper = hw->conf.ps_dtim_period ?: 1; |
| 183 | |
| 184 | /* Check if radar detection is required on current channel */ |
| 185 | rcu_read_lock(); |
| 186 | chanctx_conf = rcu_dereference(vif->chanctx_conf); |
| 187 | WARN_ON(!chanctx_conf); |
| 188 | if (chanctx_conf) { |
| 189 | chan = chanctx_conf->def.chan; |
| 190 | radar_detect = chan->flags & IEEE80211_CHAN_RADAR; |
| 191 | } |
| 192 | rcu_read_unlock(); |
| 193 | |
| 194 | /* Check skip over DTIM conditions */ |
| 195 | if (!radar_detect && (dtimper <= 10) && |
Alexander Bondar | ee1e842 | 2013-04-23 13:52:10 +0300 | [diff] [blame] | 196 | (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_LP || |
| 197 | mvm->cur_ucode == IWL_UCODE_WOWLAN)) { |
Alexander Bondar | f4a3e2f | 2013-03-05 13:47:04 +0200 | [diff] [blame] | 198 | cmd->flags |= cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK); |
Alexander Bondar | 1bd2d17 | 2013-05-21 14:49:09 +0300 | [diff] [blame] | 199 | cmd->skip_dtim_periods = cpu_to_le32(3); |
Alexander Bondar | 5b1dbfc | 2013-04-23 13:32:35 +0300 | [diff] [blame] | 200 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 201 | |
| 202 | /* Check that keep alive period is at least 3 * DTIM */ |
| 203 | dtimper_msec = dtimper * vif->bss_conf.beacon_int; |
| 204 | keep_alive = max_t(int, 3 * dtimper_msec, |
Alexander Bondar | e16cf7e | 2013-03-05 14:01:27 +0200 | [diff] [blame] | 205 | MSEC_PER_SEC * cmd->keep_alive_seconds); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 206 | keep_alive = DIV_ROUND_UP(keep_alive, MSEC_PER_SEC); |
Alexander Bondar | 83bdad5 | 2013-02-03 21:26:44 +0200 | [diff] [blame] | 207 | cmd->keep_alive_seconds = keep_alive; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 208 | |
Alexander Bondar | ee1e842 | 2013-04-23 13:52:10 +0300 | [diff] [blame] | 209 | if (mvm->cur_ucode != IWL_UCODE_WOWLAN) { |
| 210 | cmd->rx_data_timeout = cpu_to_le32(100 * USEC_PER_MSEC); |
| 211 | cmd->tx_data_timeout = cpu_to_le32(100 * USEC_PER_MSEC); |
| 212 | } else { |
| 213 | cmd->rx_data_timeout = cpu_to_le32(10 * USEC_PER_MSEC); |
| 214 | cmd->tx_data_timeout = cpu_to_le32(10 * USEC_PER_MSEC); |
| 215 | } |
Alexander Bondar | b571a69 | 2013-05-21 14:49:09 +0300 | [diff] [blame^] | 216 | |
| 217 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 218 | if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_KEEP_ALIVE) |
| 219 | cmd->keep_alive_seconds = mvmvif->dbgfs_pm.keep_alive_seconds; |
| 220 | if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SKIP_OVER_DTIM) { |
| 221 | if (mvmvif->dbgfs_pm.skip_over_dtim) |
| 222 | cmd->flags |= |
| 223 | cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK); |
| 224 | else |
| 225 | cmd->flags &= |
| 226 | cpu_to_le16(~POWER_FLAGS_SKIP_OVER_DTIM_MSK); |
| 227 | } |
| 228 | if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_RX_DATA_TIMEOUT) |
| 229 | cmd->rx_data_timeout = |
| 230 | cpu_to_le32(mvmvif->dbgfs_pm.rx_data_timeout); |
| 231 | if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_TX_DATA_TIMEOUT) |
| 232 | cmd->tx_data_timeout = |
| 233 | cpu_to_le32(mvmvif->dbgfs_pm.tx_data_timeout); |
| 234 | if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SKIP_DTIM_PERIODS) |
| 235 | cmd->skip_dtim_periods = |
| 236 | cpu_to_le32(mvmvif->dbgfs_pm.skip_dtim_periods); |
| 237 | #endif /* CONFIG_IWLWIFI_DEBUGFS */ |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | int iwl_mvm_power_update_mode(struct iwl_mvm *mvm, struct ieee80211_vif *vif) |
| 241 | { |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 242 | int ret; |
| 243 | bool ba_enable; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 244 | struct iwl_powertable_cmd cmd = {}; |
| 245 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 246 | if (vif->type != NL80211_IFTYPE_STATION || vif->p2p) |
| 247 | return 0; |
| 248 | |
Alexander Bondar | f4a3e2f | 2013-03-05 13:47:04 +0200 | [diff] [blame] | 249 | iwl_mvm_power_build_cmd(mvm, vif, &cmd); |
Alexander Bondar | 3f0b2b3 | 2013-03-05 14:08:23 +0200 | [diff] [blame] | 250 | iwl_mvm_power_log(mvm, &cmd); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 251 | |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 252 | ret = iwl_mvm_send_cmd_pdu(mvm, POWER_TABLE_CMD, CMD_SYNC, |
| 253 | sizeof(cmd), &cmd); |
| 254 | if (ret) |
| 255 | return ret; |
| 256 | |
| 257 | ba_enable = !!(cmd.flags & |
| 258 | cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK)); |
| 259 | |
| 260 | return iwl_mvm_update_beacon_abort(mvm, vif, ba_enable); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | int iwl_mvm_power_disable(struct iwl_mvm *mvm, struct ieee80211_vif *vif) |
| 264 | { |
| 265 | struct iwl_powertable_cmd cmd = {}; |
Alexander Bondar | b571a69 | 2013-05-21 14:49:09 +0300 | [diff] [blame^] | 266 | struct iwl_mvm_vif *mvmvif __maybe_unused = |
| 267 | iwl_mvm_vif_from_mac80211(vif); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 268 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 269 | if (vif->type != NL80211_IFTYPE_STATION || vif->p2p) |
| 270 | return 0; |
| 271 | |
Alexander Bondar | ade5065 | 2013-04-03 16:28:47 +0300 | [diff] [blame] | 272 | if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM) |
Alexander Bondar | 9a61304 | 2013-03-05 12:54:00 +0200 | [diff] [blame] | 273 | cmd.flags |= cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK); |
| 274 | |
Alexander Bondar | b571a69 | 2013-05-21 14:49:09 +0300 | [diff] [blame^] | 275 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 276 | if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_DISABLE_POWER_OFF && |
| 277 | mvmvif->dbgfs_pm.disable_power_off) |
| 278 | cmd.flags &= cpu_to_le16(~POWER_FLAGS_POWER_SAVE_ENA_MSK); |
| 279 | #endif |
Alexander Bondar | 3f0b2b3 | 2013-03-05 14:08:23 +0200 | [diff] [blame] | 280 | iwl_mvm_power_log(mvm, &cmd); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 281 | |
Emmanuel Grumbach | 5360cfb | 2013-02-11 15:56:01 +0200 | [diff] [blame] | 282 | return iwl_mvm_send_cmd_pdu(mvm, POWER_TABLE_CMD, CMD_ASYNC, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 283 | sizeof(cmd), &cmd); |
| 284 | } |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 285 | |
Alexander Bondar | b571a69 | 2013-05-21 14:49:09 +0300 | [diff] [blame^] | 286 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 287 | void |
| 288 | iwl_mvm_beacon_filter_debugfs_parameters(struct ieee80211_vif *vif, |
| 289 | struct iwl_beacon_filter_cmd *cmd) |
| 290 | { |
| 291 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 292 | struct iwl_dbgfs_bf *dbgfs_bf = &mvmvif->dbgfs_bf; |
| 293 | |
| 294 | if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ENERGY_DELTA) |
| 295 | cmd->bf_energy_delta = dbgfs_bf->bf_energy_delta; |
| 296 | if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ROAMING_ENERGY_DELTA) |
| 297 | cmd->bf_roaming_energy_delta = |
| 298 | dbgfs_bf->bf_roaming_energy_delta; |
| 299 | if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ROAMING_STATE) |
| 300 | cmd->bf_roaming_state = dbgfs_bf->bf_roaming_state; |
| 301 | if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMPERATURE_DELTA) |
| 302 | cmd->bf_temperature_delta = dbgfs_bf->bf_temperature_delta; |
| 303 | if (dbgfs_bf->mask & MVM_DEBUGFS_BF_DEBUG_FLAG) |
| 304 | cmd->bf_debug_flag = dbgfs_bf->bf_debug_flag; |
| 305 | if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ESCAPE_TIMER) |
| 306 | cmd->bf_escape_timer = cpu_to_le32(dbgfs_bf->bf_escape_timer); |
| 307 | if (dbgfs_bf->mask & MVM_DEBUGFS_BA_ESCAPE_TIMER) |
| 308 | cmd->ba_escape_timer = cpu_to_le32(dbgfs_bf->ba_escape_timer); |
| 309 | if (dbgfs_bf->mask & MVM_DEBUGFS_BA_ENABLE_BEACON_ABORT) |
| 310 | cmd->ba_enable_beacon_abort = dbgfs_bf->ba_enable_beacon_abort; |
| 311 | } |
| 312 | #endif |
| 313 | |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 314 | int iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm, |
| 315 | struct ieee80211_vif *vif) |
| 316 | { |
| 317 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 318 | struct iwl_beacon_filter_cmd cmd = { |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 319 | IWL_BF_CMD_CONFIG_DEFAULTS, |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 320 | .bf_enable_beacon_filter = 1, |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 321 | }; |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 322 | int ret; |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 323 | |
| 324 | if (mvmvif != mvm->bf_allowed_vif || |
| 325 | vif->type != NL80211_IFTYPE_STATION || vif->p2p) |
| 326 | return 0; |
| 327 | |
Alexander Bondar | b571a69 | 2013-05-21 14:49:09 +0300 | [diff] [blame^] | 328 | iwl_mvm_beacon_filter_debugfs_parameters(vif, &cmd); |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 329 | ret = iwl_mvm_beacon_filter_send_cmd(mvm, &cmd); |
| 330 | |
| 331 | if (!ret) |
| 332 | mvmvif->bf_enabled = true; |
| 333 | |
| 334 | return ret; |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | int iwl_mvm_disable_beacon_filter(struct iwl_mvm *mvm, |
| 338 | struct ieee80211_vif *vif) |
| 339 | { |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 340 | struct iwl_beacon_filter_cmd cmd = {}; |
| 341 | struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); |
| 342 | int ret; |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 343 | |
| 344 | if (vif->type != NL80211_IFTYPE_STATION || vif->p2p) |
| 345 | return 0; |
| 346 | |
Alexander Bondar | 071d4990 | 2013-05-06 13:03:59 +0300 | [diff] [blame] | 347 | ret = iwl_mvm_beacon_filter_send_cmd(mvm, &cmd); |
| 348 | |
| 349 | if (!ret) |
| 350 | mvmvif->bf_enabled = false; |
| 351 | |
| 352 | return ret; |
Hila Gonen | 7df15b1 | 2012-12-12 11:16:19 +0200 | [diff] [blame] | 353 | } |