]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/net/wireless/iwlwifi/mvm/time-event.c
iwlwifi: mvm: remove time-event start/end failure warning
[karo-tx-linux.git] / drivers / net / wireless / iwlwifi / mvm / time-event.c
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) 2012 - 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 <ilw@linux.intel.com>
30  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31  *
32  * BSD LICENSE
33  *
34  * Copyright(c) 2012 - 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
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
77 /*
78  * For the high priority TE use a time event type that has similar priority to
79  * the FW's action scan priority.
80  */
81 #define IWL_MVM_ROC_TE_TYPE_NORMAL TE_P2P_DEVICE_DISCOVERABLE
82 #define IWL_MVM_ROC_TE_TYPE_MGMT_TX TE_P2P_CLIENT_ASSOC
83
84 void 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
99 void iwl_mvm_roc_done_wk(struct work_struct *wk)
100 {
101         struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm, roc_done_wk);
102         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);
117
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          */
130         iwl_mvm_flush_tx_path(mvm, queues, false);
131 }
132
133 static void iwl_mvm_roc_finished(struct iwl_mvm *mvm)
134 {
135         /*
136          * 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
145 static 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
176 out_unlock:
177         rcu_read_unlock();
178 }
179
180 static 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
194 static void
195 iwl_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         struct ieee80211_vif *vif = te_data->vif;
200         struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
201
202         if (!notif->status)
203                 IWL_DEBUG_TE(mvm, "CSA time event failed to start\n");
204
205         switch (te_data->vif->type) {
206         case NL80211_IFTYPE_AP:
207                 if (!notif->status)
208                         mvmvif->csa_failed = true;
209                 iwl_mvm_csa_noa_start(mvm);
210                 break;
211         case NL80211_IFTYPE_STATION:
212                 if (!notif->status) {
213                         ieee80211_connection_loss(te_data->vif);
214                         break;
215                 }
216                 iwl_mvm_csa_client_absent(mvm, te_data->vif);
217                 ieee80211_chswitch_done(te_data->vif, true);
218                 break;
219         default:
220                 /* should never happen */
221                 WARN_ON_ONCE(1);
222                 break;
223         }
224
225         /* we don't need it anymore */
226         iwl_mvm_te_clear_data(mvm, te_data);
227 }
228
229 /*
230  * Handles a FW notification for an event that is known to the driver.
231  *
232  * @mvm: the mvm component
233  * @te_data: the time event data
234  * @notif: the notification data corresponding the time event data.
235  */
236 static void iwl_mvm_te_handle_notif(struct iwl_mvm *mvm,
237                                     struct iwl_mvm_time_event_data *te_data,
238                                     struct iwl_time_event_notif *notif)
239 {
240         lockdep_assert_held(&mvm->time_event_lock);
241
242         IWL_DEBUG_TE(mvm, "Handle time event notif - UID = 0x%x action %d\n",
243                      le32_to_cpu(notif->unique_id),
244                      le32_to_cpu(notif->action));
245
246         /*
247          * The FW sends the start/end time event notifications even for events
248          * that it fails to schedule. This is indicated in the status field of
249          * the notification. This happens in cases that the scheduler cannot
250          * find a schedule that can handle the event (for example requesting a
251          * P2P Device discoveribility, while there are other higher priority
252          * events in the system).
253          */
254         if (!le32_to_cpu(notif->status)) {
255                 const char *msg;
256
257                 if (notif->action & cpu_to_le32(TE_V2_NOTIF_HOST_EVENT_START))
258                         msg = "Time Event start notification failure";
259                 else
260                         msg = "Time Event end notification failure";
261
262                 IWL_DEBUG_TE(mvm, "%s\n", msg);
263
264                 if (iwl_mvm_te_check_disconnect(mvm, te_data->vif, msg)) {
265                         iwl_mvm_te_clear_data(mvm, te_data);
266                         return;
267                 }
268         }
269
270         if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_END) {
271                 IWL_DEBUG_TE(mvm,
272                              "TE ended - current time %lu, estimated end %lu\n",
273                              jiffies, te_data->end_jiffies);
274
275                 switch (te_data->vif->type) {
276                 case NL80211_IFTYPE_P2P_DEVICE:
277                         ieee80211_remain_on_channel_expired(mvm->hw);
278                         iwl_mvm_roc_finished(mvm);
279                         break;
280                 case NL80211_IFTYPE_STATION:
281                         /*
282                          * By now, we should have finished association
283                          * and know the dtim period.
284                          */
285                         iwl_mvm_te_check_disconnect(mvm, te_data->vif,
286                                 "No association and the time event is over already...");
287                         break;
288                 default:
289                         break;
290                 }
291
292                 iwl_mvm_te_clear_data(mvm, te_data);
293         } else if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_START) {
294                 te_data->running = true;
295                 te_data->end_jiffies = TU_TO_EXP_TIME(te_data->duration);
296
297                 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE) {
298                         set_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status);
299                         iwl_mvm_ref(mvm, IWL_MVM_REF_ROC);
300                         ieee80211_ready_on_channel(mvm->hw);
301                 } else if (te_data->id == TE_CHANNEL_SWITCH_PERIOD) {
302                         iwl_mvm_te_handle_notify_csa(mvm, te_data, notif);
303                 }
304         } else {
305                 IWL_WARN(mvm, "Got TE with unknown action\n");
306         }
307 }
308
309 /*
310  * Handle A Aux ROC time event
311  */
312 static int iwl_mvm_aux_roc_te_handle_notif(struct iwl_mvm *mvm,
313                                            struct iwl_time_event_notif *notif)
314 {
315         struct iwl_mvm_time_event_data *te_data, *tmp;
316         bool aux_roc_te = false;
317
318         list_for_each_entry_safe(te_data, tmp, &mvm->aux_roc_te_list, list) {
319                 if (le32_to_cpu(notif->unique_id) == te_data->uid) {
320                         aux_roc_te = true;
321                         break;
322                 }
323         }
324         if (!aux_roc_te) /* Not a Aux ROC time event */
325                 return -EINVAL;
326
327         if (!le32_to_cpu(notif->status)) {
328                 IWL_DEBUG_TE(mvm,
329                              "ERROR: Aux ROC Time Event %s notification failure\n",
330                              (le32_to_cpu(notif->action) &
331                               TE_V2_NOTIF_HOST_EVENT_START) ? "start" : "end");
332                 return -EINVAL;
333         }
334
335         IWL_DEBUG_TE(mvm,
336                      "Aux ROC time event notification  - UID = 0x%x action %d\n",
337                      le32_to_cpu(notif->unique_id),
338                      le32_to_cpu(notif->action));
339
340         if (le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_END) {
341                 /* End TE, notify mac80211 */
342                 ieee80211_remain_on_channel_expired(mvm->hw);
343                 iwl_mvm_roc_finished(mvm); /* flush aux queue */
344                 list_del(&te_data->list); /* remove from list */
345                 te_data->running = false;
346                 te_data->vif = NULL;
347                 te_data->uid = 0;
348                 te_data->id = TE_MAX;
349         } else if (le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_START) {
350                 set_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status);
351                 te_data->running = true;
352                 ieee80211_ready_on_channel(mvm->hw); /* Start TE */
353         } else {
354                 IWL_DEBUG_TE(mvm,
355                              "ERROR: Unknown Aux ROC Time Event (action = %d)\n",
356                              le32_to_cpu(notif->action));
357                 return -EINVAL;
358         }
359
360         return 0;
361 }
362
363 /*
364  * The Rx handler for time event notifications
365  */
366 int iwl_mvm_rx_time_event_notif(struct iwl_mvm *mvm,
367                                 struct iwl_rx_cmd_buffer *rxb,
368                                 struct iwl_device_cmd *cmd)
369 {
370         struct iwl_rx_packet *pkt = rxb_addr(rxb);
371         struct iwl_time_event_notif *notif = (void *)pkt->data;
372         struct iwl_mvm_time_event_data *te_data, *tmp;
373
374         IWL_DEBUG_TE(mvm, "Time event notification - UID = 0x%x action %d\n",
375                      le32_to_cpu(notif->unique_id),
376                      le32_to_cpu(notif->action));
377
378         spin_lock_bh(&mvm->time_event_lock);
379         /* This time event is triggered for Aux ROC request */
380         if (!iwl_mvm_aux_roc_te_handle_notif(mvm, notif))
381                 goto unlock;
382
383         list_for_each_entry_safe(te_data, tmp, &mvm->time_event_list, list) {
384                 if (le32_to_cpu(notif->unique_id) == te_data->uid)
385                         iwl_mvm_te_handle_notif(mvm, te_data, notif);
386         }
387 unlock:
388         spin_unlock_bh(&mvm->time_event_lock);
389
390         return 0;
391 }
392
393 static bool iwl_mvm_te_notif(struct iwl_notif_wait_data *notif_wait,
394                              struct iwl_rx_packet *pkt, void *data)
395 {
396         struct iwl_mvm *mvm =
397                 container_of(notif_wait, struct iwl_mvm, notif_wait);
398         struct iwl_mvm_time_event_data *te_data = data;
399         struct iwl_time_event_notif *resp;
400         int resp_len = iwl_rx_packet_payload_len(pkt);
401
402         if (WARN_ON(pkt->hdr.cmd != TIME_EVENT_NOTIFICATION))
403                 return true;
404
405         if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
406                 IWL_ERR(mvm, "Invalid TIME_EVENT_NOTIFICATION response\n");
407                 return true;
408         }
409
410         resp = (void *)pkt->data;
411
412         /* te_data->uid is already set in the TIME_EVENT_CMD response */
413         if (le32_to_cpu(resp->unique_id) != te_data->uid)
414                 return false;
415
416         IWL_DEBUG_TE(mvm, "TIME_EVENT_NOTIFICATION response - UID = 0x%x\n",
417                      te_data->uid);
418         if (!resp->status)
419                 IWL_ERR(mvm,
420                         "TIME_EVENT_NOTIFICATION received but not executed\n");
421
422         return true;
423 }
424
425 static bool iwl_mvm_time_event_response(struct iwl_notif_wait_data *notif_wait,
426                                         struct iwl_rx_packet *pkt, void *data)
427 {
428         struct iwl_mvm *mvm =
429                 container_of(notif_wait, struct iwl_mvm, notif_wait);
430         struct iwl_mvm_time_event_data *te_data = data;
431         struct iwl_time_event_resp *resp;
432         int resp_len = iwl_rx_packet_payload_len(pkt);
433
434         if (WARN_ON(pkt->hdr.cmd != TIME_EVENT_CMD))
435                 return true;
436
437         if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
438                 IWL_ERR(mvm, "Invalid TIME_EVENT_CMD response\n");
439                 return true;
440         }
441
442         resp = (void *)pkt->data;
443
444         /* we should never get a response to another TIME_EVENT_CMD here */
445         if (WARN_ON_ONCE(le32_to_cpu(resp->id) != te_data->id))
446                 return false;
447
448         te_data->uid = le32_to_cpu(resp->unique_id);
449         IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
450                      te_data->uid);
451         return true;
452 }
453
454 static int iwl_mvm_time_event_send_add(struct iwl_mvm *mvm,
455                                        struct ieee80211_vif *vif,
456                                        struct iwl_mvm_time_event_data *te_data,
457                                        struct iwl_time_event_cmd *te_cmd)
458 {
459         static const u8 time_event_response[] = { TIME_EVENT_CMD };
460         struct iwl_notification_wait wait_time_event;
461         int ret;
462
463         lockdep_assert_held(&mvm->mutex);
464
465         IWL_DEBUG_TE(mvm, "Add new TE, duration %d TU\n",
466                      le32_to_cpu(te_cmd->duration));
467
468         spin_lock_bh(&mvm->time_event_lock);
469         if (WARN_ON(te_data->id != TE_MAX)) {
470                 spin_unlock_bh(&mvm->time_event_lock);
471                 return -EIO;
472         }
473         te_data->vif = vif;
474         te_data->duration = le32_to_cpu(te_cmd->duration);
475         te_data->id = le32_to_cpu(te_cmd->id);
476         list_add_tail(&te_data->list, &mvm->time_event_list);
477         spin_unlock_bh(&mvm->time_event_lock);
478
479         /*
480          * Use a notification wait, which really just processes the
481          * command response and doesn't wait for anything, in order
482          * to be able to process the response and get the UID inside
483          * the RX path. Using CMD_WANT_SKB doesn't work because it
484          * stores the buffer and then wakes up this thread, by which
485          * time another notification (that the time event started)
486          * might already be processed unsuccessfully.
487          */
488         iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
489                                    time_event_response,
490                                    ARRAY_SIZE(time_event_response),
491                                    iwl_mvm_time_event_response, te_data);
492
493         ret = iwl_mvm_send_cmd_pdu(mvm, TIME_EVENT_CMD, 0,
494                                             sizeof(*te_cmd), te_cmd);
495         if (ret) {
496                 IWL_ERR(mvm, "Couldn't send TIME_EVENT_CMD: %d\n", ret);
497                 iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
498                 goto out_clear_te;
499         }
500
501         /* No need to wait for anything, so just pass 1 (0 isn't valid) */
502         ret = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
503         /* should never fail */
504         WARN_ON_ONCE(ret);
505
506         if (ret) {
507  out_clear_te:
508                 spin_lock_bh(&mvm->time_event_lock);
509                 iwl_mvm_te_clear_data(mvm, te_data);
510                 spin_unlock_bh(&mvm->time_event_lock);
511         }
512         return ret;
513 }
514
515 void iwl_mvm_protect_session(struct iwl_mvm *mvm,
516                              struct ieee80211_vif *vif,
517                              u32 duration, u32 min_duration,
518                              u32 max_delay, bool wait_for_notif)
519 {
520         struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
521         struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
522         const u8 te_notif_response[] = { TIME_EVENT_NOTIFICATION };
523         struct iwl_notification_wait wait_te_notif;
524         struct iwl_time_event_cmd time_cmd = {};
525
526         lockdep_assert_held(&mvm->mutex);
527
528         if (te_data->running &&
529             time_after(te_data->end_jiffies, TU_TO_EXP_TIME(min_duration))) {
530                 IWL_DEBUG_TE(mvm, "We have enough time in the current TE: %u\n",
531                              jiffies_to_msecs(te_data->end_jiffies - jiffies));
532                 return;
533         }
534
535         if (te_data->running) {
536                 IWL_DEBUG_TE(mvm, "extend 0x%x: only %u ms left\n",
537                              te_data->uid,
538                              jiffies_to_msecs(te_data->end_jiffies - jiffies));
539                 /*
540                  * we don't have enough time
541                  * cancel the current TE and issue a new one
542                  * Of course it would be better to remove the old one only
543                  * when the new one is added, but we don't care if we are off
544                  * channel for a bit. All we need to do, is not to return
545                  * before we actually begin to be on the channel.
546                  */
547                 iwl_mvm_stop_session_protection(mvm, vif);
548         }
549
550         time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
551         time_cmd.id_and_color =
552                 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
553         time_cmd.id = cpu_to_le32(TE_BSS_STA_AGGRESSIVE_ASSOC);
554
555         time_cmd.apply_time =
556                 cpu_to_le32(iwl_read_prph(mvm->trans, DEVICE_SYSTEM_TIME_REG));
557
558         time_cmd.max_frags = TE_V2_FRAG_NONE;
559         time_cmd.max_delay = cpu_to_le32(max_delay);
560         /* TODO: why do we need to interval = bi if it is not periodic? */
561         time_cmd.interval = cpu_to_le32(1);
562         time_cmd.duration = cpu_to_le32(duration);
563         time_cmd.repeat = 1;
564         time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
565                                       TE_V2_NOTIF_HOST_EVENT_END |
566                                       T2_V2_START_IMMEDIATELY);
567
568         if (!wait_for_notif) {
569                 iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
570                 return;
571         }
572
573         /*
574          * Create notification_wait for the TIME_EVENT_NOTIFICATION to use
575          * right after we send the time event
576          */
577         iwl_init_notification_wait(&mvm->notif_wait, &wait_te_notif,
578                                    te_notif_response,
579                                    ARRAY_SIZE(te_notif_response),
580                                    iwl_mvm_te_notif, te_data);
581
582         /* If TE was sent OK - wait for the notification that started */
583         if (iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd)) {
584                 IWL_ERR(mvm, "Failed to add TE to protect session\n");
585                 iwl_remove_notification(&mvm->notif_wait, &wait_te_notif);
586         } else if (iwl_wait_notification(&mvm->notif_wait, &wait_te_notif,
587                                          TU_TO_JIFFIES(max_delay))) {
588                 IWL_ERR(mvm, "Failed to protect session until TE\n");
589         }
590 }
591
592 static bool __iwl_mvm_remove_time_event(struct iwl_mvm *mvm,
593                                         struct iwl_mvm_time_event_data *te_data,
594                                         u32 *uid)
595 {
596         u32 id;
597
598         /*
599          * It is possible that by the time we got to this point the time
600          * event was already removed.
601          */
602         spin_lock_bh(&mvm->time_event_lock);
603
604         /* Save time event uid before clearing its data */
605         *uid = te_data->uid;
606         id = te_data->id;
607
608         /*
609          * The clear_data function handles time events that were already removed
610          */
611         iwl_mvm_te_clear_data(mvm, te_data);
612         spin_unlock_bh(&mvm->time_event_lock);
613
614         /*
615          * It is possible that by the time we try to remove it, the time event
616          * has already ended and removed. In such a case there is no need to
617          * send a removal command.
618          */
619         if (id == TE_MAX) {
620                 IWL_DEBUG_TE(mvm, "TE 0x%x has already ended\n", *uid);
621                 return false;
622         }
623
624         return true;
625 }
626
627 /*
628  * Explicit request to remove a aux roc time event. The removal of a time
629  * event needs to be synchronized with the flow of a time event's end
630  * notification, which also removes the time event from the op mode
631  * data structures.
632  */
633 static void iwl_mvm_remove_aux_roc_te(struct iwl_mvm *mvm,
634                                       struct iwl_mvm_vif *mvmvif,
635                                       struct iwl_mvm_time_event_data *te_data)
636 {
637         struct iwl_hs20_roc_req aux_cmd = {};
638         u32 uid;
639         int ret;
640
641         if (!__iwl_mvm_remove_time_event(mvm, te_data, &uid))
642                 return;
643
644         aux_cmd.event_unique_id = cpu_to_le32(uid);
645         aux_cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
646         aux_cmd.id_and_color =
647                 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
648         IWL_DEBUG_TE(mvm, "Removing BSS AUX ROC TE 0x%x\n",
649                      le32_to_cpu(aux_cmd.event_unique_id));
650         ret = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0,
651                                    sizeof(aux_cmd), &aux_cmd);
652
653         if (WARN_ON(ret))
654                 return;
655 }
656
657 /*
658  * Explicit request to remove a time event. The removal of a time event needs to
659  * be synchronized with the flow of a time event's end notification, which also
660  * removes the time event from the op mode data structures.
661  */
662 void iwl_mvm_remove_time_event(struct iwl_mvm *mvm,
663                                struct iwl_mvm_vif *mvmvif,
664                                struct iwl_mvm_time_event_data *te_data)
665 {
666         struct iwl_time_event_cmd time_cmd = {};
667         u32 uid;
668         int ret;
669
670         if (!__iwl_mvm_remove_time_event(mvm, te_data, &uid))
671                 return;
672
673         /* When we remove a TE, the UID is to be set in the id field */
674         time_cmd.id = cpu_to_le32(uid);
675         time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
676         time_cmd.id_and_color =
677                 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
678
679         IWL_DEBUG_TE(mvm, "Removing TE 0x%x\n", le32_to_cpu(time_cmd.id));
680         ret = iwl_mvm_send_cmd_pdu(mvm, TIME_EVENT_CMD, 0,
681                                    sizeof(time_cmd), &time_cmd);
682         if (WARN_ON(ret))
683                 return;
684 }
685
686 void iwl_mvm_stop_session_protection(struct iwl_mvm *mvm,
687                                      struct ieee80211_vif *vif)
688 {
689         struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
690         struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
691
692         lockdep_assert_held(&mvm->mutex);
693         iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
694 }
695
696 int iwl_mvm_start_p2p_roc(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
697                           int duration, enum ieee80211_roc_type type)
698 {
699         struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
700         struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
701         struct iwl_time_event_cmd time_cmd = {};
702
703         lockdep_assert_held(&mvm->mutex);
704         if (te_data->running) {
705                 IWL_WARN(mvm, "P2P_DEVICE remain on channel already running\n");
706                 return -EBUSY;
707         }
708
709         /*
710          * Flush the done work, just in case it's still pending, so that
711          * the work it does can complete and we can accept new frames.
712          */
713         flush_work(&mvm->roc_done_wk);
714
715         time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
716         time_cmd.id_and_color =
717                 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
718
719         switch (type) {
720         case IEEE80211_ROC_TYPE_NORMAL:
721                 time_cmd.id = cpu_to_le32(IWL_MVM_ROC_TE_TYPE_NORMAL);
722                 break;
723         case IEEE80211_ROC_TYPE_MGMT_TX:
724                 time_cmd.id = cpu_to_le32(IWL_MVM_ROC_TE_TYPE_MGMT_TX);
725                 break;
726         default:
727                 WARN_ONCE(1, "Got an invalid ROC type\n");
728                 return -EINVAL;
729         }
730
731         time_cmd.apply_time = cpu_to_le32(0);
732         time_cmd.interval = cpu_to_le32(1);
733
734         /*
735          * The P2P Device TEs can have lower priority than other events
736          * that are being scheduled by the driver/fw, and thus it might not be
737          * scheduled. To improve the chances of it being scheduled, allow them
738          * to be fragmented, and in addition allow them to be delayed.
739          */
740         time_cmd.max_frags = min(MSEC_TO_TU(duration)/50, TE_V2_FRAG_ENDLESS);
741         time_cmd.max_delay = cpu_to_le32(MSEC_TO_TU(duration/2));
742         time_cmd.duration = cpu_to_le32(MSEC_TO_TU(duration));
743         time_cmd.repeat = 1;
744         time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
745                                       TE_V2_NOTIF_HOST_EVENT_END |
746                                       T2_V2_START_IMMEDIATELY);
747
748         return iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
749 }
750
751 void iwl_mvm_stop_roc(struct iwl_mvm *mvm)
752 {
753         struct iwl_mvm_vif *mvmvif;
754         struct iwl_mvm_time_event_data *te_data;
755         bool is_p2p = false;
756
757         lockdep_assert_held(&mvm->mutex);
758
759         mvmvif = NULL;
760         spin_lock_bh(&mvm->time_event_lock);
761
762         /*
763          * Iterate over the list of time events and find the time event that is
764          * associated with a P2P_DEVICE interface.
765          * This assumes that a P2P_DEVICE interface can have only a single time
766          * event at any given time and this time event coresponds to a ROC
767          * request
768          */
769         list_for_each_entry(te_data, &mvm->time_event_list, list) {
770                 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE) {
771                         mvmvif = iwl_mvm_vif_from_mac80211(te_data->vif);
772                         is_p2p = true;
773                         goto remove_te;
774                 }
775         }
776
777         /*
778          * Iterate over the list of aux roc time events and find the time
779          * event that is associated with a BSS interface.
780          * This assumes that a BSS interface can have only a single time
781          * event at any given time and this time event coresponds to a ROC
782          * request
783          */
784         list_for_each_entry(te_data, &mvm->aux_roc_te_list, list) {
785                 mvmvif = iwl_mvm_vif_from_mac80211(te_data->vif);
786                 goto remove_te;
787         }
788
789 remove_te:
790         spin_unlock_bh(&mvm->time_event_lock);
791
792         if (!mvmvif) {
793                 IWL_WARN(mvm, "No remain on channel event\n");
794                 return;
795         }
796
797         if (is_p2p)
798                 iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
799         else
800                 iwl_mvm_remove_aux_roc_te(mvm, mvmvif, te_data);
801
802         iwl_mvm_roc_finished(mvm);
803 }
804
805 int iwl_mvm_schedule_csa_period(struct iwl_mvm *mvm,
806                                 struct ieee80211_vif *vif,
807                                 u32 duration, u32 apply_time)
808 {
809         struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
810         struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
811         struct iwl_time_event_cmd time_cmd = {};
812
813         lockdep_assert_held(&mvm->mutex);
814
815         if (te_data->running) {
816                 IWL_DEBUG_TE(mvm, "CS period is already scheduled\n");
817                 return -EBUSY;
818         }
819
820         time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
821         time_cmd.id_and_color =
822                 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
823         time_cmd.id = cpu_to_le32(TE_CHANNEL_SWITCH_PERIOD);
824         time_cmd.apply_time = cpu_to_le32(apply_time);
825         time_cmd.max_frags = TE_V2_FRAG_NONE;
826         time_cmd.duration = cpu_to_le32(duration);
827         time_cmd.repeat = 1;
828         time_cmd.interval = cpu_to_le32(1);
829         time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
830                                       TE_V2_ABSENCE);
831
832         return iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
833 }