1 /******************************************************************************
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.
8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
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.
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.
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,
25 * The full GNU General Public License is included in this distribution
26 * in the file called COPYING.
28 * Contact Information:
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
34 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
35 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
36 * All rights reserved.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
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
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.
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.
64 *****************************************************************************/
66 #include <linux/kernel.h>
67 #include <linux/module.h>
68 #include <linux/slab.h>
69 #include <linux/etherdevice.h>
71 #include <net/mac80211.h>
73 #include "iwl-debug.h"
75 #include "iwl-modparams.h"
76 #include "fw-api-power.h"
78 #define POWER_KEEP_ALIVE_PERIOD_SEC 25
81 int iwl_mvm_beacon_filter_send_cmd(struct iwl_mvm *mvm,
82 struct iwl_beacon_filter_cmd *cmd,
85 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));
108 return iwl_mvm_send_cmd_pdu(mvm, REPLY_BEACON_FILTERING_CMD, flags,
109 sizeof(struct iwl_beacon_filter_cmd), cmd);
113 void iwl_mvm_beacon_filter_set_cqm_params(struct iwl_mvm *mvm,
114 struct ieee80211_vif *vif,
115 struct iwl_beacon_filter_cmd *cmd,
118 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
120 if (vif->bss_conf.cqm_rssi_thold && !d0i3) {
121 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);
127 cmd->ba_enable_beacon_abort = cpu_to_le32(mvmvif->bf_data.ba_enabled);
130 static void iwl_mvm_power_log(struct iwl_mvm *mvm,
131 struct iwl_mac_power_cmd *cmd)
134 "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,
136 le16_to_cpu(cmd->flags));
137 IWL_DEBUG_POWER(mvm, "Keep alive = %u sec\n",
138 le16_to_cpu(cmd->keep_alive_seconds));
140 if (!(cmd->flags & cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK))) {
141 IWL_DEBUG_POWER(mvm, "Disable power management\n");
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);
167 static void iwl_mvm_power_configure_uapsd(struct iwl_mvm *mvm,
168 struct ieee80211_vif *vif,
169 struct iwl_mac_power_cmd *cmd)
171 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
172 enum ieee80211_ac_numbers ac;
173 bool tid_found = false;
175 for (ac = IEEE80211_AC_VO; ac <= IEEE80211_AC_BK; ac++) {
176 if (!mvmvif->queue_params[ac].uapsd)
179 if (mvm->cur_ucode != IWL_UCODE_WOWLAN)
181 cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK);
183 cmd->uapsd_ac_flags |= BIT(ac);
185 /* QNDP TID - the highest TID with no admission control */
186 if (!tid_found && !mvmvif->queue_params[ac].acm) {
189 case IEEE80211_AC_VO:
192 case IEEE80211_AC_VI:
195 case IEEE80211_AC_BE:
198 case IEEE80211_AC_BK:
205 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)
210 cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK);
215 cmd->flags |= cpu_to_le16(POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK);
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);
228 cmd->uapsd_max_sp = IWL_UAPSD_MAX_SP;
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);
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);
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;
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;
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;
260 static bool iwl_mvm_power_allow_uapsd(struct iwl_mvm *mvm,
261 struct ieee80211_vif *vif)
263 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
265 if (!memcmp(mvmvif->uapsd_misbehaving_bssid, vif->bss_conf.bssid,
270 !(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PS_UAPSD))
273 * Avoid using uAPSD if P2P client is associated to GO that uses
274 * opportunistic power save. This is due to current FW limitation.
277 (vif->bss_conf.p2p_noa_attr.oppps_ctwindow &
278 IEEE80211_P2P_OPPPS_ENABLE_BIT))
282 * Avoid using uAPSD if client is in DCM -
283 * low latency issue in Miracast
285 if (iwl_mvm_phy_ctx_count(mvm) >= 2)
291 static int iwl_mvm_power_get_skip_over_dtim(int dtimper, int bi)
294 int dtim_interval = dtimper * bi;
296 if (WARN_ON(!dtim_interval))
304 } else if (dtimper < 10) {
309 return max(1, (numerator / dtim_interval));
312 static bool iwl_mvm_power_is_radar(struct ieee80211_vif *vif)
314 struct ieee80211_chanctx_conf *chanctx_conf;
315 struct ieee80211_channel *chan;
316 bool radar_detect = false;
319 chanctx_conf = rcu_dereference(vif->chanctx_conf);
320 WARN_ON(!chanctx_conf);
322 chan = chanctx_conf->def.chan;
323 radar_detect = chan->flags & IEEE80211_CHAN_RADAR;
330 static void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm,
331 struct ieee80211_vif *vif,
332 struct iwl_mac_power_cmd *cmd)
336 bool radar_detect = false;
337 struct iwl_mvm_vif *mvmvif __maybe_unused =
338 iwl_mvm_vif_from_mac80211(vif);
340 cmd->id_and_color = cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id,
342 dtimper = vif->bss_conf.dtim_period;
343 bi = vif->bss_conf.beacon_int;
346 * Regardless of power management state the driver must set
347 * keep alive period. FW will use it for sending keep alive NDPs
348 * immediately after association. Check that keep alive period
349 * is at least 3 * DTIM
351 keep_alive = DIV_ROUND_UP(ieee80211_tu_to_usec(3 * dtimper * bi),
353 keep_alive = max(keep_alive, POWER_KEEP_ALIVE_PERIOD_SEC);
354 cmd->keep_alive_seconds = cpu_to_le16(keep_alive);
356 if (mvm->ps_disabled)
359 cmd->flags |= cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK);
361 if (!vif->bss_conf.ps || iwl_mvm_vif_low_latency(mvmvif) ||
365 cmd->flags |= cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK);
367 if (vif->bss_conf.beacon_rate &&
368 (vif->bss_conf.beacon_rate->bitrate == 10 ||
369 vif->bss_conf.beacon_rate->bitrate == 60)) {
370 cmd->flags |= cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK);
371 cmd->lprx_rssi_threshold = POWER_LPRX_RSSI_THRESHOLD;
374 /* Check if radar detection is required on current channel */
375 radar_detect = iwl_mvm_power_is_radar(vif);
377 /* Check skip over DTIM conditions */
378 if (!radar_detect && (dtimper < 10) &&
379 (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_LP ||
380 mvm->cur_ucode == IWL_UCODE_WOWLAN)) {
381 cmd->skip_dtim_periods =
382 iwl_mvm_power_get_skip_over_dtim(dtimper, bi);
383 if (cmd->skip_dtim_periods)
385 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK);
388 if (mvm->cur_ucode != IWL_UCODE_WOWLAN) {
389 cmd->rx_data_timeout =
390 cpu_to_le32(IWL_MVM_DEFAULT_PS_RX_DATA_TIMEOUT);
391 cmd->tx_data_timeout =
392 cpu_to_le32(IWL_MVM_DEFAULT_PS_TX_DATA_TIMEOUT);
394 cmd->rx_data_timeout =
395 cpu_to_le32(IWL_MVM_WOWLAN_PS_RX_DATA_TIMEOUT);
396 cmd->tx_data_timeout =
397 cpu_to_le32(IWL_MVM_WOWLAN_PS_TX_DATA_TIMEOUT);
400 if (iwl_mvm_power_allow_uapsd(mvm, vif))
401 iwl_mvm_power_configure_uapsd(mvm, vif, cmd);
403 #ifdef CONFIG_IWLWIFI_DEBUGFS
404 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_KEEP_ALIVE)
405 cmd->keep_alive_seconds =
406 cpu_to_le16(mvmvif->dbgfs_pm.keep_alive_seconds);
407 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SKIP_OVER_DTIM) {
408 if (mvmvif->dbgfs_pm.skip_over_dtim)
410 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK);
413 cpu_to_le16(~POWER_FLAGS_SKIP_OVER_DTIM_MSK);
415 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_RX_DATA_TIMEOUT)
416 cmd->rx_data_timeout =
417 cpu_to_le32(mvmvif->dbgfs_pm.rx_data_timeout);
418 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_TX_DATA_TIMEOUT)
419 cmd->tx_data_timeout =
420 cpu_to_le32(mvmvif->dbgfs_pm.tx_data_timeout);
421 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SKIP_DTIM_PERIODS)
422 cmd->skip_dtim_periods = mvmvif->dbgfs_pm.skip_dtim_periods;
423 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_LPRX_ENA) {
424 if (mvmvif->dbgfs_pm.lprx_ena)
425 cmd->flags |= cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK);
427 cmd->flags &= cpu_to_le16(~POWER_FLAGS_LPRX_ENA_MSK);
429 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_LPRX_RSSI_THRESHOLD)
430 cmd->lprx_rssi_threshold = mvmvif->dbgfs_pm.lprx_rssi_threshold;
431 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_SNOOZE_ENABLE) {
432 if (mvmvif->dbgfs_pm.snooze_ena)
434 cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK);
437 cpu_to_le16(~POWER_FLAGS_SNOOZE_ENA_MSK);
439 if (mvmvif->dbgfs_pm.mask & MVM_DEBUGFS_PM_UAPSD_MISBEHAVING) {
440 u16 flag = POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK;
441 if (mvmvif->dbgfs_pm.uapsd_misbehaving)
442 cmd->flags |= cpu_to_le16(flag);
444 cmd->flags &= cpu_to_le16(flag);
446 #endif /* CONFIG_IWLWIFI_DEBUGFS */
449 static int iwl_mvm_power_send_cmd(struct iwl_mvm *mvm,
450 struct ieee80211_vif *vif)
452 struct iwl_mac_power_cmd cmd = {};
454 iwl_mvm_power_build_cmd(mvm, vif, &cmd);
455 iwl_mvm_power_log(mvm, &cmd);
456 #ifdef CONFIG_IWLWIFI_DEBUGFS
457 memcpy(&iwl_mvm_vif_from_mac80211(vif)->mac_pwr_cmd, &cmd, sizeof(cmd));
460 return iwl_mvm_send_cmd_pdu(mvm, MAC_PM_POWER_TABLE, 0,
464 int iwl_mvm_power_update_device(struct iwl_mvm *mvm)
466 struct iwl_device_power_cmd cmd = {
467 .flags = cpu_to_le16(DEVICE_POWER_FLAGS_POWER_SAVE_ENA_MSK),
470 if (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM)
471 mvm->ps_disabled = true;
473 if (mvm->ps_disabled)
474 cmd.flags |= cpu_to_le16(DEVICE_POWER_FLAGS_CAM_MSK);
476 #ifdef CONFIG_IWLWIFI_DEBUGFS
477 if ((mvm->cur_ucode == IWL_UCODE_WOWLAN) ? mvm->disable_power_off_d3 :
478 mvm->disable_power_off)
480 cpu_to_le16(~DEVICE_POWER_FLAGS_POWER_SAVE_ENA_MSK);
483 "Sending device power command with flags = 0x%X\n",
486 return iwl_mvm_send_cmd_pdu(mvm, POWER_TABLE_CMD, 0, sizeof(cmd),
490 void iwl_mvm_power_vif_assoc(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
492 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
494 if (memcmp(vif->bss_conf.bssid, mvmvif->uapsd_misbehaving_bssid,
496 eth_zero_addr(mvmvif->uapsd_misbehaving_bssid);
499 static void iwl_mvm_power_uapsd_misbehav_ap_iterator(void *_data, u8 *mac,
500 struct ieee80211_vif *vif)
502 u8 *ap_sta_id = _data;
503 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
505 /* The ap_sta_id is not expected to change during current association
506 * so no explicit protection is needed
508 if (mvmvif->ap_sta_id == *ap_sta_id)
509 memcpy(mvmvif->uapsd_misbehaving_bssid, vif->bss_conf.bssid,
513 void iwl_mvm_power_uapsd_misbehaving_ap_notif(struct iwl_mvm *mvm,
514 struct iwl_rx_cmd_buffer *rxb)
516 struct iwl_rx_packet *pkt = rxb_addr(rxb);
517 struct iwl_uapsd_misbehaving_ap_notif *notif = (void *)pkt->data;
518 u8 ap_sta_id = le32_to_cpu(notif->sta_id);
520 ieee80211_iterate_active_interfaces_atomic(
521 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
522 iwl_mvm_power_uapsd_misbehav_ap_iterator, &ap_sta_id);
525 struct iwl_power_vifs {
527 struct ieee80211_vif *bf_vif;
528 struct ieee80211_vif *bss_vif;
529 struct ieee80211_vif *p2p_vif;
530 struct ieee80211_vif *ap_vif;
531 struct ieee80211_vif *monitor_vif;
538 static void iwl_mvm_power_disable_pm_iterator(void *_data, u8* mac,
539 struct ieee80211_vif *vif)
541 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
543 mvmvif->pm_enabled = false;
546 static void iwl_mvm_power_ps_disabled_iterator(void *_data, u8* mac,
547 struct ieee80211_vif *vif)
549 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
550 bool *disable_ps = _data;
552 if (mvmvif->phy_ctxt)
553 if (mvmvif->phy_ctxt->id < MAX_PHYS)
554 *disable_ps |= mvmvif->ps_disabled;
557 static void iwl_mvm_power_get_vifs_iterator(void *_data, u8 *mac,
558 struct ieee80211_vif *vif)
560 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
561 struct iwl_power_vifs *power_iterator = _data;
563 switch (ieee80211_vif_type_p2p(vif)) {
564 case NL80211_IFTYPE_P2P_DEVICE:
567 case NL80211_IFTYPE_P2P_GO:
568 case NL80211_IFTYPE_AP:
569 /* only a single MAC of the same type */
570 WARN_ON(power_iterator->ap_vif);
571 power_iterator->ap_vif = vif;
572 if (mvmvif->phy_ctxt)
573 if (mvmvif->phy_ctxt->id < MAX_PHYS)
574 power_iterator->ap_active = true;
577 case NL80211_IFTYPE_MONITOR:
578 /* only a single MAC of the same type */
579 WARN_ON(power_iterator->monitor_vif);
580 power_iterator->monitor_vif = vif;
581 if (mvmvif->phy_ctxt)
582 if (mvmvif->phy_ctxt->id < MAX_PHYS)
583 power_iterator->monitor_active = true;
586 case NL80211_IFTYPE_P2P_CLIENT:
587 /* only a single MAC of the same type */
588 WARN_ON(power_iterator->p2p_vif);
589 power_iterator->p2p_vif = vif;
590 if (mvmvif->phy_ctxt)
591 if (mvmvif->phy_ctxt->id < MAX_PHYS)
592 power_iterator->p2p_active = true;
595 case NL80211_IFTYPE_STATION:
596 /* only a single MAC of the same type */
597 WARN_ON(power_iterator->bss_vif);
598 power_iterator->bss_vif = vif;
599 if (mvmvif->phy_ctxt)
600 if (mvmvif->phy_ctxt->id < MAX_PHYS)
601 power_iterator->bss_active = true;
603 if (mvmvif->bf_data.bf_enabled &&
604 !WARN_ON(power_iterator->bf_vif))
605 power_iterator->bf_vif = vif;
614 static void iwl_mvm_power_set_pm(struct iwl_mvm *mvm,
615 struct iwl_power_vifs *vifs)
617 struct iwl_mvm_vif *bss_mvmvif = NULL;
618 struct iwl_mvm_vif *p2p_mvmvif = NULL;
619 struct iwl_mvm_vif *ap_mvmvif = NULL;
620 bool client_same_channel = false;
621 bool ap_same_channel = false;
623 lockdep_assert_held(&mvm->mutex);
625 /* set pm_enable to false */
626 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
627 IEEE80211_IFACE_ITER_NORMAL,
628 iwl_mvm_power_disable_pm_iterator,
632 bss_mvmvif = iwl_mvm_vif_from_mac80211(vifs->bss_vif);
635 p2p_mvmvif = iwl_mvm_vif_from_mac80211(vifs->p2p_vif);
638 ap_mvmvif = iwl_mvm_vif_from_mac80211(vifs->ap_vif);
640 /* don't allow PM if any TDLS stations exist */
641 if (iwl_mvm_tdls_sta_count(mvm, NULL))
644 /* enable PM on bss if bss stand alone */
645 if (vifs->bss_active && !vifs->p2p_active && !vifs->ap_active) {
646 bss_mvmvif->pm_enabled = true;
650 /* enable PM on p2p if p2p stand alone */
651 if (vifs->p2p_active && !vifs->bss_active && !vifs->ap_active) {
652 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PM)
653 p2p_mvmvif->pm_enabled = true;
657 if (vifs->bss_active && vifs->p2p_active)
658 client_same_channel = (bss_mvmvif->phy_ctxt->id ==
659 p2p_mvmvif->phy_ctxt->id);
660 if (vifs->bss_active && vifs->ap_active)
661 ap_same_channel = (bss_mvmvif->phy_ctxt->id ==
662 ap_mvmvif->phy_ctxt->id);
664 /* clients are not stand alone: enable PM if DCM */
665 if (!(client_same_channel || ap_same_channel) &&
666 (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BSS_P2P_PS_DCM)) {
667 if (vifs->bss_active)
668 bss_mvmvif->pm_enabled = true;
669 if (vifs->p2p_active &&
670 (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PM))
671 p2p_mvmvif->pm_enabled = true;
676 * There is only one channel in the system and there are only
677 * bss and p2p clients that share it
679 if (client_same_channel && !vifs->ap_active &&
680 (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BSS_P2P_PS_SCM)) {
681 /* share same channel*/
682 bss_mvmvif->pm_enabled = true;
683 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PM)
684 p2p_mvmvif->pm_enabled = true;
688 #ifdef CONFIG_IWLWIFI_DEBUGFS
689 int iwl_mvm_power_mac_dbgfs_read(struct iwl_mvm *mvm,
690 struct ieee80211_vif *vif, char *buf,
693 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
694 struct iwl_mac_power_cmd cmd = {};
697 mutex_lock(&mvm->mutex);
698 memcpy(&cmd, &mvmvif->mac_pwr_cmd, sizeof(cmd));
699 mutex_unlock(&mvm->mutex);
701 pos += scnprintf(buf+pos, bufsz-pos, "power_scheme = %d\n",
702 iwlmvm_mod_params.power_scheme);
703 pos += scnprintf(buf+pos, bufsz-pos, "flags = 0x%x\n",
704 le16_to_cpu(cmd.flags));
705 pos += scnprintf(buf+pos, bufsz-pos, "keep_alive = %d\n",
706 le16_to_cpu(cmd.keep_alive_seconds));
708 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK)))
711 pos += scnprintf(buf+pos, bufsz-pos, "skip_over_dtim = %d\n",
713 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK)) ? 1 : 0);
714 pos += scnprintf(buf+pos, bufsz-pos, "skip_dtim_periods = %d\n",
715 cmd.skip_dtim_periods);
716 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK))) {
717 pos += scnprintf(buf+pos, bufsz-pos, "rx_data_timeout = %d\n",
718 le32_to_cpu(cmd.rx_data_timeout));
719 pos += scnprintf(buf+pos, bufsz-pos, "tx_data_timeout = %d\n",
720 le32_to_cpu(cmd.tx_data_timeout));
722 if (cmd.flags & cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK))
723 pos += scnprintf(buf+pos, bufsz-pos,
724 "lprx_rssi_threshold = %d\n",
725 cmd.lprx_rssi_threshold);
727 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK)))
730 pos += scnprintf(buf+pos, bufsz-pos, "rx_data_timeout_uapsd = %d\n",
731 le32_to_cpu(cmd.rx_data_timeout_uapsd));
732 pos += scnprintf(buf+pos, bufsz-pos, "tx_data_timeout_uapsd = %d\n",
733 le32_to_cpu(cmd.tx_data_timeout_uapsd));
734 pos += scnprintf(buf+pos, bufsz-pos, "qndp_tid = %d\n", cmd.qndp_tid);
735 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_ac_flags = 0x%x\n",
737 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_max_sp = %d\n",
739 pos += scnprintf(buf+pos, bufsz-pos, "heavy_tx_thld_packets = %d\n",
740 cmd.heavy_tx_thld_packets);
741 pos += scnprintf(buf+pos, bufsz-pos, "heavy_rx_thld_packets = %d\n",
742 cmd.heavy_rx_thld_packets);
743 pos += scnprintf(buf+pos, bufsz-pos, "heavy_tx_thld_percentage = %d\n",
744 cmd.heavy_tx_thld_percentage);
745 pos += scnprintf(buf+pos, bufsz-pos, "heavy_rx_thld_percentage = %d\n",
746 cmd.heavy_rx_thld_percentage);
747 pos += scnprintf(buf+pos, bufsz-pos, "uapsd_misbehaving_enable = %d\n",
749 cpu_to_le16(POWER_FLAGS_UAPSD_MISBEHAVING_ENA_MSK)) ?
752 if (!(cmd.flags & cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK)))
755 pos += scnprintf(buf+pos, bufsz-pos, "snooze_interval = %d\n",
756 cmd.snooze_interval);
757 pos += scnprintf(buf+pos, bufsz-pos, "snooze_window = %d\n",
764 iwl_mvm_beacon_filter_debugfs_parameters(struct ieee80211_vif *vif,
765 struct iwl_beacon_filter_cmd *cmd)
767 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
768 struct iwl_dbgfs_bf *dbgfs_bf = &mvmvif->dbgfs_bf;
770 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ENERGY_DELTA)
771 cmd->bf_energy_delta = cpu_to_le32(dbgfs_bf->bf_energy_delta);
772 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ROAMING_ENERGY_DELTA)
773 cmd->bf_roaming_energy_delta =
774 cpu_to_le32(dbgfs_bf->bf_roaming_energy_delta);
775 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ROAMING_STATE)
776 cmd->bf_roaming_state = cpu_to_le32(dbgfs_bf->bf_roaming_state);
777 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_THRESHOLD)
778 cmd->bf_temp_threshold =
779 cpu_to_le32(dbgfs_bf->bf_temp_threshold);
780 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_FAST_FILTER)
781 cmd->bf_temp_fast_filter =
782 cpu_to_le32(dbgfs_bf->bf_temp_fast_filter);
783 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_TEMP_SLOW_FILTER)
784 cmd->bf_temp_slow_filter =
785 cpu_to_le32(dbgfs_bf->bf_temp_slow_filter);
786 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_DEBUG_FLAG)
787 cmd->bf_debug_flag = cpu_to_le32(dbgfs_bf->bf_debug_flag);
788 if (dbgfs_bf->mask & MVM_DEBUGFS_BF_ESCAPE_TIMER)
789 cmd->bf_escape_timer = cpu_to_le32(dbgfs_bf->bf_escape_timer);
790 if (dbgfs_bf->mask & MVM_DEBUGFS_BA_ESCAPE_TIMER)
791 cmd->ba_escape_timer = cpu_to_le32(dbgfs_bf->ba_escape_timer);
792 if (dbgfs_bf->mask & MVM_DEBUGFS_BA_ENABLE_BEACON_ABORT)
793 cmd->ba_enable_beacon_abort =
794 cpu_to_le32(dbgfs_bf->ba_enable_beacon_abort);
798 static int _iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm,
799 struct ieee80211_vif *vif,
800 struct iwl_beacon_filter_cmd *cmd,
804 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
807 if (mvmvif != mvm->bf_allowed_vif || !vif->bss_conf.dtim_period ||
808 vif->type != NL80211_IFTYPE_STATION || vif->p2p)
811 iwl_mvm_beacon_filter_set_cqm_params(mvm, vif, cmd, d0i3);
813 iwl_mvm_beacon_filter_debugfs_parameters(vif, cmd);
814 ret = iwl_mvm_beacon_filter_send_cmd(mvm, cmd, cmd_flags);
816 /* don't change bf_enabled in case of temporary d0i3 configuration */
818 mvmvif->bf_data.bf_enabled = true;
823 int iwl_mvm_enable_beacon_filter(struct iwl_mvm *mvm,
824 struct ieee80211_vif *vif,
827 struct iwl_beacon_filter_cmd cmd = {
828 IWL_BF_CMD_CONFIG_DEFAULTS,
829 .bf_enable_beacon_filter = cpu_to_le32(1),
832 return _iwl_mvm_enable_beacon_filter(mvm, vif, &cmd, flags, false);
835 static int iwl_mvm_update_beacon_abort(struct iwl_mvm *mvm,
836 struct ieee80211_vif *vif,
839 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
840 struct iwl_beacon_filter_cmd cmd = {
841 IWL_BF_CMD_CONFIG_DEFAULTS,
842 .bf_enable_beacon_filter = cpu_to_le32(1),
845 if (!mvmvif->bf_data.bf_enabled)
848 if (mvm->cur_ucode == IWL_UCODE_WOWLAN)
849 cmd.ba_escape_timer = cpu_to_le32(IWL_BA_ESCAPE_TIMER_D3);
851 mvmvif->bf_data.ba_enabled = enable;
852 return _iwl_mvm_enable_beacon_filter(mvm, vif, &cmd, 0, false);
855 int iwl_mvm_disable_beacon_filter(struct iwl_mvm *mvm,
856 struct ieee80211_vif *vif,
859 struct iwl_beacon_filter_cmd cmd = {};
860 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
863 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
866 ret = iwl_mvm_beacon_filter_send_cmd(mvm, &cmd, flags);
869 mvmvif->bf_data.bf_enabled = false;
874 static int iwl_mvm_power_set_ps(struct iwl_mvm *mvm)
879 /* disable PS if CAM */
880 disable_ps = (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM);
881 /* ...or if any of the vifs require PS to be off */
882 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
883 IEEE80211_IFACE_ITER_NORMAL,
884 iwl_mvm_power_ps_disabled_iterator,
887 /* update device power state if it has changed */
888 if (mvm->ps_disabled != disable_ps) {
889 bool old_ps_disabled = mvm->ps_disabled;
891 mvm->ps_disabled = disable_ps;
892 ret = iwl_mvm_power_update_device(mvm);
894 mvm->ps_disabled = old_ps_disabled;
902 static int iwl_mvm_power_set_ba(struct iwl_mvm *mvm,
903 struct iwl_power_vifs *vifs)
905 struct iwl_mvm_vif *mvmvif;
911 mvmvif = iwl_mvm_vif_from_mac80211(vifs->bf_vif);
913 ba_enable = !(!mvmvif->pm_enabled || mvm->ps_disabled ||
914 !vifs->bf_vif->bss_conf.ps ||
915 iwl_mvm_vif_low_latency(mvmvif));
917 return iwl_mvm_update_beacon_abort(mvm, vifs->bf_vif, ba_enable);
920 int iwl_mvm_power_update_ps(struct iwl_mvm *mvm)
922 struct iwl_power_vifs vifs = {
927 lockdep_assert_held(&mvm->mutex);
930 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
931 IEEE80211_IFACE_ITER_NORMAL,
932 iwl_mvm_power_get_vifs_iterator, &vifs);
934 ret = iwl_mvm_power_set_ps(mvm);
938 return iwl_mvm_power_set_ba(mvm, &vifs);
941 int iwl_mvm_power_update_mac(struct iwl_mvm *mvm)
943 struct iwl_power_vifs vifs = {
948 lockdep_assert_held(&mvm->mutex);
951 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
952 IEEE80211_IFACE_ITER_NORMAL,
953 iwl_mvm_power_get_vifs_iterator, &vifs);
955 iwl_mvm_power_set_pm(mvm, &vifs);
957 ret = iwl_mvm_power_set_ps(mvm);
962 ret = iwl_mvm_power_send_cmd(mvm, vifs.bss_vif);
968 ret = iwl_mvm_power_send_cmd(mvm, vifs.p2p_vif);
973 return iwl_mvm_power_set_ba(mvm, &vifs);
976 int iwl_mvm_update_d0i3_power_mode(struct iwl_mvm *mvm,
977 struct ieee80211_vif *vif,
978 bool enable, u32 flags)
981 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
982 struct iwl_mac_power_cmd cmd = {};
984 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
987 if (!vif->bss_conf.assoc)
990 iwl_mvm_power_build_cmd(mvm, vif, &cmd);
992 /* configure skip over dtim up to 306TU - 314 msec */
993 int dtimper = vif->bss_conf.dtim_period ?: 1;
994 int dtimper_tu = dtimper * vif->bss_conf.beacon_int;
995 bool radar_detect = iwl_mvm_power_is_radar(vif);
997 if (WARN_ON(!dtimper_tu))
1000 /* Check skip over DTIM conditions */
1001 /* TODO: check that multicast wake lock is off */
1002 if (!radar_detect && (dtimper < 10)) {
1003 cmd.skip_dtim_periods = 306 / dtimper_tu;
1004 if (cmd.skip_dtim_periods)
1005 cmd.flags |= cpu_to_le16(
1006 POWER_FLAGS_SKIP_OVER_DTIM_MSK);
1009 iwl_mvm_power_log(mvm, &cmd);
1010 #ifdef CONFIG_IWLWIFI_DEBUGFS
1011 memcpy(&mvmvif->mac_pwr_cmd, &cmd, sizeof(cmd));
1013 ret = iwl_mvm_send_cmd_pdu(mvm, MAC_PM_POWER_TABLE, flags,
1018 /* configure beacon filtering */
1019 if (mvmvif != mvm->bf_allowed_vif)
1023 struct iwl_beacon_filter_cmd cmd_bf = {
1024 IWL_BF_CMD_CONFIG_D0I3,
1025 .bf_enable_beacon_filter = cpu_to_le32(1),
1027 ret = _iwl_mvm_enable_beacon_filter(mvm, vif, &cmd_bf,
1030 if (mvmvif->bf_data.bf_enabled)
1031 ret = iwl_mvm_enable_beacon_filter(mvm, vif, flags);
1033 ret = iwl_mvm_disable_beacon_filter(mvm, vif, flags);