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