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 - 2013 Intel Corporation. All rights reserved.
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.
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.
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,
24 * The full GNU General Public License is included in this distribution
25 * in the file called COPYING.
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
33 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
34 * All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
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
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.
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.
62 *****************************************************************************/
64 #include <linux/kernel.h>
65 #include <linux/module.h>
66 #include <linux/slab.h>
67 #include <linux/init.h>
69 #include <net/mac80211.h>
71 #include "iwl-debug.h"
73 #include "iwl-modparams.h"
74 #include "fw-api-power.h"
76 #define POWER_KEEP_ALIVE_PERIOD_SEC 25
78 int iwl_mvm_beacon_filter_send_cmd(struct iwl_mvm
*mvm
,
79 struct iwl_beacon_filter_cmd
*cmd
)
83 ret
= iwl_mvm_send_cmd_pdu(mvm
, REPLY_BEACON_FILTERING_CMD
, CMD_SYNC
,
84 sizeof(struct iwl_beacon_filter_cmd
), cmd
);
87 IWL_DEBUG_POWER(mvm
, "ba_enable_beacon_abort is: %d\n",
88 le32_to_cpu(cmd
->ba_enable_beacon_abort
));
89 IWL_DEBUG_POWER(mvm
, "ba_escape_timer is: %d\n",
90 le32_to_cpu(cmd
->ba_escape_timer
));
91 IWL_DEBUG_POWER(mvm
, "bf_debug_flag is: %d\n",
92 le32_to_cpu(cmd
->bf_debug_flag
));
93 IWL_DEBUG_POWER(mvm
, "bf_enable_beacon_filter is: %d\n",
94 le32_to_cpu(cmd
->bf_enable_beacon_filter
));
95 IWL_DEBUG_POWER(mvm
, "bf_energy_delta is: %d\n",
96 le32_to_cpu(cmd
->bf_energy_delta
));
97 IWL_DEBUG_POWER(mvm
, "bf_escape_timer is: %d\n",
98 le32_to_cpu(cmd
->bf_escape_timer
));
99 IWL_DEBUG_POWER(mvm
, "bf_roaming_energy_delta is: %d\n",
100 le32_to_cpu(cmd
->bf_roaming_energy_delta
));
101 IWL_DEBUG_POWER(mvm
, "bf_roaming_state is: %d\n",
102 le32_to_cpu(cmd
->bf_roaming_state
));
103 IWL_DEBUG_POWER(mvm
, "bf_temp_threshold is: %d\n",
104 le32_to_cpu(cmd
->bf_temp_threshold
));
105 IWL_DEBUG_POWER(mvm
, "bf_temp_fast_filter is: %d\n",
106 le32_to_cpu(cmd
->bf_temp_fast_filter
));
107 IWL_DEBUG_POWER(mvm
, "bf_temp_slow_filter is: %d\n",
108 le32_to_cpu(cmd
->bf_temp_slow_filter
));
114 void iwl_mvm_beacon_filter_set_cqm_params(struct iwl_mvm
*mvm
,
115 struct ieee80211_vif
*vif
,
116 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
) {
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 int iwl_mvm_update_beacon_abort(struct iwl_mvm
*mvm
,
131 struct ieee80211_vif
*vif
, bool enable
)
133 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
134 struct iwl_beacon_filter_cmd cmd
= {
135 IWL_BF_CMD_CONFIG_DEFAULTS
,
136 .bf_enable_beacon_filter
= cpu_to_le32(1),
137 .ba_enable_beacon_abort
= cpu_to_le32(enable
),
140 if (!mvmvif
->bf_data
.bf_enabled
)
143 if (mvm
->cur_ucode
== IWL_UCODE_WOWLAN
)
144 cmd
.ba_escape_timer
= cpu_to_le32(IWL_BA_ESCAPE_TIMER_D3
);
146 mvmvif
->bf_data
.ba_enabled
= enable
;
147 iwl_mvm_beacon_filter_set_cqm_params(mvm
, vif
, &cmd
);
148 iwl_mvm_beacon_filter_debugfs_parameters(vif
, &cmd
);
149 return iwl_mvm_beacon_filter_send_cmd(mvm
, &cmd
);
152 static void iwl_mvm_power_log(struct iwl_mvm
*mvm
,
153 struct iwl_mac_power_cmd
*cmd
)
156 "Sending power table command on mac id 0x%X for power level %d, flags = 0x%X\n",
157 cmd
->id_and_color
, iwlmvm_mod_params
.power_scheme
,
158 le16_to_cpu(cmd
->flags
));
159 IWL_DEBUG_POWER(mvm
, "Keep alive = %u sec\n",
160 le16_to_cpu(cmd
->keep_alive_seconds
));
162 if (!(cmd
->flags
& cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK
))) {
163 IWL_DEBUG_POWER(mvm
, "Disable power management\n");
167 IWL_DEBUG_POWER(mvm
, "Rx timeout = %u usec\n",
168 le32_to_cpu(cmd
->rx_data_timeout
));
169 IWL_DEBUG_POWER(mvm
, "Tx timeout = %u usec\n",
170 le32_to_cpu(cmd
->tx_data_timeout
));
171 if (cmd
->flags
& cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK
))
172 IWL_DEBUG_POWER(mvm
, "DTIM periods to skip = %u\n",
173 cmd
->skip_dtim_periods
);
174 if (cmd
->flags
& cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK
))
175 IWL_DEBUG_POWER(mvm
, "LP RX RSSI threshold = %u\n",
176 cmd
->lprx_rssi_threshold
);
177 if (cmd
->flags
& cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK
)) {
178 IWL_DEBUG_POWER(mvm
, "uAPSD enabled\n");
179 IWL_DEBUG_POWER(mvm
, "Rx timeout (uAPSD) = %u usec\n",
180 le32_to_cpu(cmd
->rx_data_timeout_uapsd
));
181 IWL_DEBUG_POWER(mvm
, "Tx timeout (uAPSD) = %u usec\n",
182 le32_to_cpu(cmd
->tx_data_timeout_uapsd
));
183 IWL_DEBUG_POWER(mvm
, "QNDP TID = %d\n", cmd
->qndp_tid
);
184 IWL_DEBUG_POWER(mvm
, "ACs flags = 0x%x\n", cmd
->uapsd_ac_flags
);
185 IWL_DEBUG_POWER(mvm
, "Max SP = %d\n", cmd
->uapsd_max_sp
);
189 static void iwl_mvm_power_build_cmd(struct iwl_mvm
*mvm
,
190 struct ieee80211_vif
*vif
,
191 struct iwl_mac_power_cmd
*cmd
)
193 struct ieee80211_hw
*hw
= mvm
->hw
;
194 struct ieee80211_chanctx_conf
*chanctx_conf
;
195 struct ieee80211_channel
*chan
;
196 int dtimper
, dtimper_msec
;
198 bool radar_detect
= false;
199 struct iwl_mvm_vif
*mvmvif __maybe_unused
=
200 iwl_mvm_vif_from_mac80211(vif
);
201 enum ieee80211_ac_numbers ac
;
202 bool tid_found
= false;
204 cmd
->id_and_color
= cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif
->id
,
206 dtimper
= hw
->conf
.ps_dtim_period
?: 1;
209 * Regardless of power management state the driver must set
210 * keep alive period. FW will use it for sending keep alive NDPs
211 * immediately after association. Check that keep alive period
212 * is at least 3 * DTIM
214 dtimper_msec
= dtimper
* vif
->bss_conf
.beacon_int
;
215 keep_alive
= max_t(int, 3 * dtimper_msec
,
216 MSEC_PER_SEC
* POWER_KEEP_ALIVE_PERIOD_SEC
);
217 keep_alive
= DIV_ROUND_UP(keep_alive
, MSEC_PER_SEC
);
218 cmd
->keep_alive_seconds
= cpu_to_le16(keep_alive
);
220 if (iwlmvm_mod_params
.power_scheme
== IWL_POWER_SCHEME_CAM
)
223 cmd
->flags
|= cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK
);
225 #ifdef CONFIG_IWLWIFI_DEBUGFS
226 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_DISABLE_POWER_OFF
&&
227 mvmvif
->dbgfs_pm
.disable_power_off
)
228 cmd
->flags
&= cpu_to_le16(~POWER_FLAGS_POWER_SAVE_ENA_MSK
);
230 if (!vif
->bss_conf
.ps
)
233 cmd
->flags
|= cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK
);
235 if (vif
->bss_conf
.beacon_rate
&&
236 (vif
->bss_conf
.beacon_rate
->bitrate
== 10 ||
237 vif
->bss_conf
.beacon_rate
->bitrate
== 60)) {
238 cmd
->flags
|= cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK
);
239 cmd
->lprx_rssi_threshold
= POWER_LPRX_RSSI_THRESHOLD
;
242 /* Check if radar detection is required on current channel */
244 chanctx_conf
= rcu_dereference(vif
->chanctx_conf
);
245 WARN_ON(!chanctx_conf
);
247 chan
= chanctx_conf
->def
.chan
;
248 radar_detect
= chan
->flags
& IEEE80211_CHAN_RADAR
;
252 /* Check skip over DTIM conditions */
253 if (!radar_detect
&& (dtimper
<= 10) &&
254 (iwlmvm_mod_params
.power_scheme
== IWL_POWER_SCHEME_LP
||
255 mvm
->cur_ucode
== IWL_UCODE_WOWLAN
)) {
256 cmd
->flags
|= cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK
);
257 cmd
->skip_dtim_periods
= 3;
260 if (mvm
->cur_ucode
!= IWL_UCODE_WOWLAN
) {
261 cmd
->rx_data_timeout
=
262 cpu_to_le32(IWL_MVM_DEFAULT_PS_RX_DATA_TIMEOUT
);
263 cmd
->tx_data_timeout
=
264 cpu_to_le32(IWL_MVM_DEFAULT_PS_TX_DATA_TIMEOUT
);
266 cmd
->rx_data_timeout
=
267 cpu_to_le32(IWL_MVM_WOWLAN_PS_RX_DATA_TIMEOUT
);
268 cmd
->tx_data_timeout
=
269 cpu_to_le32(IWL_MVM_WOWLAN_PS_TX_DATA_TIMEOUT
);
272 for (ac
= IEEE80211_AC_VO
; ac
<= IEEE80211_AC_BK
; ac
++) {
273 if (!mvmvif
->queue_params
[ac
].uapsd
)
276 if (mvm
->cur_ucode
!= IWL_UCODE_WOWLAN
)
278 cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK
);
280 cmd
->uapsd_ac_flags
|= BIT(ac
);
282 /* QNDP TID - the highest TID with no admission control */
283 if (!tid_found
&& !mvmvif
->queue_params
[ac
].acm
) {
286 case IEEE80211_AC_VO
:
289 case IEEE80211_AC_VI
:
292 case IEEE80211_AC_BE
:
295 case IEEE80211_AC_BK
:
302 if (cmd
->flags
& cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK
)) {
303 cmd
->rx_data_timeout_uapsd
=
304 cpu_to_le32(IWL_MVM_UAPSD_RX_DATA_TIMEOUT
);
305 cmd
->tx_data_timeout_uapsd
=
306 cpu_to_le32(IWL_MVM_UAPSD_TX_DATA_TIMEOUT
);
308 if (cmd
->uapsd_ac_flags
== (BIT(IEEE80211_AC_VO
) |
309 BIT(IEEE80211_AC_VI
) |
310 BIT(IEEE80211_AC_BE
) |
311 BIT(IEEE80211_AC_BK
))) {
312 cmd
->flags
|= cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK
);
313 cmd
->snooze_interval
=
314 cpu_to_le16(IWL_MVM_PS_SNOOZE_INTERVAL
);
316 (mvm
->cur_ucode
== IWL_UCODE_WOWLAN
) ?
317 cpu_to_le16(IWL_MVM_WOWLAN_PS_SNOOZE_WINDOW
) :
318 cpu_to_le16(IWL_MVM_PS_SNOOZE_WINDOW
);
321 cmd
->uapsd_max_sp
= IWL_UAPSD_MAX_SP
;
322 cmd
->heavy_tx_thld_packets
=
323 IWL_MVM_PS_HEAVY_TX_THLD_PACKETS
;
324 cmd
->heavy_rx_thld_packets
=
325 IWL_MVM_PS_HEAVY_RX_THLD_PACKETS
;
326 cmd
->heavy_tx_thld_percentage
=
327 IWL_MVM_PS_HEAVY_TX_THLD_PERCENT
;
328 cmd
->heavy_rx_thld_percentage
=
329 IWL_MVM_PS_HEAVY_RX_THLD_PERCENT
;
332 #ifdef CONFIG_IWLWIFI_DEBUGFS
333 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_KEEP_ALIVE
)
334 cmd
->keep_alive_seconds
=
335 cpu_to_le16(mvmvif
->dbgfs_pm
.keep_alive_seconds
);
336 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_SKIP_OVER_DTIM
) {
337 if (mvmvif
->dbgfs_pm
.skip_over_dtim
)
339 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK
);
342 cpu_to_le16(~POWER_FLAGS_SKIP_OVER_DTIM_MSK
);
344 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_RX_DATA_TIMEOUT
)
345 cmd
->rx_data_timeout
=
346 cpu_to_le32(mvmvif
->dbgfs_pm
.rx_data_timeout
);
347 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_TX_DATA_TIMEOUT
)
348 cmd
->tx_data_timeout
=
349 cpu_to_le32(mvmvif
->dbgfs_pm
.tx_data_timeout
);
350 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_SKIP_DTIM_PERIODS
)
351 cmd
->skip_dtim_periods
= mvmvif
->dbgfs_pm
.skip_dtim_periods
;
352 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_LPRX_ENA
) {
353 if (mvmvif
->dbgfs_pm
.lprx_ena
)
354 cmd
->flags
|= cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK
);
356 cmd
->flags
&= cpu_to_le16(~POWER_FLAGS_LPRX_ENA_MSK
);
358 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_LPRX_RSSI_THRESHOLD
)
359 cmd
->lprx_rssi_threshold
= mvmvif
->dbgfs_pm
.lprx_rssi_threshold
;
360 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_SNOOZE_ENABLE
) {
361 if (mvmvif
->dbgfs_pm
.snooze_ena
)
363 cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK
);
366 cpu_to_le16(~POWER_FLAGS_SNOOZE_ENA_MSK
);
368 #endif /* CONFIG_IWLWIFI_DEBUGFS */
371 static int iwl_mvm_power_mac_update_mode(struct iwl_mvm
*mvm
,
372 struct ieee80211_vif
*vif
)
376 struct iwl_mac_power_cmd cmd
= {};
378 if (vif
->type
!= NL80211_IFTYPE_STATION
|| vif
->p2p
)
382 * TODO: The following vif_count verification is temporary condition.
383 * Avoid power mode update if more than one interface is currently
384 * active. Remove this condition when FW will support power management
387 IWL_DEBUG_POWER(mvm
, "Currently %d interfaces active\n",
389 if (mvm
->vif_count
> 1)
392 iwl_mvm_power_build_cmd(mvm
, vif
, &cmd
);
393 iwl_mvm_power_log(mvm
, &cmd
);
395 ret
= iwl_mvm_send_cmd_pdu(mvm
, MAC_PM_POWER_TABLE
, CMD_SYNC
,
400 ba_enable
= !!(cmd
.flags
&
401 cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK
));
403 return iwl_mvm_update_beacon_abort(mvm
, vif
, ba_enable
);
406 static int iwl_mvm_power_mac_disable(struct iwl_mvm
*mvm
,
407 struct ieee80211_vif
*vif
)
409 struct iwl_mac_power_cmd cmd
= {};
410 struct iwl_mvm_vif
*mvmvif __maybe_unused
=
411 iwl_mvm_vif_from_mac80211(vif
);
413 if (vif
->type
!= NL80211_IFTYPE_STATION
|| vif
->p2p
)
416 cmd
.id_and_color
= cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif
->id
,
419 if (iwlmvm_mod_params
.power_scheme
!= IWL_POWER_SCHEME_CAM
)
420 cmd
.flags
|= cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK
);
422 #ifdef CONFIG_IWLWIFI_DEBUGFS
423 if (mvmvif
->dbgfs_pm
.mask
& MVM_DEBUGFS_PM_DISABLE_POWER_OFF
&&
424 mvmvif
->dbgfs_pm
.disable_power_off
)
425 cmd
.flags
&= cpu_to_le16(~POWER_FLAGS_POWER_SAVE_ENA_MSK
);
427 iwl_mvm_power_log(mvm
, &cmd
);
429 return iwl_mvm_send_cmd_pdu(mvm
, MAC_PM_POWER_TABLE
, CMD_ASYNC
,
433 #ifdef CONFIG_IWLWIFI_DEBUGFS
434 static int iwl_mvm_power_mac_dbgfs_read(struct iwl_mvm
*mvm
,
435 struct ieee80211_vif
*vif
, char *buf
,
438 struct iwl_mac_power_cmd cmd
= {};
441 iwl_mvm_power_build_cmd(mvm
, vif
, &cmd
);
443 pos
+= scnprintf(buf
+pos
, bufsz
-pos
, "disable_power_off = %d\n",
445 cpu_to_le16(POWER_FLAGS_POWER_SAVE_ENA_MSK
)) ?
447 pos
+= scnprintf(buf
+pos
, bufsz
-pos
, "power_scheme = %d\n",
448 iwlmvm_mod_params
.power_scheme
);
449 pos
+= scnprintf(buf
+pos
, bufsz
-pos
, "flags = 0x%x\n",
450 le16_to_cpu(cmd
.flags
));
451 pos
+= scnprintf(buf
+pos
, bufsz
-pos
, "keep_alive = %d\n",
452 le16_to_cpu(cmd
.keep_alive_seconds
));
454 if (cmd
.flags
& cpu_to_le16(POWER_FLAGS_POWER_MANAGEMENT_ENA_MSK
)) {
455 pos
+= scnprintf(buf
+pos
, bufsz
-pos
, "skip_over_dtim = %d\n",
457 cpu_to_le16(POWER_FLAGS_SKIP_OVER_DTIM_MSK
)) ?
459 pos
+= scnprintf(buf
+pos
, bufsz
-pos
, "skip_dtim_periods = %d\n",
460 cmd
.skip_dtim_periods
);
462 cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK
))) {
463 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
464 "rx_data_timeout = %d\n",
465 le32_to_cpu(cmd
.rx_data_timeout
));
466 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
467 "tx_data_timeout = %d\n",
468 le32_to_cpu(cmd
.tx_data_timeout
));
470 if (cmd
.flags
& cpu_to_le16(POWER_FLAGS_LPRX_ENA_MSK
))
471 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
472 "lprx_rssi_threshold = %d\n",
473 cmd
.lprx_rssi_threshold
);
474 if (cmd
.flags
& cpu_to_le16(POWER_FLAGS_ADVANCE_PM_ENA_MSK
)) {
476 scnprintf(buf
+pos
, bufsz
-pos
,
477 "rx_data_timeout_uapsd = %d\n",
478 le32_to_cpu(cmd
.rx_data_timeout_uapsd
));
480 scnprintf(buf
+pos
, bufsz
-pos
,
481 "tx_data_timeout_uapsd = %d\n",
482 le32_to_cpu(cmd
.tx_data_timeout_uapsd
));
483 pos
+= scnprintf(buf
+pos
, bufsz
-pos
, "qndp_tid = %d\n",
485 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
486 "uapsd_ac_flags = 0x%x\n",
488 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
489 "uapsd_max_sp = %d\n",
491 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
492 "heavy_tx_thld_packets = %d\n",
493 cmd
.heavy_tx_thld_packets
);
494 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
495 "heavy_rx_thld_packets = %d\n",
496 cmd
.heavy_rx_thld_packets
);
497 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
498 "heavy_tx_thld_percentage = %d\n",
499 cmd
.heavy_tx_thld_percentage
);
500 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
501 "heavy_rx_thld_percentage = %d\n",
502 cmd
.heavy_rx_thld_percentage
);
504 scnprintf(buf
+pos
, bufsz
-pos
, "snooze_enable = %d\n",
506 cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK
)) ?
509 if (cmd
.flags
& cpu_to_le16(POWER_FLAGS_SNOOZE_ENA_MSK
)) {
510 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
511 "snooze_interval = %d\n",
512 cmd
.snooze_interval
);
513 pos
+= scnprintf(buf
+pos
, bufsz
-pos
,
514 "snooze_window = %d\n",
522 iwl_mvm_beacon_filter_debugfs_parameters(struct ieee80211_vif
*vif
,
523 struct iwl_beacon_filter_cmd
*cmd
)
525 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
526 struct iwl_dbgfs_bf
*dbgfs_bf
= &mvmvif
->dbgfs_bf
;
528 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BF_ENERGY_DELTA
)
529 cmd
->bf_energy_delta
= cpu_to_le32(dbgfs_bf
->bf_energy_delta
);
530 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BF_ROAMING_ENERGY_DELTA
)
531 cmd
->bf_roaming_energy_delta
=
532 cpu_to_le32(dbgfs_bf
->bf_roaming_energy_delta
);
533 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BF_ROAMING_STATE
)
534 cmd
->bf_roaming_state
= cpu_to_le32(dbgfs_bf
->bf_roaming_state
);
535 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BF_TEMP_THRESHOLD
)
536 cmd
->bf_temp_threshold
=
537 cpu_to_le32(dbgfs_bf
->bf_temp_threshold
);
538 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BF_TEMP_FAST_FILTER
)
539 cmd
->bf_temp_fast_filter
=
540 cpu_to_le32(dbgfs_bf
->bf_temp_fast_filter
);
541 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BF_TEMP_SLOW_FILTER
)
542 cmd
->bf_temp_slow_filter
=
543 cpu_to_le32(dbgfs_bf
->bf_temp_slow_filter
);
544 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BF_DEBUG_FLAG
)
545 cmd
->bf_debug_flag
= cpu_to_le32(dbgfs_bf
->bf_debug_flag
);
546 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BF_ESCAPE_TIMER
)
547 cmd
->bf_escape_timer
= cpu_to_le32(dbgfs_bf
->bf_escape_timer
);
548 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BA_ESCAPE_TIMER
)
549 cmd
->ba_escape_timer
= cpu_to_le32(dbgfs_bf
->ba_escape_timer
);
550 if (dbgfs_bf
->mask
& MVM_DEBUGFS_BA_ENABLE_BEACON_ABORT
)
551 cmd
->ba_enable_beacon_abort
=
552 cpu_to_le32(dbgfs_bf
->ba_enable_beacon_abort
);
556 int iwl_mvm_enable_beacon_filter(struct iwl_mvm
*mvm
,
557 struct ieee80211_vif
*vif
)
559 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
560 struct iwl_beacon_filter_cmd cmd
= {
561 IWL_BF_CMD_CONFIG_DEFAULTS
,
562 .bf_enable_beacon_filter
= cpu_to_le32(1),
566 if (mvmvif
!= mvm
->bf_allowed_vif
||
567 vif
->type
!= NL80211_IFTYPE_STATION
|| vif
->p2p
)
570 iwl_mvm_beacon_filter_set_cqm_params(mvm
, vif
, &cmd
);
571 iwl_mvm_beacon_filter_debugfs_parameters(vif
, &cmd
);
572 ret
= iwl_mvm_beacon_filter_send_cmd(mvm
, &cmd
);
575 mvmvif
->bf_data
.bf_enabled
= true;
580 int iwl_mvm_disable_beacon_filter(struct iwl_mvm
*mvm
,
581 struct ieee80211_vif
*vif
)
583 struct iwl_beacon_filter_cmd cmd
= {};
584 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
587 if (!(mvm
->fw
->ucode_capa
.flags
& IWL_UCODE_TLV_FLAGS_BF_UPDATED
) ||
588 vif
->type
!= NL80211_IFTYPE_STATION
|| vif
->p2p
)
591 ret
= iwl_mvm_beacon_filter_send_cmd(mvm
, &cmd
);
594 mvmvif
->bf_data
.bf_enabled
= false;
599 int iwl_mvm_update_beacon_filter(struct iwl_mvm
*mvm
,
600 struct ieee80211_vif
*vif
)
602 struct iwl_mvm_vif
*mvmvif
= iwl_mvm_vif_from_mac80211(vif
);
604 if (!mvmvif
->bf_data
.bf_enabled
)
607 return iwl_mvm_enable_beacon_filter(mvm
, vif
);
610 const struct iwl_mvm_power_ops pm_mac_ops
= {
611 .power_update_mode
= iwl_mvm_power_mac_update_mode
,
612 .power_disable
= iwl_mvm_power_mac_disable
,
613 #ifdef CONFIG_IWLWIFI_DEBUGFS
614 .power_dbgfs_read
= iwl_mvm_power_mac_dbgfs_read
,