blob: 4645877882a6af6ee51a87838f9f3b57e3ab0054 [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 Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020035 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
64 *****************************************************************************/
65
66#include <linux/kernel.h>
67#include <linux/module.h>
68#include <linux/slab.h>
Joe Perches93803b32015-03-02 19:54:49 -080069#include <linux/etherdevice.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010070
71#include <net/mac80211.h>
72
73#include "iwl-debug.h"
74#include "mvm.h"
75#include "iwl-modparams.h"
76#include "fw-api-power.h"
77
78#define POWER_KEEP_ALIVE_PERIOD_SEC 25
79
Emmanuel Grumbachd623d242014-01-26 12:58:24 +020080static
Alexander Bondare811ada2013-03-10 15:29:44 +020081int iwl_mvm_beacon_filter_send_cmd(struct iwl_mvm *mvm,
Eliad Peller3dd37d02014-01-07 14:00:24 +020082 struct iwl_beacon_filter_cmd *cmd,
83 u32 flags)
Alexander Bondar071d49902013-05-06 13:03:59 +030084{
Emmanuel Grumbachd623d242014-01-26 12:58:24 +020085 IWL_DEBUG_POWER(mvm, "ba_enable_beacon_abort is: %d\n",
86 le32_to_cpu(cmd->ba_enable_beacon_abort));
87 IWL_DEBUG_POWER(mvm, "ba_escape_timer is: %d\n",
88 le32_to_cpu(cmd->ba_escape_timer));
89 IWL_DEBUG_POWER(mvm, "bf_debug_flag is: %d\n",
90 le32_to_cpu(cmd->bf_debug_flag));
91 IWL_DEBUG_POWER(mvm, "bf_enable_beacon_filter is: %d\n",
92 le32_to_cpu(cmd->bf_enable_beacon_filter));
93 IWL_DEBUG_POWER(mvm, "bf_energy_delta is: %d\n",
94 le32_to_cpu(cmd->bf_energy_delta));
95 IWL_DEBUG_POWER(mvm, "bf_escape_timer is: %d\n",
96 le32_to_cpu(cmd->bf_escape_timer));
97 IWL_DEBUG_POWER(mvm, "bf_roaming_energy_delta is: %d\n",
98 le32_to_cpu(cmd->bf_roaming_energy_delta));
99 IWL_DEBUG_POWER(mvm, "bf_roaming_state is: %d\n",
100 le32_to_cpu(cmd->bf_roaming_state));
101 IWL_DEBUG_POWER(mvm, "bf_temp_threshold is: %d\n",
102 le32_to_cpu(cmd->bf_temp_threshold));
103 IWL_DEBUG_POWER(mvm, "bf_temp_fast_filter is: %d\n",
104 le32_to_cpu(cmd->bf_temp_fast_filter));
105 IWL_DEBUG_POWER(mvm, "bf_temp_slow_filter is: %d\n",
106 le32_to_cpu(cmd->bf_temp_slow_filter));
Alexander Bondar071d49902013-05-06 13:03:59 +0300107
Emmanuel Grumbachd623d242014-01-26 12:58:24 +0200108 return iwl_mvm_send_cmd_pdu(mvm, REPLY_BEACON_FILTERING_CMD, flags,
109 sizeof(struct iwl_beacon_filter_cmd), cmd);
Alexander Bondar071d49902013-05-06 13:03:59 +0300110}
111
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300112static
113void iwl_mvm_beacon_filter_set_cqm_params(struct iwl_mvm *mvm,
114 struct ieee80211_vif *vif,
Gregory Greenmancdc306b2015-07-20 12:55:34 +0300115 struct iwl_beacon_filter_cmd *cmd,
116 bool d0i3)
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300117{
118 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
119
Gregory Greenmancdc306b2015-07-20 12:55:34 +0300120 if (vif->bss_conf.cqm_rssi_thold && !d0i3) {
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300121 cmd->bf_energy_delta =
122 cpu_to_le32(vif->bss_conf.cqm_rssi_hyst);
123 /* fw uses an absolute value for this */
124 cmd->bf_roaming_state =
125 cpu_to_le32(-vif->bss_conf.cqm_rssi_thold);
126 }
127 cmd->ba_enable_beacon_abort = cpu_to_le32(mvmvif->bf_data.ba_enabled);
128}
129
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200130static void iwl_mvm_power_log(struct iwl_mvm *mvm,
Alexander Bondare811ada2013-03-10 15:29:44 +0200131 struct iwl_mac_power_cmd *cmd)
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200132{
133 IWL_DEBUG_POWER(mvm,
Alexander Bondare811ada2013-03-10 15:29:44 +0200134 "Sending power table command on mac id 0x%X for power level %d, flags = 0x%X\n",
135 cmd->id_and_color, iwlmvm_mod_params.power_scheme,
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200136 le16_to_cpu(cmd->flags));
Alexander Bondare811ada2013-03-10 15:29:44 +0200137 IWL_DEBUG_POWER(mvm, "Keep alive = %u sec\n",
138 le16_to_cpu(cmd->keep_alive_seconds));
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200139
Alexander Bondare3c588e2013-04-07 14:08:59 +0300140 if (!(cmd->flags & cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK))) {
141 IWL_DEBUG_POWER(mvm, "Disable power management\n");
142 return;
143 }
144
145 IWL_DEBUG_POWER(mvm, "Rx timeout = %u usec\n",
146 le32_to_cpu(cmd->rx_data_timeout));
147 IWL_DEBUG_POWER(mvm, "Tx timeout = %u usec\n",
148 le32_to_cpu(cmd->tx_data_timeout));
149 if (cmd->flags & cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK))
150 IWL_DEBUG_POWER(mvm, "DTIM periods to skip = %u\n",
151 cmd->skip_dtim_periods);
152 if (cmd->flags & cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK))
153 IWL_DEBUG_POWER(mvm, "LP RX RSSI threshold = %u\n",
154 cmd->lprx_rssi_threshold);
155 if (cmd->flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK)) {
156 IWL_DEBUG_POWER(mvm, "uAPSD enabled\n");
157 IWL_DEBUG_POWER(mvm, "Rx timeout (uAPSD) = %u usec\n",
158 le32_to_cpu(cmd->rx_data_timeout_uapsd));
159 IWL_DEBUG_POWER(mvm, "Tx timeout (uAPSD) = %u usec\n",
160 le32_to_cpu(cmd->tx_data_timeout_uapsd));
161 IWL_DEBUG_POWER(mvm, "QNDP TID = %d\n", cmd->qndp_tid);
162 IWL_DEBUG_POWER(mvm, "ACs flags = 0x%x\n", cmd->uapsd_ac_flags);
163 IWL_DEBUG_POWER(mvm, "Max SP = %d\n", cmd->uapsd_max_sp);
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200164 }
165}
166
Alexander Bondar175a70b2013-04-14 20:59:37 +0300167static void iwl_mvm_power_configure_uapsd(struct iwl_mvm *mvm,
168 struct ieee80211_vif *vif,
169 struct iwl_mac_power_cmd *cmd)
170{
171 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
172 enum ieee80211_ac_numbers ac;
173 bool tid_found = false;
174
175 for (ac = IEEE80211_AC_VO; ac <= IEEE80211_AC_BK; ac++) {
176 if (!mvmvif->queue_params[ac].uapsd)
177 continue;
178
179 if (mvm->cur_ucode != IWL_UCODE_WOWLAN)
180 cmd->flags |=
181 cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK);
182
183 cmd->uapsd_ac_flags |= BIT(ac);
184
185 /* QNDP TID - the highest TID with no admission control */
186 if (!tid_found && !mvmvif->queue_params[ac].acm) {
187 tid_found = true;
188 switch (ac) {
189 case IEEE80211_AC_VO:
190 cmd->qndp_tid = 6;
191 break;
192 case IEEE80211_AC_VI:
193 cmd->qndp_tid = 5;
194 break;
195 case IEEE80211_AC_BE:
196 cmd->qndp_tid = 0;
197 break;
198 case IEEE80211_AC_BK:
199 cmd->qndp_tid = 1;
200 break;
201 }
202 }
203 }
204
Eliad Peller84fd7602014-07-30 15:42:19 +0300205 if (!(cmd->flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK))) {
206#ifdef CONFIG_IWLWIFI_DEBUGFS
207 /* set advanced pm flag with no uapsd ACs to enable ps-poll */
208 if (mvmvif->dbgfs_pm.use_ps_poll)
209 cmd->flags |=
210 cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK);
211#endif
Alexander Bondar175a70b2013-04-14 20:59:37 +0300212 return;
Eliad Peller84fd7602014-07-30 15:42:19 +0300213 }
Alexander Bondar175a70b2013-04-14 20:59:37 +0300214
215 cmd->flags |= cpu_to_le16(POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK);
216
217 if (cmd->uapsd_ac_flags == (BIT(IEEE80211_AC_VO) |
218 BIT(IEEE80211_AC_VI) |
219 BIT(IEEE80211_AC_BE) |
220 BIT(IEEE80211_AC_BK))) {
221 cmd->flags |= cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK);
222 cmd->snooze_interval = cpu_to_le16(IWL_MVM_PS_SNOOZE_INTERVAL);
223 cmd->snooze_window = (mvm->cur_ucode == IWL_UCODE_WOWLAN) ?
224 cpu_to_le16(IWL_MVM_WOWLAN_PS_SNOOZE_WINDOW) :
225 cpu_to_le16(IWL_MVM_PS_SNOOZE_WINDOW);
226 }
227
228 cmd->uapsd_max_sp = IWL_UAPSD_MAX_SP;
229
230 if (mvm->cur_ucode == IWL_UCODE_WOWLAN || cmd->flags &
231 cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK)) {
232 cmd->rx_data_timeout_uapsd =
233 cpu_to_le32(IWL_MVM_WOWLAN_PS_RX_DATA_TIMEOUT);
234 cmd->tx_data_timeout_uapsd =
235 cpu_to_le32(IWL_MVM_WOWLAN_PS_TX_DATA_TIMEOUT);
236 } else {
237 cmd->rx_data_timeout_uapsd =
238 cpu_to_le32(IWL_MVM_UAPSD_RX_DATA_TIMEOUT);
239 cmd->tx_data_timeout_uapsd =
240 cpu_to_le32(IWL_MVM_UAPSD_TX_DATA_TIMEOUT);
241 }
242
243 if (cmd->flags & cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK)) {
244 cmd->heavy_tx_thld_packets =
245 IWL_MVM_PS_SNOOZE_HEAVY_TX_THLD_PACKETS;
246 cmd->heavy_rx_thld_packets =
247 IWL_MVM_PS_SNOOZE_HEAVY_RX_THLD_PACKETS;
248 } else {
249 cmd->heavy_tx_thld_packets =
250 IWL_MVM_PS_HEAVY_TX_THLD_PACKETS;
251 cmd->heavy_rx_thld_packets =
252 IWL_MVM_PS_HEAVY_RX_THLD_PACKETS;
253 }
254 cmd->heavy_tx_thld_percentage =
255 IWL_MVM_PS_HEAVY_TX_THLD_PERCENT;
256 cmd->heavy_rx_thld_percentage =
257 IWL_MVM_PS_HEAVY_RX_THLD_PERCENT;
258}
259
Avri Altmanc6e37a62014-04-01 12:08:13 +0300260static bool iwl_mvm_power_allow_uapsd(struct iwl_mvm *mvm,
261 struct ieee80211_vif *vif)
262{
263 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
264
265 if (!memcmp(mvmvif->uapsd_misbehaving_bssid, vif->bss_conf.bssid,
266 ETH_ALEN))
267 return false;
268
269 if (vif->p2p &&
270 !(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PS_UAPSD))
271 return false;
272 /*
273 * Avoid using uAPSD if P2P client is associated to GO that uses
274 * opportunistic power save. This is due to current FW limitation.
275 */
276 if (vif->p2p &&
277 (vif->bss_conf.p2p_noa_attr.oppps_ctwindow &
278 IEEE80211_P2P_OPPPS_ENABLE_BIT))
279 return false;
280
Avri Altman05345282014-05-08 10:06:01 +0300281 /*
282 * Avoid using uAPSD if client is in DCM -
283 * low latency issue in Miracast
284 */
Arik Nemtsovcf7b4912014-05-15 11:44:40 +0300285 if (iwl_mvm_phy_ctx_count(mvm) >= 2)
Avri Altman05345282014-05-08 10:06:01 +0300286 return false;
287
Avri Altmanc6e37a62014-04-01 12:08:13 +0300288 return true;
289}
290
Avri Altman49c6d802014-08-27 19:58:56 +0300291static bool iwl_mvm_power_is_radar(struct ieee80211_vif *vif)
292{
293 struct ieee80211_chanctx_conf *chanctx_conf;
294 struct ieee80211_channel *chan;
295 bool radar_detect = false;
296
297 rcu_read_lock();
298 chanctx_conf = rcu_dereference(vif->chanctx_conf);
299 WARN_ON(!chanctx_conf);
300 if (chanctx_conf) {
301 chan = chanctx_conf->def.chan;
302 radar_detect = chan->flags & IEEE80211_CHAN_RADAR;
303 }
304 rcu_read_unlock();
305
306 return radar_detect;
307}
308
Alexander Bondare811ada2013-03-10 15:29:44 +0200309static void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm,
310 struct ieee80211_vif *vif,
311 struct iwl_mac_power_cmd *cmd)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100312{
Avri Altman5387b342014-11-11 07:29:59 +0200313 int dtimper, bi;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100314 int keep_alive;
315 bool radar_detect = false;
Alexander Bondarb571a692013-05-21 14:49:09 +0300316 struct iwl_mvm_vif *mvmvif __maybe_unused =
317 iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100318
Alexander Bondare811ada2013-03-10 15:29:44 +0200319 cmd->id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
320 mvmvif->color));
Emmanuel Grumbach717e2392014-07-31 14:39:40 +0300321 dtimper = vif->bss_conf.dtim_period;
Avri Altman886ca9f2014-10-02 19:46:16 +0200322 bi = vif->bss_conf.beacon_int;
Alexander Bondare811ada2013-03-10 15:29:44 +0200323
Alexander Bondare16cf7e2013-03-05 14:01:27 +0200324 /*
325 * Regardless of power management state the driver must set
326 * keep alive period. FW will use it for sending keep alive NDPs
Alexander Bondare811ada2013-03-10 15:29:44 +0200327 * immediately after association. Check that keep alive period
328 * is at least 3 * DTIM
Alexander Bondare16cf7e2013-03-05 14:01:27 +0200329 */
Avri Altman5387b342014-11-11 07:29:59 +0200330 keep_alive = DIV_ROUND_UP(ieee80211_tu_to_usec(3 * dtimper * bi),
331 USEC_PER_SEC);
332 keep_alive = max(keep_alive, POWER_KEEP_ALIVE_PERIOD_SEC);
Alexander Bondare811ada2013-03-10 15:29:44 +0200333 cmd->keep_alive_seconds = cpu_to_le16(keep_alive);
Alexander Bondare16cf7e2013-03-05 14:01:27 +0200334
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200335 if (mvm->ps_disabled)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100336 return;
337
Alexander Bondar9a613042013-03-05 12:54:00 +0200338 cmd->flags |= cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK);
339
Avri Altman3c22a0e2015-08-05 23:07:42 +0300340 if (!vif->bss_conf.ps || !mvmvif->pm_enabled ||
341 (iwl_mvm_vif_low_latency(mvmvif) && vif->p2p))
Alexander Bondar9a613042013-03-05 12:54:00 +0200342 return;
343
344 cmd->flags |= cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100345
Alexander Bondarbd4ace22013-03-21 17:14:14 +0200346 if (vif->bss_conf.beacon_rate &&
347 (vif->bss_conf.beacon_rate->bitrate == 10 ||
348 vif->bss_conf.beacon_rate->bitrate == 60)) {
349 cmd->flags |= cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK);
Alexander Bondare811ada2013-03-10 15:29:44 +0200350 cmd->lprx_rssi_threshold = POWER_LPRX_RSSI_THRESHOLD;
Alexander Bondarbd4ace22013-03-21 17:14:14 +0200351 }
352
Johannes Berg8ca151b2013-01-24 14:25:36 +0100353 /* Check if radar detection is required on current channel */
Avri Altman49c6d802014-08-27 19:58:56 +0300354 radar_detect = iwl_mvm_power_is_radar(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100355
356 /* Check skip over DTIM conditions */
Avri Altman886ca9f2014-10-02 19:46:16 +0200357 if (!radar_detect && (dtimper < 10) &&
Alexander Bondaree1e8422013-04-23 13:52:10 +0300358 (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_LP ||
359 mvm->cur_ucode == IWL_UCODE_WOWLAN)) {
Avri Altmanbe681c72015-06-18 06:39:41 +0300360 cmd->flags |= cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK);
361 cmd->skip_dtim_periods = 3;
Alexander Bondar5b1dbfc2013-04-23 13:32:35 +0300362 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100363
Alexander Bondaree1e8422013-04-23 13:52:10 +0300364 if (mvm->cur_ucode != IWL_UCODE_WOWLAN) {
Johannes Berg99545922013-06-14 13:36:21 +0200365 cmd->rx_data_timeout =
366 cpu_to_le32(IWL_MVM_DEFAULT_PS_RX_DATA_TIMEOUT);
367 cmd->tx_data_timeout =
368 cpu_to_le32(IWL_MVM_DEFAULT_PS_TX_DATA_TIMEOUT);
Alexander Bondaree1e8422013-04-23 13:52:10 +0300369 } else {
Johannes Berg99545922013-06-14 13:36:21 +0200370 cmd->rx_data_timeout =
371 cpu_to_le32(IWL_MVM_WOWLAN_PS_RX_DATA_TIMEOUT);
372 cmd->tx_data_timeout =
373 cpu_to_le32(IWL_MVM_WOWLAN_PS_TX_DATA_TIMEOUT);
Alexander Bondaree1e8422013-04-23 13:52:10 +0300374 }
Alexander Bondarb571a692013-05-21 14:49:09 +0300375
Avri Altmanc6e37a62014-04-01 12:08:13 +0300376 if (iwl_mvm_power_allow_uapsd(mvm, vif))
Alexander Bondar175a70b2013-04-14 20:59:37 +0300377 iwl_mvm_power_configure_uapsd(mvm, vif, cmd);
Alexander Bondare3c588e2013-04-07 14:08:59 +0300378
Alexander Bondarb571a692013-05-21 14:49:09 +0300379#ifdef CONFIG_IWLWIFI_DEBUGFS
380 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_KEEP_ALIVE)
Alexander Bondare811ada2013-03-10 15:29:44 +0200381 cmd->keep_alive_seconds =
382 cpu_to_le16(mvmvif->dbgfs_pm.keep_alive_seconds);
Alexander Bondarb571a692013-05-21 14:49:09 +0300383 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SKIP_OVER_DTIM) {
384 if (mvmvif->dbgfs_pm.skip_over_dtim)
385 cmd->flags |=
386 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK);
387 else
388 cmd->flags &=
389 cpu_to_le16(~POWER_FLAGS_SKIP_OVER_DTIM_MSK);
390 }
391 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_RX_DATA_TIMEOUT)
392 cmd->rx_data_timeout =
393 cpu_to_le32(mvmvif->dbgfs_pm.rx_data_timeout);
394 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_TX_DATA_TIMEOUT)
395 cmd->tx_data_timeout =
396 cpu_to_le32(mvmvif->dbgfs_pm.tx_data_timeout);
397 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SKIP_DTIM_PERIODS)
Alexander Bondare811ada2013-03-10 15:29:44 +0200398 cmd->skip_dtim_periods = mvmvif->dbgfs_pm.skip_dtim_periods;
Alexander Bondarbd4ace22013-03-21 17:14:14 +0200399 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_LPRX_ENA) {
400 if (mvmvif->dbgfs_pm.lprx_ena)
401 cmd->flags |= cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK);
402 else
403 cmd->flags &= cpu_to_le16(~POWER_FLAGS_LPRX_ENA_MSK);
404 }
405 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_LPRX_RSSI_THRESHOLD)
Alexander Bondare811ada2013-03-10 15:29:44 +0200406 cmd->lprx_rssi_threshold = mvmvif->dbgfs_pm.lprx_rssi_threshold;
Alexander Bondar89716342013-08-04 17:52:23 +0300407 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SNOOZE_ENABLE) {
408 if (mvmvif->dbgfs_pm.snooze_ena)
409 cmd->flags |=
410 cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK);
411 else
412 cmd->flags &=
413 cpu_to_le16(~POWER_FLAGS_SNOOZE_ENA_MSK);
414 }
Alexander Bondare45a9412013-12-04 10:13:24 +0200415 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_UAPSD_MISBEHAVING) {
416 u16 flag = POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK;
417 if (mvmvif->dbgfs_pm.uapsd_misbehaving)
418 cmd->flags |= cpu_to_le16(flag);
419 else
420 cmd->flags &= cpu_to_le16(flag);
421 }
Alexander Bondarb571a692013-05-21 14:49:09 +0300422#endif /* CONFIG_IWLWIFI_DEBUGFS */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100423}
424
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200425static int iwl_mvm_power_send_cmd(struct iwl_mvm *mvm,
Alexander Bondare811ada2013-03-10 15:29:44 +0200426 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100427{
Alexander Bondare811ada2013-03-10 15:29:44 +0200428 struct iwl_mac_power_cmd cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100429
Alexander Bondarf4a3e2f2013-03-05 13:47:04 +0200430 iwl_mvm_power_build_cmd(mvm, vif, &cmd);
Alexander Bondar3f0b2b32013-03-05 14:08:23 +0200431 iwl_mvm_power_log(mvm, &cmd);
Emmanuel Grumbach474b50c2014-01-28 09:13:04 +0200432#ifdef CONFIG_IWLWIFI_DEBUGFS
433 memcpy(&iwl_mvm_vif_from_mac80211(vif)->mac_pwr_cmd, &cmd, sizeof(cmd));
434#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100435
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300436 return iwl_mvm_send_cmd_pdu(mvm, MAC_PM_POWER_TABLE, 0,
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200437 sizeof(cmd), &cmd);
438}
439
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200440int iwl_mvm_power_update_device(struct iwl_mvm *mvm)
Alexander Bondar64b928c2013-09-03 14:18:03 +0300441{
442 struct iwl_device_power_cmd cmd = {
443 .flags = cpu_to_le16(DEVICE_POWER_FLAGS_POWER_SAVE_ENA_MSK),
444 };
445
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200446 if (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM)
447 mvm->ps_disabled = true;
448
449 if (mvm->ps_disabled)
Alexander Bondar64b928c2013-09-03 14:18:03 +0300450 cmd.flags |= cpu_to_le16(DEVICE_POWER_FLAGS_CAM_MSK);
451
452#ifdef CONFIG_IWLWIFI_DEBUGFS
453 if ((mvm->cur_ucode == IWL_UCODE_WOWLAN) ? mvm->disable_power_off_d3 :
454 mvm->disable_power_off)
455 cmd.flags &=
456 cpu_to_le16(~DEVICE_POWER_FLAGS_POWER_SAVE_ENA_MSK);
457#endif
458 IWL_DEBUG_POWER(mvm,
459 "Sending device power command with flags = 0x%X\n",
460 cmd.flags);
461
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300462 return iwl_mvm_send_cmd_pdu(mvm, POWER_TABLE_CMD, 0, sizeof(cmd),
Alexander Bondar64b928c2013-09-03 14:18:03 +0300463 &cmd);
464}
465
Alexander Bondar175a70b2013-04-14 20:59:37 +0300466void iwl_mvm_power_vif_assoc(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
467{
468 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
469
470 if (memcmp(vif->bss_conf.bssid, mvmvif->uapsd_misbehaving_bssid,
471 ETH_ALEN))
Joe Perches93803b32015-03-02 19:54:49 -0800472 eth_zero_addr(mvmvif->uapsd_misbehaving_bssid);
Alexander Bondar175a70b2013-04-14 20:59:37 +0300473}
474
475static void iwl_mvm_power_uapsd_misbehav_ap_iterator(void *_data, u8 *mac,
476 struct ieee80211_vif *vif)
477{
478 u8 *ap_sta_id = _data;
479 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
480
481 /* The ap_sta_id is not expected to change during current association
482 * so no explicit protection is needed
483 */
484 if (mvmvif->ap_sta_id == *ap_sta_id)
485 memcpy(mvmvif->uapsd_misbehaving_bssid, vif->bss_conf.bssid,
486 ETH_ALEN);
487}
488
Johannes Berg04168412015-06-23 21:22:09 +0200489void iwl_mvm_power_uapsd_misbehaving_ap_notif(struct iwl_mvm *mvm,
490 struct iwl_rx_cmd_buffer *rxb)
Alexander Bondar175a70b2013-04-14 20:59:37 +0300491{
492 struct iwl_rx_packet *pkt = rxb_addr(rxb);
493 struct iwl_uapsd_misbehaving_ap_notif *notif = (void *)pkt->data;
494 u8 ap_sta_id = le32_to_cpu(notif->sta_id);
495
496 ieee80211_iterate_active_interfaces_atomic(
497 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
498 iwl_mvm_power_uapsd_misbehav_ap_iterator, &ap_sta_id);
Alexander Bondar175a70b2013-04-14 20:59:37 +0300499}
500
Avri Altman19889022014-03-19 07:25:06 +0200501struct iwl_power_vifs {
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +0300502 struct iwl_mvm *mvm;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200503 struct ieee80211_vif *bf_vif;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200504 struct ieee80211_vif *bss_vif;
Avri Altman8ea0c682014-02-20 13:28:57 +0200505 struct ieee80211_vif *p2p_vif;
Avri Altman19889022014-03-19 07:25:06 +0200506 struct ieee80211_vif *ap_vif;
507 struct ieee80211_vif *monitor_vif;
508 bool p2p_active;
509 bool bss_active;
510 bool ap_active;
511 bool monitor_active;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200512};
513
Luciano Coelho128aa942014-08-08 18:36:22 +0300514static void iwl_mvm_power_disable_pm_iterator(void *_data, u8* mac,
515 struct ieee80211_vif *vif)
516{
517 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
518
519 mvmvif->pm_enabled = false;
520}
521
Luciano Coelho2533edc2014-08-08 19:50:46 +0300522static void iwl_mvm_power_ps_disabled_iterator(void *_data, u8* mac,
523 struct ieee80211_vif *vif)
524{
525 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
526 bool *disable_ps = _data;
527
528 if (mvmvif->phy_ctxt)
529 if (mvmvif->phy_ctxt->id < MAX_PHYS)
530 *disable_ps |= mvmvif->ps_disabled;
531}
532
Luciano Coelho128aa942014-08-08 18:36:22 +0300533static void iwl_mvm_power_get_vifs_iterator(void *_data, u8 *mac,
534 struct ieee80211_vif *vif)
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300535{
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200536 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Avri Altman19889022014-03-19 07:25:06 +0200537 struct iwl_power_vifs *power_iterator = _data;
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300538
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200539 switch (ieee80211_vif_type_p2p(vif)) {
540 case NL80211_IFTYPE_P2P_DEVICE:
541 break;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200542
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200543 case NL80211_IFTYPE_P2P_GO:
544 case NL80211_IFTYPE_AP:
Avri Altman19889022014-03-19 07:25:06 +0200545 /* only a single MAC of the same type */
546 WARN_ON(power_iterator->ap_vif);
547 power_iterator->ap_vif = vif;
548 if (mvmvif->phy_ctxt)
549 if (mvmvif->phy_ctxt->id < MAX_PHYS)
550 power_iterator->ap_active = true;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200551 break;
Emmanuel Grumbach06280a22014-01-27 08:09:23 +0200552
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200553 case NL80211_IFTYPE_MONITOR:
Avri Altman19889022014-03-19 07:25:06 +0200554 /* only a single MAC of the same type */
555 WARN_ON(power_iterator->monitor_vif);
556 power_iterator->monitor_vif = vif;
557 if (mvmvif->phy_ctxt)
558 if (mvmvif->phy_ctxt->id < MAX_PHYS)
559 power_iterator->monitor_active = true;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200560 break;
561
562 case NL80211_IFTYPE_P2P_CLIENT:
Avri Altman19889022014-03-19 07:25:06 +0200563 /* only a single MAC of the same type */
Avri Altman8ea0c682014-02-20 13:28:57 +0200564 WARN_ON(power_iterator->p2p_vif);
565 power_iterator->p2p_vif = vif;
Avri Altman19889022014-03-19 07:25:06 +0200566 if (mvmvif->phy_ctxt)
567 if (mvmvif->phy_ctxt->id < MAX_PHYS)
568 power_iterator->p2p_active = true;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200569 break;
570
571 case NL80211_IFTYPE_STATION:
Avri Altman19889022014-03-19 07:25:06 +0200572 /* only a single MAC of the same type */
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200573 WARN_ON(power_iterator->bss_vif);
574 power_iterator->bss_vif = vif;
Avri Altman19889022014-03-19 07:25:06 +0200575 if (mvmvif->phy_ctxt)
576 if (mvmvif->phy_ctxt->id < MAX_PHYS)
577 power_iterator->bss_active = true;
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200578
579 if (mvmvif->bf_data.bf_enabled &&
580 !WARN_ON(power_iterator->bf_vif))
581 power_iterator->bf_vif = vif;
Alexander Bondar7303dd7f2014-02-03 21:57:28 +0200582
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200583 break;
584
585 default:
586 break;
587 }
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300588}
589
Luciano Coelhob1873302014-08-08 17:12:07 +0300590static void iwl_mvm_power_set_pm(struct iwl_mvm *mvm,
591 struct iwl_power_vifs *vifs)
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300592{
Avri Altman19889022014-03-19 07:25:06 +0200593 struct iwl_mvm_vif *bss_mvmvif = NULL;
594 struct iwl_mvm_vif *p2p_mvmvif = NULL;
595 struct iwl_mvm_vif *ap_mvmvif = NULL;
596 bool client_same_channel = false;
597 bool ap_same_channel = false;
598
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200599 lockdep_assert_held(&mvm->mutex);
600
Luciano Coelho128aa942014-08-08 18:36:22 +0300601 /* set pm_enable to false */
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200602 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
Luciano Coelho128aa942014-08-08 18:36:22 +0300603 IEEE80211_IFACE_ITER_NORMAL,
604 iwl_mvm_power_disable_pm_iterator,
605 NULL);
Avri Altman19889022014-03-19 07:25:06 +0200606
607 if (vifs->bss_vif)
608 bss_mvmvif = iwl_mvm_vif_from_mac80211(vifs->bss_vif);
609
610 if (vifs->p2p_vif)
611 p2p_mvmvif = iwl_mvm_vif_from_mac80211(vifs->p2p_vif);
612
613 if (vifs->ap_vif)
614 ap_mvmvif = iwl_mvm_vif_from_mac80211(vifs->ap_vif);
615
Arik Nemtsovfcf23352015-02-22 19:15:04 +0200616 /* don't allow PM if any TDLS stations exist */
617 if (iwl_mvm_tdls_sta_count(mvm, NULL))
618 return;
619
Avri Altman19889022014-03-19 07:25:06 +0200620 /* enable PM on bss if bss stand alone */
Arik Nemtsov9474d442014-09-03 12:09:45 +0300621 if (vifs->bss_active && !vifs->p2p_active && !vifs->ap_active) {
Avri Altman19889022014-03-19 07:25:06 +0200622 bss_mvmvif->pm_enabled = true;
623 return;
624 }
625
626 /* enable PM on p2p if p2p stand alone */
Arik Nemtsov9474d442014-09-03 12:09:45 +0300627 if (vifs->p2p_active && !vifs->bss_active && !vifs->ap_active) {
Avri Altman19889022014-03-19 07:25:06 +0200628 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PM)
629 p2p_mvmvif->pm_enabled = true;
630 return;
631 }
632
633 if (vifs->bss_active && vifs->p2p_active)
634 client_same_channel = (bss_mvmvif->phy_ctxt->id ==
635 p2p_mvmvif->phy_ctxt->id);
636 if (vifs->bss_active && vifs->ap_active)
637 ap_same_channel = (bss_mvmvif->phy_ctxt->id ==
638 ap_mvmvif->phy_ctxt->id);
639
Avri Altman63ef81c2014-04-02 07:54:07 +0300640 /* clients are not stand alone: enable PM if DCM */
641 if (!(client_same_channel || ap_same_channel) &&
Avri Altman19889022014-03-19 07:25:06 +0200642 (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BSS_P2P_PS_DCM)) {
Avri Altman63ef81c2014-04-02 07:54:07 +0300643 if (vifs->bss_active)
Avri Altman19889022014-03-19 07:25:06 +0200644 bss_mvmvif->pm_enabled = true;
Avri Altman63ef81c2014-04-02 07:54:07 +0300645 if (vifs->p2p_active &&
646 (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PM))
647 p2p_mvmvif->pm_enabled = true;
648 return;
Avri Altman19889022014-03-19 07:25:06 +0200649 }
650
651 /*
652 * There is only one channel in the system and there are only
653 * bss and p2p clients that share it
654 */
655 if (client_same_channel && !vifs->ap_active &&
656 (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BSS_P2P_PS_SCM)) {
657 /* share same channel*/
658 bss_mvmvif->pm_enabled = true;
659 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PM)
660 p2p_mvmvif->pm_enabled = true;
661 }
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200662}
663
Alexander Bondarb571a692013-05-21 14:49:09 +0300664#ifdef CONFIG_IWLWIFI_DEBUGFS
Emmanuel Grumbachc1cb92f2014-01-28 10:17:18 +0200665int iwl_mvm_power_mac_dbgfs_read(struct iwl_mvm *mvm,
666 struct ieee80211_vif *vif, char *buf,
667 int bufsz)
Alexander Bondare811ada2013-03-10 15:29:44 +0200668{
Emmanuel Grumbach474b50c2014-01-28 09:13:04 +0200669 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Alexander Bondare811ada2013-03-10 15:29:44 +0200670 struct iwl_mac_power_cmd cmd = {};
671 int pos = 0;
672
Emmanuel Grumbach474b50c2014-01-28 09:13:04 +0200673 mutex_lock(&mvm->mutex);
674 memcpy(&cmd, &mvmvif->mac_pwr_cmd, sizeof(cmd));
675 mutex_unlock(&mvm->mutex);
Alexander Bondare811ada2013-03-10 15:29:44 +0200676
Alexander Bondare811ada2013-03-10 15:29:44 +0200677 pos += scnprintf(buf+pos, bufsz-pos, "power_scheme = %d\n",
678 iwlmvm_mod_params.power_scheme);
679 pos += scnprintf(buf+pos, bufsz-pos, "flags = 0x%x\n",
680 le16_to_cpu(cmd.flags));
681 pos += scnprintf(buf+pos, bufsz-pos, "keep_alive = %d\n",
682 le16_to_cpu(cmd.keep_alive_seconds));
683
Alexander Bondar175a70b2013-04-14 20:59:37 +0300684 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK)))
685 return pos;
686
687 pos += scnprintf(buf+pos, bufsz-pos, "skip_over_dtim = %d\n",
688 (cmd.flags &
689 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK)) ? 1 : 0);
690 pos += scnprintf(buf+pos, bufsz-pos, "skip_dtim_periods = %d\n",
691 cmd.skip_dtim_periods);
692 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK))) {
693 pos += scnprintf(buf+pos, bufsz-pos, "rx_data_timeout = %d\n",
694 le32_to_cpu(cmd.rx_data_timeout));
695 pos += scnprintf(buf+pos, bufsz-pos, "tx_data_timeout = %d\n",
696 le32_to_cpu(cmd.tx_data_timeout));
Alexander Bondare811ada2013-03-10 15:29:44 +0200697 }
Alexander Bondar175a70b2013-04-14 20:59:37 +0300698 if (cmd.flags & cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK))
699 pos += scnprintf(buf+pos, bufsz-pos,
700 "lprx_rssi_threshold = %d\n",
701 cmd.lprx_rssi_threshold);
702
703 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK)))
704 return pos;
705
706 pos += scnprintf(buf+pos, bufsz-pos, "rx_data_timeout_uapsd = %d\n",
707 le32_to_cpu(cmd.rx_data_timeout_uapsd));
708 pos += scnprintf(buf+pos, bufsz-pos, "tx_data_timeout_uapsd = %d\n",
709 le32_to_cpu(cmd.tx_data_timeout_uapsd));
710 pos += scnprintf(buf+pos, bufsz-pos, "qndp_tid = %d\n", cmd.qndp_tid);
711 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_ac_flags = 0x%x\n",
712 cmd.uapsd_ac_flags);
713 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_max_sp = %d\n",
714 cmd.uapsd_max_sp);
715 pos += scnprintf(buf+pos, bufsz-pos, "heavy_tx_thld_packets = %d\n",
716 cmd.heavy_tx_thld_packets);
717 pos += scnprintf(buf+pos, bufsz-pos, "heavy_rx_thld_packets = %d\n",
718 cmd.heavy_rx_thld_packets);
719 pos += scnprintf(buf+pos, bufsz-pos, "heavy_tx_thld_percentage = %d\n",
720 cmd.heavy_tx_thld_percentage);
721 pos += scnprintf(buf+pos, bufsz-pos, "heavy_rx_thld_percentage = %d\n",
722 cmd.heavy_rx_thld_percentage);
723 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_misbehaving_enable = %d\n",
724 (cmd.flags &
725 cpu_to_le16(POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK)) ?
726 1 : 0);
727
728 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK)))
729 return pos;
730
731 pos += scnprintf(buf+pos, bufsz-pos, "snooze_interval = %d\n",
732 cmd.snooze_interval);
733 pos += scnprintf(buf+pos, bufsz-pos, "snooze_window = %d\n",
734 cmd.snooze_window);
735
Alexander Bondare811ada2013-03-10 15:29:44 +0200736 return pos;
737}
738
Alexander Bondarb571a692013-05-21 14:49:09 +0300739void
740iwl_mvm_beacon_filter_debugfs_parameters(struct ieee80211_vif *vif,
741 struct iwl_beacon_filter_cmd *cmd)
742{
743 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
744 struct iwl_dbgfs_bf *dbgfs_bf = &mvmvif->dbgfs_bf;
745
746 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ENERGY_DELTA)
Hila Gonen5dca7c22013-07-16 11:15:35 +0300747 cmd->bf_energy_delta = cpu_to_le32(dbgfs_bf->bf_energy_delta);
Alexander Bondarb571a692013-05-21 14:49:09 +0300748 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ROAMING_ENERGY_DELTA)
749 cmd->bf_roaming_energy_delta =
Hila Gonen5dca7c22013-07-16 11:15:35 +0300750 cpu_to_le32(dbgfs_bf->bf_roaming_energy_delta);
Alexander Bondarb571a692013-05-21 14:49:09 +0300751 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ROAMING_STATE)
Hila Gonen5dca7c22013-07-16 11:15:35 +0300752 cmd->bf_roaming_state = cpu_to_le32(dbgfs_bf->bf_roaming_state);
753 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_THRESHOLD)
754 cmd->bf_temp_threshold =
755 cpu_to_le32(dbgfs_bf->bf_temp_threshold);
756 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_FAST_FILTER)
757 cmd->bf_temp_fast_filter =
758 cpu_to_le32(dbgfs_bf->bf_temp_fast_filter);
759 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_SLOW_FILTER)
760 cmd->bf_temp_slow_filter =
761 cpu_to_le32(dbgfs_bf->bf_temp_slow_filter);
Alexander Bondarb571a692013-05-21 14:49:09 +0300762 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_DEBUG_FLAG)
Hila Gonen5dca7c22013-07-16 11:15:35 +0300763 cmd->bf_debug_flag = cpu_to_le32(dbgfs_bf->bf_debug_flag);
Alexander Bondarb571a692013-05-21 14:49:09 +0300764 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ESCAPE_TIMER)
765 cmd->bf_escape_timer = cpu_to_le32(dbgfs_bf->bf_escape_timer);
766 if (dbgfs_bf->mask & MVM_DEBUGFS_BA_ESCAPE_TIMER)
767 cmd->ba_escape_timer = cpu_to_le32(dbgfs_bf->ba_escape_timer);
768 if (dbgfs_bf->mask & MVM_DEBUGFS_BA_ENABLE_BEACON_ABORT)
Hila Gonen5dca7c22013-07-16 11:15:35 +0300769 cmd->ba_enable_beacon_abort =
770 cpu_to_le32(dbgfs_bf->ba_enable_beacon_abort);
Alexander Bondarb571a692013-05-21 14:49:09 +0300771}
772#endif
773
Eliad Peller3dd37d02014-01-07 14:00:24 +0200774static int _iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm,
775 struct ieee80211_vif *vif,
776 struct iwl_beacon_filter_cmd *cmd,
777 u32 cmd_flags,
778 bool d0i3)
Hila Gonen7df15b12012-12-12 11:16:19 +0200779{
780 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Alexander Bondar071d49902013-05-06 13:03:59 +0300781 int ret;
Hila Gonen7df15b12012-12-12 11:16:19 +0200782
Avri Altmanfa7b2e72014-05-20 08:03:24 +0300783 if (mvmvif != mvm->bf_allowed_vif || !vif->bss_conf.dtim_period ||
Hila Gonen7df15b12012-12-12 11:16:19 +0200784 vif->type != NL80211_IFTYPE_STATION || vif->p2p)
785 return 0;
786
Gregory Greenmancdc306b2015-07-20 12:55:34 +0300787 iwl_mvm_beacon_filter_set_cqm_params(mvm, vif, cmd, d0i3);
Eliad Peller3dd37d02014-01-07 14:00:24 +0200788 if (!d0i3)
789 iwl_mvm_beacon_filter_debugfs_parameters(vif, cmd);
790 ret = iwl_mvm_beacon_filter_send_cmd(mvm, cmd, cmd_flags);
Alexander Bondar071d49902013-05-06 13:03:59 +0300791
Eliad Peller3dd37d02014-01-07 14:00:24 +0200792 /* don't change bf_enabled in case of temporary d0i3 configuration */
793 if (!ret && !d0i3)
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300794 mvmvif->bf_data.bf_enabled = true;
Alexander Bondar071d49902013-05-06 13:03:59 +0300795
796 return ret;
Hila Gonen7df15b12012-12-12 11:16:19 +0200797}
798
Eliad Peller3dd37d02014-01-07 14:00:24 +0200799int iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm,
800 struct ieee80211_vif *vif,
801 u32 flags)
802{
803 struct iwl_beacon_filter_cmd cmd = {
804 IWL_BF_CMD_CONFIG_DEFAULTS,
805 .bf_enable_beacon_filter = cpu_to_le32(1),
806 };
807
808 return _iwl_mvm_enable_beacon_filter(mvm, vif, &cmd, flags, false);
809}
810
Emmanuel Grumbach13b72322014-05-20 11:28:18 +0300811static int iwl_mvm_update_beacon_abort(struct iwl_mvm *mvm,
812 struct ieee80211_vif *vif,
813 bool enable)
Avri Altmanfa7b2e72014-05-20 08:03:24 +0300814{
815 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
816 struct iwl_beacon_filter_cmd cmd = {
817 IWL_BF_CMD_CONFIG_DEFAULTS,
818 .bf_enable_beacon_filter = cpu_to_le32(1),
819 };
820
821 if (!mvmvif->bf_data.bf_enabled)
822 return 0;
823
824 if (mvm->cur_ucode == IWL_UCODE_WOWLAN)
825 cmd.ba_escape_timer = cpu_to_le32(IWL_BA_ESCAPE_TIMER_D3);
826
827 mvmvif->bf_data.ba_enabled = enable;
828 return _iwl_mvm_enable_beacon_filter(mvm, vif, &cmd, 0, false);
829}
830
Hila Gonen7df15b12012-12-12 11:16:19 +0200831int iwl_mvm_disable_beacon_filter(struct iwl_mvm *mvm,
Eliad Peller3dd37d02014-01-07 14:00:24 +0200832 struct ieee80211_vif *vif,
833 u32 flags)
Hila Gonen7df15b12012-12-12 11:16:19 +0200834{
Alexander Bondar071d49902013-05-06 13:03:59 +0300835 struct iwl_beacon_filter_cmd cmd = {};
836 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
837 int ret;
Hila Gonen7df15b12012-12-12 11:16:19 +0200838
Emmanuel Grumbach73e5f2c2014-03-30 08:57:30 +0300839 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
Hila Gonen7df15b12012-12-12 11:16:19 +0200840 return 0;
841
Eliad Peller3dd37d02014-01-07 14:00:24 +0200842 ret = iwl_mvm_beacon_filter_send_cmd(mvm, &cmd, flags);
Alexander Bondar071d49902013-05-06 13:03:59 +0300843
844 if (!ret)
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300845 mvmvif->bf_data.bf_enabled = false;
Alexander Bondar071d49902013-05-06 13:03:59 +0300846
847 return ret;
Hila Gonen7df15b12012-12-12 11:16:19 +0200848}
Alexander Bondare811ada2013-03-10 15:29:44 +0200849
Luciano Coelho2533edc2014-08-08 19:50:46 +0300850static int iwl_mvm_power_set_ps(struct iwl_mvm *mvm)
Emmanuel Grumbach13b72322014-05-20 11:28:18 +0300851{
Luciano Coelho128aa942014-08-08 18:36:22 +0300852 bool disable_ps;
Emmanuel Grumbach13b72322014-05-20 11:28:18 +0300853 int ret;
854
Emmanuel Grumbach13b72322014-05-20 11:28:18 +0300855 /* disable PS if CAM */
Luciano Coelhob1873302014-08-08 17:12:07 +0300856 disable_ps = (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM);
Luciano Coelho2533edc2014-08-08 19:50:46 +0300857 /* ...or if any of the vifs require PS to be off */
858 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
859 IEEE80211_IFACE_ITER_NORMAL,
860 iwl_mvm_power_ps_disabled_iterator,
861 &disable_ps);
Luciano Coelhob1873302014-08-08 17:12:07 +0300862
863 /* update device power state if it has changed */
864 if (mvm->ps_disabled != disable_ps) {
865 bool old_ps_disabled = mvm->ps_disabled;
866
867 mvm->ps_disabled = disable_ps;
868 ret = iwl_mvm_power_update_device(mvm);
869 if (ret) {
870 mvm->ps_disabled = old_ps_disabled;
871 return ret;
Emmanuel Grumbach13b72322014-05-20 11:28:18 +0300872 }
873 }
874
Luciano Coelho128aa942014-08-08 18:36:22 +0300875 return 0;
876}
877
Luciano Coelhoef9203d2014-08-08 19:18:35 +0300878static int iwl_mvm_power_set_ba(struct iwl_mvm *mvm,
879 struct iwl_power_vifs *vifs)
Luciano Coelho128aa942014-08-08 18:36:22 +0300880{
881 struct iwl_mvm_vif *mvmvif;
Luciano Coelhoef9203d2014-08-08 19:18:35 +0300882 bool ba_enable;
883
884 if (!vifs->bf_vif)
885 return 0;
886
887 mvmvif = iwl_mvm_vif_from_mac80211(vifs->bf_vif);
888
889 ba_enable = !(!mvmvif->pm_enabled || mvm->ps_disabled ||
890 !vifs->bf_vif->bss_conf.ps ||
891 iwl_mvm_vif_low_latency(mvmvif));
892
893 return iwl_mvm_update_beacon_abort(mvm, vifs->bf_vif, ba_enable);
894}
895
896int iwl_mvm_power_update_ps(struct iwl_mvm *mvm)
897{
Luciano Coelho128aa942014-08-08 18:36:22 +0300898 struct iwl_power_vifs vifs = {
899 .mvm = mvm,
900 };
Luciano Coelhoef9203d2014-08-08 19:18:35 +0300901 int ret;
902
903 lockdep_assert_held(&mvm->mutex);
904
905 /* get vifs info */
906 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
907 IEEE80211_IFACE_ITER_NORMAL,
908 iwl_mvm_power_get_vifs_iterator, &vifs);
909
Luciano Coelho2533edc2014-08-08 19:50:46 +0300910 ret = iwl_mvm_power_set_ps(mvm);
Luciano Coelhoef9203d2014-08-08 19:18:35 +0300911 if (ret)
912 return ret;
913
914 return iwl_mvm_power_set_ba(mvm, &vifs);
915}
916
917int iwl_mvm_power_update_mac(struct iwl_mvm *mvm)
918{
919 struct iwl_power_vifs vifs = {
920 .mvm = mvm,
921 };
Luciano Coelho128aa942014-08-08 18:36:22 +0300922 int ret;
923
924 lockdep_assert_held(&mvm->mutex);
925
926 /* get vifs info */
927 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
928 IEEE80211_IFACE_ITER_NORMAL,
929 iwl_mvm_power_get_vifs_iterator, &vifs);
930
931 iwl_mvm_power_set_pm(mvm, &vifs);
932
Luciano Coelho2533edc2014-08-08 19:50:46 +0300933 ret = iwl_mvm_power_set_ps(mvm);
Luciano Coelho128aa942014-08-08 18:36:22 +0300934 if (ret)
935 return ret;
936
Emmanuel Grumbach13b72322014-05-20 11:28:18 +0300937 if (vifs.bss_vif) {
938 ret = iwl_mvm_power_send_cmd(mvm, vifs.bss_vif);
939 if (ret)
940 return ret;
941 }
942
943 if (vifs.p2p_vif) {
944 ret = iwl_mvm_power_send_cmd(mvm, vifs.p2p_vif);
945 if (ret)
946 return ret;
947 }
948
Luciano Coelhoef9203d2014-08-08 19:18:35 +0300949 return iwl_mvm_power_set_ba(mvm, &vifs);
Emmanuel Grumbach13b72322014-05-20 11:28:18 +0300950}
951
Eliad Peller3dd37d02014-01-07 14:00:24 +0200952int iwl_mvm_update_d0i3_power_mode(struct iwl_mvm *mvm,
953 struct ieee80211_vif *vif,
954 bool enable, u32 flags)
955{
956 int ret;
957 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
958 struct iwl_mac_power_cmd cmd = {};
959
960 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
961 return 0;
962
963 if (!vif->bss_conf.assoc)
964 return 0;
965
966 iwl_mvm_power_build_cmd(mvm, vif, &cmd);
967 if (enable) {
Avri Altman49c6d802014-08-27 19:58:56 +0300968 /* configure skip over dtim up to 306TU - 314 msec */
Emmanuel Grumbach717e2392014-07-31 14:39:40 +0300969 int dtimper = vif->bss_conf.dtim_period ?: 1;
Avri Altman49c6d802014-08-27 19:58:56 +0300970 int dtimper_tu = dtimper * vif->bss_conf.beacon_int;
971 bool radar_detect = iwl_mvm_power_is_radar(vif);
Eliad Peller3dd37d02014-01-07 14:00:24 +0200972
Avri Altman49c6d802014-08-27 19:58:56 +0300973 if (WARN_ON(!dtimper_tu))
Eliad Peller3dd37d02014-01-07 14:00:24 +0200974 return 0;
975
Avri Altman49c6d802014-08-27 19:58:56 +0300976 /* Check skip over DTIM conditions */
977 /* TODO: check that multicast wake lock is off */
978 if (!radar_detect && (dtimper < 10)) {
979 cmd.skip_dtim_periods = 306 / dtimper_tu;
980 if (cmd.skip_dtim_periods)
981 cmd.flags |= cpu_to_le16(
982 POWER_FLAGS_SKIP_OVER_DTIM_MSK);
983 }
Eliad Peller3dd37d02014-01-07 14:00:24 +0200984 }
985 iwl_mvm_power_log(mvm, &cmd);
Emmanuel Grumbach474b50c2014-01-28 09:13:04 +0200986#ifdef CONFIG_IWLWIFI_DEBUGFS
987 memcpy(&mvmvif->mac_pwr_cmd, &cmd, sizeof(cmd));
988#endif
Eliad Peller3dd37d02014-01-07 14:00:24 +0200989 ret = iwl_mvm_send_cmd_pdu(mvm, MAC_PM_POWER_TABLE, flags,
990 sizeof(cmd), &cmd);
991 if (ret)
992 return ret;
993
994 /* configure beacon filtering */
995 if (mvmvif != mvm->bf_allowed_vif)
996 return 0;
997
998 if (enable) {
999 struct iwl_beacon_filter_cmd cmd_bf = {
1000 IWL_BF_CMD_CONFIG_D0I3,
1001 .bf_enable_beacon_filter = cpu_to_le32(1),
1002 };
1003 ret = _iwl_mvm_enable_beacon_filter(mvm, vif, &cmd_bf,
1004 flags, true);
1005 } else {
1006 if (mvmvif->bf_data.bf_enabled)
1007 ret = iwl_mvm_enable_beacon_filter(mvm, vif, flags);
1008 else
1009 ret = iwl_mvm_disable_beacon_filter(mvm, vif, flags);
1010 }
1011
1012 return ret;
1013}