blob: fcf2d1e4ff4e745ed80cbf7368c02ff4fb766482 [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
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:
Emmanuel Grumbachd01c5362015-11-17 15:39:56 +020029 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010030 * 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.
Eliad Pellerc7792732015-04-19 11:41:04 +030035 * Copyright(c) 2013 - 2015 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
Johannes Berg9fca9d52017-06-01 10:32:17 +020069#include "fw/notif-wait.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010070#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
Johannes Berg00fd2332015-06-26 16:04:01 +020089 if (!te_data->vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +010090 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 */
Eliad Pellerc7792732015-04-19 11:41:04 +0300111 if (test_and_clear_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status)) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300112 queues |= BIT(IWL_MVM_OFFCHANNEL_QUEUE);
Eliad Pellerc7792732015-04-19 11:41:04 +0300113 iwl_mvm_unref(mvm, IWL_MVM_REF_ROC);
114 }
115 if (test_and_clear_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status)) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300116 queues |= BIT(mvm->aux_queue);
Eliad Pellerc7792732015-04-19 11:41:04 +0300117 iwl_mvm_unref(mvm, IWL_MVM_REF_ROC_AUX);
118 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100119
120 synchronize_net();
121
122 /*
123 * Flush the offchannel queue -- this is called when the time
Sara Sharon0d365ae2015-03-31 12:24:05 +0300124 * event finishes or is canceled, so that frames queued for it
Johannes Berg8ca151b2013-01-24 14:25:36 +0100125 * won't get stuck on the queue and be transmitted in the next
126 * time event.
127 * We have to send the command asynchronously since this cannot
128 * be under the mutex for locking reasons, but that's not an
129 * issue as it will have to complete before the next command is
130 * executed, and a new time event means a new command.
131 */
Sara Sharond49394a2017-03-05 13:01:08 +0200132 if (iwl_mvm_is_dqa_supported(mvm))
133 iwl_mvm_flush_sta(mvm, &mvm->aux_sta, true, CMD_ASYNC);
134 else
135 iwl_mvm_flush_tx_path(mvm, queues, CMD_ASYNC);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100136}
137
138static void iwl_mvm_roc_finished(struct iwl_mvm *mvm)
139{
140 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100141 * Of course, our status bit is just as racy as mac80211, so in
142 * addition, fire off the work struct which will drop all frames
143 * from the hardware queues that made it through the race. First
144 * it will of course synchronize the TX path to make sure that
145 * any *new* TX will be rejected.
146 */
147 schedule_work(&mvm->roc_done_wk);
148}
149
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300150static void iwl_mvm_csa_noa_start(struct iwl_mvm *mvm)
151{
152 struct ieee80211_vif *csa_vif;
153
154 rcu_read_lock();
155
156 csa_vif = rcu_dereference(mvm->csa_vif);
157 if (!csa_vif || !csa_vif->csa_active)
158 goto out_unlock;
159
160 IWL_DEBUG_TE(mvm, "CSA NOA started\n");
161
162 /*
163 * CSA NoA is started but we still have beacons to
164 * transmit on the current channel.
165 * So we just do nothing here and the switch
166 * will be performed on the last TBTT.
167 */
168 if (!ieee80211_csa_is_complete(csa_vif)) {
169 IWL_WARN(mvm, "CSA NOA started too early\n");
170 goto out_unlock;
171 }
172
173 ieee80211_csa_finish(csa_vif);
174
175 rcu_read_unlock();
176
177 RCU_INIT_POINTER(mvm->csa_vif, NULL);
178
179 return;
180
181out_unlock:
182 rcu_read_unlock();
183}
184
Johannes Berg05739792013-07-25 18:39:30 +0200185static bool iwl_mvm_te_check_disconnect(struct iwl_mvm *mvm,
186 struct ieee80211_vif *vif,
187 const char *errmsg)
188{
189 if (vif->type != NL80211_IFTYPE_STATION)
190 return false;
191 if (vif->bss_conf.assoc && vif->bss_conf.dtim_period)
192 return false;
193 if (errmsg)
194 IWL_ERR(mvm, "%s\n", errmsg);
Emmanuel Grumbach31755202015-03-30 10:55:57 +0300195
196 iwl_mvm_connection_loss(mvm, vif, errmsg);
Johannes Berg05739792013-07-25 18:39:30 +0200197 return true;
198}
199
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200200static void
201iwl_mvm_te_handle_notify_csa(struct iwl_mvm *mvm,
202 struct iwl_mvm_time_event_data *te_data,
203 struct iwl_time_event_notif *notif)
204{
Johannes Berg81d62d52015-03-10 14:44:00 +0100205 struct ieee80211_vif *vif = te_data->vif;
206 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
207
208 if (!notif->status)
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200209 IWL_DEBUG_TE(mvm, "CSA time event failed to start\n");
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200210
211 switch (te_data->vif->type) {
212 case NL80211_IFTYPE_AP:
Johannes Berg81d62d52015-03-10 14:44:00 +0100213 if (!notif->status)
214 mvmvif->csa_failed = true;
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200215 iwl_mvm_csa_noa_start(mvm);
216 break;
217 case NL80211_IFTYPE_STATION:
Johannes Berg81d62d52015-03-10 14:44:00 +0100218 if (!notif->status) {
Emmanuel Grumbach31755202015-03-30 10:55:57 +0300219 iwl_mvm_connection_loss(mvm, vif,
220 "CSA TE failed to start");
Johannes Berg81d62d52015-03-10 14:44:00 +0100221 break;
222 }
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200223 iwl_mvm_csa_client_absent(mvm, te_data->vif);
Luciano Coelho622e3f92014-11-10 11:10:17 +0200224 ieee80211_chswitch_done(te_data->vif, true);
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200225 break;
226 default:
227 /* should never happen */
228 WARN_ON_ONCE(1);
229 break;
230 }
231
232 /* we don't need it anymore */
233 iwl_mvm_te_clear_data(mvm, te_data);
234}
235
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200236static void iwl_mvm_te_check_trigger(struct iwl_mvm *mvm,
237 struct iwl_time_event_notif *notif,
238 struct iwl_mvm_time_event_data *te_data)
239{
240 struct iwl_fw_dbg_trigger_tlv *trig;
241 struct iwl_fw_dbg_trigger_time_event *te_trig;
242 int i;
243
244 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TIME_EVENT))
245 return;
246
247 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TIME_EVENT);
248 te_trig = (void *)trig->data;
249
Johannes Berg7174beb2017-06-01 16:03:19 +0200250 if (!iwl_fw_dbg_trigger_check_stop(&mvm->fwrt,
251 ieee80211_vif_to_wdev(te_data->vif),
252 trig))
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200253 return;
254
255 for (i = 0; i < ARRAY_SIZE(te_trig->time_events); i++) {
256 u32 trig_te_id = le32_to_cpu(te_trig->time_events[i].id);
257 u32 trig_action_bitmap =
258 le32_to_cpu(te_trig->time_events[i].action_bitmap);
259 u32 trig_status_bitmap =
260 le32_to_cpu(te_trig->time_events[i].status_bitmap);
261
262 if (trig_te_id != te_data->id ||
263 !(trig_action_bitmap & le32_to_cpu(notif->action)) ||
264 !(trig_status_bitmap & BIT(le32_to_cpu(notif->status))))
265 continue;
266
Johannes Berg7174beb2017-06-01 16:03:19 +0200267 iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
268 "Time event %d Action 0x%x received status: %d",
269 te_data->id,
270 le32_to_cpu(notif->action),
271 le32_to_cpu(notif->status));
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200272 break;
273 }
274}
275
Johannes Berg8ca151b2013-01-24 14:25:36 +0100276/*
277 * Handles a FW notification for an event that is known to the driver.
278 *
279 * @mvm: the mvm component
280 * @te_data: the time event data
281 * @notif: the notification data corresponding the time event data.
282 */
283static void iwl_mvm_te_handle_notif(struct iwl_mvm *mvm,
284 struct iwl_mvm_time_event_data *te_data,
285 struct iwl_time_event_notif *notif)
286{
287 lockdep_assert_held(&mvm->time_event_lock);
288
289 IWL_DEBUG_TE(mvm, "Handle time event notif - UID = 0x%x action %d\n",
290 le32_to_cpu(notif->unique_id),
291 le32_to_cpu(notif->action));
292
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200293 iwl_mvm_te_check_trigger(mvm, notif, te_data);
294
Johannes Berg8ca151b2013-01-24 14:25:36 +0100295 /*
296 * The FW sends the start/end time event notifications even for events
297 * that it fails to schedule. This is indicated in the status field of
298 * the notification. This happens in cases that the scheduler cannot
299 * find a schedule that can handle the event (for example requesting a
300 * P2P Device discoveribility, while there are other higher priority
301 * events in the system).
302 */
Emmanuel Grumbach9fc3fe92013-11-05 16:27:59 +0200303 if (!le32_to_cpu(notif->status)) {
Johannes Bergbcd535e2015-03-12 09:10:13 +0100304 const char *msg;
305
306 if (notif->action & cpu_to_le32(TE_V2_NOTIF_HOST_EVENT_START))
307 msg = "Time Event start notification failure";
308 else
309 msg = "Time Event end notification failure";
310
311 IWL_DEBUG_TE(mvm, "%s\n", msg);
312
313 if (iwl_mvm_te_check_disconnect(mvm, te_data->vif, msg)) {
Johannes Berg05739792013-07-25 18:39:30 +0200314 iwl_mvm_te_clear_data(mvm, te_data);
315 return;
316 }
317 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100318
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300319 if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_END) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100320 IWL_DEBUG_TE(mvm,
321 "TE ended - current time %lu, estimated end %lu\n",
322 jiffies, te_data->end_jiffies);
323
Johannes Bergbca13902015-03-11 20:27:06 +0100324 switch (te_data->vif->type) {
325 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg8ca151b2013-01-24 14:25:36 +0100326 ieee80211_remain_on_channel_expired(mvm->hw);
327 iwl_mvm_roc_finished(mvm);
Johannes Bergbca13902015-03-11 20:27:06 +0100328 break;
329 case NL80211_IFTYPE_STATION:
330 /*
331 * By now, we should have finished association
332 * and know the dtim period.
333 */
334 iwl_mvm_te_check_disconnect(mvm, te_data->vif,
335 "No association and the time event is over already...");
336 break;
337 default:
338 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100339 }
340
Johannes Berg8ca151b2013-01-24 14:25:36 +0100341 iwl_mvm_te_clear_data(mvm, te_data);
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300342 } else if (le32_to_cpu(notif->action) & TE_V2_NOTIF_HOST_EVENT_START) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100343 te_data->running = true;
Johannes Berge7f19352013-07-25 21:45:17 +0200344 te_data->end_jiffies = TU_TO_EXP_TIME(te_data->duration);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100345
346 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE) {
347 set_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status);
Eliad Peller9f45c362013-10-28 13:13:56 +0200348 iwl_mvm_ref(mvm, IWL_MVM_REF_ROC);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100349 ieee80211_ready_on_channel(mvm->hw);
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200350 } else if (te_data->id == TE_CHANNEL_SWITCH_PERIOD) {
351 iwl_mvm_te_handle_notify_csa(mvm, te_data, notif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100352 }
353 } else {
354 IWL_WARN(mvm, "Got TE with unknown action\n");
355 }
356}
357
358/*
Ariej Marjiehb1128892014-07-16 21:11:12 +0300359 * Handle A Aux ROC time event
360 */
361static int iwl_mvm_aux_roc_te_handle_notif(struct iwl_mvm *mvm,
362 struct iwl_time_event_notif *notif)
363{
364 struct iwl_mvm_time_event_data *te_data, *tmp;
365 bool aux_roc_te = false;
366
367 list_for_each_entry_safe(te_data, tmp, &mvm->aux_roc_te_list, list) {
368 if (le32_to_cpu(notif->unique_id) == te_data->uid) {
369 aux_roc_te = true;
370 break;
371 }
372 }
373 if (!aux_roc_te) /* Not a Aux ROC time event */
374 return -EINVAL;
375
Emmanuel Grumbach874c1742015-03-25 22:40:47 +0200376 iwl_mvm_te_check_trigger(mvm, notif, te_data);
377
Ariej Marjiehb1128892014-07-16 21:11:12 +0300378 IWL_DEBUG_TE(mvm,
Matti Gottlieb5151ad92016-03-09 14:46:28 +0200379 "Aux ROC time event notification - UID = 0x%x action %d (error = %d)\n",
Ariej Marjiehb1128892014-07-16 21:11:12 +0300380 le32_to_cpu(notif->unique_id),
Matti Gottlieb5151ad92016-03-09 14:46:28 +0200381 le32_to_cpu(notif->action), le32_to_cpu(notif->status));
Ariej Marjiehb1128892014-07-16 21:11:12 +0300382
Matti Gottlieb5151ad92016-03-09 14:46:28 +0200383 if (!le32_to_cpu(notif->status) ||
384 le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_END) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300385 /* End TE, notify mac80211 */
386 ieee80211_remain_on_channel_expired(mvm->hw);
387 iwl_mvm_roc_finished(mvm); /* flush aux queue */
388 list_del(&te_data->list); /* remove from list */
389 te_data->running = false;
390 te_data->vif = NULL;
391 te_data->uid = 0;
Matti Gottlieba6cc5162014-09-29 11:46:04 +0300392 te_data->id = TE_MAX;
Ariej Marjiehb1128892014-07-16 21:11:12 +0300393 } else if (le32_to_cpu(notif->action) == TE_V2_NOTIF_HOST_EVENT_START) {
Ariej Marjiehb1128892014-07-16 21:11:12 +0300394 set_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status);
395 te_data->running = true;
Eliad Pellerc7792732015-04-19 11:41:04 +0300396 iwl_mvm_ref(mvm, IWL_MVM_REF_ROC_AUX);
Ariej Marjiehb1128892014-07-16 21:11:12 +0300397 ieee80211_ready_on_channel(mvm->hw); /* Start TE */
398 } else {
399 IWL_DEBUG_TE(mvm,
400 "ERROR: Unknown Aux ROC Time Event (action = %d)\n",
401 le32_to_cpu(notif->action));
402 return -EINVAL;
403 }
404
405 return 0;
406}
407
408/*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100409 * The Rx handler for time event notifications
410 */
Johannes Berg04168412015-06-23 21:22:09 +0200411void iwl_mvm_rx_time_event_notif(struct iwl_mvm *mvm,
412 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100413{
414 struct iwl_rx_packet *pkt = rxb_addr(rxb);
415 struct iwl_time_event_notif *notif = (void *)pkt->data;
416 struct iwl_mvm_time_event_data *te_data, *tmp;
417
418 IWL_DEBUG_TE(mvm, "Time event notification - UID = 0x%x action %d\n",
419 le32_to_cpu(notif->unique_id),
420 le32_to_cpu(notif->action));
421
422 spin_lock_bh(&mvm->time_event_lock);
Ariej Marjiehb1128892014-07-16 21:11:12 +0300423 /* This time event is triggered for Aux ROC request */
424 if (!iwl_mvm_aux_roc_te_handle_notif(mvm, notif))
425 goto unlock;
426
Johannes Berg8ca151b2013-01-24 14:25:36 +0100427 list_for_each_entry_safe(te_data, tmp, &mvm->time_event_list, list) {
428 if (le32_to_cpu(notif->unique_id) == te_data->uid)
429 iwl_mvm_te_handle_notif(mvm, te_data, notif);
430 }
Ariej Marjiehb1128892014-07-16 21:11:12 +0300431unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +0100432 spin_unlock_bh(&mvm->time_event_lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100433}
434
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300435static bool iwl_mvm_te_notif(struct iwl_notif_wait_data *notif_wait,
436 struct iwl_rx_packet *pkt, void *data)
437{
438 struct iwl_mvm *mvm =
439 container_of(notif_wait, struct iwl_mvm, notif_wait);
440 struct iwl_mvm_time_event_data *te_data = data;
441 struct iwl_time_event_notif *resp;
442 int resp_len = iwl_rx_packet_payload_len(pkt);
443
444 if (WARN_ON(pkt->hdr.cmd != TIME_EVENT_NOTIFICATION))
445 return true;
446
447 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
448 IWL_ERR(mvm, "Invalid TIME_EVENT_NOTIFICATION response\n");
449 return true;
450 }
451
452 resp = (void *)pkt->data;
453
454 /* te_data->uid is already set in the TIME_EVENT_CMD response */
455 if (le32_to_cpu(resp->unique_id) != te_data->uid)
456 return false;
457
458 IWL_DEBUG_TE(mvm, "TIME_EVENT_NOTIFICATION response - UID = 0x%x\n",
459 te_data->uid);
460 if (!resp->status)
461 IWL_ERR(mvm,
462 "TIME_EVENT_NOTIFICATION received but not executed\n");
463
464 return true;
465}
466
Johannes Bergffdf9682013-01-29 15:28:17 +0100467static bool iwl_mvm_time_event_response(struct iwl_notif_wait_data *notif_wait,
468 struct iwl_rx_packet *pkt, void *data)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100469{
470 struct iwl_mvm *mvm =
471 container_of(notif_wait, struct iwl_mvm, notif_wait);
472 struct iwl_mvm_time_event_data *te_data = data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100473 struct iwl_time_event_resp *resp;
Johannes Berg65b30342014-01-08 13:16:33 +0100474 int resp_len = iwl_rx_packet_payload_len(pkt);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100475
Johannes Bergffdf9682013-01-29 15:28:17 +0100476 if (WARN_ON(pkt->hdr.cmd != TIME_EVENT_CMD))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100477 return true;
478
Johannes Berg65b30342014-01-08 13:16:33 +0100479 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
Johannes Bergffdf9682013-01-29 15:28:17 +0100480 IWL_ERR(mvm, "Invalid TIME_EVENT_CMD response\n");
481 return true;
482 }
483
484 resp = (void *)pkt->data;
Johannes Berge372282242013-02-16 00:11:34 +0100485
486 /* we should never get a response to another TIME_EVENT_CMD here */
487 if (WARN_ON_ONCE(le32_to_cpu(resp->id) != te_data->id))
488 return false;
489
Johannes Bergffdf9682013-01-29 15:28:17 +0100490 te_data->uid = le32_to_cpu(resp->unique_id);
491 IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
492 te_data->uid);
493 return true;
494}
495
496static int iwl_mvm_time_event_send_add(struct iwl_mvm *mvm,
497 struct ieee80211_vif *vif,
498 struct iwl_mvm_time_event_data *te_data,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300499 struct iwl_time_event_cmd *te_cmd)
Johannes Bergffdf9682013-01-29 15:28:17 +0100500{
Sara Sharon6eb031d2015-07-13 14:50:47 +0300501 static const u16 time_event_response[] = { TIME_EVENT_CMD };
Johannes Bergffdf9682013-01-29 15:28:17 +0100502 struct iwl_notification_wait wait_time_event;
503 int ret;
504
505 lockdep_assert_held(&mvm->mutex);
506
Johannes Berg93630dc2013-02-15 23:54:10 +0100507 IWL_DEBUG_TE(mvm, "Add new TE, duration %d TU\n",
508 le32_to_cpu(te_cmd->duration));
509
Johannes Bergffdf9682013-01-29 15:28:17 +0100510 spin_lock_bh(&mvm->time_event_lock);
511 if (WARN_ON(te_data->id != TE_MAX)) {
512 spin_unlock_bh(&mvm->time_event_lock);
513 return -EIO;
514 }
515 te_data->vif = vif;
516 te_data->duration = le32_to_cpu(te_cmd->duration);
517 te_data->id = le32_to_cpu(te_cmd->id);
518 list_add_tail(&te_data->list, &mvm->time_event_list);
519 spin_unlock_bh(&mvm->time_event_lock);
520
521 /*
522 * Use a notification wait, which really just processes the
523 * command response and doesn't wait for anything, in order
524 * to be able to process the response and get the UID inside
525 * the RX path. Using CMD_WANT_SKB doesn't work because it
526 * stores the buffer and then wakes up this thread, by which
527 * time another notification (that the time event started)
528 * might already be processed unsuccessfully.
529 */
530 iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
531 time_event_response,
532 ARRAY_SIZE(time_event_response),
533 iwl_mvm_time_event_response, te_data);
534
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300535 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_EVENT_CMD, 0,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300536 sizeof(*te_cmd), te_cmd);
Johannes Bergffdf9682013-01-29 15:28:17 +0100537 if (ret) {
538 IWL_ERR(mvm, "Couldn't send TIME_EVENT_CMD: %d\n", ret);
539 iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
540 goto out_clear_te;
541 }
542
543 /* No need to wait for anything, so just pass 1 (0 isn't valid) */
544 ret = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
545 /* should never fail */
546 WARN_ON_ONCE(ret);
547
548 if (ret) {
549 out_clear_te:
550 spin_lock_bh(&mvm->time_event_lock);
551 iwl_mvm_te_clear_data(mvm, te_data);
552 spin_unlock_bh(&mvm->time_event_lock);
553 }
554 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100555}
556
557void iwl_mvm_protect_session(struct iwl_mvm *mvm,
558 struct ieee80211_vif *vif,
Johannes Berg016d27e2013-05-03 11:16:15 +0200559 u32 duration, u32 min_duration,
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300560 u32 max_delay, bool wait_for_notif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100561{
562 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
563 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
Sara Sharon6eb031d2015-07-13 14:50:47 +0300564 const u16 te_notif_response[] = { TIME_EVENT_NOTIFICATION };
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300565 struct iwl_notification_wait wait_te_notif;
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300566 struct iwl_time_event_cmd time_cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100567
568 lockdep_assert_held(&mvm->mutex);
569
570 if (te_data->running &&
Johannes Berge7f19352013-07-25 21:45:17 +0200571 time_after(te_data->end_jiffies, TU_TO_EXP_TIME(min_duration))) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100572 IWL_DEBUG_TE(mvm, "We have enough time in the current TE: %u\n",
573 jiffies_to_msecs(te_data->end_jiffies - jiffies));
574 return;
575 }
576
577 if (te_data->running) {
578 IWL_DEBUG_TE(mvm, "extend 0x%x: only %u ms left\n",
579 te_data->uid,
580 jiffies_to_msecs(te_data->end_jiffies - jiffies));
581 /*
582 * we don't have enough time
583 * cancel the current TE and issue a new one
584 * Of course it would be better to remove the old one only
585 * when the new one is added, but we don't care if we are off
586 * channel for a bit. All we need to do, is not to return
587 * before we actually begin to be on the channel.
588 */
589 iwl_mvm_stop_session_protection(mvm, vif);
590 }
591
Johannes Berg8ca151b2013-01-24 14:25:36 +0100592 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
593 time_cmd.id_and_color =
594 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
595 time_cmd.id = cpu_to_le32(TE_BSS_STA_AGGRESSIVE_ASSOC);
596
Ilan Peer5bf12f62015-06-24 10:25:26 +0300597 time_cmd.apply_time = cpu_to_le32(0);
Johannes Bergffdf9682013-01-29 15:28:17 +0100598
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300599 time_cmd.max_frags = TE_V2_FRAG_NONE;
Johannes Berg016d27e2013-05-03 11:16:15 +0200600 time_cmd.max_delay = cpu_to_le32(max_delay);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100601 /* TODO: why do we need to interval = bi if it is not periodic? */
602 time_cmd.interval = cpu_to_le32(1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100603 time_cmd.duration = cpu_to_le32(duration);
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300604 time_cmd.repeat = 1;
605 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
Emmanuel Grumbach1f6bf072014-02-16 15:36:00 +0200606 TE_V2_NOTIF_HOST_EVENT_END |
607 T2_V2_START_IMMEDIATELY);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100608
Liad Kaufmand20d37b2014-07-06 17:14:39 +0300609 if (!wait_for_notif) {
610 iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
611 return;
612 }
613
614 /*
615 * Create notification_wait for the TIME_EVENT_NOTIFICATION to use
616 * right after we send the time event
617 */
618 iwl_init_notification_wait(&mvm->notif_wait, &wait_te_notif,
619 te_notif_response,
620 ARRAY_SIZE(te_notif_response),
621 iwl_mvm_te_notif, te_data);
622
623 /* If TE was sent OK - wait for the notification that started */
624 if (iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd)) {
625 IWL_ERR(mvm, "Failed to add TE to protect session\n");
626 iwl_remove_notification(&mvm->notif_wait, &wait_te_notif);
627 } else if (iwl_wait_notification(&mvm->notif_wait, &wait_te_notif,
628 TU_TO_JIFFIES(max_delay))) {
629 IWL_ERR(mvm, "Failed to protect session until TE\n");
630 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100631}
632
Matti Gottliebbf5da872014-11-16 10:25:12 +0200633static bool __iwl_mvm_remove_time_event(struct iwl_mvm *mvm,
634 struct iwl_mvm_time_event_data *te_data,
635 u32 *uid)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100636{
Matti Gottliebbf5da872014-11-16 10:25:12 +0200637 u32 id;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100638
639 /*
640 * It is possible that by the time we got to this point the time
641 * event was already removed.
642 */
643 spin_lock_bh(&mvm->time_event_lock);
644
645 /* Save time event uid before clearing its data */
Matti Gottliebbf5da872014-11-16 10:25:12 +0200646 *uid = te_data->uid;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100647 id = te_data->id;
648
649 /*
650 * The clear_data function handles time events that were already removed
651 */
652 iwl_mvm_te_clear_data(mvm, te_data);
653 spin_unlock_bh(&mvm->time_event_lock);
654
655 /*
656 * It is possible that by the time we try to remove it, the time event
657 * has already ended and removed. In such a case there is no need to
658 * send a removal command.
659 */
660 if (id == TE_MAX) {
Matti Gottliebbf5da872014-11-16 10:25:12 +0200661 IWL_DEBUG_TE(mvm, "TE 0x%x has already ended\n", *uid);
662 return false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100663 }
664
Matti Gottliebbf5da872014-11-16 10:25:12 +0200665 return true;
666}
667
668/*
669 * Explicit request to remove a aux roc time event. The removal of a time
670 * event needs to be synchronized with the flow of a time event's end
671 * notification, which also removes the time event from the op mode
672 * data structures.
673 */
674static void iwl_mvm_remove_aux_roc_te(struct iwl_mvm *mvm,
675 struct iwl_mvm_vif *mvmvif,
676 struct iwl_mvm_time_event_data *te_data)
677{
678 struct iwl_hs20_roc_req aux_cmd = {};
679 u32 uid;
680 int ret;
681
682 if (!__iwl_mvm_remove_time_event(mvm, te_data, &uid))
683 return;
684
685 aux_cmd.event_unique_id = cpu_to_le32(uid);
686 aux_cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
687 aux_cmd.id_and_color =
688 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
689 IWL_DEBUG_TE(mvm, "Removing BSS AUX ROC TE 0x%x\n",
690 le32_to_cpu(aux_cmd.event_unique_id));
691 ret = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0,
692 sizeof(aux_cmd), &aux_cmd);
693
694 if (WARN_ON(ret))
695 return;
696}
697
698/*
699 * Explicit request to remove a time event. The removal of a time event needs to
700 * be synchronized with the flow of a time event's end notification, which also
701 * removes the time event from the op mode data structures.
702 */
703void iwl_mvm_remove_time_event(struct iwl_mvm *mvm,
704 struct iwl_mvm_vif *mvmvif,
705 struct iwl_mvm_time_event_data *te_data)
706{
707 struct iwl_time_event_cmd time_cmd = {};
708 u32 uid;
709 int ret;
710
711 if (!__iwl_mvm_remove_time_event(mvm, te_data, &uid))
712 return;
713
Johannes Berg8ca151b2013-01-24 14:25:36 +0100714 /* When we remove a TE, the UID is to be set in the id field */
715 time_cmd.id = cpu_to_le32(uid);
716 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_REMOVE);
717 time_cmd.id_and_color =
718 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
719
720 IWL_DEBUG_TE(mvm, "Removing TE 0x%x\n", le32_to_cpu(time_cmd.id));
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300721 ret = iwl_mvm_send_cmd_pdu(mvm, TIME_EVENT_CMD, 0,
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300722 sizeof(time_cmd), &time_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100723 if (WARN_ON(ret))
724 return;
725}
726
727void iwl_mvm_stop_session_protection(struct iwl_mvm *mvm,
728 struct ieee80211_vif *vif)
729{
730 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
731 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
732
733 lockdep_assert_held(&mvm->mutex);
734 iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
735}
736
Johannes Berg8ca151b2013-01-24 14:25:36 +0100737int iwl_mvm_start_p2p_roc(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Ilan Peere635c792013-02-13 11:05:18 +0200738 int duration, enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100739{
740 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
741 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
Emmanuel Grumbacha373f672014-03-30 08:40:46 +0300742 struct iwl_time_event_cmd time_cmd = {};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100743
744 lockdep_assert_held(&mvm->mutex);
745 if (te_data->running) {
746 IWL_WARN(mvm, "P2P_DEVICE remain on channel already running\n");
747 return -EBUSY;
748 }
749
750 /*
751 * Flush the done work, just in case it's still pending, so that
752 * the work it does can complete and we can accept new frames.
753 */
754 flush_work(&mvm->roc_done_wk);
755
Johannes Berg8ca151b2013-01-24 14:25:36 +0100756 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
757 time_cmd.id_and_color =
758 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
Ilan Peere635c792013-02-13 11:05:18 +0200759
760 switch (type) {
761 case IEEE80211_ROC_TYPE_NORMAL:
762 time_cmd.id = cpu_to_le32(IWL_MVM_ROC_TE_TYPE_NORMAL);
763 break;
764 case IEEE80211_ROC_TYPE_MGMT_TX:
765 time_cmd.id = cpu_to_le32(IWL_MVM_ROC_TE_TYPE_MGMT_TX);
766 break;
767 default:
768 WARN_ONCE(1, "Got an invalid ROC type\n");
769 return -EINVAL;
770 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100771
772 time_cmd.apply_time = cpu_to_le32(0);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100773 time_cmd.interval = cpu_to_le32(1);
774
775 /*
Ilan Peere635c792013-02-13 11:05:18 +0200776 * The P2P Device TEs can have lower priority than other events
Johannes Berg8ca151b2013-01-24 14:25:36 +0100777 * that are being scheduled by the driver/fw, and thus it might not be
Ilan Peere635c792013-02-13 11:05:18 +0200778 * scheduled. To improve the chances of it being scheduled, allow them
779 * to be fragmented, and in addition allow them to be delayed.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100780 */
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300781 time_cmd.max_frags = min(MSEC_TO_TU(duration)/50, TE_V2_FRAG_ENDLESS);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100782 time_cmd.max_delay = cpu_to_le32(MSEC_TO_TU(duration/2));
783 time_cmd.duration = cpu_to_le32(MSEC_TO_TU(duration));
Eytan Lifshitzf8f03c32013-08-07 19:36:42 +0300784 time_cmd.repeat = 1;
785 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
Emmanuel Grumbach1f6bf072014-02-16 15:36:00 +0200786 TE_V2_NOTIF_HOST_EVENT_END |
787 T2_V2_START_IMMEDIATELY);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100788
Johannes Bergffdf9682013-01-29 15:28:17 +0100789 return iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100790}
791
Eliad Peller305d2362015-12-09 16:33:20 +0200792static struct iwl_mvm_time_event_data *iwl_mvm_get_roc_te(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100793{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100794 struct iwl_mvm_time_event_data *te_data;
795
796 lockdep_assert_held(&mvm->mutex);
797
Matti Gottliebbf5da872014-11-16 10:25:12 +0200798 spin_lock_bh(&mvm->time_event_lock);
799
Johannes Berg8ca151b2013-01-24 14:25:36 +0100800 /*
801 * Iterate over the list of time events and find the time event that is
802 * associated with a P2P_DEVICE interface.
803 * This assumes that a P2P_DEVICE interface can have only a single time
804 * event at any given time and this time event coresponds to a ROC
805 * request
806 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100807 list_for_each_entry(te_data, &mvm->time_event_list, list) {
Eliad Peller305d2362015-12-09 16:33:20 +0200808 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE)
809 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100810 }
Matti Gottliebbf5da872014-11-16 10:25:12 +0200811
Johannes Bergebf17ff2015-06-01 23:38:23 +0200812 /* There can only be at most one AUX ROC time event, we just use the
813 * list to simplify/unify code. Remove it if it exists.
Matti Gottliebbf5da872014-11-16 10:25:12 +0200814 */
Johannes Bergebf17ff2015-06-01 23:38:23 +0200815 te_data = list_first_entry_or_null(&mvm->aux_roc_te_list,
816 struct iwl_mvm_time_event_data,
817 list);
Eliad Peller305d2362015-12-09 16:33:20 +0200818out:
Johannes Berg8ca151b2013-01-24 14:25:36 +0100819 spin_unlock_bh(&mvm->time_event_lock);
Eliad Peller305d2362015-12-09 16:33:20 +0200820 return te_data;
821}
Johannes Berg8ca151b2013-01-24 14:25:36 +0100822
Eliad Peller305d2362015-12-09 16:33:20 +0200823void iwl_mvm_cleanup_roc_te(struct iwl_mvm *mvm)
824{
825 struct iwl_mvm_time_event_data *te_data;
826 u32 uid;
827
828 te_data = iwl_mvm_get_roc_te(mvm);
829 if (te_data)
830 __iwl_mvm_remove_time_event(mvm, te_data, &uid);
831}
832
833void iwl_mvm_stop_roc(struct iwl_mvm *mvm)
834{
835 struct iwl_mvm_vif *mvmvif;
836 struct iwl_mvm_time_event_data *te_data;
837
838 te_data = iwl_mvm_get_roc_te(mvm);
839 if (!te_data) {
Matti Gottliebbf5da872014-11-16 10:25:12 +0200840 IWL_WARN(mvm, "No remain on channel event\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100841 return;
842 }
843
Eliad Peller305d2362015-12-09 16:33:20 +0200844 mvmvif = iwl_mvm_vif_from_mac80211(te_data->vif);
845
846 if (te_data->vif->type == NL80211_IFTYPE_P2P_DEVICE)
Matti Gottliebbf5da872014-11-16 10:25:12 +0200847 iwl_mvm_remove_time_event(mvm, mvmvif, te_data);
848 else
849 iwl_mvm_remove_aux_roc_te(mvm, mvmvif, te_data);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100850
851 iwl_mvm_roc_finished(mvm);
852}
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300853
Luciano Coelhof991e172014-08-26 16:14:10 +0300854int iwl_mvm_schedule_csa_period(struct iwl_mvm *mvm,
855 struct ieee80211_vif *vif,
856 u32 duration, u32 apply_time)
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300857{
858 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
859 struct iwl_mvm_time_event_data *te_data = &mvmvif->time_event_data;
860 struct iwl_time_event_cmd time_cmd = {};
861
862 lockdep_assert_held(&mvm->mutex);
863
864 if (te_data->running) {
Luciano Coelhof991e172014-08-26 16:14:10 +0300865 IWL_DEBUG_TE(mvm, "CS period is already scheduled\n");
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300866 return -EBUSY;
867 }
868
869 time_cmd.action = cpu_to_le32(FW_CTXT_ACTION_ADD);
870 time_cmd.id_and_color =
871 cpu_to_le32(FW_CMD_ID_AND_COLOR(mvmvif->id, mvmvif->color));
Luciano Coelhof991e172014-08-26 16:14:10 +0300872 time_cmd.id = cpu_to_le32(TE_CHANNEL_SWITCH_PERIOD);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +0300873 time_cmd.apply_time = cpu_to_le32(apply_time);
874 time_cmd.max_frags = TE_V2_FRAG_NONE;
875 time_cmd.duration = cpu_to_le32(duration);
876 time_cmd.repeat = 1;
877 time_cmd.interval = cpu_to_le32(1);
878 time_cmd.policy = cpu_to_le16(TE_V2_NOTIF_HOST_EVENT_START |
879 TE_V2_ABSENCE);
880
881 return iwl_mvm_time_event_send_add(mvm, vif, te_data, &time_cmd);
882}