blob: 1a537be216ced8ddd6c6dc79404a995f8d2bdd8a [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020035 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
64 *****************************************************************************/
65
66#include <linux/jiffies.h>
67#include <net/mac80211.h>
68
69#include "iwl-notif-wait.h"
70#include "iwl-trans.h"
71#include "fw-api.h"
72#include "time-event.h"
73#include "mvm.h"
74#include "iwl-io.h"
75#include "iwl-prph.h"
76
Ilan Peere635c792013-02-13 11:05:18 +020077/*
78 * For the high priority TE use a time event type that has similar priority to
79 * the FW's action scan priority.
Ilan Peer456f6dd2013-02-04 14:09:37 +020080 */
Ilan Peere635c792013-02-13 11:05:18 +020081#define IWL_MVM_ROC_TE_TYPE_NORMAL TE_P2P_DEVICE_DISCOVERABLE
82#define IWL_MVM_ROC_TE_TYPE_MGMT_TX TE_P2P_CLIENT_ASSOC
Ilan Peer456f6dd2013-02-04 14:09:37 +020083
Johannes Berg8ca151b2013-01-24 14:25:36 +010084void iwl_mvm_te_clear_data(struct iwl_mvm *mvm,
85 struct iwl_mvm_time_event_data *te_data)
86{
87 lockdep_assert_held(&mvm->time_event_lock);
88
89 if (te_data->id == TE_MAX)
90 return;
91
92 list_del(&te_data->list);
93 te_data->running = false;
94 te_data->uid = 0;
95 te_data->id = TE_MAX;
96 te_data->vif = NULL;
97}
98
99void iwl_mvm_roc_done_wk(struct work_struct *wk)
100{
101 struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm, roc_done_wk);
Ariej Marjiehb1128892014-07-16 21:11:12 +0300102 u32 queues = 0;
103
104 /*
105 * Clear the ROC_RUNNING /ROC_AUX_RUNNING status bit.
106 * This will cause the TX path to drop offchannel transmissions.
107 * That would also be done by mac80211, but it is racy, in particular
108 * in the case that the time event actually completed in the firmware
109 * (which is handled in iwl_mvm_te_handle_notif).
110 */
111 if (test_and_clear_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status))
112 queues |= BIT(IWL_MVM_OFFCHANNEL_QUEUE);
113 if (test_and_clear_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status))
114 queues |= BIT(mvm->aux_queue);
115
116 iwl_mvm_unref(mvm, IWL_MVM_REF_ROC);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100117
118 synchronize_net();
119
120 /*
121 * Flush the offchannel queue -- this is called when the time
122 * event finishes or is cancelled, so that frames queued for it
123 * won't get stuck on the queue and be transmitted in the next
124 * time event.
125 * We have to send the command asynchronously since this cannot
126 * be under the mutex for locking reasons, but that's not an
127 * issue as it will have to complete before the next command is
128 * executed, and a new time event means a new command.
129 */
Ariej Marjiehb1128892014-07-16 21:11:12 +0300130 iwl_mvm_flush_tx_path(mvm, queues, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100131}
132
133static void iwl_mvm_roc_finished(struct iwl_mvm *mvm)
134{
135 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100136 * Of course, our status bit is just as racy as mac80211, so in
137 * addition, fire off the work struct which will drop all frames
138 * from the hardware queues that made it through the race. First
139 * it will of course synchronize the TX path to make sure that
140 * any *new* TX will be rejected.
141 */
142 schedule_work(&mvm->roc_done_wk);
143}
144
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300145static void iwl_mvm_csa_noa_start(struct iwl_mvm *mvm)
146{
147 struct ieee80211_vif *csa_vif;
148
149 rcu_read_lock();
150
151 csa_vif = rcu_dereference(mvm->csa_vif);
152 if (!csa_vif || !csa_vif->csa_active)
153 goto out_unlock;
154
155 IWL_DEBUG_TE(mvm, "CSA NOA started\n");
156
157 /*
158 * CSA NoA is started but we still have beacons to
159 * transmit on the current channel.
160 * So we just do nothing here and the switch
161 * will be performed on the last TBTT.
162 */
163 if (!ieee80211_csa_is_complete(csa_vif)) {
164 IWL_WARN(mvm, "CSA NOA started too early\n");
165 goto out_unlock;
166 }
167
168 ieee80211_csa_finish(csa_vif);
169
170 rcu_read_unlock();
171
172 RCU_INIT_POINTER(mvm->csa_vif, NULL);
173
174 return;
175
176out_unlock:
177 rcu_read_unlock();
178}
179
Johannes Berg05739792013-07-25 18:39:30 +0200180static bool iwl_mvm_te_check_disconnect(struct iwl_mvm *mvm,
181 struct ieee80211_vif *vif,
182 const char *errmsg)
183{
184 if (vif->type != NL80211_IFTYPE_STATION)
185 return false;
186 if (vif->bss_conf.assoc && vif->bss_conf.dtim_period)
187 return false;
188 if (errmsg)
189 IWL_ERR(mvm, "%s\n", errmsg);
190 ieee80211_connection_loss(vif);
191 return true;
192}
193
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200194static void
195iwl_mvm_te_handle_notify_csa(struct iwl_mvm *mvm,
196 struct iwl_mvm_time_event_data *te_data,
197 struct iwl_time_event_notif *notif)
198{
199 if (!le32_to_cpu(notif->status)) {
200 IWL_DEBUG_TE(mvm, "CSA time event failed to start\n");
201 return;
202 }
203
204 switch (te_data->vif->type) {
205 case NL80211_IFTYPE_AP:
206 iwl_mvm_csa_noa_start(mvm);
207 break;
208 case NL80211_IFTYPE_STATION:
209 iwl_mvm_csa_client_absent(mvm, te_data->vif);
210 break;
211 default:
212 /* should never happen */
213 WARN_ON_ONCE(1);
214 break;
215 }
216
217 /* we don't need it anymore */
218 iwl_mvm_te_clear_data(mvm, te_data);
219}
220
Johannes Berg8ca151b2013-01-24 14:25:36 +0100221/*
222 * Handles a FW notification for an event that is known to the driver.
223 *
224 * @mvm: the mvm component
225 * @te_data: the time event data
226 * @notif: the notification data corresponding the time event data.
227 */
228static void iwl_mvm_te_handle_notif(struct iwl_mvm *mvm,
229 struct iwl_mvm_time_event_data *te_data,
230 struct iwl_time_event_notif *notif)
231{
232 lockdep_assert_held(&mvm->time_event_lock);
233
234 IWL_DEBUG_TE(mvm, "Handle time event notif - UID = 0x%x action %d\n",
235 le32_to_cpu(notif->unique_id),
236 le32_to_cpu(notif->action));
237
238 /*
239 * The FW sends the start/end time event notifications even for events
240 * that it fails to schedule. This is indicated in the status field of
241 * the notification. This happens in cases that the scheduler cannot
242 * find a schedule that can handle the event (for example requesting a
243 * P2P Device discoveribility, while there are other higher priority
244 * events in the system).
245 */
Emmanuel Grumbach9fc3fe92013-11-05 16:27:59 +0200246 if (!le32_to_cpu(notif->status)) {
247 bool start = le32_to_cpu(notif->action) &
248 TE_V2_NOTIF_HOST_EVENT_START;
249 IWL_WARN(mvm, "Time Event %s notification failure\n",
250 start ? "start" : "end");
Johannes Berg05739792013-07-25 18:39:30 +0200251 if (iwl_mvm_te_check_disconnect(mvm, te_data->vif, NULL)) {
252 iwl_mvm_te_clear_data(mvm, te_data);
253 return;
254 }
255 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100256
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300257 if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_END) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100258 IWL_DEBUG_TE(mvm,
259 "TE ended - current time %lu, estimated end %lu\n",
260 jiffies, te_data->end_jiffies);
261
262 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE) {
263 ieee80211_remain_on_channel_expired(mvm->hw);
264 iwl_mvm_roc_finished(mvm);
265 }
266
267 /*
268 * By now, we should have finished association
269 * and know the dtim period.
270 */
Johannes Berg05739792013-07-25 18:39:30 +0200271 iwl_mvm_te_check_disconnect(mvm, te_data->vif,
Linus Torvalds2e515bf2013-09-06 09:36:28 -0700272 "No association and the time event is over already...");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100273 iwl_mvm_te_clear_data(mvm, te_data);
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300274 } else if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_START) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100275 te_data->running = true;
Johannes Berge7f19352013-07-25 21:45:17 +0200276 te_data->end_jiffies = TU_TO_EXP_TIME(te_data->duration);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100277
278 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE) {
279 set_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status);
Eliad Peller9f45c362013-10-28 13:13:56 +0200280 iwl_mvm_ref(mvm, IWL_MVM_REF_ROC);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100281 ieee80211_ready_on_channel(mvm->hw);
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200282 } else if (te_data->id == TE_CHANNEL_SWITCH_PERIOD) {
283 iwl_mvm_te_handle_notify_csa(mvm, te_data, notif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100284 }
285 } else {
286 IWL_WARN(mvm, "Got TE with unknown action\n");
287 }
288}
289
290/*
Ariej Marjiehb1128892014-07-16 21:11:12 +0300291 * Handle A Aux ROC time event
292 */
293static int iwl_mvm_aux_roc_te_handle_notif(struct iwl_mvm *mvm,
294 struct iwl_time_event_notif *notif)
295{
296 struct iwl_mvm_time_event_data *te_data, *tmp;
297 bool aux_roc_te = false;
298
299 list_for_each_entry_safe(te_data, tmp, &mvm->aux_roc_te_list, list) {
300 if (le32_to_cpu(notif->unique_id) == te_data->uid) {
301 aux_roc_te = true;
302 break;
303 }
304 }
305 if (!aux_roc_te) /* Not a Aux ROC time event */
306 return -EINVAL;
307
308 if (!le32_to_cpu(notif->status)) {
309 IWL_DEBUG_TE(mvm,
310 "ERROR: Aux ROC Time Event %s notification failure\n",
311 (le32_to_cpu(notif->action) &
312 TE_V2_NOTIF_HOST_EVENT_START) ? "start" : "end");
313 return -EINVAL;
314 }
315
316 IWL_DEBUG_TE(mvm,
317 "Aux ROC time event notification - UID = 0x%x action %d\n",
318 le32_to_cpu(notif->unique_id),
319 le32_to_cpu(notif->action));
320
321 if (le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_END) {
322 /* End TE, notify mac80211 */
323 ieee80211_remain_on_channel_expired(mvm->hw);
324 iwl_mvm_roc_finished(mvm); /* flush aux queue */
325 list_del(&te_data->list); /* remove from list */
326 te_data->running = false;
327 te_data->vif = NULL;
328 te_data->uid = 0;
Matti Gottlieba6cc5162014-09-29 11:46:04 +0300329 te_data->id = TE_MAX;
Ariej Marjiehb1128892014-07-16 21:11:12 +0300330 } else if (le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_START) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300331 set_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status);
332 te_data->running = true;
333 ieee80211_ready_on_channel(mvm->hw); /* Start TE */
334 } else {
335 IWL_DEBUG_TE(mvm,
336 "ERROR: Unknown Aux ROC Time Event (action = %d)\n",
337 le32_to_cpu(notif->action));
338 return -EINVAL;
339 }
340
341 return 0;
342}
343
344/*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100345 * The Rx handler for time event notifications
346 */
347int iwl_mvm_rx_time_event_notif(struct iwl_mvm *mvm,
348 struct iwl_rx_cmd_buffer *rxb,
349 struct iwl_device_cmd *cmd)
350{
351 struct iwl_rx_packet *pkt = rxb_addr(rxb);
352 struct iwl_time_event_notif *notif = (void *)pkt->data;
353 struct iwl_mvm_time_event_data *te_data, *tmp;
354
355 IWL_DEBUG_TE(mvm, "Time event notification - UID = 0x%x action %d\n",
356 le32_to_cpu(notif->unique_id),
357 le32_to_cpu(notif->action));
358
359 spin_lock_bh(&mvm->time_event_lock);
Ariej Marjiehb1128892014-07-16 21:11:12 +0300360 /* This time event is triggered for Aux ROC request */
361 if (!iwl_mvm_aux_roc_te_handle_notif(mvm, notif))
362 goto unlock;
363
Johannes Berg8ca151b2013-01-24 14:25:36 +0100364 list_for_each_entry_safe(te_data, tmp, &mvm->time_event_list, list) {
365 if (le32_to_cpu(notif->unique_id) == te_data->uid)
366 iwl_mvm_te_handle_notif(mvm, te_data, notif);
367 }
Ariej Marjiehb1128892014-07-16 21:11:12 +0300368unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +0100369 spin_unlock_bh(&mvm->time_event_lock);
370
371 return 0;
372}
373
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300374static bool iwl_mvm_te_notif(struct iwl_notif_wait_data *notif_wait,
375 struct iwl_rx_packet *pkt, void *data)
376{
377 struct iwl_mvm *mvm =
378 container_of(notif_wait, struct iwl_mvm, notif_wait);
379 struct iwl_mvm_time_event_data *te_data = data;
380 struct iwl_time_event_notif *resp;
381 int resp_len = iwl_rx_packet_payload_len(pkt);
382
383 if (WARN_ON(pkt->hdr.cmd != TIME_EVENT_NOTIFICATION))
384 return true;
385
386 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
387 IWL_ERR(mvm, "Invalid TIME_EVENT_NOTIFICATION response\n");
388 return true;
389 }
390
391 resp = (void *)pkt->data;
392
393 /* te_data->uid is already set in the TIME_EVENT_CMD response */
394 if (le32_to_cpu(resp->unique_id) != te_data->uid)
395 return false;
396
397 IWL_DEBUG_TE(mvm, "TIME_EVENT_NOTIFICATION response - UID = 0x%x\n",
398 te_data->uid);
399 if (!resp->status)
400 IWL_ERR(mvm,
401 "TIME_EVENT_NOTIFICATION received but not executed\n");
402
403 return true;
404}
405
Johannes Bergffdf9682013-01-29 15:28:17 +0100406static bool iwl_mvm_time_event_response(struct iwl_notif_wait_data *notif_wait,
407 struct iwl_rx_packet *pkt, void *data)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100408{
409 struct iwl_mvm *mvm =
410 container_of(notif_wait, struct iwl_mvm, notif_wait);
411 struct iwl_mvm_time_event_data *te_data = data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100412 struct iwl_time_event_resp *resp;
Johannes Berg65b30342014-01-08 13:16:33 +0100413 int resp_len = iwl_rx_packet_payload_len(pkt);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100414
Johannes Bergffdf9682013-01-29 15:28:17 +0100415 if (WARN_ON(pkt->hdr.cmd != TIME_EVENT_CMD))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100416 return true;
417
Johannes Berg65b30342014-01-08 13:16:33 +0100418 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
Johannes Bergffdf9682013-01-29 15:28:17 +0100419 IWL_ERR(mvm, "Invalid TIME_EVENT_CMD response\n");
420 return true;
421 }
422
423 resp = (void *)pkt->data;
Johannes Berge372282242013-02-16 00:11:34 +0100424
425 /* we should never get a response to another TIME_EVENT_CMD here */
426 if (WARN_ON_ONCE(le32_to_cpu(resp->id) != te_data->id))
427 return false;
428
Johannes Bergffdf9682013-01-29 15:28:17 +0100429 te_data->uid = le32_to_cpu(resp->unique_id);
430 IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
431 te_data->uid);
432 return true;
433}
434
435static int iwl_mvm_time_event_send_add(struct iwl_mvm *mvm,
436 struct ieee80211_vif *vif,
437 struct iwl_mvm_time_event_data *te_data,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300438 struct iwl_time_event_cmd *te_cmd)
Johannes Bergffdf9682013-01-29 15:28:17 +0100439{
440 static const u8 time_event_response[] = { TIME_EVENT_CMD };
441 struct iwl_notification_wait wait_time_event;
442 int ret;
443
444 lockdep_assert_held(&mvm->mutex);
445
Johannes Berg93630dc2013-02-15 23:54:10 +0100446 IWL_DEBUG_TE(mvm, "Add new TE, duration %d TU\n",
447 le32_to_cpu(te_cmd->duration));
448
Johannes Bergffdf9682013-01-29 15:28:17 +0100449 spin_lock_bh(&mvm->time_event_lock);
450 if (WARN_ON(te_data->id != TE_MAX)) {
451 spin_unlock_bh(&mvm->time_event_lock);
452 return -EIO;
453 }
454 te_data->vif = vif;
455 te_data->duration = le32_to_cpu(te_cmd->duration);
456 te_data->id = le32_to_cpu(te_cmd->id);
457 list_add_tail(&te_data->list, &mvm->time_event_list);
458 spin_unlock_bh(&mvm->time_event_lock);
459
460 /*
461 * Use a notification wait, which really just processes the
462 * command response and doesn't wait for anything, in order
463 * to be able to process the response and get the UID inside
464 * the RX path. Using CMD_WANT_SKB doesn't work because it
465 * stores the buffer and then wakes up this thread, by which
466 * time another notification (that the time event started)
467 * might already be processed unsuccessfully.
468 */
469 iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
470 time_event_response,
471 ARRAY_SIZE(time_event_response),
472 iwl_mvm_time_event_response, te_data);
473
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300474 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_EVENT_CMD, 0,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300475 sizeof(*te_cmd), te_cmd);
Johannes Bergffdf9682013-01-29 15:28:17 +0100476 if (ret) {
477 IWL_ERR(mvm, "Couldn't send TIME_EVENT_CMD: %d\n", ret);
478 iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
479 goto out_clear_te;
480 }
481
482 /* No need to wait for anything, so just pass 1 (0 isn't valid) */
483 ret = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
484 /* should never fail */
485 WARN_ON_ONCE(ret);
486
487 if (ret) {
488 out_clear_te:
489 spin_lock_bh(&mvm->time_event_lock);
490 iwl_mvm_te_clear_data(mvm, te_data);
491 spin_unlock_bh(&mvm->time_event_lock);
492 }
493 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100494}
495
496void iwl_mvm_protect_session(struct iwl_mvm *mvm,
497 struct ieee80211_vif *vif,
Johannes Berg016d27e2013-05-03 11:16:15 +0200498 u32 duration, u32 min_duration,
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300499 u32 max_delay, bool wait_for_notif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100500{
501 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
502 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300503 const u8 te_notif_response[] = { TIME_EVENT_NOTIFICATION };
504 struct iwl_notification_wait wait_te_notif;
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300505 struct iwl_time_event_cmd time_cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100506
507 lockdep_assert_held(&mvm->mutex);
508
509 if (te_data->running &&
Johannes Berge7f19352013-07-25 21:45:17 +0200510 time_after(te_data->end_jiffies, TU_TO_EXP_TIME(min_duration))) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100511 IWL_DEBUG_TE(mvm, "We have enough time in the current TE: %u\n",
512 jiffies_to_msecs(te_data->end_jiffies - jiffies));
513 return;
514 }
515
516 if (te_data->running) {
517 IWL_DEBUG_TE(mvm, "extend 0x%x: only %u ms left\n",
518 te_data->uid,
519 jiffies_to_msecs(te_data->end_jiffies - jiffies));
520 /*
521 * we don't have enough time
522 * cancel the current TE and issue a new one
523 * Of course it would be better to remove the old one only
524 * when the new one is added, but we don't care if we are off
525 * channel for a bit. All we need to do, is not to return
526 * before we actually begin to be on the channel.
527 */
528 iwl_mvm_stop_session_protection(mvm, vif);
529 }
530
Johannes Berg8ca151b2013-01-24 14:25:36 +0100531 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
532 time_cmd.id_and_color =
533 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
534 time_cmd.id = cpu_to_le32(TE_BSS_STA_AGGRESSIVE_ASSOC);
535
536 time_cmd.apply_time =
537 cpu_to_le32(iwl_read_prph(mvm->trans, DEVICE_SYSTEM_TIME_REG));
Johannes Bergffdf9682013-01-29 15:28:17 +0100538
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300539 time_cmd.max_frags = TE_V2_FRAG_NONE;
Johannes Berg016d27e2013-05-03 11:16:15 +0200540 time_cmd.max_delay = cpu_to_le32(max_delay);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100541 /* TODO: why do we need to interval = bi if it is not periodic? */
542 time_cmd.interval = cpu_to_le32(1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100543 time_cmd.duration = cpu_to_le32(duration);
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300544 time_cmd.repeat = 1;
545 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
Emmanuel Grumbach1f6bf072014-02-16 15:36:00 +0200546 TE_V2_NOTIF_HOST_EVENT_END |
547 T2_V2_START_IMMEDIATELY);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100548
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300549 if (!wait_for_notif) {
550 iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
551 return;
552 }
553
554 /*
555 * Create notification_wait for the TIME_EVENT_NOTIFICATION to use
556 * right after we send the time event
557 */
558 iwl_init_notification_wait(&mvm->notif_wait, &wait_te_notif,
559 te_notif_response,
560 ARRAY_SIZE(te_notif_response),
561 iwl_mvm_te_notif, te_data);
562
563 /* If TE was sent OK - wait for the notification that started */
564 if (iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd)) {
565 IWL_ERR(mvm, "Failed to add TE to protect session\n");
566 iwl_remove_notification(&mvm->notif_wait, &wait_te_notif);
567 } else if (iwl_wait_notification(&mvm->notif_wait, &wait_te_notif,
568 TU_TO_JIFFIES(max_delay))) {
569 IWL_ERR(mvm, "Failed to protect session until TE\n");
570 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100571}
572
Matti Gottliebbf5da872014-11-16 10:25:12 +0200573static bool __iwl_mvm_remove_time_event(struct iwl_mvm *mvm,
574 struct iwl_mvm_time_event_data *te_data,
575 u32 *uid)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100576{
Matti Gottliebbf5da872014-11-16 10:25:12 +0200577 u32 id;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100578
579 /*
580 * It is possible that by the time we got to this point the time
581 * event was already removed.
582 */
583 spin_lock_bh(&mvm->time_event_lock);
584
585 /* Save time event uid before clearing its data */
Matti Gottliebbf5da872014-11-16 10:25:12 +0200586 *uid = te_data->uid;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100587 id = te_data->id;
588
589 /*
590 * The clear_data function handles time events that were already removed
591 */
592 iwl_mvm_te_clear_data(mvm, te_data);
593 spin_unlock_bh(&mvm->time_event_lock);
594
595 /*
596 * It is possible that by the time we try to remove it, the time event
597 * has already ended and removed. In such a case there is no need to
598 * send a removal command.
599 */
600 if (id == TE_MAX) {
Matti Gottliebbf5da872014-11-16 10:25:12 +0200601 IWL_DEBUG_TE(mvm, "TE 0x%x has already ended\n", *uid);
602 return false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100603 }
604
Matti Gottliebbf5da872014-11-16 10:25:12 +0200605 return true;
606}
607
608/*
609 * Explicit request to remove a aux roc time event. The removal of a time
610 * event needs to be synchronized with the flow of a time event's end
611 * notification, which also removes the time event from the op mode
612 * data structures.
613 */
614static void iwl_mvm_remove_aux_roc_te(struct iwl_mvm *mvm,
615 struct iwl_mvm_vif *mvmvif,
616 struct iwl_mvm_time_event_data *te_data)
617{
618 struct iwl_hs20_roc_req aux_cmd = {};
619 u32 uid;
620 int ret;
621
622 if (!__iwl_mvm_remove_time_event(mvm, te_data, &uid))
623 return;
624
625 aux_cmd.event_unique_id = cpu_to_le32(uid);
626 aux_cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
627 aux_cmd.id_and_color =
628 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
629 IWL_DEBUG_TE(mvm, "Removing BSS AUX ROC TE 0x%x\n",
630 le32_to_cpu(aux_cmd.event_unique_id));
631 ret = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0,
632 sizeof(aux_cmd), &aux_cmd);
633
634 if (WARN_ON(ret))
635 return;
636}
637
638/*
639 * Explicit request to remove a time event. The removal of a time event needs to
640 * be synchronized with the flow of a time event's end notification, which also
641 * removes the time event from the op mode data structures.
642 */
643void iwl_mvm_remove_time_event(struct iwl_mvm *mvm,
644 struct iwl_mvm_vif *mvmvif,
645 struct iwl_mvm_time_event_data *te_data)
646{
647 struct iwl_time_event_cmd time_cmd = {};
648 u32 uid;
649 int ret;
650
651 if (!__iwl_mvm_remove_time_event(mvm, te_data, &uid))
652 return;
653
Johannes Berg8ca151b2013-01-24 14:25:36 +0100654 /* When we remove a TE, the UID is to be set in the id field */
655 time_cmd.id = cpu_to_le32(uid);
656 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
657 time_cmd.id_and_color =
658 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
659
660 IWL_DEBUG_TE(mvm, "Removing TE 0x%x\n", le32_to_cpu(time_cmd.id));
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300661 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_EVENT_CMD, 0,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300662 sizeof(time_cmd), &time_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100663 if (WARN_ON(ret))
664 return;
665}
666
667void iwl_mvm_stop_session_protection(struct iwl_mvm *mvm,
668 struct ieee80211_vif *vif)
669{
670 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
671 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
672
673 lockdep_assert_held(&mvm->mutex);
674 iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
675}
676
Johannes Berg8ca151b2013-01-24 14:25:36 +0100677int iwl_mvm_start_p2p_roc(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Ilan Peere635c792013-02-13 11:05:18 +0200678 int duration, enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100679{
680 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
681 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300682 struct iwl_time_event_cmd time_cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100683
684 lockdep_assert_held(&mvm->mutex);
685 if (te_data->running) {
686 IWL_WARN(mvm, "P2P_DEVICE remain on channel already running\n");
687 return -EBUSY;
688 }
689
690 /*
691 * Flush the done work, just in case it's still pending, so that
692 * the work it does can complete and we can accept new frames.
693 */
694 flush_work(&mvm->roc_done_wk);
695
Johannes Berg8ca151b2013-01-24 14:25:36 +0100696 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
697 time_cmd.id_and_color =
698 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
Ilan Peere635c792013-02-13 11:05:18 +0200699
700 switch (type) {
701 case IEEE80211_ROC_TYPE_NORMAL:
702 time_cmd.id = cpu_to_le32(IWL_MVM_ROC_TE_TYPE_NORMAL);
703 break;
704 case IEEE80211_ROC_TYPE_MGMT_TX:
705 time_cmd.id = cpu_to_le32(IWL_MVM_ROC_TE_TYPE_MGMT_TX);
706 break;
707 default:
708 WARN_ONCE(1, "Got an invalid ROC type\n");
709 return -EINVAL;
710 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100711
712 time_cmd.apply_time = cpu_to_le32(0);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100713 time_cmd.interval = cpu_to_le32(1);
714
715 /*
Ilan Peere635c792013-02-13 11:05:18 +0200716 * The P2P Device TEs can have lower priority than other events
Johannes Berg8ca151b2013-01-24 14:25:36 +0100717 * that are being scheduled by the driver/fw, and thus it might not be
Ilan Peere635c792013-02-13 11:05:18 +0200718 * scheduled. To improve the chances of it being scheduled, allow them
719 * to be fragmented, and in addition allow them to be delayed.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100720 */
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300721 time_cmd.max_frags = min(MSEC_TO_TU(duration)/50, TE_V2_FRAG_ENDLESS);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100722 time_cmd.max_delay = cpu_to_le32(MSEC_TO_TU(duration/2));
723 time_cmd.duration = cpu_to_le32(MSEC_TO_TU(duration));
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300724 time_cmd.repeat = 1;
725 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
Emmanuel Grumbach1f6bf072014-02-16 15:36:00 +0200726 TE_V2_NOTIF_HOST_EVENT_END |
727 T2_V2_START_IMMEDIATELY);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100728
Johannes Bergffdf9682013-01-29 15:28:17 +0100729 return iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100730}
731
Matti Gottliebbf5da872014-11-16 10:25:12 +0200732void iwl_mvm_stop_roc(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100733{
734 struct iwl_mvm_vif *mvmvif;
735 struct iwl_mvm_time_event_data *te_data;
Matti Gottliebbf5da872014-11-16 10:25:12 +0200736 bool is_p2p = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100737
738 lockdep_assert_held(&mvm->mutex);
739
Matti Gottliebbf5da872014-11-16 10:25:12 +0200740 mvmvif = NULL;
741 spin_lock_bh(&mvm->time_event_lock);
742
Johannes Berg8ca151b2013-01-24 14:25:36 +0100743 /*
744 * Iterate over the list of time events and find the time event that is
745 * associated with a P2P_DEVICE interface.
746 * This assumes that a P2P_DEVICE interface can have only a single time
747 * event at any given time and this time event coresponds to a ROC
748 * request
749 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100750 list_for_each_entry(te_data, &mvm->time_event_list, list) {
Matti Gottliebbf5da872014-11-16 10:25:12 +0200751 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE &&
752 te_data->running) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100753 mvmvif = iwl_mvm_vif_from_mac80211(te_data->vif);
Matti Gottliebbf5da872014-11-16 10:25:12 +0200754 is_p2p = true;
755 goto remove_te;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100756 }
757 }
Matti Gottliebbf5da872014-11-16 10:25:12 +0200758
759 /*
760 * Iterate over the list of aux roc time events and find the time
761 * event that is associated with a BSS interface.
762 * This assumes that a BSS interface can have only a single time
763 * event at any given time and this time event coresponds to a ROC
764 * request
765 */
766 list_for_each_entry(te_data, &mvm->aux_roc_te_list, list) {
767 if (te_data->running) {
768 mvmvif = iwl_mvm_vif_from_mac80211(te_data->vif);
769 goto remove_te;
770 }
771 }
772
773remove_te:
Johannes Berg8ca151b2013-01-24 14:25:36 +0100774 spin_unlock_bh(&mvm->time_event_lock);
775
776 if (!mvmvif) {
Matti Gottliebbf5da872014-11-16 10:25:12 +0200777 IWL_WARN(mvm, "No remain on channel event\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100778 return;
779 }
780
Matti Gottliebbf5da872014-11-16 10:25:12 +0200781 if (is_p2p)
782 iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
783 else
784 iwl_mvm_remove_aux_roc_te(mvm, mvmvif, te_data);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100785
786 iwl_mvm_roc_finished(mvm);
787}
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300788
Luciano Coelhof991e172014-08-26 16:14:10 +0300789int iwl_mvm_schedule_csa_period(struct iwl_mvm *mvm,
790 struct ieee80211_vif *vif,
791 u32 duration, u32 apply_time)
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300792{
793 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
794 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
795 struct iwl_time_event_cmd time_cmd = {};
796
797 lockdep_assert_held(&mvm->mutex);
798
799 if (te_data->running) {
Luciano Coelhof991e172014-08-26 16:14:10 +0300800 IWL_DEBUG_TE(mvm, "CS period is already scheduled\n");
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300801 return -EBUSY;
802 }
803
804 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
805 time_cmd.id_and_color =
806 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
Luciano Coelhof991e172014-08-26 16:14:10 +0300807 time_cmd.id = cpu_to_le32(TE_CHANNEL_SWITCH_PERIOD);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300808 time_cmd.apply_time = cpu_to_le32(apply_time);
809 time_cmd.max_frags = TE_V2_FRAG_NONE;
810 time_cmd.duration = cpu_to_le32(duration);
811 time_cmd.repeat = 1;
812 time_cmd.interval = cpu_to_le32(1);
813 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
814 TE_V2_ABSENCE);
815
816 return iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
817}