Loading...
1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2/*
3 * Copyright (C) 2013-2014, 2018-2019, 2022-2023 Intel Corporation
4 * Copyright (C) 2013-2014 Intel Mobile Communications GmbH
5 */
6#include "mvm.h"
7
8/* For counting bound interfaces */
9struct iwl_mvm_active_iface_iterator_data {
10 struct ieee80211_vif *ignore_vif;
11 struct ieee80211_sta *sta_vif_ap_sta;
12 enum iwl_sf_state sta_vif_state;
13 u32 num_active_macs;
14};
15
16/*
17 * Count bound interfaces which are not p2p, besides data->ignore_vif.
18 * data->station_vif will point to one bound vif of type station, if exists.
19 */
20static void iwl_mvm_bound_iface_iterator(void *_data, u8 *mac,
21 struct ieee80211_vif *vif)
22{
23 struct iwl_mvm_active_iface_iterator_data *data = _data;
24 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
25
26 if (vif == data->ignore_vif || !mvmvif->deflink.phy_ctxt ||
27 vif->type == NL80211_IFTYPE_P2P_DEVICE)
28 return;
29
30 data->num_active_macs++;
31
32 if (vif->type == NL80211_IFTYPE_STATION) {
33 data->sta_vif_ap_sta = mvmvif->ap_sta;
34 if (vif->cfg.assoc)
35 data->sta_vif_state = SF_FULL_ON;
36 else
37 data->sta_vif_state = SF_INIT_OFF;
38 }
39}
40
41/*
42 * Aging and idle timeouts for the different possible scenarios
43 * in default configuration
44 */
45static const
46__le32 sf_full_timeout_def[SF_NUM_SCENARIO][SF_NUM_TIMEOUT_TYPES] = {
47 {
48 cpu_to_le32(SF_SINGLE_UNICAST_AGING_TIMER_DEF),
49 cpu_to_le32(SF_SINGLE_UNICAST_IDLE_TIMER_DEF)
50 },
51 {
52 cpu_to_le32(SF_AGG_UNICAST_AGING_TIMER_DEF),
53 cpu_to_le32(SF_AGG_UNICAST_IDLE_TIMER_DEF)
54 },
55 {
56 cpu_to_le32(SF_MCAST_AGING_TIMER_DEF),
57 cpu_to_le32(SF_MCAST_IDLE_TIMER_DEF)
58 },
59 {
60 cpu_to_le32(SF_BA_AGING_TIMER_DEF),
61 cpu_to_le32(SF_BA_IDLE_TIMER_DEF)
62 },
63 {
64 cpu_to_le32(SF_TX_RE_AGING_TIMER_DEF),
65 cpu_to_le32(SF_TX_RE_IDLE_TIMER_DEF)
66 },
67};
68
69/*
70 * Aging and idle timeouts for the different possible scenarios
71 * in single BSS MAC configuration.
72 */
73static const __le32 sf_full_timeout[SF_NUM_SCENARIO][SF_NUM_TIMEOUT_TYPES] = {
74 {
75 cpu_to_le32(SF_SINGLE_UNICAST_AGING_TIMER),
76 cpu_to_le32(SF_SINGLE_UNICAST_IDLE_TIMER)
77 },
78 {
79 cpu_to_le32(SF_AGG_UNICAST_AGING_TIMER),
80 cpu_to_le32(SF_AGG_UNICAST_IDLE_TIMER)
81 },
82 {
83 cpu_to_le32(SF_MCAST_AGING_TIMER),
84 cpu_to_le32(SF_MCAST_IDLE_TIMER)
85 },
86 {
87 cpu_to_le32(SF_BA_AGING_TIMER),
88 cpu_to_le32(SF_BA_IDLE_TIMER)
89 },
90 {
91 cpu_to_le32(SF_TX_RE_AGING_TIMER),
92 cpu_to_le32(SF_TX_RE_IDLE_TIMER)
93 },
94};
95
96static void iwl_mvm_fill_sf_command(struct iwl_mvm *mvm,
97 struct iwl_sf_cfg_cmd *sf_cmd,
98 struct ieee80211_sta *sta)
99{
100 int i, j, watermark;
101 u8 max_rx_nss = 0;
102 bool is_legacy = true;
103 struct ieee80211_link_sta *link_sta;
104 unsigned int link_id;
105
106 sf_cmd->watermark[SF_LONG_DELAY_ON] = cpu_to_le32(SF_W_MARK_SCAN);
107
108 /*
109 * If we are in association flow - check antenna configuration
110 * capabilities of the AP station, and choose the watermark accordingly.
111 */
112 if (sta) {
113 /* find the maximal NSS number among all links (if relevant) */
114 rcu_read_lock();
115 for (link_id = 0; link_id < ARRAY_SIZE(sta->link); link_id++) {
116 link_sta = rcu_dereference(sta->link[link_id]);
117 if (!link_sta)
118 continue;
119
120 if (link_sta->ht_cap.ht_supported ||
121 link_sta->vht_cap.vht_supported ||
122 link_sta->eht_cap.has_eht ||
123 link_sta->he_cap.has_he) {
124 is_legacy = false;
125 max_rx_nss = max(max_rx_nss, link_sta->rx_nss);
126 }
127 }
128 rcu_read_unlock();
129
130 if (!is_legacy) {
131 switch (max_rx_nss) {
132 case 1:
133 watermark = SF_W_MARK_SISO;
134 break;
135 case 2:
136 watermark = SF_W_MARK_MIMO2;
137 break;
138 default:
139 watermark = SF_W_MARK_MIMO3;
140 break;
141 }
142 } else {
143 watermark = SF_W_MARK_LEGACY;
144 }
145 /* default watermark value for unassociated mode. */
146 } else {
147 watermark = SF_W_MARK_MIMO2;
148 }
149 sf_cmd->watermark[SF_FULL_ON] = cpu_to_le32(watermark);
150
151 for (i = 0; i < SF_NUM_SCENARIO; i++) {
152 for (j = 0; j < SF_NUM_TIMEOUT_TYPES; j++) {
153 sf_cmd->long_delay_timeouts[i][j] =
154 cpu_to_le32(SF_LONG_DELAY_AGING_TIMER);
155 }
156 }
157
158 if (sta) {
159 BUILD_BUG_ON(sizeof(sf_full_timeout) !=
160 sizeof(__le32) * SF_NUM_SCENARIO *
161 SF_NUM_TIMEOUT_TYPES);
162
163 memcpy(sf_cmd->full_on_timeouts, sf_full_timeout,
164 sizeof(sf_full_timeout));
165 } else {
166 BUILD_BUG_ON(sizeof(sf_full_timeout_def) !=
167 sizeof(__le32) * SF_NUM_SCENARIO *
168 SF_NUM_TIMEOUT_TYPES);
169
170 memcpy(sf_cmd->full_on_timeouts, sf_full_timeout_def,
171 sizeof(sf_full_timeout_def));
172 }
173}
174
175static int iwl_mvm_sf_config(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
176 enum iwl_sf_state new_state)
177{
178 struct iwl_sf_cfg_cmd sf_cmd = {
179 .state = cpu_to_le32(new_state),
180 };
181 int ret = 0;
182
183 /*
184 * If an associated AP sta changed its antenna configuration, the state
185 * will remain FULL_ON but SF parameters need to be reconsidered.
186 */
187 if (new_state != SF_FULL_ON && mvm->sf_state == new_state)
188 return 0;
189
190 switch (new_state) {
191 case SF_UNINIT:
192 iwl_mvm_fill_sf_command(mvm, &sf_cmd, NULL);
193 break;
194 case SF_FULL_ON:
195 if (!sta) {
196 IWL_ERR(mvm,
197 "No station: Cannot switch SF to FULL_ON\n");
198 return -EINVAL;
199 }
200 iwl_mvm_fill_sf_command(mvm, &sf_cmd, sta);
201 break;
202 case SF_INIT_OFF:
203 iwl_mvm_fill_sf_command(mvm, &sf_cmd, NULL);
204 break;
205 default:
206 WARN_ONCE(1, "Invalid state: %d. not sending Smart Fifo cmd\n",
207 new_state);
208 return -EINVAL;
209 }
210
211 ret = iwl_mvm_send_cmd_pdu(mvm, REPLY_SF_CFG_CMD, CMD_ASYNC,
212 sizeof(sf_cmd), &sf_cmd);
213 if (!ret)
214 mvm->sf_state = new_state;
215
216 return ret;
217}
218
219/*
220 * Update Smart fifo:
221 * Count bound interfaces that are not to be removed, ignoring p2p devices,
222 * and set new state accordingly.
223 */
224int iwl_mvm_sf_update(struct iwl_mvm *mvm, struct ieee80211_vif *changed_vif,
225 bool remove_vif)
226{
227 enum iwl_sf_state new_state;
228 struct iwl_mvm_vif *mvmvif = NULL;
229 struct iwl_mvm_active_iface_iterator_data data = {
230 .ignore_vif = changed_vif,
231 .sta_vif_state = SF_UNINIT,
232 };
233 struct ieee80211_sta *sta = NULL;
234
235 /*
236 * Ignore the call if we are in HW Restart flow, or if the handled
237 * vif is a p2p device.
238 */
239 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) ||
240 (changed_vif && changed_vif->type == NL80211_IFTYPE_P2P_DEVICE))
241 return 0;
242
243 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
244 IEEE80211_IFACE_ITER_NORMAL,
245 iwl_mvm_bound_iface_iterator,
246 &data);
247
248 /* If changed_vif exists and is not to be removed, add to the count */
249 if (changed_vif && !remove_vif)
250 data.num_active_macs++;
251
252 switch (data.num_active_macs) {
253 case 0:
254 /* If there are no active macs - change state to SF_INIT_OFF */
255 new_state = SF_INIT_OFF;
256 break;
257 case 1:
258 if (remove_vif) {
259 /* The one active mac left is of type station
260 * and we filled the relevant data during iteration
261 */
262 new_state = data.sta_vif_state;
263 sta = data.sta_vif_ap_sta;
264 } else {
265 if (WARN_ON(!changed_vif))
266 return -EINVAL;
267 if (changed_vif->type != NL80211_IFTYPE_STATION) {
268 new_state = SF_UNINIT;
269 } else if (changed_vif->cfg.assoc &&
270 changed_vif->bss_conf.dtim_period) {
271 mvmvif = iwl_mvm_vif_from_mac80211(changed_vif);
272 sta = mvmvif->ap_sta;
273 new_state = SF_FULL_ON;
274 } else {
275 new_state = SF_INIT_OFF;
276 }
277 }
278 break;
279 default:
280 /* If there are multiple active macs - change to SF_UNINIT */
281 new_state = SF_UNINIT;
282 }
283
284 return iwl_mvm_sf_config(mvm, sta, new_state);
285}
1/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2013 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
10 *
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
26 * in the file called COPYING.
27 *
28 * Contact Information:
29 * Intel Linux Wireless <linuxwifi@intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
34 * Copyright(c) 2013 - 2014 Intel Corporation. All rights reserved.
35 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
36 * 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#include "mvm.h"
66
67/* For counting bound interfaces */
68struct iwl_mvm_active_iface_iterator_data {
69 struct ieee80211_vif *ignore_vif;
70 u8 sta_vif_ap_sta_id;
71 enum iwl_sf_state sta_vif_state;
72 int num_active_macs;
73};
74
75/*
76 * Count bound interfaces which are not p2p, besides data->ignore_vif.
77 * data->station_vif will point to one bound vif of type station, if exists.
78 */
79static void iwl_mvm_bound_iface_iterator(void *_data, u8 *mac,
80 struct ieee80211_vif *vif)
81{
82 struct iwl_mvm_active_iface_iterator_data *data = _data;
83 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
84
85 if (vif == data->ignore_vif || !mvmvif->phy_ctxt ||
86 vif->type == NL80211_IFTYPE_P2P_DEVICE)
87 return;
88
89 data->num_active_macs++;
90
91 if (vif->type == NL80211_IFTYPE_STATION) {
92 data->sta_vif_ap_sta_id = mvmvif->ap_sta_id;
93 if (vif->bss_conf.assoc)
94 data->sta_vif_state = SF_FULL_ON;
95 else
96 data->sta_vif_state = SF_INIT_OFF;
97 }
98}
99
100/*
101 * Aging and idle timeouts for the different possible scenarios
102 * in default configuration
103 */
104static const
105__le32 sf_full_timeout_def[SF_NUM_SCENARIO][SF_NUM_TIMEOUT_TYPES] = {
106 {
107 cpu_to_le32(SF_SINGLE_UNICAST_AGING_TIMER_DEF),
108 cpu_to_le32(SF_SINGLE_UNICAST_IDLE_TIMER_DEF)
109 },
110 {
111 cpu_to_le32(SF_AGG_UNICAST_AGING_TIMER_DEF),
112 cpu_to_le32(SF_AGG_UNICAST_IDLE_TIMER_DEF)
113 },
114 {
115 cpu_to_le32(SF_MCAST_AGING_TIMER_DEF),
116 cpu_to_le32(SF_MCAST_IDLE_TIMER_DEF)
117 },
118 {
119 cpu_to_le32(SF_BA_AGING_TIMER_DEF),
120 cpu_to_le32(SF_BA_IDLE_TIMER_DEF)
121 },
122 {
123 cpu_to_le32(SF_TX_RE_AGING_TIMER_DEF),
124 cpu_to_le32(SF_TX_RE_IDLE_TIMER_DEF)
125 },
126};
127
128/*
129 * Aging and idle timeouts for the different possible scenarios
130 * in single BSS MAC configuration.
131 */
132static const __le32 sf_full_timeout[SF_NUM_SCENARIO][SF_NUM_TIMEOUT_TYPES] = {
133 {
134 cpu_to_le32(SF_SINGLE_UNICAST_AGING_TIMER),
135 cpu_to_le32(SF_SINGLE_UNICAST_IDLE_TIMER)
136 },
137 {
138 cpu_to_le32(SF_AGG_UNICAST_AGING_TIMER),
139 cpu_to_le32(SF_AGG_UNICAST_IDLE_TIMER)
140 },
141 {
142 cpu_to_le32(SF_MCAST_AGING_TIMER),
143 cpu_to_le32(SF_MCAST_IDLE_TIMER)
144 },
145 {
146 cpu_to_le32(SF_BA_AGING_TIMER),
147 cpu_to_le32(SF_BA_IDLE_TIMER)
148 },
149 {
150 cpu_to_le32(SF_TX_RE_AGING_TIMER),
151 cpu_to_le32(SF_TX_RE_IDLE_TIMER)
152 },
153};
154
155static void iwl_mvm_fill_sf_command(struct iwl_mvm *mvm,
156 struct iwl_sf_cfg_cmd *sf_cmd,
157 struct ieee80211_sta *sta)
158{
159 int i, j, watermark;
160
161 sf_cmd->watermark[SF_LONG_DELAY_ON] = cpu_to_le32(SF_W_MARK_SCAN);
162
163 /*
164 * If we are in association flow - check antenna configuration
165 * capabilities of the AP station, and choose the watermark accordingly.
166 */
167 if (sta) {
168 if (sta->ht_cap.ht_supported || sta->vht_cap.vht_supported) {
169 switch (sta->rx_nss) {
170 case 1:
171 watermark = SF_W_MARK_SISO;
172 break;
173 case 2:
174 watermark = SF_W_MARK_MIMO2;
175 break;
176 default:
177 watermark = SF_W_MARK_MIMO3;
178 break;
179 }
180 } else {
181 watermark = SF_W_MARK_LEGACY;
182 }
183 /* default watermark value for unassociated mode. */
184 } else {
185 watermark = SF_W_MARK_MIMO2;
186 }
187 sf_cmd->watermark[SF_FULL_ON] = cpu_to_le32(watermark);
188
189 for (i = 0; i < SF_NUM_SCENARIO; i++) {
190 for (j = 0; j < SF_NUM_TIMEOUT_TYPES; j++) {
191 sf_cmd->long_delay_timeouts[i][j] =
192 cpu_to_le32(SF_LONG_DELAY_AGING_TIMER);
193 }
194 }
195
196 if (sta || IWL_UCODE_API(mvm->fw->ucode_ver) < 13) {
197 BUILD_BUG_ON(sizeof(sf_full_timeout) !=
198 sizeof(__le32) * SF_NUM_SCENARIO *
199 SF_NUM_TIMEOUT_TYPES);
200
201 memcpy(sf_cmd->full_on_timeouts, sf_full_timeout,
202 sizeof(sf_full_timeout));
203 } else {
204 BUILD_BUG_ON(sizeof(sf_full_timeout_def) !=
205 sizeof(__le32) * SF_NUM_SCENARIO *
206 SF_NUM_TIMEOUT_TYPES);
207
208 memcpy(sf_cmd->full_on_timeouts, sf_full_timeout_def,
209 sizeof(sf_full_timeout_def));
210 }
211
212}
213
214static int iwl_mvm_sf_config(struct iwl_mvm *mvm, u8 sta_id,
215 enum iwl_sf_state new_state)
216{
217 struct iwl_sf_cfg_cmd sf_cmd = {
218 .state = cpu_to_le32(SF_FULL_ON),
219 };
220 struct ieee80211_sta *sta;
221 int ret = 0;
222
223 if (IWL_UCODE_API(mvm->fw->ucode_ver) < 13)
224 sf_cmd.state = cpu_to_le32(new_state);
225
226 if (mvm->cfg->disable_dummy_notification)
227 sf_cmd.state |= cpu_to_le32(SF_CFG_DUMMY_NOTIF_OFF);
228
229 /*
230 * If an associated AP sta changed its antenna configuration, the state
231 * will remain FULL_ON but SF parameters need to be reconsidered.
232 */
233 if (new_state != SF_FULL_ON && mvm->sf_state == new_state)
234 return 0;
235
236 switch (new_state) {
237 case SF_UNINIT:
238 if (IWL_UCODE_API(mvm->fw->ucode_ver) >= 13)
239 iwl_mvm_fill_sf_command(mvm, &sf_cmd, NULL);
240 break;
241 case SF_FULL_ON:
242 if (sta_id == IWL_MVM_STATION_COUNT) {
243 IWL_ERR(mvm,
244 "No station: Cannot switch SF to FULL_ON\n");
245 return -EINVAL;
246 }
247 rcu_read_lock();
248 sta = rcu_dereference(mvm->fw_id_to_mac_id[sta_id]);
249 if (IS_ERR_OR_NULL(sta)) {
250 IWL_ERR(mvm, "Invalid station id\n");
251 rcu_read_unlock();
252 return -EINVAL;
253 }
254 iwl_mvm_fill_sf_command(mvm, &sf_cmd, sta);
255 rcu_read_unlock();
256 break;
257 case SF_INIT_OFF:
258 iwl_mvm_fill_sf_command(mvm, &sf_cmd, NULL);
259 break;
260 default:
261 WARN_ONCE(1, "Invalid state: %d. not sending Smart Fifo cmd\n",
262 new_state);
263 return -EINVAL;
264 }
265
266 ret = iwl_mvm_send_cmd_pdu(mvm, REPLY_SF_CFG_CMD, CMD_ASYNC,
267 sizeof(sf_cmd), &sf_cmd);
268 if (!ret)
269 mvm->sf_state = new_state;
270
271 return ret;
272}
273
274/*
275 * Update Smart fifo:
276 * Count bound interfaces that are not to be removed, ignoring p2p devices,
277 * and set new state accordingly.
278 */
279int iwl_mvm_sf_update(struct iwl_mvm *mvm, struct ieee80211_vif *changed_vif,
280 bool remove_vif)
281{
282 enum iwl_sf_state new_state;
283 u8 sta_id = IWL_MVM_STATION_COUNT;
284 struct iwl_mvm_vif *mvmvif = NULL;
285 struct iwl_mvm_active_iface_iterator_data data = {
286 .ignore_vif = changed_vif,
287 .sta_vif_state = SF_UNINIT,
288 .sta_vif_ap_sta_id = IWL_MVM_STATION_COUNT,
289 };
290
291 /*
292 * Ignore the call if we are in HW Restart flow, or if the handled
293 * vif is a p2p device.
294 */
295 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) ||
296 (changed_vif && changed_vif->type == NL80211_IFTYPE_P2P_DEVICE))
297 return 0;
298
299 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
300 IEEE80211_IFACE_ITER_NORMAL,
301 iwl_mvm_bound_iface_iterator,
302 &data);
303
304 /* If changed_vif exists and is not to be removed, add to the count */
305 if (changed_vif && !remove_vif)
306 data.num_active_macs++;
307
308 switch (data.num_active_macs) {
309 case 0:
310 /* If there are no active macs - change state to SF_INIT_OFF */
311 new_state = SF_INIT_OFF;
312 break;
313 case 1:
314 if (remove_vif) {
315 /* The one active mac left is of type station
316 * and we filled the relevant data during iteration
317 */
318 new_state = data.sta_vif_state;
319 sta_id = data.sta_vif_ap_sta_id;
320 } else {
321 if (WARN_ON(!changed_vif))
322 return -EINVAL;
323 if (changed_vif->type != NL80211_IFTYPE_STATION) {
324 new_state = SF_UNINIT;
325 } else if (changed_vif->bss_conf.assoc &&
326 changed_vif->bss_conf.dtim_period) {
327 mvmvif = iwl_mvm_vif_from_mac80211(changed_vif);
328 sta_id = mvmvif->ap_sta_id;
329 new_state = SF_FULL_ON;
330 } else {
331 new_state = SF_INIT_OFF;
332 }
333 }
334 break;
335 default:
336 /* If there are multiple active macs - change to SF_UNINIT */
337 new_state = SF_UNINIT;
338 }
339 return iwl_mvm_sf_config(mvm, sta_id, new_state);
340}