blob: 4d0314912e94794b7728af17707618cd72ad2908 [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.
Eliad Pellerc7792732015-04-19 11:41:04 +03009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Avraham Stern3edfb5f2017-08-02 12:13:20 +030010 * Copyright(c) 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachd01c5362015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Eliad Pellerc7792732015-04-19 11:41:04 +030036 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Avraham Stern3edfb5f2017-08-02 12:13:20 +030037 * Copyright(c) 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010038 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67
68#include <linux/jiffies.h>
69#include <net/mac80211.h>
70
Johannes Berg9fca9d52017-06-01 10:32:17 +020071#include "fw/notif-wait.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010072#include "iwl-trans.h"
73#include "fw-api.h"
74#include "time-event.h"
75#include "mvm.h"
76#include "iwl-io.h"
77#include "iwl-prph.h"
78
Ilan Peere635c792013-02-13 11:05:18 +020079/*
80 * For the high priority TE use a time event type that has similar priority to
81 * the FW's action scan priority.
Ilan Peer456f6dd2013-02-04 14:09:37 +020082 */
Ilan Peere635c792013-02-13 11:05:18 +020083#define IWL_MVM_ROC_TE_TYPE_NORMAL TE_P2P_DEVICE_DISCOVERABLE
84#define IWL_MVM_ROC_TE_TYPE_MGMT_TX TE_P2P_CLIENT_ASSOC
Ilan Peer456f6dd2013-02-04 14:09:37 +020085
Johannes Berg8ca151b2013-01-24 14:25:36 +010086void iwl_mvm_te_clear_data(struct iwl_mvm *mvm,
87 struct iwl_mvm_time_event_data *te_data)
88{
89 lockdep_assert_held(&mvm->time_event_lock);
90
Johannes Berg00fd2332015-06-26 16:04:01 +020091 if (!te_data->vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +010092 return;
93
94 list_del(&te_data->list);
95 te_data->running = false;
96 te_data->uid = 0;
97 te_data->id = TE_MAX;
98 te_data->vif = NULL;
99}
100
101void iwl_mvm_roc_done_wk(struct work_struct *wk)
102{
103 struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm, roc_done_wk);
Ariej Marjiehb1128892014-07-16 21:11:12 +0300104 u32 queues = 0;
105
106 /*
107 * Clear the ROC_RUNNING /ROC_AUX_RUNNING status bit.
108 * This will cause the TX path to drop offchannel transmissions.
109 * That would also be done by mac80211, but it is racy, in particular
110 * in the case that the time event actually completed in the firmware
111 * (which is handled in iwl_mvm_te_handle_notif).
112 */
Eliad Pellerc7792732015-04-19 11:41:04 +0300113 if (test_and_clear_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status)) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300114 queues |= BIT(IWL_MVM_OFFCHANNEL_QUEUE);
Eliad Pellerc7792732015-04-19 11:41:04 +0300115 iwl_mvm_unref(mvm, IWL_MVM_REF_ROC);
116 }
117 if (test_and_clear_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status)) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300118 queues |= BIT(mvm->aux_queue);
Eliad Pellerc7792732015-04-19 11:41:04 +0300119 iwl_mvm_unref(mvm, IWL_MVM_REF_ROC_AUX);
120 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100121
122 synchronize_net();
123
124 /*
125 * Flush the offchannel queue -- this is called when the time
Sara Sharon0d365ae2015-03-31 12:24:05 +0300126 * event finishes or is canceled, so that frames queued for it
Johannes Berg8ca151b2013-01-24 14:25:36 +0100127 * won't get stuck on the queue and be transmitted in the next
128 * time event.
129 * We have to send the command asynchronously since this cannot
130 * be under the mutex for locking reasons, but that's not an
131 * issue as it will have to complete before the next command is
132 * executed, and a new time event means a new command.
133 */
Johannes Bergc8f54702017-06-19 23:50:31 +0200134 iwl_mvm_flush_sta(mvm, &mvm->aux_sta, true, CMD_ASYNC);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100135}
136
137static void iwl_mvm_roc_finished(struct iwl_mvm *mvm)
138{
139 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100140 * Of course, our status bit is just as racy as mac80211, so in
141 * addition, fire off the work struct which will drop all frames
142 * from the hardware queues that made it through the race. First
143 * it will of course synchronize the TX path to make sure that
144 * any *new* TX will be rejected.
145 */
146 schedule_work(&mvm->roc_done_wk);
147}
148
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300149static void iwl_mvm_csa_noa_start(struct iwl_mvm *mvm)
150{
151 struct ieee80211_vif *csa_vif;
152
153 rcu_read_lock();
154
155 csa_vif = rcu_dereference(mvm->csa_vif);
156 if (!csa_vif || !csa_vif->csa_active)
157 goto out_unlock;
158
159 IWL_DEBUG_TE(mvm, "CSA NOA started\n");
160
161 /*
162 * CSA NoA is started but we still have beacons to
163 * transmit on the current channel.
164 * So we just do nothing here and the switch
165 * will be performed on the last TBTT.
166 */
167 if (!ieee80211_csa_is_complete(csa_vif)) {
168 IWL_WARN(mvm, "CSA NOA started too early\n");
169 goto out_unlock;
170 }
171
172 ieee80211_csa_finish(csa_vif);
173
174 rcu_read_unlock();
175
176 RCU_INIT_POINTER(mvm->csa_vif, NULL);
177
178 return;
179
180out_unlock:
181 rcu_read_unlock();
182}
183
Johannes Berg05739792013-07-25 18:39:30 +0200184static bool iwl_mvm_te_check_disconnect(struct iwl_mvm *mvm,
185 struct ieee80211_vif *vif,
186 const char *errmsg)
187{
188 if (vif->type != NL80211_IFTYPE_STATION)
189 return false;
190 if (vif->bss_conf.assoc && vif->bss_conf.dtim_period)
191 return false;
192 if (errmsg)
193 IWL_ERR(mvm, "%s\n", errmsg);
Emmanuel Grumbach31755202015-03-30 10:55:57 +0300194
195 iwl_mvm_connection_loss(mvm, vif, errmsg);
Johannes Berg05739792013-07-25 18:39:30 +0200196 return true;
197}
198
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200199static void
200iwl_mvm_te_handle_notify_csa(struct iwl_mvm *mvm,
201 struct iwl_mvm_time_event_data *te_data,
202 struct iwl_time_event_notif *notif)
203{
Johannes Berg81d62d52015-03-10 14:44:00 +0100204 struct ieee80211_vif *vif = te_data->vif;
205 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
206
207 if (!notif->status)
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200208 IWL_DEBUG_TE(mvm, "CSA time event failed to start\n");
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200209
210 switch (te_data->vif->type) {
211 case NL80211_IFTYPE_AP:
Johannes Berg81d62d52015-03-10 14:44:00 +0100212 if (!notif->status)
213 mvmvif->csa_failed = true;
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200214 iwl_mvm_csa_noa_start(mvm);
215 break;
216 case NL80211_IFTYPE_STATION:
Johannes Berg81d62d52015-03-10 14:44:00 +0100217 if (!notif->status) {
Emmanuel Grumbach31755202015-03-30 10:55:57 +0300218 iwl_mvm_connection_loss(mvm, vif,
219 "CSA TE failed to start");
Johannes Berg81d62d52015-03-10 14:44:00 +0100220 break;
221 }
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200222 iwl_mvm_csa_client_absent(mvm, te_data->vif);
Luciano Coelho622e3f92014-11-10 11:10:17 +0200223 ieee80211_chswitch_done(te_data->vif, true);
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200224 break;
225 default:
226 /* should never happen */
227 WARN_ON_ONCE(1);
228 break;
229 }
230
231 /* we don't need it anymore */
232 iwl_mvm_te_clear_data(mvm, te_data);
233}
234
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200235static void iwl_mvm_te_check_trigger(struct iwl_mvm *mvm,
236 struct iwl_time_event_notif *notif,
237 struct iwl_mvm_time_event_data *te_data)
238{
239 struct iwl_fw_dbg_trigger_tlv *trig;
240 struct iwl_fw_dbg_trigger_time_event *te_trig;
241 int i;
242
243 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TIME_EVENT))
244 return;
245
246 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TIME_EVENT);
247 te_trig = (void *)trig->data;
248
Johannes Berg7174beb2017-06-01 16:03:19 +0200249 if (!iwl_fw_dbg_trigger_check_stop(&mvm->fwrt,
250 ieee80211_vif_to_wdev(te_data->vif),
251 trig))
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200252 return;
253
254 for (i = 0; i < ARRAY_SIZE(te_trig->time_events); i++) {
255 u32 trig_te_id = le32_to_cpu(te_trig->time_events[i].id);
256 u32 trig_action_bitmap =
257 le32_to_cpu(te_trig->time_events[i].action_bitmap);
258 u32 trig_status_bitmap =
259 le32_to_cpu(te_trig->time_events[i].status_bitmap);
260
261 if (trig_te_id != te_data->id ||
262 !(trig_action_bitmap & le32_to_cpu(notif->action)) ||
263 !(trig_status_bitmap & BIT(le32_to_cpu(notif->status))))
264 continue;
265
Johannes Berg7174beb2017-06-01 16:03:19 +0200266 iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
267 "Time event %d Action 0x%x received status: %d",
268 te_data->id,
269 le32_to_cpu(notif->action),
270 le32_to_cpu(notif->status));
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200271 break;
272 }
273}
274
Johannes Berg8ca151b2013-01-24 14:25:36 +0100275/*
276 * Handles a FW notification for an event that is known to the driver.
277 *
278 * @mvm: the mvm component
279 * @te_data: the time event data
280 * @notif: the notification data corresponding the time event data.
281 */
282static void iwl_mvm_te_handle_notif(struct iwl_mvm *mvm,
283 struct iwl_mvm_time_event_data *te_data,
284 struct iwl_time_event_notif *notif)
285{
286 lockdep_assert_held(&mvm->time_event_lock);
287
288 IWL_DEBUG_TE(mvm, "Handle time event notif - UID = 0x%x action %d\n",
289 le32_to_cpu(notif->unique_id),
290 le32_to_cpu(notif->action));
291
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200292 iwl_mvm_te_check_trigger(mvm, notif, te_data);
293
Johannes Berg8ca151b2013-01-24 14:25:36 +0100294 /*
295 * The FW sends the start/end time event notifications even for events
296 * that it fails to schedule. This is indicated in the status field of
297 * the notification. This happens in cases that the scheduler cannot
298 * find a schedule that can handle the event (for example requesting a
299 * P2P Device discoveribility, while there are other higher priority
300 * events in the system).
301 */
Emmanuel Grumbach9fc3fe92013-11-05 16:27:59 +0200302 if (!le32_to_cpu(notif->status)) {
Johannes Bergbcd535e2015-03-12 09:10:13 +0100303 const char *msg;
304
305 if (notif->action & cpu_to_le32(TE_V2_NOTIF_HOST_EVENT_START))
306 msg = "Time Event start notification failure";
307 else
308 msg = "Time Event end notification failure";
309
310 IWL_DEBUG_TE(mvm, "%s\n", msg);
311
312 if (iwl_mvm_te_check_disconnect(mvm, te_data->vif, msg)) {
Johannes Berg05739792013-07-25 18:39:30 +0200313 iwl_mvm_te_clear_data(mvm, te_data);
314 return;
315 }
316 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100317
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300318 if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_END) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100319 IWL_DEBUG_TE(mvm,
320 "TE ended - current time %lu, estimated end %lu\n",
321 jiffies, te_data->end_jiffies);
322
Johannes Bergbca13902015-03-11 20:27:06 +0100323 switch (te_data->vif->type) {
324 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg8ca151b2013-01-24 14:25:36 +0100325 ieee80211_remain_on_channel_expired(mvm->hw);
326 iwl_mvm_roc_finished(mvm);
Johannes Bergbca13902015-03-11 20:27:06 +0100327 break;
328 case NL80211_IFTYPE_STATION:
329 /*
330 * By now, we should have finished association
331 * and know the dtim period.
332 */
333 iwl_mvm_te_check_disconnect(mvm, te_data->vif,
334 "No association and the time event is over already...");
335 break;
336 default:
337 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100338 }
339
Johannes Berg8ca151b2013-01-24 14:25:36 +0100340 iwl_mvm_te_clear_data(mvm, te_data);
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300341 } else if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_START) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100342 te_data->running = true;
Johannes Berge7f19352013-07-25 21:45:17 +0200343 te_data->end_jiffies = TU_TO_EXP_TIME(te_data->duration);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100344
345 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE) {
346 set_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status);
Eliad Peller9f45c362013-10-28 13:13:56 +0200347 iwl_mvm_ref(mvm, IWL_MVM_REF_ROC);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100348 ieee80211_ready_on_channel(mvm->hw);
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200349 } else if (te_data->id == TE_CHANNEL_SWITCH_PERIOD) {
350 iwl_mvm_te_handle_notify_csa(mvm, te_data, notif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100351 }
352 } else {
353 IWL_WARN(mvm, "Got TE with unknown action\n");
354 }
355}
356
357/*
Ariej Marjiehb1128892014-07-16 21:11:12 +0300358 * Handle A Aux ROC time event
359 */
360static int iwl_mvm_aux_roc_te_handle_notif(struct iwl_mvm *mvm,
361 struct iwl_time_event_notif *notif)
362{
363 struct iwl_mvm_time_event_data *te_data, *tmp;
364 bool aux_roc_te = false;
365
366 list_for_each_entry_safe(te_data, tmp, &mvm->aux_roc_te_list, list) {
367 if (le32_to_cpu(notif->unique_id) == te_data->uid) {
368 aux_roc_te = true;
369 break;
370 }
371 }
372 if (!aux_roc_te) /* Not a Aux ROC time event */
373 return -EINVAL;
374
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200375 iwl_mvm_te_check_trigger(mvm, notif, te_data);
376
Ariej Marjiehb1128892014-07-16 21:11:12 +0300377 IWL_DEBUG_TE(mvm,
Matti Gottlieb5151ad92016-03-09 14:46:28 +0200378 "Aux ROC time event notification - UID = 0x%x action %d (error = %d)\n",
Ariej Marjiehb1128892014-07-16 21:11:12 +0300379 le32_to_cpu(notif->unique_id),
Matti Gottlieb5151ad92016-03-09 14:46:28 +0200380 le32_to_cpu(notif->action), le32_to_cpu(notif->status));
Ariej Marjiehb1128892014-07-16 21:11:12 +0300381
Matti Gottlieb5151ad92016-03-09 14:46:28 +0200382 if (!le32_to_cpu(notif->status) ||
383 le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_END) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300384 /* End TE, notify mac80211 */
385 ieee80211_remain_on_channel_expired(mvm->hw);
386 iwl_mvm_roc_finished(mvm); /* flush aux queue */
387 list_del(&te_data->list); /* remove from list */
388 te_data->running = false;
389 te_data->vif = NULL;
390 te_data->uid = 0;
Matti Gottlieba6cc5162014-09-29 11:46:04 +0300391 te_data->id = TE_MAX;
Ariej Marjiehb1128892014-07-16 21:11:12 +0300392 } else if (le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_START) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300393 set_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status);
394 te_data->running = true;
Eliad Pellerc7792732015-04-19 11:41:04 +0300395 iwl_mvm_ref(mvm, IWL_MVM_REF_ROC_AUX);
Ariej Marjiehb1128892014-07-16 21:11:12 +0300396 ieee80211_ready_on_channel(mvm->hw); /* Start TE */
397 } else {
398 IWL_DEBUG_TE(mvm,
399 "ERROR: Unknown Aux ROC Time Event (action = %d)\n",
400 le32_to_cpu(notif->action));
401 return -EINVAL;
402 }
403
404 return 0;
405}
406
407/*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100408 * The Rx handler for time event notifications
409 */
Johannes Berg04168412015-06-23 21:22:09 +0200410void iwl_mvm_rx_time_event_notif(struct iwl_mvm *mvm,
411 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100412{
413 struct iwl_rx_packet *pkt = rxb_addr(rxb);
414 struct iwl_time_event_notif *notif = (void *)pkt->data;
415 struct iwl_mvm_time_event_data *te_data, *tmp;
416
417 IWL_DEBUG_TE(mvm, "Time event notification - UID = 0x%x action %d\n",
418 le32_to_cpu(notif->unique_id),
419 le32_to_cpu(notif->action));
420
421 spin_lock_bh(&mvm->time_event_lock);
Ariej Marjiehb1128892014-07-16 21:11:12 +0300422 /* This time event is triggered for Aux ROC request */
423 if (!iwl_mvm_aux_roc_te_handle_notif(mvm, notif))
424 goto unlock;
425
Johannes Berg8ca151b2013-01-24 14:25:36 +0100426 list_for_each_entry_safe(te_data, tmp, &mvm->time_event_list, list) {
427 if (le32_to_cpu(notif->unique_id) == te_data->uid)
428 iwl_mvm_te_handle_notif(mvm, te_data, notif);
429 }
Ariej Marjiehb1128892014-07-16 21:11:12 +0300430unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +0100431 spin_unlock_bh(&mvm->time_event_lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100432}
433
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300434static bool iwl_mvm_te_notif(struct iwl_notif_wait_data *notif_wait,
435 struct iwl_rx_packet *pkt, void *data)
436{
437 struct iwl_mvm *mvm =
438 container_of(notif_wait, struct iwl_mvm, notif_wait);
439 struct iwl_mvm_time_event_data *te_data = data;
440 struct iwl_time_event_notif *resp;
441 int resp_len = iwl_rx_packet_payload_len(pkt);
442
443 if (WARN_ON(pkt->hdr.cmd != TIME_EVENT_NOTIFICATION))
444 return true;
445
446 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
447 IWL_ERR(mvm, "Invalid TIME_EVENT_NOTIFICATION response\n");
448 return true;
449 }
450
451 resp = (void *)pkt->data;
452
453 /* te_data->uid is already set in the TIME_EVENT_CMD response */
454 if (le32_to_cpu(resp->unique_id) != te_data->uid)
455 return false;
456
457 IWL_DEBUG_TE(mvm, "TIME_EVENT_NOTIFICATION response - UID = 0x%x\n",
458 te_data->uid);
459 if (!resp->status)
460 IWL_ERR(mvm,
461 "TIME_EVENT_NOTIFICATION received but not executed\n");
462
463 return true;
464}
465
Johannes Bergffdf9682013-01-29 15:28:17 +0100466static bool iwl_mvm_time_event_response(struct iwl_notif_wait_data *notif_wait,
467 struct iwl_rx_packet *pkt, void *data)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100468{
469 struct iwl_mvm *mvm =
470 container_of(notif_wait, struct iwl_mvm, notif_wait);
471 struct iwl_mvm_time_event_data *te_data = data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100472 struct iwl_time_event_resp *resp;
Johannes Berg65b30342014-01-08 13:16:33 +0100473 int resp_len = iwl_rx_packet_payload_len(pkt);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100474
Johannes Bergffdf9682013-01-29 15:28:17 +0100475 if (WARN_ON(pkt->hdr.cmd != TIME_EVENT_CMD))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100476 return true;
477
Johannes Berg65b30342014-01-08 13:16:33 +0100478 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
Johannes Bergffdf9682013-01-29 15:28:17 +0100479 IWL_ERR(mvm, "Invalid TIME_EVENT_CMD response\n");
480 return true;
481 }
482
483 resp = (void *)pkt->data;
Johannes Berge372282242013-02-16 00:11:34 +0100484
485 /* we should never get a response to another TIME_EVENT_CMD here */
486 if (WARN_ON_ONCE(le32_to_cpu(resp->id) != te_data->id))
487 return false;
488
Johannes Bergffdf9682013-01-29 15:28:17 +0100489 te_data->uid = le32_to_cpu(resp->unique_id);
490 IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
491 te_data->uid);
492 return true;
493}
494
495static int iwl_mvm_time_event_send_add(struct iwl_mvm *mvm,
496 struct ieee80211_vif *vif,
497 struct iwl_mvm_time_event_data *te_data,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300498 struct iwl_time_event_cmd *te_cmd)
Johannes Bergffdf9682013-01-29 15:28:17 +0100499{
Sara Sharon6eb031d2015-07-13 14:50:47 +0300500 static const u16 time_event_response[] = { TIME_EVENT_CMD };
Johannes Bergffdf9682013-01-29 15:28:17 +0100501 struct iwl_notification_wait wait_time_event;
502 int ret;
503
504 lockdep_assert_held(&mvm->mutex);
505
Johannes Berg93630dc2013-02-15 23:54:10 +0100506 IWL_DEBUG_TE(mvm, "Add new TE, duration %d TU\n",
507 le32_to_cpu(te_cmd->duration));
508
Johannes Bergffdf9682013-01-29 15:28:17 +0100509 spin_lock_bh(&mvm->time_event_lock);
510 if (WARN_ON(te_data->id != TE_MAX)) {
511 spin_unlock_bh(&mvm->time_event_lock);
512 return -EIO;
513 }
514 te_data->vif = vif;
515 te_data->duration = le32_to_cpu(te_cmd->duration);
516 te_data->id = le32_to_cpu(te_cmd->id);
517 list_add_tail(&te_data->list, &mvm->time_event_list);
518 spin_unlock_bh(&mvm->time_event_lock);
519
520 /*
521 * Use a notification wait, which really just processes the
522 * command response and doesn't wait for anything, in order
523 * to be able to process the response and get the UID inside
524 * the RX path. Using CMD_WANT_SKB doesn't work because it
525 * stores the buffer and then wakes up this thread, by which
526 * time another notification (that the time event started)
527 * might already be processed unsuccessfully.
528 */
529 iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
530 time_event_response,
531 ARRAY_SIZE(time_event_response),
532 iwl_mvm_time_event_response, te_data);
533
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300534 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_EVENT_CMD, 0,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300535 sizeof(*te_cmd), te_cmd);
Johannes Bergffdf9682013-01-29 15:28:17 +0100536 if (ret) {
537 IWL_ERR(mvm, "Couldn't send TIME_EVENT_CMD: %d\n", ret);
538 iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
539 goto out_clear_te;
540 }
541
542 /* No need to wait for anything, so just pass 1 (0 isn't valid) */
543 ret = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
544 /* should never fail */
545 WARN_ON_ONCE(ret);
546
547 if (ret) {
548 out_clear_te:
549 spin_lock_bh(&mvm->time_event_lock);
550 iwl_mvm_te_clear_data(mvm, te_data);
551 spin_unlock_bh(&mvm->time_event_lock);
552 }
553 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100554}
555
556void iwl_mvm_protect_session(struct iwl_mvm *mvm,
557 struct ieee80211_vif *vif,
Johannes Berg016d27e2013-05-03 11:16:15 +0200558 u32 duration, u32 min_duration,
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300559 u32 max_delay, bool wait_for_notif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100560{
561 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
562 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
Sara Sharon6eb031d2015-07-13 14:50:47 +0300563 const u16 te_notif_response[] = { TIME_EVENT_NOTIFICATION };
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300564 struct iwl_notification_wait wait_te_notif;
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300565 struct iwl_time_event_cmd time_cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100566
567 lockdep_assert_held(&mvm->mutex);
568
569 if (te_data->running &&
Johannes Berge7f19352013-07-25 21:45:17 +0200570 time_after(te_data->end_jiffies, TU_TO_EXP_TIME(min_duration))) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100571 IWL_DEBUG_TE(mvm, "We have enough time in the current TE: %u\n",
572 jiffies_to_msecs(te_data->end_jiffies - jiffies));
573 return;
574 }
575
576 if (te_data->running) {
577 IWL_DEBUG_TE(mvm, "extend 0x%x: only %u ms left\n",
578 te_data->uid,
579 jiffies_to_msecs(te_data->end_jiffies - jiffies));
580 /*
581 * we don't have enough time
582 * cancel the current TE and issue a new one
583 * Of course it would be better to remove the old one only
584 * when the new one is added, but we don't care if we are off
585 * channel for a bit. All we need to do, is not to return
586 * before we actually begin to be on the channel.
587 */
588 iwl_mvm_stop_session_protection(mvm, vif);
589 }
590
Johannes Berg8ca151b2013-01-24 14:25:36 +0100591 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
592 time_cmd.id_and_color =
593 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
594 time_cmd.id = cpu_to_le32(TE_BSS_STA_AGGRESSIVE_ASSOC);
595
Ilan Peer5bf12f62015-06-24 10:25:26 +0300596 time_cmd.apply_time = cpu_to_le32(0);
Johannes Bergffdf9682013-01-29 15:28:17 +0100597
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300598 time_cmd.max_frags = TE_V2_FRAG_NONE;
Johannes Berg016d27e2013-05-03 11:16:15 +0200599 time_cmd.max_delay = cpu_to_le32(max_delay);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100600 /* TODO: why do we need to interval = bi if it is not periodic? */
601 time_cmd.interval = cpu_to_le32(1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100602 time_cmd.duration = cpu_to_le32(duration);
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300603 time_cmd.repeat = 1;
604 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
Emmanuel Grumbach1f6bf072014-02-16 15:36:00 +0200605 TE_V2_NOTIF_HOST_EVENT_END |
606 T2_V2_START_IMMEDIATELY);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100607
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300608 if (!wait_for_notif) {
609 iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
610 return;
611 }
612
613 /*
614 * Create notification_wait for the TIME_EVENT_NOTIFICATION to use
615 * right after we send the time event
616 */
617 iwl_init_notification_wait(&mvm->notif_wait, &wait_te_notif,
618 te_notif_response,
619 ARRAY_SIZE(te_notif_response),
620 iwl_mvm_te_notif, te_data);
621
622 /* If TE was sent OK - wait for the notification that started */
623 if (iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd)) {
624 IWL_ERR(mvm, "Failed to add TE to protect session\n");
625 iwl_remove_notification(&mvm->notif_wait, &wait_te_notif);
626 } else if (iwl_wait_notification(&mvm->notif_wait, &wait_te_notif,
627 TU_TO_JIFFIES(max_delay))) {
628 IWL_ERR(mvm, "Failed to protect session until TE\n");
629 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100630}
631
Matti Gottliebbf5da872014-11-16 10:25:12 +0200632static bool __iwl_mvm_remove_time_event(struct iwl_mvm *mvm,
633 struct iwl_mvm_time_event_data *te_data,
634 u32 *uid)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100635{
Matti Gottliebbf5da872014-11-16 10:25:12 +0200636 u32 id;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100637
638 /*
639 * It is possible that by the time we got to this point the time
640 * event was already removed.
641 */
642 spin_lock_bh(&mvm->time_event_lock);
643
644 /* Save time event uid before clearing its data */
Matti Gottliebbf5da872014-11-16 10:25:12 +0200645 *uid = te_data->uid;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100646 id = te_data->id;
647
648 /*
649 * The clear_data function handles time events that were already removed
650 */
651 iwl_mvm_te_clear_data(mvm, te_data);
652 spin_unlock_bh(&mvm->time_event_lock);
653
654 /*
655 * It is possible that by the time we try to remove it, the time event
656 * has already ended and removed. In such a case there is no need to
657 * send a removal command.
658 */
659 if (id == TE_MAX) {
Matti Gottliebbf5da872014-11-16 10:25:12 +0200660 IWL_DEBUG_TE(mvm, "TE 0x%x has already ended\n", *uid);
661 return false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100662 }
663
Matti Gottliebbf5da872014-11-16 10:25:12 +0200664 return true;
665}
666
667/*
668 * Explicit request to remove a aux roc time event. The removal of a time
669 * event needs to be synchronized with the flow of a time event's end
670 * notification, which also removes the time event from the op mode
671 * data structures.
672 */
673static void iwl_mvm_remove_aux_roc_te(struct iwl_mvm *mvm,
674 struct iwl_mvm_vif *mvmvif,
675 struct iwl_mvm_time_event_data *te_data)
676{
677 struct iwl_hs20_roc_req aux_cmd = {};
678 u32 uid;
679 int ret;
680
681 if (!__iwl_mvm_remove_time_event(mvm, te_data, &uid))
682 return;
683
684 aux_cmd.event_unique_id = cpu_to_le32(uid);
685 aux_cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
686 aux_cmd.id_and_color =
687 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
688 IWL_DEBUG_TE(mvm, "Removing BSS AUX ROC TE 0x%x\n",
689 le32_to_cpu(aux_cmd.event_unique_id));
690 ret = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0,
691 sizeof(aux_cmd), &aux_cmd);
692
693 if (WARN_ON(ret))
694 return;
695}
696
697/*
698 * Explicit request to remove a time event. The removal of a time event needs to
699 * be synchronized with the flow of a time event's end notification, which also
700 * removes the time event from the op mode data structures.
701 */
702void iwl_mvm_remove_time_event(struct iwl_mvm *mvm,
703 struct iwl_mvm_vif *mvmvif,
704 struct iwl_mvm_time_event_data *te_data)
705{
706 struct iwl_time_event_cmd time_cmd = {};
707 u32 uid;
708 int ret;
709
710 if (!__iwl_mvm_remove_time_event(mvm, te_data, &uid))
711 return;
712
Johannes Berg8ca151b2013-01-24 14:25:36 +0100713 /* When we remove a TE, the UID is to be set in the id field */
714 time_cmd.id = cpu_to_le32(uid);
715 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
716 time_cmd.id_and_color =
717 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
718
719 IWL_DEBUG_TE(mvm, "Removing TE 0x%x\n", le32_to_cpu(time_cmd.id));
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300720 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_EVENT_CMD, 0,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300721 sizeof(time_cmd), &time_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100722 if (WARN_ON(ret))
723 return;
724}
725
726void iwl_mvm_stop_session_protection(struct iwl_mvm *mvm,
727 struct ieee80211_vif *vif)
728{
729 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
730 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
Avraham Stern3edfb5f2017-08-02 12:13:20 +0300731 u32 id;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100732
733 lockdep_assert_held(&mvm->mutex);
Avraham Stern3edfb5f2017-08-02 12:13:20 +0300734
735 spin_lock_bh(&mvm->time_event_lock);
736 id = te_data->id;
737 spin_unlock_bh(&mvm->time_event_lock);
738
739 if (id != TE_BSS_STA_AGGRESSIVE_ASSOC) {
740 IWL_DEBUG_TE(mvm,
741 "don't remove TE with id=%u (not session protection)\n",
742 id);
743 return;
744 }
745
Johannes Berg8ca151b2013-01-24 14:25:36 +0100746 iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
747}
748
Johannes Berg8ca151b2013-01-24 14:25:36 +0100749int iwl_mvm_start_p2p_roc(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Ilan Peere635c792013-02-13 11:05:18 +0200750 int duration, enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100751{
752 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
753 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300754 struct iwl_time_event_cmd time_cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100755
756 lockdep_assert_held(&mvm->mutex);
757 if (te_data->running) {
758 IWL_WARN(mvm, "P2P_DEVICE remain on channel already running\n");
759 return -EBUSY;
760 }
761
762 /*
763 * Flush the done work, just in case it's still pending, so that
764 * the work it does can complete and we can accept new frames.
765 */
766 flush_work(&mvm->roc_done_wk);
767
Johannes Berg8ca151b2013-01-24 14:25:36 +0100768 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
769 time_cmd.id_and_color =
770 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
Ilan Peere635c792013-02-13 11:05:18 +0200771
772 switch (type) {
773 case IEEE80211_ROC_TYPE_NORMAL:
774 time_cmd.id = cpu_to_le32(IWL_MVM_ROC_TE_TYPE_NORMAL);
775 break;
776 case IEEE80211_ROC_TYPE_MGMT_TX:
777 time_cmd.id = cpu_to_le32(IWL_MVM_ROC_TE_TYPE_MGMT_TX);
778 break;
779 default:
780 WARN_ONCE(1, "Got an invalid ROC type\n");
781 return -EINVAL;
782 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100783
784 time_cmd.apply_time = cpu_to_le32(0);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100785 time_cmd.interval = cpu_to_le32(1);
786
787 /*
Ilan Peere635c792013-02-13 11:05:18 +0200788 * The P2P Device TEs can have lower priority than other events
Johannes Berg8ca151b2013-01-24 14:25:36 +0100789 * that are being scheduled by the driver/fw, and thus it might not be
Ilan Peere635c792013-02-13 11:05:18 +0200790 * scheduled. To improve the chances of it being scheduled, allow them
791 * to be fragmented, and in addition allow them to be delayed.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100792 */
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300793 time_cmd.max_frags = min(MSEC_TO_TU(duration)/50, TE_V2_FRAG_ENDLESS);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100794 time_cmd.max_delay = cpu_to_le32(MSEC_TO_TU(duration/2));
795 time_cmd.duration = cpu_to_le32(MSEC_TO_TU(duration));
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300796 time_cmd.repeat = 1;
797 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
Emmanuel Grumbach1f6bf072014-02-16 15:36:00 +0200798 TE_V2_NOTIF_HOST_EVENT_END |
799 T2_V2_START_IMMEDIATELY);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100800
Johannes Bergffdf9682013-01-29 15:28:17 +0100801 return iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100802}
803
Eliad Peller305d2362015-12-09 16:33:20 +0200804static struct iwl_mvm_time_event_data *iwl_mvm_get_roc_te(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100805{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100806 struct iwl_mvm_time_event_data *te_data;
807
808 lockdep_assert_held(&mvm->mutex);
809
Matti Gottliebbf5da872014-11-16 10:25:12 +0200810 spin_lock_bh(&mvm->time_event_lock);
811
Johannes Berg8ca151b2013-01-24 14:25:36 +0100812 /*
813 * Iterate over the list of time events and find the time event that is
814 * associated with a P2P_DEVICE interface.
815 * This assumes that a P2P_DEVICE interface can have only a single time
816 * event at any given time and this time event coresponds to a ROC
817 * request
818 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100819 list_for_each_entry(te_data, &mvm->time_event_list, list) {
Eliad Peller305d2362015-12-09 16:33:20 +0200820 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE)
821 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100822 }
Matti Gottliebbf5da872014-11-16 10:25:12 +0200823
Johannes Bergebf17ff2015-06-01 23:38:23 +0200824 /* There can only be at most one AUX ROC time event, we just use the
825 * list to simplify/unify code. Remove it if it exists.
Matti Gottliebbf5da872014-11-16 10:25:12 +0200826 */
Johannes Bergebf17ff2015-06-01 23:38:23 +0200827 te_data = list_first_entry_or_null(&mvm->aux_roc_te_list,
828 struct iwl_mvm_time_event_data,
829 list);
Eliad Peller305d2362015-12-09 16:33:20 +0200830out:
Johannes Berg8ca151b2013-01-24 14:25:36 +0100831 spin_unlock_bh(&mvm->time_event_lock);
Eliad Peller305d2362015-12-09 16:33:20 +0200832 return te_data;
833}
Johannes Berg8ca151b2013-01-24 14:25:36 +0100834
Eliad Peller305d2362015-12-09 16:33:20 +0200835void iwl_mvm_cleanup_roc_te(struct iwl_mvm *mvm)
836{
837 struct iwl_mvm_time_event_data *te_data;
838 u32 uid;
839
840 te_data = iwl_mvm_get_roc_te(mvm);
841 if (te_data)
842 __iwl_mvm_remove_time_event(mvm, te_data, &uid);
843}
844
845void iwl_mvm_stop_roc(struct iwl_mvm *mvm)
846{
847 struct iwl_mvm_vif *mvmvif;
848 struct iwl_mvm_time_event_data *te_data;
849
850 te_data = iwl_mvm_get_roc_te(mvm);
851 if (!te_data) {
Matti Gottliebbf5da872014-11-16 10:25:12 +0200852 IWL_WARN(mvm, "No remain on channel event\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100853 return;
854 }
855
Eliad Peller305d2362015-12-09 16:33:20 +0200856 mvmvif = iwl_mvm_vif_from_mac80211(te_data->vif);
857
858 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE)
Matti Gottliebbf5da872014-11-16 10:25:12 +0200859 iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
860 else
861 iwl_mvm_remove_aux_roc_te(mvm, mvmvif, te_data);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100862
863 iwl_mvm_roc_finished(mvm);
864}
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300865
Luciano Coelhof991e172014-08-26 16:14:10 +0300866int iwl_mvm_schedule_csa_period(struct iwl_mvm *mvm,
867 struct ieee80211_vif *vif,
868 u32 duration, u32 apply_time)
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300869{
870 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
871 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
872 struct iwl_time_event_cmd time_cmd = {};
873
874 lockdep_assert_held(&mvm->mutex);
875
876 if (te_data->running) {
Avraham Stern3edfb5f2017-08-02 12:13:20 +0300877 u32 id;
878
879 spin_lock_bh(&mvm->time_event_lock);
880 id = te_data->id;
881 spin_unlock_bh(&mvm->time_event_lock);
882
883 if (id == TE_CHANNEL_SWITCH_PERIOD) {
884 IWL_DEBUG_TE(mvm, "CS period is already scheduled\n");
885 return -EBUSY;
886 }
887
888 /*
889 * Remove the session protection time event to allow the
890 * channel switch. If we got here, we just heard a beacon so
891 * the session protection is not needed anymore anyway.
892 */
893 iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300894 }
895
896 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
897 time_cmd.id_and_color =
898 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
Luciano Coelhof991e172014-08-26 16:14:10 +0300899 time_cmd.id = cpu_to_le32(TE_CHANNEL_SWITCH_PERIOD);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300900 time_cmd.apply_time = cpu_to_le32(apply_time);
901 time_cmd.max_frags = TE_V2_FRAG_NONE;
902 time_cmd.duration = cpu_to_le32(duration);
903 time_cmd.repeat = 1;
904 time_cmd.interval = cpu_to_le32(1);
905 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
906 TE_V2_ABSENCE);
907
908 return iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
909}