blob: dba760f246275805afc219b13242a3dd85303cc3 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
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 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8ca151b2013-01-24 14:25:36 +01009 *
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 Grumbach410dc5a2013-02-18 09:22:28 +020025 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010026 *
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 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020033 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8ca151b2013-01-24 14:25:36 +010034 * 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>
Johannes Berg8ca151b2013-01-24 14:25:36 +010067
68#include <net/mac80211.h>
69
70#include "iwl-debug.h"
71#include "mvm.h"
72#include "iwl-modparams.h"
73#include "fw-api-power.h"
74
75#define POWER_KEEP_ALIVE_PERIOD_SEC 25
76
Emmanuel Grumbachd623d242014-01-26 12:58:24 +020077static
Alexander Bondare811ada2013-03-10 15:29:44 +020078int iwl_mvm_beacon_filter_send_cmd(struct iwl_mvm *mvm,
Eliad Peller3dd37d02014-01-07 14:00:24 +020079 struct iwl_beacon_filter_cmd *cmd,
80 u32 flags)
Alexander Bondar071d49902013-05-06 13:03:59 +030081{
Emmanuel Grumbachd623d242014-01-26 12:58:24 +020082 IWL_DEBUG_POWER(mvm, "ba_enable_beacon_abort is: %d\n",
83 le32_to_cpu(cmd->ba_enable_beacon_abort));
84 IWL_DEBUG_POWER(mvm, "ba_escape_timer is: %d\n",
85 le32_to_cpu(cmd->ba_escape_timer));
86 IWL_DEBUG_POWER(mvm, "bf_debug_flag is: %d\n",
87 le32_to_cpu(cmd->bf_debug_flag));
88 IWL_DEBUG_POWER(mvm, "bf_enable_beacon_filter is: %d\n",
89 le32_to_cpu(cmd->bf_enable_beacon_filter));
90 IWL_DEBUG_POWER(mvm, "bf_energy_delta is: %d\n",
91 le32_to_cpu(cmd->bf_energy_delta));
92 IWL_DEBUG_POWER(mvm, "bf_escape_timer is: %d\n",
93 le32_to_cpu(cmd->bf_escape_timer));
94 IWL_DEBUG_POWER(mvm, "bf_roaming_energy_delta is: %d\n",
95 le32_to_cpu(cmd->bf_roaming_energy_delta));
96 IWL_DEBUG_POWER(mvm, "bf_roaming_state is: %d\n",
97 le32_to_cpu(cmd->bf_roaming_state));
98 IWL_DEBUG_POWER(mvm, "bf_temp_threshold is: %d\n",
99 le32_to_cpu(cmd->bf_temp_threshold));
100 IWL_DEBUG_POWER(mvm, "bf_temp_fast_filter is: %d\n",
101 le32_to_cpu(cmd->bf_temp_fast_filter));
102 IWL_DEBUG_POWER(mvm, "bf_temp_slow_filter is: %d\n",
103 le32_to_cpu(cmd->bf_temp_slow_filter));
Alexander Bondar071d49902013-05-06 13:03:59 +0300104
Emmanuel Grumbachd623d242014-01-26 12:58:24 +0200105 return iwl_mvm_send_cmd_pdu(mvm, REPLY_BEACON_FILTERING_CMD, flags,
106 sizeof(struct iwl_beacon_filter_cmd), cmd);
Alexander Bondar071d49902013-05-06 13:03:59 +0300107}
108
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300109static
110void iwl_mvm_beacon_filter_set_cqm_params(struct iwl_mvm *mvm,
111 struct ieee80211_vif *vif,
112 struct iwl_beacon_filter_cmd *cmd)
113{
114 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
115
116 if (vif->bss_conf.cqm_rssi_thold) {
117 cmd->bf_energy_delta =
118 cpu_to_le32(vif->bss_conf.cqm_rssi_hyst);
119 /* fw uses an absolute value for this */
120 cmd->bf_roaming_state =
121 cpu_to_le32(-vif->bss_conf.cqm_rssi_thold);
122 }
123 cmd->ba_enable_beacon_abort = cpu_to_le32(mvmvif->bf_data.ba_enabled);
124}
125
Alexander Bondare811ada2013-03-10 15:29:44 +0200126int iwl_mvm_update_beacon_abort(struct iwl_mvm *mvm,
127 struct ieee80211_vif *vif, bool enable)
Alexander Bondar071d49902013-05-06 13:03:59 +0300128{
129 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
130 struct iwl_beacon_filter_cmd cmd = {
131 IWL_BF_CMD_CONFIG_DEFAULTS,
Hila Gonen5dca7c22013-07-16 11:15:35 +0300132 .bf_enable_beacon_filter = cpu_to_le32(1),
133 .ba_enable_beacon_abort = cpu_to_le32(enable),
Alexander Bondar071d49902013-05-06 13:03:59 +0300134 };
135
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300136 if (!mvmvif->bf_data.bf_enabled)
Alexander Bondar071d49902013-05-06 13:03:59 +0300137 return 0;
138
Alexander Bondar84349252013-07-22 15:39:26 +0300139 if (mvm->cur_ucode == IWL_UCODE_WOWLAN)
140 cmd.ba_escape_timer = cpu_to_le32(IWL_BA_ESCAPE_TIMER_D3);
141
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300142 mvmvif->bf_data.ba_enabled = enable;
143 iwl_mvm_beacon_filter_set_cqm_params(mvm, vif, &cmd);
Alexander Bondarb571a692013-05-21 14:49:09 +0300144 iwl_mvm_beacon_filter_debugfs_parameters(vif, &cmd);
Eliad Peller3dd37d02014-01-07 14:00:24 +0200145 return iwl_mvm_beacon_filter_send_cmd(mvm, &cmd, CMD_SYNC);
Alexander Bondar071d49902013-05-06 13:03:59 +0300146}
147
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200148static void iwl_mvm_power_log(struct iwl_mvm *mvm,
Alexander Bondare811ada2013-03-10 15:29:44 +0200149 struct iwl_mac_power_cmd *cmd)
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200150{
151 IWL_DEBUG_POWER(mvm,
Alexander Bondare811ada2013-03-10 15:29:44 +0200152 "Sending power table command on mac id 0x%X for power level %d, flags = 0x%X\n",
153 cmd->id_and_color, iwlmvm_mod_params.power_scheme,
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200154 le16_to_cpu(cmd->flags));
Alexander Bondare811ada2013-03-10 15:29:44 +0200155 IWL_DEBUG_POWER(mvm, "Keep alive = %u sec\n",
156 le16_to_cpu(cmd->keep_alive_seconds));
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200157
Alexander Bondare3c588e2013-04-07 14:08:59 +0300158 if (!(cmd->flags & cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK))) {
159 IWL_DEBUG_POWER(mvm, "Disable power management\n");
160 return;
161 }
162
163 IWL_DEBUG_POWER(mvm, "Rx timeout = %u usec\n",
164 le32_to_cpu(cmd->rx_data_timeout));
165 IWL_DEBUG_POWER(mvm, "Tx timeout = %u usec\n",
166 le32_to_cpu(cmd->tx_data_timeout));
167 if (cmd->flags & cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK))
168 IWL_DEBUG_POWER(mvm, "DTIM periods to skip = %u\n",
169 cmd->skip_dtim_periods);
170 if (cmd->flags & cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK))
171 IWL_DEBUG_POWER(mvm, "LP RX RSSI threshold = %u\n",
172 cmd->lprx_rssi_threshold);
173 if (cmd->flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK)) {
174 IWL_DEBUG_POWER(mvm, "uAPSD enabled\n");
175 IWL_DEBUG_POWER(mvm, "Rx timeout (uAPSD) = %u usec\n",
176 le32_to_cpu(cmd->rx_data_timeout_uapsd));
177 IWL_DEBUG_POWER(mvm, "Tx timeout (uAPSD) = %u usec\n",
178 le32_to_cpu(cmd->tx_data_timeout_uapsd));
179 IWL_DEBUG_POWER(mvm, "QNDP TID = %d\n", cmd->qndp_tid);
180 IWL_DEBUG_POWER(mvm, "ACs flags = 0x%x\n", cmd->uapsd_ac_flags);
181 IWL_DEBUG_POWER(mvm, "Max SP = %d\n", cmd->uapsd_max_sp);
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200182 }
183}
184
Alexander Bondar175a70b2013-04-14 20:59:37 +0300185static void iwl_mvm_power_configure_uapsd(struct iwl_mvm *mvm,
186 struct ieee80211_vif *vif,
187 struct iwl_mac_power_cmd *cmd)
188{
189 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
190 enum ieee80211_ac_numbers ac;
191 bool tid_found = false;
192
193 for (ac = IEEE80211_AC_VO; ac <= IEEE80211_AC_BK; ac++) {
194 if (!mvmvif->queue_params[ac].uapsd)
195 continue;
196
197 if (mvm->cur_ucode != IWL_UCODE_WOWLAN)
198 cmd->flags |=
199 cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK);
200
201 cmd->uapsd_ac_flags |= BIT(ac);
202
203 /* QNDP TID - the highest TID with no admission control */
204 if (!tid_found && !mvmvif->queue_params[ac].acm) {
205 tid_found = true;
206 switch (ac) {
207 case IEEE80211_AC_VO:
208 cmd->qndp_tid = 6;
209 break;
210 case IEEE80211_AC_VI:
211 cmd->qndp_tid = 5;
212 break;
213 case IEEE80211_AC_BE:
214 cmd->qndp_tid = 0;
215 break;
216 case IEEE80211_AC_BK:
217 cmd->qndp_tid = 1;
218 break;
219 }
220 }
221 }
222
223 if (!(cmd->flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK)))
224 return;
225
226 cmd->flags |= cpu_to_le16(POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK);
227
228 if (cmd->uapsd_ac_flags == (BIT(IEEE80211_AC_VO) |
229 BIT(IEEE80211_AC_VI) |
230 BIT(IEEE80211_AC_BE) |
231 BIT(IEEE80211_AC_BK))) {
232 cmd->flags |= cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK);
233 cmd->snooze_interval = cpu_to_le16(IWL_MVM_PS_SNOOZE_INTERVAL);
234 cmd->snooze_window = (mvm->cur_ucode == IWL_UCODE_WOWLAN) ?
235 cpu_to_le16(IWL_MVM_WOWLAN_PS_SNOOZE_WINDOW) :
236 cpu_to_le16(IWL_MVM_PS_SNOOZE_WINDOW);
237 }
238
239 cmd->uapsd_max_sp = IWL_UAPSD_MAX_SP;
240
241 if (mvm->cur_ucode == IWL_UCODE_WOWLAN || cmd->flags &
242 cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK)) {
243 cmd->rx_data_timeout_uapsd =
244 cpu_to_le32(IWL_MVM_WOWLAN_PS_RX_DATA_TIMEOUT);
245 cmd->tx_data_timeout_uapsd =
246 cpu_to_le32(IWL_MVM_WOWLAN_PS_TX_DATA_TIMEOUT);
247 } else {
248 cmd->rx_data_timeout_uapsd =
249 cpu_to_le32(IWL_MVM_UAPSD_RX_DATA_TIMEOUT);
250 cmd->tx_data_timeout_uapsd =
251 cpu_to_le32(IWL_MVM_UAPSD_TX_DATA_TIMEOUT);
252 }
253
254 if (cmd->flags & cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK)) {
255 cmd->heavy_tx_thld_packets =
256 IWL_MVM_PS_SNOOZE_HEAVY_TX_THLD_PACKETS;
257 cmd->heavy_rx_thld_packets =
258 IWL_MVM_PS_SNOOZE_HEAVY_RX_THLD_PACKETS;
259 } else {
260 cmd->heavy_tx_thld_packets =
261 IWL_MVM_PS_HEAVY_TX_THLD_PACKETS;
262 cmd->heavy_rx_thld_packets =
263 IWL_MVM_PS_HEAVY_RX_THLD_PACKETS;
264 }
265 cmd->heavy_tx_thld_percentage =
266 IWL_MVM_PS_HEAVY_TX_THLD_PERCENT;
267 cmd->heavy_rx_thld_percentage =
268 IWL_MVM_PS_HEAVY_RX_THLD_PERCENT;
269}
270
Alexander Bondare811ada2013-03-10 15:29:44 +0200271static void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm,
272 struct ieee80211_vif *vif,
273 struct iwl_mac_power_cmd *cmd)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100274{
275 struct ieee80211_hw *hw = mvm->hw;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100276 struct ieee80211_chanctx_conf *chanctx_conf;
277 struct ieee80211_channel *chan;
278 int dtimper, dtimper_msec;
279 int keep_alive;
280 bool radar_detect = false;
Alexander Bondarb571a692013-05-21 14:49:09 +0300281 struct iwl_mvm_vif *mvmvif __maybe_unused =
282 iwl_mvm_vif_from_mac80211(vif);
Alexander Bondar51498cf2013-09-02 17:10:14 +0300283 bool allow_uapsd = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100284
Alexander Bondare811ada2013-03-10 15:29:44 +0200285 cmd->id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
286 mvmvif->color));
287 dtimper = hw->conf.ps_dtim_period ?: 1;
288
Alexander Bondare16cf7e2013-03-05 14:01:27 +0200289 /*
290 * Regardless of power management state the driver must set
291 * keep alive period. FW will use it for sending keep alive NDPs
Alexander Bondare811ada2013-03-10 15:29:44 +0200292 * immediately after association. Check that keep alive period
293 * is at least 3 * DTIM
Alexander Bondare16cf7e2013-03-05 14:01:27 +0200294 */
Alexander Bondare811ada2013-03-10 15:29:44 +0200295 dtimper_msec = dtimper * vif->bss_conf.beacon_int;
296 keep_alive = max_t(int, 3 * dtimper_msec,
297 MSEC_PER_SEC * POWER_KEEP_ALIVE_PERIOD_SEC);
298 keep_alive = DIV_ROUND_UP(keep_alive, MSEC_PER_SEC);
299 cmd->keep_alive_seconds = cpu_to_le16(keep_alive);
Alexander Bondare16cf7e2013-03-05 14:01:27 +0200300
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200301 if (mvm->ps_disabled)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100302 return;
303
Alexander Bondar9a613042013-03-05 12:54:00 +0200304 cmd->flags |= cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK);
305
Alexander Bondarb571a692013-05-21 14:49:09 +0300306#ifdef CONFIG_IWLWIFI_DEBUGFS
307 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_DISABLE_POWER_OFF &&
308 mvmvif->dbgfs_pm.disable_power_off)
309 cmd->flags &= cpu_to_le16(~POWER_FLAGS_POWER_SAVE_ENA_MSK);
310#endif
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200311 if (!vif->bss_conf.ps || iwl_mvm_vif_low_latency(mvmvif) ||
Avri Altman19889022014-03-19 07:25:06 +0200312 !mvmvif->pm_enabled)
Alexander Bondar9a613042013-03-05 12:54:00 +0200313 return;
314
315 cmd->flags |= cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100316
Alexander Bondarbd4ace22013-03-21 17:14:14 +0200317 if (vif->bss_conf.beacon_rate &&
318 (vif->bss_conf.beacon_rate->bitrate == 10 ||
319 vif->bss_conf.beacon_rate->bitrate == 60)) {
320 cmd->flags |= cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK);
Alexander Bondare811ada2013-03-10 15:29:44 +0200321 cmd->lprx_rssi_threshold = POWER_LPRX_RSSI_THRESHOLD;
Alexander Bondarbd4ace22013-03-21 17:14:14 +0200322 }
323
Johannes Berg8ca151b2013-01-24 14:25:36 +0100324 /* Check if radar detection is required on current channel */
325 rcu_read_lock();
326 chanctx_conf = rcu_dereference(vif->chanctx_conf);
327 WARN_ON(!chanctx_conf);
328 if (chanctx_conf) {
329 chan = chanctx_conf->def.chan;
330 radar_detect = chan->flags & IEEE80211_CHAN_RADAR;
331 }
332 rcu_read_unlock();
333
334 /* Check skip over DTIM conditions */
335 if (!radar_detect && (dtimper <= 10) &&
Alexander Bondaree1e8422013-04-23 13:52:10 +0300336 (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_LP ||
337 mvm->cur_ucode == IWL_UCODE_WOWLAN)) {
Alexander Bondarf4a3e2f2013-03-05 13:47:04 +0200338 cmd->flags |= cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK);
Alexander Bondare811ada2013-03-10 15:29:44 +0200339 cmd->skip_dtim_periods = 3;
Alexander Bondar5b1dbfc2013-04-23 13:32:35 +0300340 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100341
Alexander Bondaree1e8422013-04-23 13:52:10 +0300342 if (mvm->cur_ucode != IWL_UCODE_WOWLAN) {
Johannes Berg99545922013-06-14 13:36:21 +0200343 cmd->rx_data_timeout =
344 cpu_to_le32(IWL_MVM_DEFAULT_PS_RX_DATA_TIMEOUT);
345 cmd->tx_data_timeout =
346 cpu_to_le32(IWL_MVM_DEFAULT_PS_TX_DATA_TIMEOUT);
Alexander Bondaree1e8422013-04-23 13:52:10 +0300347 } else {
Johannes Berg99545922013-06-14 13:36:21 +0200348 cmd->rx_data_timeout =
349 cpu_to_le32(IWL_MVM_WOWLAN_PS_RX_DATA_TIMEOUT);
350 cmd->tx_data_timeout =
351 cpu_to_le32(IWL_MVM_WOWLAN_PS_TX_DATA_TIMEOUT);
Alexander Bondaree1e8422013-04-23 13:52:10 +0300352 }
Alexander Bondarb571a692013-05-21 14:49:09 +0300353
Alexander Bondar51498cf2013-09-02 17:10:14 +0300354 if (!memcmp(mvmvif->uapsd_misbehaving_bssid, vif->bss_conf.bssid,
355 ETH_ALEN))
356 allow_uapsd = false;
Alexander Bondar75209672013-11-12 14:47:59 +0200357
358 if (vif->p2p &&
359 !(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PS_UAPSD))
360 allow_uapsd = false;
Alexander Bondar51498cf2013-09-02 17:10:14 +0300361 /*
362 * Avoid using uAPSD if P2P client is associated to GO that uses
363 * opportunistic power save. This is due to current FW limitation.
364 */
365 if (vif->p2p &&
366 vif->bss_conf.p2p_noa_attr.oppps_ctwindow &
367 IEEE80211_P2P_OPPPS_ENABLE_BIT)
368 allow_uapsd = false;
369
370 if (allow_uapsd)
Alexander Bondar175a70b2013-04-14 20:59:37 +0300371 iwl_mvm_power_configure_uapsd(mvm, vif, cmd);
Alexander Bondare3c588e2013-04-07 14:08:59 +0300372
Alexander Bondarb571a692013-05-21 14:49:09 +0300373#ifdef CONFIG_IWLWIFI_DEBUGFS
374 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_KEEP_ALIVE)
Alexander Bondare811ada2013-03-10 15:29:44 +0200375 cmd->keep_alive_seconds =
376 cpu_to_le16(mvmvif->dbgfs_pm.keep_alive_seconds);
Alexander Bondarb571a692013-05-21 14:49:09 +0300377 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SKIP_OVER_DTIM) {
378 if (mvmvif->dbgfs_pm.skip_over_dtim)
379 cmd->flags |=
380 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK);
381 else
382 cmd->flags &=
383 cpu_to_le16(~POWER_FLAGS_SKIP_OVER_DTIM_MSK);
384 }
385 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_RX_DATA_TIMEOUT)
386 cmd->rx_data_timeout =
387 cpu_to_le32(mvmvif->dbgfs_pm.rx_data_timeout);
388 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_TX_DATA_TIMEOUT)
389 cmd->tx_data_timeout =
390 cpu_to_le32(mvmvif->dbgfs_pm.tx_data_timeout);
391 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SKIP_DTIM_PERIODS)
Alexander Bondare811ada2013-03-10 15:29:44 +0200392 cmd->skip_dtim_periods = mvmvif->dbgfs_pm.skip_dtim_periods;
Alexander Bondarbd4ace22013-03-21 17:14:14 +0200393 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_LPRX_ENA) {
394 if (mvmvif->dbgfs_pm.lprx_ena)
395 cmd->flags |= cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK);
396 else
397 cmd->flags &= cpu_to_le16(~POWER_FLAGS_LPRX_ENA_MSK);
398 }
399 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_LPRX_RSSI_THRESHOLD)
Alexander Bondare811ada2013-03-10 15:29:44 +0200400 cmd->lprx_rssi_threshold = mvmvif->dbgfs_pm.lprx_rssi_threshold;
Alexander Bondar89716342013-08-04 17:52:23 +0300401 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SNOOZE_ENABLE) {
402 if (mvmvif->dbgfs_pm.snooze_ena)
403 cmd->flags |=
404 cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK);
405 else
406 cmd->flags &=
407 cpu_to_le16(~POWER_FLAGS_SNOOZE_ENA_MSK);
408 }
Alexander Bondare45a9412013-12-04 10:13:24 +0200409 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_UAPSD_MISBEHAVING) {
410 u16 flag = POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK;
411 if (mvmvif->dbgfs_pm.uapsd_misbehaving)
412 cmd->flags |= cpu_to_le16(flag);
413 else
414 cmd->flags &= cpu_to_le16(flag);
415 }
Alexander Bondarb571a692013-05-21 14:49:09 +0300416#endif /* CONFIG_IWLWIFI_DEBUGFS */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100417}
418
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200419static int iwl_mvm_power_send_cmd(struct iwl_mvm *mvm,
Alexander Bondare811ada2013-03-10 15:29:44 +0200420 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100421{
Alexander Bondare811ada2013-03-10 15:29:44 +0200422 struct iwl_mac_power_cmd cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100423
Alexander Bondarf4a3e2f2013-03-05 13:47:04 +0200424 iwl_mvm_power_build_cmd(mvm, vif, &cmd);
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200425 iwl_mvm_power_log(mvm, &cmd);
Emmanuel Grumbach474b50c2014-01-28 09:13:04 +0200426#ifdef CONFIG_IWLWIFI_DEBUGFS
427 memcpy(&iwl_mvm_vif_from_mac80211(vif)->mac_pwr_cmd, &cmd, sizeof(cmd));
428#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100429
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200430 return iwl_mvm_send_cmd_pdu(mvm, MAC_PM_POWER_TABLE, CMD_SYNC,
431 sizeof(cmd), &cmd);
432}
433
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200434int iwl_mvm_power_update_device(struct iwl_mvm *mvm)
Alexander Bondar64b928c2013-09-03 14:18:03 +0300435{
436 struct iwl_device_power_cmd cmd = {
437 .flags = cpu_to_le16(DEVICE_POWER_FLAGS_POWER_SAVE_ENA_MSK),
438 };
439
440 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_DEVICE_PS_CMD))
441 return 0;
442
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200443 if (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM)
444 mvm->ps_disabled = true;
445
446 if (mvm->ps_disabled)
Alexander Bondar64b928c2013-09-03 14:18:03 +0300447 cmd.flags |= cpu_to_le16(DEVICE_POWER_FLAGS_CAM_MSK);
448
449#ifdef CONFIG_IWLWIFI_DEBUGFS
450 if ((mvm->cur_ucode == IWL_UCODE_WOWLAN) ? mvm->disable_power_off_d3 :
451 mvm->disable_power_off)
452 cmd.flags &=
453 cpu_to_le16(~DEVICE_POWER_FLAGS_POWER_SAVE_ENA_MSK);
454#endif
455 IWL_DEBUG_POWER(mvm,
456 "Sending device power command with flags = 0x%X\n",
457 cmd.flags);
458
459 return iwl_mvm_send_cmd_pdu(mvm, POWER_TABLE_CMD, CMD_SYNC, sizeof(cmd),
460 &cmd);
461}
462
Alexander Bondar175a70b2013-04-14 20:59:37 +0300463void iwl_mvm_power_vif_assoc(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
464{
465 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
466
467 if (memcmp(vif->bss_conf.bssid, mvmvif->uapsd_misbehaving_bssid,
468 ETH_ALEN))
469 memset(mvmvif->uapsd_misbehaving_bssid, 0, ETH_ALEN);
470}
471
472static void iwl_mvm_power_uapsd_misbehav_ap_iterator(void *_data, u8 *mac,
473 struct ieee80211_vif *vif)
474{
475 u8 *ap_sta_id = _data;
476 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
477
478 /* The ap_sta_id is not expected to change during current association
479 * so no explicit protection is needed
480 */
481 if (mvmvif->ap_sta_id == *ap_sta_id)
482 memcpy(mvmvif->uapsd_misbehaving_bssid, vif->bss_conf.bssid,
483 ETH_ALEN);
484}
485
486int iwl_mvm_power_uapsd_misbehaving_ap_notif(struct iwl_mvm *mvm,
487 struct iwl_rx_cmd_buffer *rxb,
488 struct iwl_device_cmd *cmd)
489{
490 struct iwl_rx_packet *pkt = rxb_addr(rxb);
491 struct iwl_uapsd_misbehaving_ap_notif *notif = (void *)pkt->data;
492 u8 ap_sta_id = le32_to_cpu(notif->sta_id);
493
494 ieee80211_iterate_active_interfaces_atomic(
495 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
496 iwl_mvm_power_uapsd_misbehav_ap_iterator, &ap_sta_id);
497
498 return 0;
499}
500
Avri Altman19889022014-03-19 07:25:06 +0200501struct iwl_power_vifs {
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200502 struct ieee80211_vif *bf_vif;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200503 struct ieee80211_vif *bss_vif;
Avri Altman8ea0c682014-02-20 13:28:57 +0200504 struct ieee80211_vif *p2p_vif;
Avri Altman19889022014-03-19 07:25:06 +0200505 struct ieee80211_vif *ap_vif;
506 struct ieee80211_vif *monitor_vif;
507 bool p2p_active;
508 bool bss_active;
509 bool ap_active;
510 bool monitor_active;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200511};
512
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200513static void iwl_mvm_power_iterator(void *_data, u8 *mac,
514 struct ieee80211_vif *vif)
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300515{
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200516 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Avri Altman19889022014-03-19 07:25:06 +0200517 struct iwl_power_vifs *power_iterator = _data;
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300518
Avri Altman19889022014-03-19 07:25:06 +0200519 mvmvif->pm_enabled = false;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200520 switch (ieee80211_vif_type_p2p(vif)) {
521 case NL80211_IFTYPE_P2P_DEVICE:
522 break;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200523
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200524 case NL80211_IFTYPE_P2P_GO:
525 case NL80211_IFTYPE_AP:
Avri Altman19889022014-03-19 07:25:06 +0200526 /* only a single MAC of the same type */
527 WARN_ON(power_iterator->ap_vif);
528 power_iterator->ap_vif = vif;
529 if (mvmvif->phy_ctxt)
530 if (mvmvif->phy_ctxt->id < MAX_PHYS)
531 power_iterator->ap_active = true;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200532 break;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200533
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200534 case NL80211_IFTYPE_MONITOR:
Avri Altman19889022014-03-19 07:25:06 +0200535 /* only a single MAC of the same type */
536 WARN_ON(power_iterator->monitor_vif);
537 power_iterator->monitor_vif = vif;
538 if (mvmvif->phy_ctxt)
539 if (mvmvif->phy_ctxt->id < MAX_PHYS)
540 power_iterator->monitor_active = true;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200541 break;
542
543 case NL80211_IFTYPE_P2P_CLIENT:
Avri Altman19889022014-03-19 07:25:06 +0200544 /* only a single MAC of the same type */
Avri Altman8ea0c682014-02-20 13:28:57 +0200545 WARN_ON(power_iterator->p2p_vif);
546 power_iterator->p2p_vif = vif;
Avri Altman19889022014-03-19 07:25:06 +0200547 if (mvmvif->phy_ctxt)
548 if (mvmvif->phy_ctxt->id < MAX_PHYS)
549 power_iterator->p2p_active = true;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200550 break;
551
552 case NL80211_IFTYPE_STATION:
Avri Altman19889022014-03-19 07:25:06 +0200553 /* only a single MAC of the same type */
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200554 WARN_ON(power_iterator->bss_vif);
555 power_iterator->bss_vif = vif;
Avri Altman19889022014-03-19 07:25:06 +0200556 if (mvmvif->phy_ctxt)
557 if (mvmvif->phy_ctxt->id < MAX_PHYS)
558 power_iterator->bss_active = true;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200559
560 if (mvmvif->bf_data.bf_enabled &&
561 !WARN_ON(power_iterator->bf_vif))
562 power_iterator->bf_vif = vif;
Alexander Bondar7303dd7f2014-02-03 21:57:28 +0200563
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200564 break;
565
566 default:
567 break;
568 }
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300569}
570
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200571static void
Avri Altman19889022014-03-19 07:25:06 +0200572iwl_mvm_power_set_pm(struct iwl_mvm *mvm,
573 struct iwl_power_vifs *vifs)
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300574{
Avri Altman19889022014-03-19 07:25:06 +0200575 struct iwl_mvm_vif *bss_mvmvif = NULL;
576 struct iwl_mvm_vif *p2p_mvmvif = NULL;
577 struct iwl_mvm_vif *ap_mvmvif = NULL;
578 bool client_same_channel = false;
579 bool ap_same_channel = false;
580
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200581 lockdep_assert_held(&mvm->mutex);
582
Avri Altman19889022014-03-19 07:25:06 +0200583 /* get vifs info + set pm_enable to false */
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200584 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
585 IEEE80211_IFACE_ITER_NORMAL,
Avri Altman19889022014-03-19 07:25:06 +0200586 iwl_mvm_power_iterator, vifs);
587
588 if (vifs->bss_vif)
589 bss_mvmvif = iwl_mvm_vif_from_mac80211(vifs->bss_vif);
590
591 if (vifs->p2p_vif)
592 p2p_mvmvif = iwl_mvm_vif_from_mac80211(vifs->p2p_vif);
593
594 if (vifs->ap_vif)
595 ap_mvmvif = iwl_mvm_vif_from_mac80211(vifs->ap_vif);
596
597 /* enable PM on bss if bss stand alone */
598 if (vifs->bss_active && !vifs->p2p_active && !vifs->ap_active) {
599 bss_mvmvif->pm_enabled = true;
600 return;
601 }
602
603 /* enable PM on p2p if p2p stand alone */
604 if (vifs->p2p_active && !vifs->bss_active && !vifs->ap_active) {
605 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PM)
606 p2p_mvmvif->pm_enabled = true;
607 return;
608 }
609
610 if (vifs->bss_active && vifs->p2p_active)
611 client_same_channel = (bss_mvmvif->phy_ctxt->id ==
612 p2p_mvmvif->phy_ctxt->id);
613 if (vifs->bss_active && vifs->ap_active)
614 ap_same_channel = (bss_mvmvif->phy_ctxt->id ==
615 ap_mvmvif->phy_ctxt->id);
616
617 /* bss is not stand alone: enable PM if alone on its channel */
618 if (vifs->bss_active && !(client_same_channel || ap_same_channel) &&
619 (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BSS_P2P_PS_DCM)) {
620 bss_mvmvif->pm_enabled = true;
621 return;
622 }
623
624 /*
625 * There is only one channel in the system and there are only
626 * bss and p2p clients that share it
627 */
628 if (client_same_channel && !vifs->ap_active &&
629 (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BSS_P2P_PS_SCM)) {
630 /* share same channel*/
631 bss_mvmvif->pm_enabled = true;
632 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PM)
633 p2p_mvmvif->pm_enabled = true;
634 }
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200635}
636
637int iwl_mvm_power_update_mac(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
638{
Avri Altman19889022014-03-19 07:25:06 +0200639 struct iwl_mvm_vif *mvmvif;
640 struct iwl_power_vifs vifs = {};
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200641 bool ba_enable;
642 int ret;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200643
644 lockdep_assert_held(&mvm->mutex);
645
Avri Altman19889022014-03-19 07:25:06 +0200646 iwl_mvm_power_set_pm(mvm, &vifs);
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200647
Avri Altman19889022014-03-19 07:25:06 +0200648 /* disable PS if CAM */
649 if (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM) {
650 mvm->ps_disabled = true;
651 } else {
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200652 /* don't update device power state unless we add / remove monitor */
Avri Altman19889022014-03-19 07:25:06 +0200653 if (vifs.monitor_vif) {
654 if (vifs.monitor_active)
655 mvm->ps_disabled = true;
656 ret = iwl_mvm_power_update_device(mvm);
657 if (ret)
658 return ret;
659 }
660 }
661
662 if (vifs.bss_vif) {
663 ret = iwl_mvm_power_send_cmd(mvm, vifs.bss_vif);
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200664 if (ret)
665 return ret;
Alexander Bondar92d85562013-10-23 11:50:34 +0200666 }
667
Avri Altman19889022014-03-19 07:25:06 +0200668 if (vifs.p2p_vif) {
669 ret = iwl_mvm_power_send_cmd(mvm, vifs.p2p_vif);
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200670 if (ret)
671 return ret;
672 }
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200673
Avri Altman19889022014-03-19 07:25:06 +0200674 if (!vifs.bf_vif)
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200675 return 0;
676
Avri Altman19889022014-03-19 07:25:06 +0200677 vif = vifs.bf_vif;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200678 mvmvif = iwl_mvm_vif_from_mac80211(vif);
679
Avri Altman19889022014-03-19 07:25:06 +0200680 ba_enable = !(!mvmvif->pm_enabled || mvm->ps_disabled ||
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200681 !vif->bss_conf.ps || iwl_mvm_vif_low_latency(mvmvif));
682
Avri Altman19889022014-03-19 07:25:06 +0200683 return iwl_mvm_update_beacon_abort(mvm, vifs.bf_vif, ba_enable);
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300684}
685
Alexander Bondarb571a692013-05-21 14:49:09 +0300686#ifdef CONFIG_IWLWIFI_DEBUGFS
Emmanuel Grumbachc1cb92f2014-01-28 10:17:18 +0200687int iwl_mvm_power_mac_dbgfs_read(struct iwl_mvm *mvm,
688 struct ieee80211_vif *vif, char *buf,
689 int bufsz)
Alexander Bondare811ada2013-03-10 15:29:44 +0200690{
Emmanuel Grumbach474b50c2014-01-28 09:13:04 +0200691 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Alexander Bondare811ada2013-03-10 15:29:44 +0200692 struct iwl_mac_power_cmd cmd = {};
693 int pos = 0;
694
Emmanuel Grumbach474b50c2014-01-28 09:13:04 +0200695 mutex_lock(&mvm->mutex);
696 memcpy(&cmd, &mvmvif->mac_pwr_cmd, sizeof(cmd));
697 mutex_unlock(&mvm->mutex);
Alexander Bondare811ada2013-03-10 15:29:44 +0200698
Alexander Bondar64b928c2013-09-03 14:18:03 +0300699 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_DEVICE_PS_CMD))
700 pos += scnprintf(buf+pos, bufsz-pos, "disable_power_off = %d\n",
701 (cmd.flags &
702 cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK)) ?
703 0 : 1);
Alexander Bondare811ada2013-03-10 15:29:44 +0200704 pos += scnprintf(buf+pos, bufsz-pos, "power_scheme = %d\n",
705 iwlmvm_mod_params.power_scheme);
706 pos += scnprintf(buf+pos, bufsz-pos, "flags = 0x%x\n",
707 le16_to_cpu(cmd.flags));
708 pos += scnprintf(buf+pos, bufsz-pos, "keep_alive = %d\n",
709 le16_to_cpu(cmd.keep_alive_seconds));
710
Alexander Bondar175a70b2013-04-14 20:59:37 +0300711 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK)))
712 return pos;
713
714 pos += scnprintf(buf+pos, bufsz-pos, "skip_over_dtim = %d\n",
715 (cmd.flags &
716 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK)) ? 1 : 0);
717 pos += scnprintf(buf+pos, bufsz-pos, "skip_dtim_periods = %d\n",
718 cmd.skip_dtim_periods);
719 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK))) {
720 pos += scnprintf(buf+pos, bufsz-pos, "rx_data_timeout = %d\n",
721 le32_to_cpu(cmd.rx_data_timeout));
722 pos += scnprintf(buf+pos, bufsz-pos, "tx_data_timeout = %d\n",
723 le32_to_cpu(cmd.tx_data_timeout));
Alexander Bondare811ada2013-03-10 15:29:44 +0200724 }
Alexander Bondar175a70b2013-04-14 20:59:37 +0300725 if (cmd.flags & cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK))
726 pos += scnprintf(buf+pos, bufsz-pos,
727 "lprx_rssi_threshold = %d\n",
728 cmd.lprx_rssi_threshold);
729
730 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK)))
731 return pos;
732
733 pos += scnprintf(buf+pos, bufsz-pos, "rx_data_timeout_uapsd = %d\n",
734 le32_to_cpu(cmd.rx_data_timeout_uapsd));
735 pos += scnprintf(buf+pos, bufsz-pos, "tx_data_timeout_uapsd = %d\n",
736 le32_to_cpu(cmd.tx_data_timeout_uapsd));
737 pos += scnprintf(buf+pos, bufsz-pos, "qndp_tid = %d\n", cmd.qndp_tid);
738 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_ac_flags = 0x%x\n",
739 cmd.uapsd_ac_flags);
740 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_max_sp = %d\n",
741 cmd.uapsd_max_sp);
742 pos += scnprintf(buf+pos, bufsz-pos, "heavy_tx_thld_packets = %d\n",
743 cmd.heavy_tx_thld_packets);
744 pos += scnprintf(buf+pos, bufsz-pos, "heavy_rx_thld_packets = %d\n",
745 cmd.heavy_rx_thld_packets);
746 pos += scnprintf(buf+pos, bufsz-pos, "heavy_tx_thld_percentage = %d\n",
747 cmd.heavy_tx_thld_percentage);
748 pos += scnprintf(buf+pos, bufsz-pos, "heavy_rx_thld_percentage = %d\n",
749 cmd.heavy_rx_thld_percentage);
750 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_misbehaving_enable = %d\n",
751 (cmd.flags &
752 cpu_to_le16(POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK)) ?
753 1 : 0);
754
755 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK)))
756 return pos;
757
758 pos += scnprintf(buf+pos, bufsz-pos, "snooze_interval = %d\n",
759 cmd.snooze_interval);
760 pos += scnprintf(buf+pos, bufsz-pos, "snooze_window = %d\n",
761 cmd.snooze_window);
762
Alexander Bondare811ada2013-03-10 15:29:44 +0200763 return pos;
764}
765
Alexander Bondarb571a692013-05-21 14:49:09 +0300766void
767iwl_mvm_beacon_filter_debugfs_parameters(struct ieee80211_vif *vif,
768 struct iwl_beacon_filter_cmd *cmd)
769{
770 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
771 struct iwl_dbgfs_bf *dbgfs_bf = &mvmvif->dbgfs_bf;
772
773 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ENERGY_DELTA)
Hila Gonen5dca7c22013-07-16 11:15:35 +0300774 cmd->bf_energy_delta = cpu_to_le32(dbgfs_bf->bf_energy_delta);
Alexander Bondarb571a692013-05-21 14:49:09 +0300775 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ROAMING_ENERGY_DELTA)
776 cmd->bf_roaming_energy_delta =
Hila Gonen5dca7c22013-07-16 11:15:35 +0300777 cpu_to_le32(dbgfs_bf->bf_roaming_energy_delta);
Alexander Bondarb571a692013-05-21 14:49:09 +0300778 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ROAMING_STATE)
Hila Gonen5dca7c22013-07-16 11:15:35 +0300779 cmd->bf_roaming_state = cpu_to_le32(dbgfs_bf->bf_roaming_state);
780 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_THRESHOLD)
781 cmd->bf_temp_threshold =
782 cpu_to_le32(dbgfs_bf->bf_temp_threshold);
783 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_FAST_FILTER)
784 cmd->bf_temp_fast_filter =
785 cpu_to_le32(dbgfs_bf->bf_temp_fast_filter);
786 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_SLOW_FILTER)
787 cmd->bf_temp_slow_filter =
788 cpu_to_le32(dbgfs_bf->bf_temp_slow_filter);
Alexander Bondarb571a692013-05-21 14:49:09 +0300789 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_DEBUG_FLAG)
Hila Gonen5dca7c22013-07-16 11:15:35 +0300790 cmd->bf_debug_flag = cpu_to_le32(dbgfs_bf->bf_debug_flag);
Alexander Bondarb571a692013-05-21 14:49:09 +0300791 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ESCAPE_TIMER)
792 cmd->bf_escape_timer = cpu_to_le32(dbgfs_bf->bf_escape_timer);
793 if (dbgfs_bf->mask & MVM_DEBUGFS_BA_ESCAPE_TIMER)
794 cmd->ba_escape_timer = cpu_to_le32(dbgfs_bf->ba_escape_timer);
795 if (dbgfs_bf->mask & MVM_DEBUGFS_BA_ENABLE_BEACON_ABORT)
Hila Gonen5dca7c22013-07-16 11:15:35 +0300796 cmd->ba_enable_beacon_abort =
797 cpu_to_le32(dbgfs_bf->ba_enable_beacon_abort);
Alexander Bondarb571a692013-05-21 14:49:09 +0300798}
799#endif
800
Eliad Peller3dd37d02014-01-07 14:00:24 +0200801static int _iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm,
802 struct ieee80211_vif *vif,
803 struct iwl_beacon_filter_cmd *cmd,
804 u32 cmd_flags,
805 bool d0i3)
Hila Gonen7df15b12012-12-12 11:16:19 +0200806{
807 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Alexander Bondar071d49902013-05-06 13:03:59 +0300808 int ret;
Hila Gonen7df15b12012-12-12 11:16:19 +0200809
810 if (mvmvif != mvm->bf_allowed_vif ||
811 vif->type != NL80211_IFTYPE_STATION || vif->p2p)
812 return 0;
813
Eliad Peller3dd37d02014-01-07 14:00:24 +0200814 iwl_mvm_beacon_filter_set_cqm_params(mvm, vif, cmd);
815 if (!d0i3)
816 iwl_mvm_beacon_filter_debugfs_parameters(vif, cmd);
817 ret = iwl_mvm_beacon_filter_send_cmd(mvm, cmd, cmd_flags);
Alexander Bondar071d49902013-05-06 13:03:59 +0300818
Eliad Peller3dd37d02014-01-07 14:00:24 +0200819 /* don't change bf_enabled in case of temporary d0i3 configuration */
820 if (!ret && !d0i3)
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300821 mvmvif->bf_data.bf_enabled = true;
Alexander Bondar071d49902013-05-06 13:03:59 +0300822
823 return ret;
Hila Gonen7df15b12012-12-12 11:16:19 +0200824}
825
Eliad Peller3dd37d02014-01-07 14:00:24 +0200826int iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm,
827 struct ieee80211_vif *vif,
828 u32 flags)
829{
830 struct iwl_beacon_filter_cmd cmd = {
831 IWL_BF_CMD_CONFIG_DEFAULTS,
832 .bf_enable_beacon_filter = cpu_to_le32(1),
833 };
834
835 return _iwl_mvm_enable_beacon_filter(mvm, vif, &cmd, flags, false);
836}
837
Hila Gonen7df15b12012-12-12 11:16:19 +0200838int iwl_mvm_disable_beacon_filter(struct iwl_mvm *mvm,
Eliad Peller3dd37d02014-01-07 14:00:24 +0200839 struct ieee80211_vif *vif,
840 u32 flags)
Hila Gonen7df15b12012-12-12 11:16:19 +0200841{
Alexander Bondar071d49902013-05-06 13:03:59 +0300842 struct iwl_beacon_filter_cmd cmd = {};
843 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
844 int ret;
Hila Gonen7df15b12012-12-12 11:16:19 +0200845
Emmanuel Grumbach73e5f2c2014-03-30 08:57:30 +0300846 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
Hila Gonen7df15b12012-12-12 11:16:19 +0200847 return 0;
848
Eliad Peller3dd37d02014-01-07 14:00:24 +0200849 ret = iwl_mvm_beacon_filter_send_cmd(mvm, &cmd, flags);
Alexander Bondar071d49902013-05-06 13:03:59 +0300850
851 if (!ret)
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300852 mvmvif->bf_data.bf_enabled = false;
Alexander Bondar071d49902013-05-06 13:03:59 +0300853
854 return ret;
Hila Gonen7df15b12012-12-12 11:16:19 +0200855}
Alexander Bondare811ada2013-03-10 15:29:44 +0200856
Eliad Peller3dd37d02014-01-07 14:00:24 +0200857int iwl_mvm_update_d0i3_power_mode(struct iwl_mvm *mvm,
858 struct ieee80211_vif *vif,
859 bool enable, u32 flags)
860{
861 int ret;
862 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
863 struct iwl_mac_power_cmd cmd = {};
864
865 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
866 return 0;
867
868 if (!vif->bss_conf.assoc)
869 return 0;
870
871 iwl_mvm_power_build_cmd(mvm, vif, &cmd);
872 if (enable) {
873 /* configure skip over dtim up to 300 msec */
874 int dtimper = mvm->hw->conf.ps_dtim_period ?: 1;
875 int dtimper_msec = dtimper * vif->bss_conf.beacon_int;
876
877 if (WARN_ON(!dtimper_msec))
878 return 0;
879
880 cmd.flags |=
881 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK);
882 cmd.skip_dtim_periods = 300 / dtimper_msec;
883 }
884 iwl_mvm_power_log(mvm, &cmd);
Emmanuel Grumbach474b50c2014-01-28 09:13:04 +0200885#ifdef CONFIG_IWLWIFI_DEBUGFS
886 memcpy(&mvmvif->mac_pwr_cmd, &cmd, sizeof(cmd));
887#endif
Eliad Peller3dd37d02014-01-07 14:00:24 +0200888 ret = iwl_mvm_send_cmd_pdu(mvm, MAC_PM_POWER_TABLE, flags,
889 sizeof(cmd), &cmd);
890 if (ret)
891 return ret;
892
893 /* configure beacon filtering */
894 if (mvmvif != mvm->bf_allowed_vif)
895 return 0;
896
897 if (enable) {
898 struct iwl_beacon_filter_cmd cmd_bf = {
899 IWL_BF_CMD_CONFIG_D0I3,
900 .bf_enable_beacon_filter = cpu_to_le32(1),
901 };
902 ret = _iwl_mvm_enable_beacon_filter(mvm, vif, &cmd_bf,
903 flags, true);
904 } else {
905 if (mvmvif->bf_data.bf_enabled)
906 ret = iwl_mvm_enable_beacon_filter(mvm, vif, flags);
907 else
908 ret = iwl_mvm_disable_beacon_filter(mvm, vif, flags);
909 }
910
911 return ret;
912}
913
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300914int iwl_mvm_update_beacon_filter(struct iwl_mvm *mvm,
Eliad Peller3dd37d02014-01-07 14:00:24 +0200915 struct ieee80211_vif *vif,
916 bool force,
917 u32 flags)
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300918{
919 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
920
Eliad Peller3dd37d02014-01-07 14:00:24 +0200921 if (mvmvif != mvm->bf_allowed_vif)
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300922 return 0;
923
Eliad Peller3dd37d02014-01-07 14:00:24 +0200924 if (!mvmvif->bf_data.bf_enabled) {
925 /* disable beacon filtering explicitly if force is true */
926 if (force)
927 return iwl_mvm_disable_beacon_filter(mvm, vif, flags);
928 return 0;
929 }
930
931 return iwl_mvm_enable_beacon_filter(mvm, vif, flags);
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300932}