blob: 8d8072886f375ca0c8d6eb04e6bb464142df36e5 [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 *
8 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020025 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010026 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
33 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
63#include <linux/kernel.h>
64#include <linux/slab.h>
65#include <linux/skbuff.h>
66#include <linux/netdevice.h>
67#include <linux/etherdevice.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010068#include <linux/ip.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010069#include <net/mac80211.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010070#include <net/tcp.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010071
72#include "iwl-op-mode.h"
73#include "iwl-io.h"
74#include "mvm.h"
75#include "sta.h"
76#include "time-event.h"
77#include "iwl-eeprom-parse.h"
78#include "fw-api-scan.h"
79#include "iwl-phy-db.h"
David Spinadel507cadf2013-07-31 18:07:21 +030080#include "testmode.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010081
82static const struct ieee80211_iface_limit iwl_mvm_limits[] = {
83 {
84 .max = 1,
Ilan Peer8eb38712013-06-01 20:17:18 +030085 .types = BIT(NL80211_IFTYPE_STATION),
Johannes Berg8ca151b2013-01-24 14:25:36 +010086 },
Johannes Berg3c15a0f2013-05-31 10:17:19 +020087 {
88 .max = 1,
Ilan Peer8eb38712013-06-01 20:17:18 +030089 .types = BIT(NL80211_IFTYPE_AP) |
90 BIT(NL80211_IFTYPE_P2P_CLIENT) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +020091 BIT(NL80211_IFTYPE_P2P_GO),
92 },
93 {
94 .max = 1,
95 .types = BIT(NL80211_IFTYPE_P2P_DEVICE),
96 },
Johannes Berg8ca151b2013-01-24 14:25:36 +010097};
98
99static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = {
100 {
101 .num_different_channels = 1,
102 .max_interfaces = 3,
103 .limits = iwl_mvm_limits,
104 .n_limits = ARRAY_SIZE(iwl_mvm_limits),
105 },
106};
107
Johannes Bergf0c26462013-01-22 20:41:58 +0100108#ifdef CONFIG_PM_SLEEP
109static const struct nl80211_wowlan_tcp_data_token_feature
110iwl_mvm_wowlan_tcp_token_feature = {
111 .min_len = 0,
112 .max_len = 255,
113 .bufsize = IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS,
114};
115
116static const struct wiphy_wowlan_tcp_support iwl_mvm_wowlan_tcp_support = {
117 .tok = &iwl_mvm_wowlan_tcp_token_feature,
118 .data_payload_max = IWL_WOWLAN_TCP_MAX_PACKET_LEN -
119 sizeof(struct ethhdr) -
120 sizeof(struct iphdr) -
121 sizeof(struct tcphdr),
122 .data_interval_max = 65535, /* __le16 in API */
123 .wake_payload_max = IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN -
124 sizeof(struct ethhdr) -
125 sizeof(struct iphdr) -
126 sizeof(struct tcphdr),
127 .seq = true,
128};
129#endif
130
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200131static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm)
132{
133 int i;
134
135 memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts));
136 for (i = 0; i < NUM_PHY_CTX; i++) {
137 mvm->phy_ctxts[i].id = i;
138 mvm->phy_ctxts[i].ref = 0;
139 }
140}
141
David Spinadel20f1a5d2013-08-21 09:14:27 +0300142static int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
143{
144 /* we create the 802.11 header and SSID element */
145 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID)
146 return mvm->fw->ucode_capa.max_probe_length - 24 - 2;
147 return mvm->fw->ucode_capa.max_probe_length - 24 - 34;
148}
149
Johannes Berg8ca151b2013-01-24 14:25:36 +0100150int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
151{
152 struct ieee80211_hw *hw = mvm->hw;
Ilan Peer831e85f2013-02-07 17:09:09 +0200153 int num_mac, ret, i;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100154
155 /* Tell mac80211 our characteristics */
156 hw->flags = IEEE80211_HW_SIGNAL_DBM |
157 IEEE80211_HW_SPECTRUM_MGMT |
158 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
159 IEEE80211_HW_QUEUE_CONTROL |
160 IEEE80211_HW_WANT_MONITOR_VIF |
Johannes Berg8ca151b2013-01-24 14:25:36 +0100161 IEEE80211_HW_SUPPORTS_PS |
162 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
Johannes Bergd2931bb2013-02-05 18:10:04 +0100163 IEEE80211_HW_AMPDU_AGGREGATION |
Hila Gonend64048e2013-03-13 18:00:03 +0200164 IEEE80211_HW_TIMING_BEACON_ONLY |
Emmanuel Grumbach147fc9b2013-07-28 11:00:52 +0300165 IEEE80211_HW_CONNECTION_MONITOR |
166 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
Alexander Bondare8e626a2013-10-16 00:21:34 +0200167 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100168
Eytan Lifshitz19e737c2013-09-09 13:30:15 +0200169 hw->queues = mvm->first_agg_queue;
Ilan Peer398e8c62013-03-13 15:20:35 +0200170 hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100171 hw->rate_control_algorithm = "iwl-mvm-rs";
172
173 /*
174 * Enable 11w if advertised by firmware and software crypto
175 * is not enabled (as the firmware will interpret some mgmt
176 * packets, so enabling it with software crypto isn't safe)
177 */
178 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP &&
179 !iwlwifi_mod_params.sw_crypto)
180 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
181
Alexander Bondare8e626a2013-10-16 00:21:34 +0200182 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT) {
183 hw->flags |= IEEE80211_HW_SUPPORTS_UAPSD;
184 hw->uapsd_queues = IWL_UAPSD_AC_INFO;
185 hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP;
186 }
187
Johannes Berg8ca151b2013-01-24 14:25:36 +0100188 hw->sta_data_size = sizeof(struct iwl_mvm_sta);
189 hw->vif_data_size = sizeof(struct iwl_mvm_vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200190 hw->chanctx_data_size = sizeof(u16);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100191
192 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +0200193 BIT(NL80211_IFTYPE_P2P_CLIENT) |
194 BIT(NL80211_IFTYPE_AP) |
195 BIT(NL80211_IFTYPE_P2P_GO) |
196 BIT(NL80211_IFTYPE_P2P_DEVICE);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100197
Johannes Berg5023d962013-07-31 14:07:43 +0200198 /* IBSS has bugs in older versions */
199 if (IWL_UCODE_API(mvm->fw->ucode_ver) >= 8)
200 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_ADHOC);
201
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +0100202 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
203 hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
204 REGULATORY_DISABLE_BEACON_HINTS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100205
206 hw->wiphy->iface_combinations = iwl_mvm_iface_combinations;
207 hw->wiphy->n_iface_combinations =
208 ARRAY_SIZE(iwl_mvm_iface_combinations);
209
Ilan Peerc451e6d2013-02-20 08:41:54 +0200210 hw->wiphy->max_remain_on_channel_duration = 10000;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100211 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
212
213 /* Extract MAC address */
214 memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN);
215 hw->wiphy->addresses = mvm->addresses;
216 hw->wiphy->n_addresses = 1;
Ilan Peer831e85f2013-02-07 17:09:09 +0200217
218 /* Extract additional MAC addresses if available */
219 num_mac = (mvm->nvm_data->n_hw_addrs > 1) ?
220 min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1;
221
222 for (i = 1; i < num_mac; i++) {
223 memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100224 ETH_ALEN);
Ilan Peer831e85f2013-02-07 17:09:09 +0200225 mvm->addresses[i].addr[5]++;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100226 hw->wiphy->n_addresses++;
227 }
228
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200229 iwl_mvm_reset_phy_ctxts(mvm);
230
David Spinadel20f1a5d2013-08-21 09:14:27 +0300231 hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm);
232
Johannes Berg8ca151b2013-01-24 14:25:36 +0100233 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
234
235 if (mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels)
236 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
237 &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
238 if (mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels)
239 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
240 &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
241
242 hw->wiphy->hw_version = mvm->trans->hw_id;
243
Alexander Bondarade50652013-04-03 16:28:47 +0300244 if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100245 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
246 else
247 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
248
David Spinadel35a000b2013-08-28 09:29:43 +0300249 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_SCHED_SCAN) {
250 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
251 hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX;
252 hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES;
253 /* we create the 802.11 header and zero length SSID IE. */
254 hw->wiphy->max_sched_scan_ie_len =
255 SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2;
256 }
257
Johannes Berg8ca151b2013-01-24 14:25:36 +0100258 hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN |
Haim Dreyfuss61f63252013-11-03 23:02:59 +0200259 NL80211_FEATURE_P2P_GO_OPPPS |
260 NL80211_FEATURE_LOW_PRIORITY_SCAN;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100261
262 mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
263
Max Stepanove36e5432013-08-27 19:56:13 +0300264 /* currently FW API supports only one optional cipher scheme */
265 if (mvm->fw->cs && mvm->fw->cs->cipher) {
266 mvm->hw->n_cipher_schemes = 1;
267 mvm->hw->cipher_schemes = mvm->fw->cs;
268 }
269
Johannes Berg8ca151b2013-01-24 14:25:36 +0100270#ifdef CONFIG_PM_SLEEP
271 if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
272 mvm->trans->ops->d3_suspend &&
273 mvm->trans->ops->d3_resume &&
274 device_can_wakeup(mvm->trans->dev)) {
Johannes Berg964dc9e2013-06-03 17:25:34 +0200275 mvm->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
276 WIPHY_WOWLAN_DISCONNECT |
277 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
278 WIPHY_WOWLAN_RFKILL_RELEASE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100279 if (!iwlwifi_mod_params.sw_crypto)
Johannes Berg964dc9e2013-06-03 17:25:34 +0200280 mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
281 WIPHY_WOWLAN_GTK_REKEY_FAILURE |
282 WIPHY_WOWLAN_4WAY_HANDSHAKE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100283
Johannes Berg964dc9e2013-06-03 17:25:34 +0200284 mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS;
285 mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN;
286 mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN;
287 mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support;
288 hw->wiphy->wowlan = &mvm->wowlan;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100289 }
290#endif
291
292 ret = iwl_mvm_leds_init(mvm);
293 if (ret)
294 return ret;
295
Emmanuel Grumbachb7327d82013-06-24 15:44:03 +0300296 ret = ieee80211_register_hw(mvm->hw);
297 if (ret)
298 iwl_mvm_leds_exit(mvm);
299
300 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100301}
302
303static void iwl_mvm_mac_tx(struct ieee80211_hw *hw,
304 struct ieee80211_tx_control *control,
305 struct sk_buff *skb)
306{
307 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
308
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300309 if (iwl_mvm_is_radio_killed(mvm)) {
310 IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100311 goto drop;
312 }
313
Ilan Peer398e8c62013-03-13 15:20:35 +0200314 if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100315 !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status))
316 goto drop;
317
318 if (control->sta) {
319 if (iwl_mvm_tx_skb(mvm, skb, control->sta))
320 goto drop;
321 return;
322 }
323
324 if (iwl_mvm_tx_skb_non_sta(mvm, skb))
325 goto drop;
326 return;
327 drop:
328 ieee80211_free_txskb(hw, skb);
329}
330
331static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw,
332 struct ieee80211_vif *vif,
333 enum ieee80211_ampdu_mlme_action action,
334 struct ieee80211_sta *sta, u16 tid,
335 u16 *ssn, u8 buf_size)
336{
337 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
338 int ret;
339
340 IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n",
341 sta->addr, tid, action);
342
343 if (!(mvm->nvm_data->sku_cap_11n_enable))
344 return -EACCES;
345
346 mutex_lock(&mvm->mutex);
347
348 switch (action) {
349 case IEEE80211_AMPDU_RX_START:
350 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG) {
351 ret = -EINVAL;
352 break;
353 }
354 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true);
355 break;
356 case IEEE80211_AMPDU_RX_STOP:
357 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false);
358 break;
359 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach5d158ef2013-02-19 14:39:58 +0200360 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG) {
361 ret = -EINVAL;
362 break;
363 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100364 ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn);
365 break;
366 case IEEE80211_AMPDU_TX_STOP_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200367 ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid);
368 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100369 case IEEE80211_AMPDU_TX_STOP_FLUSH:
370 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200371 ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100372 break;
373 case IEEE80211_AMPDU_TX_OPERATIONAL:
374 ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size);
375 break;
376 default:
377 WARN_ON_ONCE(1);
378 ret = -EINVAL;
379 break;
380 }
381 mutex_unlock(&mvm->mutex);
382
383 return ret;
384}
385
386static void iwl_mvm_cleanup_iterator(void *data, u8 *mac,
387 struct ieee80211_vif *vif)
388{
389 struct iwl_mvm *mvm = data;
390 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
391
392 mvmvif->uploaded = false;
393 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
394
395 /* does this make sense at all? */
396 mvmvif->color++;
397
398 spin_lock_bh(&mvm->time_event_lock);
399 iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data);
400 spin_unlock_bh(&mvm->time_event_lock);
401
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200402 mvmvif->phy_ctxt = NULL;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100403}
404
405static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm)
406{
407 iwl_trans_stop_device(mvm->trans);
408 iwl_trans_stop_hw(mvm->trans, false);
409
410 mvm->scan_status = IWL_MVM_SCAN_NONE;
411
412 /* just in case one was running */
413 ieee80211_remain_on_channel_expired(mvm->hw);
414
415 ieee80211_iterate_active_interfaces_atomic(
416 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
417 iwl_mvm_cleanup_iterator, mvm);
418
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200419 mvm->p2p_device_vif = NULL;
420
421 iwl_mvm_reset_phy_ctxts(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100422 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
423 memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained));
424
425 ieee80211_wake_queues(mvm->hw);
426
427 mvm->vif_count = 0;
Emmanuel Grumbach113a0442013-07-02 14:16:38 +0300428 mvm->rx_ba_sessions = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100429}
430
431static int iwl_mvm_mac_start(struct ieee80211_hw *hw)
432{
433 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
434 int ret;
435
436 mutex_lock(&mvm->mutex);
437
438 /* Clean up some internal and mac80211 state on restart */
439 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
440 iwl_mvm_restart_cleanup(mvm);
441
442 ret = iwl_mvm_up(mvm);
443 mutex_unlock(&mvm->mutex);
444
445 return ret;
446}
447
448static void iwl_mvm_mac_restart_complete(struct ieee80211_hw *hw)
449{
450 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
451 int ret;
452
453 mutex_lock(&mvm->mutex);
454
455 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
456 ret = iwl_mvm_update_quotas(mvm, NULL);
457 if (ret)
458 IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n",
459 ret);
460
461 mutex_unlock(&mvm->mutex);
462}
463
464static void iwl_mvm_mac_stop(struct ieee80211_hw *hw)
465{
466 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
467
468 flush_work(&mvm->async_handlers_wk);
469
470 mutex_lock(&mvm->mutex);
471 /* async_handlers_wk is now blocked */
472
473 /*
474 * The work item could be running or queued if the
475 * ROC time event stops just as we get here.
476 */
477 cancel_work_sync(&mvm->roc_done_wk);
478
479 iwl_trans_stop_device(mvm->trans);
480 iwl_trans_stop_hw(mvm->trans, false);
481
482 iwl_mvm_async_handlers_purge(mvm);
483 /* async_handlers_list is empty and will stay empty: HW is stopped */
484
485 /* the fw is stopped, the aux sta is dead: clean up driver state */
486 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
487
488 mutex_unlock(&mvm->mutex);
489
490 /*
491 * The worker might have been waiting for the mutex, let it run and
492 * discover that its list is now empty.
493 */
494 cancel_work_sync(&mvm->async_handlers_wk);
495}
496
497static void iwl_mvm_pm_disable_iterator(void *data, u8 *mac,
498 struct ieee80211_vif *vif)
499{
500 struct iwl_mvm *mvm = data;
501 int ret;
502
503 ret = iwl_mvm_power_disable(mvm, vif);
504 if (ret)
505 IWL_ERR(mvm, "failed to disable power management\n");
506}
507
508static void iwl_mvm_power_update_iterator(void *data, u8 *mac,
509 struct ieee80211_vif *vif)
510{
511 struct iwl_mvm *mvm = data;
512
513 iwl_mvm_power_update_mode(mvm, vif);
514}
515
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200516static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm)
517{
518 u16 i;
519
520 lockdep_assert_held(&mvm->mutex);
521
522 for (i = 0; i < NUM_PHY_CTX; i++)
523 if (!mvm->phy_ctxts[i].ref)
524 return &mvm->phy_ctxts[i];
525
526 IWL_ERR(mvm, "No available PHY context\n");
527 return NULL;
528}
529
Johannes Berg8ca151b2013-01-24 14:25:36 +0100530static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
531 struct ieee80211_vif *vif)
532{
533 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
534 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
535 int ret;
536
537 /*
538 * Not much to do here. The stack will not allow interface
539 * types or combinations that we didn't advertise, so we
540 * don't really have to check the types.
541 */
542
543 mutex_lock(&mvm->mutex);
544
Eliad Pellere89044d2013-07-16 17:33:26 +0300545 /* Allocate resources for the MAC context, and add it to the fw */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100546 ret = iwl_mvm_mac_ctxt_init(mvm, vif);
547 if (ret)
548 goto out_unlock;
549
550 /*
Ilan Peerea183d02013-07-23 14:41:53 +0300551 * TODO: remove this temporary code.
552 * Currently MVM FW supports power management only on single MAC.
553 * If new interface added, disable PM on existing interface.
554 * P2P device is a special case, since it is handled by FW similary to
555 * scan. If P2P deviced is added, PM remains enabled on existing
556 * interface.
557 * Note: the method below does not count the new interface being added
558 * at this moment.
559 */
560 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
561 mvm->vif_count++;
562 if (mvm->vif_count > 1) {
563 IWL_DEBUG_MAC80211(mvm,
564 "Disable power on existing interfaces\n");
565 ieee80211_iterate_active_interfaces_atomic(
566 mvm->hw,
567 IEEE80211_IFACE_ITER_NORMAL,
568 iwl_mvm_pm_disable_iterator, mvm);
569 }
570
571 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100572 * The AP binding flow can be done only after the beacon
573 * template is configured (which happens only in the mac80211
574 * start_ap() flow), and adding the broadcast station can happen
575 * only after the binding.
576 * In addition, since modifying the MAC before adding a bcast
577 * station is not allowed by the FW, delay the adding of MAC context to
578 * the point where we can also add the bcast station.
579 * In short: there's not much we can do at this point, other than
580 * allocating resources :)
581 */
Johannes Berg5023d962013-07-31 14:07:43 +0200582 if (vif->type == NL80211_IFTYPE_AP ||
583 vif->type == NL80211_IFTYPE_ADHOC) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100584 u32 qmask = iwl_mvm_mac_get_queues_mask(mvm, vif);
585 ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta,
586 qmask);
587 if (ret) {
588 IWL_ERR(mvm, "Failed to allocate bcast sta\n");
589 goto out_release;
590 }
591
Emmanuel Grumbach77740cb2013-06-26 23:51:41 +0300592 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100593 goto out_unlock;
594 }
595
Johannes Berg8ca151b2013-01-24 14:25:36 +0100596 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
597 if (ret)
598 goto out_release;
599
600 /*
601 * Update power state on the new interface. Admittedly, based on
602 * mac80211 logics this power update will disable power management
603 */
604 iwl_mvm_power_update_mode(mvm, vif);
605
Hila Gonen7df15b12012-12-12 11:16:19 +0200606 /* beacon filtering */
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300607 ret = iwl_mvm_disable_beacon_filter(mvm, vif);
608 if (ret)
609 goto out_remove_mac;
610
Hila Gonen7df15b12012-12-12 11:16:19 +0200611 if (!mvm->bf_allowed_vif &&
Hila Gonen5dca7c22013-07-16 11:15:35 +0300612 vif->type == NL80211_IFTYPE_STATION && !vif->p2p &&
613 mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BF_UPDATED){
Hila Gonen7df15b12012-12-12 11:16:19 +0200614 mvm->bf_allowed_vif = mvmvif;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300615 vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
616 IEEE80211_VIF_SUPPORTS_CQM_RSSI;
Hila Gonen7df15b12012-12-12 11:16:19 +0200617 }
618
Johannes Berg8ca151b2013-01-24 14:25:36 +0100619 /*
620 * P2P_DEVICE interface does not have a channel context assigned to it,
621 * so a dedicated PHY context is allocated to it and the corresponding
622 * MAC context is bound to it at this stage.
623 */
624 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100625
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200626 mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
627 if (!mvmvif->phy_ctxt) {
628 ret = -ENOSPC;
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300629 goto out_free_bf;
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200630 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100631
Ilan Peer53a9d612013-04-28 11:55:08 +0300632 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100633 ret = iwl_mvm_binding_add_vif(mvm, vif);
634 if (ret)
Ilan Peer53a9d612013-04-28 11:55:08 +0300635 goto out_unref_phy;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100636
637 ret = iwl_mvm_add_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
638 if (ret)
639 goto out_unbind;
640
641 /* Save a pointer to p2p device vif, so it can later be used to
642 * update the p2p device MAC when a GO is started/stopped */
643 mvm->p2p_device_vif = vif;
644 }
645
Johannes Berg63494372013-03-26 10:47:53 +0100646 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100647 goto out_unlock;
648
649 out_unbind:
650 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peer53a9d612013-04-28 11:55:08 +0300651 out_unref_phy:
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200652 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300653 out_free_bf:
654 if (mvm->bf_allowed_vif == mvmvif) {
655 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300656 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
657 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300658 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100659 out_remove_mac:
660 mvmvif->phy_ctxt = NULL;
661 iwl_mvm_mac_ctxt_remove(mvm, vif);
662 out_release:
Alexander Bondar5ee2b212013-03-05 10:16:40 +0200663 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
664 mvm->vif_count--;
Alexander Bondar4bf881f2013-05-29 10:19:50 +0300665 ieee80211_iterate_active_interfaces(
666 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
667 iwl_mvm_power_update_iterator, mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100668 iwl_mvm_mac_ctxt_release(mvm, vif);
669 out_unlock:
670 mutex_unlock(&mvm->mutex);
671
672 return ret;
673}
674
Johannes Berg38a12b52013-02-22 14:07:56 +0100675static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm,
676 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100677{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100678 u32 tfd_msk = 0, ac;
679
680 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
681 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
682 tfd_msk |= BIT(vif->hw_queue[ac]);
683
684 if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE)
685 tfd_msk |= BIT(vif->cab_queue);
686
687 if (tfd_msk) {
688 mutex_lock(&mvm->mutex);
689 iwl_mvm_flush_tx_path(mvm, tfd_msk, true);
690 mutex_unlock(&mvm->mutex);
691 }
692
693 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
694 /*
695 * Flush the ROC worker which will flush the OFFCHANNEL queue.
696 * We assume here that all the packets sent to the OFFCHANNEL
697 * queue are sent in ROC session.
698 */
699 flush_work(&mvm->roc_done_wk);
700 } else {
701 /*
702 * By now, all the AC queues are empty. The AGG queues are
703 * empty too. We already got all the Tx responses for all the
704 * packets in the queues. The drain work can have been
Emmanuel Grumbach0742a752013-06-10 14:10:33 +0300705 * triggered. Flush it.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100706 */
707 flush_work(&mvm->sta_drained_wk);
708 }
Johannes Berg38a12b52013-02-22 14:07:56 +0100709}
710
711static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw,
712 struct ieee80211_vif *vif)
713{
714 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
715 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
716
717 iwl_mvm_prepare_mac_removal(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100718
719 mutex_lock(&mvm->mutex);
720
Hila Gonen7df15b12012-12-12 11:16:19 +0200721 if (mvm->bf_allowed_vif == mvmvif) {
722 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300723 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
724 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Hila Gonen7df15b12012-12-12 11:16:19 +0200725 }
726
Johannes Berg63494372013-03-26 10:47:53 +0100727 iwl_mvm_vif_dbgfs_clean(mvm, vif);
728
Johannes Berg8ca151b2013-01-24 14:25:36 +0100729 /*
730 * For AP/GO interface, the tear down of the resources allocated to the
Johannes Berg38a12b52013-02-22 14:07:56 +0100731 * interface is be handled as part of the stop_ap flow.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100732 */
Johannes Berg5023d962013-07-31 14:07:43 +0200733 if (vif->type == NL80211_IFTYPE_AP ||
734 vif->type == NL80211_IFTYPE_ADHOC) {
David Spinadel507cadf2013-07-31 18:07:21 +0300735#ifdef CONFIG_NL80211_TESTMODE
736 if (vif == mvm->noa_vif) {
737 mvm->noa_vif = NULL;
738 mvm->noa_duration = 0;
739 }
740#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100741 iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta);
742 goto out_release;
743 }
744
745 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
746 mvm->p2p_device_vif = NULL;
747 iwl_mvm_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
748 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200749 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100750 mvmvif->phy_ctxt = NULL;
751 }
752
753 /*
754 * TODO: remove this temporary code.
755 * Currently MVM FW supports power management only on single MAC.
756 * Check if only one additional interface remains after removing
757 * current one. Update power mode on the remaining interface.
758 */
Alexander Bondar5ee2b212013-03-05 10:16:40 +0200759 if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100760 mvm->vif_count--;
761 IWL_DEBUG_MAC80211(mvm, "Currently %d interfaces active\n",
762 mvm->vif_count);
763 if (mvm->vif_count == 1) {
764 ieee80211_iterate_active_interfaces(
765 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
766 iwl_mvm_power_update_iterator, mvm);
767 }
768
769 iwl_mvm_mac_ctxt_remove(mvm, vif);
770
771out_release:
772 iwl_mvm_mac_ctxt_release(mvm, vif);
773 mutex_unlock(&mvm->mutex);
774}
775
Matti Gottlieb88f2fd72013-07-09 15:25:46 +0300776static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
777 s8 tx_power)
778{
779 /* FW is in charge of regulatory enforcement */
780 struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = {
781 .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id,
782 .pwr_restriction = cpu_to_le16(tx_power),
783 };
784
785 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, CMD_SYNC,
786 sizeof(reduce_txpwr_cmd),
787 &reduce_txpwr_cmd);
788}
789
Johannes Berg8ca151b2013-01-24 14:25:36 +0100790static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed)
791{
792 return 0;
793}
794
795static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
796 unsigned int changed_flags,
797 unsigned int *total_flags,
798 u64 multicast)
799{
800 *total_flags = 0;
801}
802
Emmanuel Grumbach51b6b9e2013-05-02 15:01:24 +0300803static int iwl_mvm_configure_mcast_filter(struct iwl_mvm *mvm,
804 struct ieee80211_vif *vif)
805{
806 struct iwl_mcast_filter_cmd mcast_filter_cmd = {
807 .pass_all = 1,
808 };
809
810 memcpy(mcast_filter_cmd.bssid, vif->bss_conf.bssid, ETH_ALEN);
811
812 return iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_SYNC,
813 sizeof(mcast_filter_cmd),
814 &mcast_filter_cmd);
815}
816
Johannes Berg8ca151b2013-01-24 14:25:36 +0100817static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
818 struct ieee80211_vif *vif,
819 struct ieee80211_bss_conf *bss_conf,
820 u32 changes)
821{
822 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
823 int ret;
824
825 ret = iwl_mvm_mac_ctxt_changed(mvm, vif);
826 if (ret)
827 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
828
829 if (changes & BSS_CHANGED_ASSOC) {
830 if (bss_conf->assoc) {
831 /* add quota for this interface */
832 ret = iwl_mvm_update_quotas(mvm, vif);
833 if (ret) {
834 IWL_ERR(mvm, "failed to update quotas\n");
835 return;
836 }
Emmanuel Grumbach51b6b9e2013-05-02 15:01:24 +0300837 iwl_mvm_configure_mcast_filter(mvm, vif);
Johannes Berg016d27e2013-05-03 11:16:15 +0200838
839 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
840 &mvm->status)) {
841 /*
842 * If we're restarting then the firmware will
843 * obviously have lost synchronisation with
844 * the AP. It will attempt to synchronise by
845 * itself, but we can make it more reliable by
846 * scheduling a session protection time event.
847 *
848 * The firmware needs to receive a beacon to
849 * catch up with synchronisation, use 110% of
850 * the beacon interval.
851 *
852 * Set a large maximum delay to allow for more
853 * than a single interface.
854 */
855 u32 dur = (11 * vif->bss_conf.beacon_int) / 10;
856 iwl_mvm_protect_session(mvm, vif, dur, dur,
857 5 * dur);
858 }
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +0200859
860 iwl_mvm_sf_update(mvm, vif, false);
Alexander Bondar175a70b2013-04-14 20:59:37 +0300861 iwl_mvm_power_vif_assoc(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100862 } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +0200863 /*
864 * If update fails - SF might be running in associated
865 * mode while disassociated - which is forbidden.
866 */
867 WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false),
868 "Failed to update SF upon disassociation\n");
869
Johannes Berg8ca151b2013-01-24 14:25:36 +0100870 /* remove AP station now that the MAC is unassoc */
871 ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id);
872 if (ret)
873 IWL_ERR(mvm, "failed to remove AP station\n");
874 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
875 /* remove quota for this interface */
876 ret = iwl_mvm_update_quotas(mvm, NULL);
877 if (ret)
878 IWL_ERR(mvm, "failed to update quotas\n");
879 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300880
881 /* reset rssi values */
882 mvmvif->bf_data.ave_beacon_signal = 0;
883
Alexander Bondare8e626a2013-10-16 00:21:34 +0200884 if (!(mvm->fw->ucode_capa.flags &
885 IWL_UCODE_TLV_FLAGS_PM_CMD_SUPPORT)) {
Alexander Bondare811ada2013-03-10 15:29:44 +0200886 /* Workaround for FW bug, otherwise FW disables device
887 * power save upon disassociation
888 */
889 ret = iwl_mvm_power_update_mode(mvm, vif);
890 if (ret)
891 IWL_ERR(mvm, "failed to update power mode\n");
892 }
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +0300893 iwl_mvm_bt_coex_vif_change(mvm);
Alexander Bondar989c6502013-05-16 17:34:17 +0300894 } else if (changes & BSS_CHANGED_BEACON_INFO) {
Johannes Berg210a5442013-01-24 23:48:23 +0100895 /*
896 * We received a beacon _after_ association so
897 * remove the session protection.
898 */
899 iwl_mvm_remove_time_event(mvm, mvmvif,
900 &mvmvif->time_event_data);
Alexander Bondare3c588e2013-04-07 14:08:59 +0300901 } else if (changes & (BSS_CHANGED_PS | BSS_CHANGED_QOS)) {
Alexander Bondar4bf881f2013-05-29 10:19:50 +0300902 ret = iwl_mvm_power_update_mode(mvm, vif);
903 if (ret)
904 IWL_ERR(mvm, "failed to update power mode\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100905 }
Matti Gottlieb88f2fd72013-07-09 15:25:46 +0300906 if (changes & BSS_CHANGED_TXPOWER) {
907 IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
908 bss_conf->txpower);
909 iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
910 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300911
912 if (changes & BSS_CHANGED_CQM) {
913 IWL_DEBUG_MAC80211(mvm, "cqm info_changed");
914 /* reset cqm events tracking */
915 mvmvif->bf_data.last_cqm_event = 0;
916 ret = iwl_mvm_update_beacon_filter(mvm, vif);
917 if (ret)
918 IWL_ERR(mvm, "failed to update CQM thresholds\n");
919 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100920}
921
Johannes Berg5023d962013-07-31 14:07:43 +0200922static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
923 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100924{
925 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
926 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
927 int ret;
928
929 mutex_lock(&mvm->mutex);
930
931 /* Send the beacon template */
932 ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif);
933 if (ret)
934 goto out_unlock;
935
936 /* Add the mac context */
937 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
938 if (ret)
939 goto out_unlock;
940
941 /* Perform the binding */
942 ret = iwl_mvm_binding_add_vif(mvm, vif);
943 if (ret)
944 goto out_remove;
945
Johannes Berg5023d962013-07-31 14:07:43 +0200946 mvmvif->ap_ibss_active = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100947
948 /* Send the bcast station. At this stage the TBTT and DTIM time events
949 * are added and applied to the scheduler */
950 ret = iwl_mvm_send_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
951 if (ret)
952 goto out_unbind;
953
954 ret = iwl_mvm_update_quotas(mvm, vif);
955 if (ret)
956 goto out_rm_bcast;
957
Johannes Berg5023d962013-07-31 14:07:43 +0200958 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100959 if (vif->p2p && mvm->p2p_device_vif)
960 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif);
961
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +0300962 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300963
Johannes Berg8ca151b2013-01-24 14:25:36 +0100964 mutex_unlock(&mvm->mutex);
965 return 0;
966
967out_rm_bcast:
968 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
969out_unbind:
970 iwl_mvm_binding_remove_vif(mvm, vif);
971out_remove:
972 iwl_mvm_mac_ctxt_remove(mvm, vif);
973out_unlock:
974 mutex_unlock(&mvm->mutex);
975 return ret;
976}
977
Johannes Berg5023d962013-07-31 14:07:43 +0200978static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
979 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100980{
981 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
982 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
983
Johannes Berg38a12b52013-02-22 14:07:56 +0100984 iwl_mvm_prepare_mac_removal(mvm, vif);
985
Johannes Berg8ca151b2013-01-24 14:25:36 +0100986 mutex_lock(&mvm->mutex);
987
Johannes Berg5023d962013-07-31 14:07:43 +0200988 mvmvif->ap_ibss_active = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100989
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +0300990 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +0300991
Johannes Berg5023d962013-07-31 14:07:43 +0200992 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100993 if (vif->p2p && mvm->p2p_device_vif)
994 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif);
995
996 iwl_mvm_update_quotas(mvm, NULL);
997 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
998 iwl_mvm_binding_remove_vif(mvm, vif);
999 iwl_mvm_mac_ctxt_remove(mvm, vif);
1000
1001 mutex_unlock(&mvm->mutex);
1002}
1003
Johannes Berg5023d962013-07-31 14:07:43 +02001004static void
1005iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm,
1006 struct ieee80211_vif *vif,
1007 struct ieee80211_bss_conf *bss_conf,
1008 u32 changes)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001009{
Avri Altman8a5e3662013-11-12 19:16:03 +02001010 enum ieee80211_bss_change ht_change = BSS_CHANGED_ERP_CTS_PROT |
1011 BSS_CHANGED_HT |
1012 BSS_CHANGED_BANDWIDTH;
1013 int ret;
1014
1015 if (changes & ht_change) {
1016 ret = iwl_mvm_mac_ctxt_changed(mvm, vif);
1017 if (ret)
1018 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
1019 }
1020
Johannes Berg8ca151b2013-01-24 14:25:36 +01001021 /* Need to send a new beacon template to the FW */
1022 if (changes & BSS_CHANGED_BEACON) {
1023 if (iwl_mvm_mac_ctxt_beacon_changed(mvm, vif))
1024 IWL_WARN(mvm, "Failed updating beacon data\n");
1025 }
1026}
1027
1028static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw,
1029 struct ieee80211_vif *vif,
1030 struct ieee80211_bss_conf *bss_conf,
1031 u32 changes)
1032{
1033 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1034
1035 mutex_lock(&mvm->mutex);
1036
1037 switch (vif->type) {
1038 case NL80211_IFTYPE_STATION:
1039 iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes);
1040 break;
1041 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02001042 case NL80211_IFTYPE_ADHOC:
1043 iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001044 break;
1045 default:
1046 /* shouldn't happen */
1047 WARN_ON_ONCE(1);
1048 }
1049
1050 mutex_unlock(&mvm->mutex);
1051}
1052
1053static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw,
1054 struct ieee80211_vif *vif,
1055 struct cfg80211_scan_request *req)
1056{
1057 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1058 int ret;
1059
1060 if (req->n_channels == 0 || req->n_channels > MAX_NUM_SCAN_CHANNELS)
1061 return -EINVAL;
1062
1063 mutex_lock(&mvm->mutex);
1064
1065 if (mvm->scan_status == IWL_MVM_SCAN_NONE)
1066 ret = iwl_mvm_scan_request(mvm, vif, req);
1067 else
1068 ret = -EBUSY;
1069
1070 mutex_unlock(&mvm->mutex);
1071
1072 return ret;
1073}
1074
1075static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw,
1076 struct ieee80211_vif *vif)
1077{
1078 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1079
1080 mutex_lock(&mvm->mutex);
1081
1082 iwl_mvm_cancel_scan(mvm);
1083
1084 mutex_unlock(&mvm->mutex);
1085}
1086
1087static void
1088iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw,
1089 struct ieee80211_sta *sta, u16 tid,
1090 int num_frames,
1091 enum ieee80211_frame_release_type reason,
1092 bool more_data)
1093{
1094 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001095
1096 /* TODO: how do we tell the fw to send frames for a specific TID */
1097
1098 /*
1099 * The fw will send EOSP notification when the last frame will be
1100 * transmitted.
1101 */
Johannes Berg9cc40712013-02-15 22:47:48 +01001102 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001103}
1104
1105static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
1106 struct ieee80211_vif *vif,
1107 enum sta_notify_cmd cmd,
1108 struct ieee80211_sta *sta)
1109{
1110 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg5b577a92013-11-14 18:20:04 +01001111 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001112
1113 switch (cmd) {
1114 case STA_NOTIFY_SLEEP:
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001115 if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001116 ieee80211_sta_block_awake(hw, sta, true);
1117 /*
1118 * The fw updates the STA to be asleep. Tx packets on the Tx
1119 * queues to this station will not be transmitted. The fw will
1120 * send a Tx response with TX_STATUS_FAIL_DEST_PS.
1121 */
1122 break;
1123 case STA_NOTIFY_AWAKE:
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02001124 if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001125 break;
Johannes Berg9cc40712013-02-15 22:47:48 +01001126 iwl_mvm_sta_modify_ps_wake(mvm, sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001127 break;
1128 default:
1129 break;
1130 }
1131}
1132
1133static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
1134 struct ieee80211_vif *vif,
1135 struct ieee80211_sta *sta,
1136 enum ieee80211_sta_state old_state,
1137 enum ieee80211_sta_state new_state)
1138{
1139 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1140 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1141 int ret;
1142
1143 IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n",
1144 sta->addr, old_state, new_state);
1145
1146 /* this would be a mac80211 bug ... but don't crash */
1147 if (WARN_ON_ONCE(!mvmvif->phy_ctxt))
1148 return -EINVAL;
1149
1150 /* if a STA is being removed, reuse its ID */
1151 flush_work(&mvm->sta_drained_wk);
1152
1153 mutex_lock(&mvm->mutex);
1154 if (old_state == IEEE80211_STA_NOTEXIST &&
1155 new_state == IEEE80211_STA_NONE) {
Johannes Berg48bc1302013-07-04 15:55:29 +02001156 /*
1157 * Firmware bug - it'll crash if the beacon interval is less
1158 * than 16. We can't avoid connecting at all, so refuse the
1159 * station state change, this will cause mac80211 to abandon
1160 * attempts to connect to this AP, and eventually wpa_s will
1161 * blacklist the AP...
1162 */
1163 if (vif->type == NL80211_IFTYPE_STATION &&
1164 vif->bss_conf.beacon_int < 16) {
1165 IWL_ERR(mvm,
1166 "AP %pM beacon interval is %d, refusing due to firmware bug!\n",
1167 sta->addr, vif->bss_conf.beacon_int);
1168 ret = -EINVAL;
1169 goto out_unlock;
1170 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001171 ret = iwl_mvm_add_sta(mvm, vif, sta);
1172 } else if (old_state == IEEE80211_STA_NONE &&
1173 new_state == IEEE80211_STA_AUTH) {
1174 ret = 0;
1175 } else if (old_state == IEEE80211_STA_AUTH &&
1176 new_state == IEEE80211_STA_ASSOC) {
Johannes Berg7a453972013-02-12 13:10:44 +01001177 ret = iwl_mvm_update_sta(mvm, vif, sta);
1178 if (ret == 0)
1179 iwl_mvm_rs_rate_init(mvm, sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +02001180 mvmvif->phy_ctxt->channel->band,
1181 true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001182 } else if (old_state == IEEE80211_STA_ASSOC &&
1183 new_state == IEEE80211_STA_AUTHORIZED) {
Hila Gonen7df15b12012-12-12 11:16:19 +02001184 /* enable beacon filtering */
1185 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001186 ret = 0;
1187 } else if (old_state == IEEE80211_STA_AUTHORIZED &&
1188 new_state == IEEE80211_STA_ASSOC) {
Hila Gonen7df15b12012-12-12 11:16:19 +02001189 /* disable beacon filtering */
1190 WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001191 ret = 0;
1192 } else if (old_state == IEEE80211_STA_ASSOC &&
1193 new_state == IEEE80211_STA_AUTH) {
1194 ret = 0;
1195 } else if (old_state == IEEE80211_STA_AUTH &&
1196 new_state == IEEE80211_STA_NONE) {
1197 ret = 0;
1198 } else if (old_state == IEEE80211_STA_NONE &&
1199 new_state == IEEE80211_STA_NOTEXIST) {
1200 ret = iwl_mvm_rm_sta(mvm, vif, sta);
1201 } else {
1202 ret = -EIO;
1203 }
Johannes Berg48bc1302013-07-04 15:55:29 +02001204 out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001205 mutex_unlock(&mvm->mutex);
1206
1207 return ret;
1208}
1209
1210static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
1211{
1212 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1213
1214 mvm->rts_threshold = value;
1215
1216 return 0;
1217}
1218
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001219static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw,
1220 struct ieee80211_vif *vif,
1221 struct ieee80211_sta *sta, u32 changed)
1222{
1223 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1224
1225 if (vif->type == NL80211_IFTYPE_STATION &&
1226 changed & IEEE80211_RC_NSS_CHANGED)
1227 iwl_mvm_sf_update(mvm, vif, false);
1228}
1229
Johannes Berg8ca151b2013-01-24 14:25:36 +01001230static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw,
1231 struct ieee80211_vif *vif, u16 ac,
1232 const struct ieee80211_tx_queue_params *params)
1233{
1234 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1235 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1236
1237 mvmvif->queue_params[ac] = *params;
1238
1239 /*
1240 * No need to update right away, we'll get BSS_CHANGED_QOS
1241 * The exception is P2P_DEVICE interface which needs immediate update.
1242 */
1243 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1244 int ret;
1245
1246 mutex_lock(&mvm->mutex);
1247 ret = iwl_mvm_mac_ctxt_changed(mvm, vif);
1248 mutex_unlock(&mvm->mutex);
1249 return ret;
1250 }
1251 return 0;
1252}
1253
1254static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw,
1255 struct ieee80211_vif *vif)
1256{
1257 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1258 u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS,
1259 200 + vif->bss_conf.beacon_int);
1260 u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS,
1261 100 + vif->bss_conf.beacon_int);
1262
1263 if (WARN_ON_ONCE(vif->bss_conf.assoc))
1264 return;
1265
1266 mutex_lock(&mvm->mutex);
1267 /* Try really hard to protect the session and hear a beacon */
Johannes Berg016d27e2013-05-03 11:16:15 +02001268 iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001269 mutex_unlock(&mvm->mutex);
1270}
1271
David Spinadel35a000b2013-08-28 09:29:43 +03001272static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw,
1273 struct ieee80211_vif *vif,
1274 struct cfg80211_sched_scan_request *req,
1275 struct ieee80211_sched_scan_ies *ies)
1276{
1277 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1278 int ret;
1279
1280 mutex_lock(&mvm->mutex);
1281
1282 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
1283 IWL_DEBUG_SCAN(mvm,
1284 "SCHED SCAN request during internal scan - abort\n");
1285 ret = -EBUSY;
1286 goto out;
1287 }
1288
1289 mvm->scan_status = IWL_MVM_SCAN_SCHED;
1290
1291 ret = iwl_mvm_config_sched_scan(mvm, vif, req, ies);
1292 if (ret)
1293 goto err;
1294
1295 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
1296 if (ret)
1297 goto err;
1298
1299 ret = iwl_mvm_sched_scan_start(mvm, req);
1300 if (!ret)
1301 goto out;
1302err:
1303 mvm->scan_status = IWL_MVM_SCAN_NONE;
1304out:
1305 mutex_unlock(&mvm->mutex);
1306 return ret;
1307}
1308
1309static void iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw,
1310 struct ieee80211_vif *vif)
1311{
1312 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1313
1314 mutex_lock(&mvm->mutex);
1315 iwl_mvm_sched_scan_stop(mvm);
1316 mutex_unlock(&mvm->mutex);
1317}
1318
Johannes Berg8ca151b2013-01-24 14:25:36 +01001319static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw,
1320 enum set_key_cmd cmd,
1321 struct ieee80211_vif *vif,
1322 struct ieee80211_sta *sta,
1323 struct ieee80211_key_conf *key)
1324{
1325 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1326 int ret;
1327
1328 if (iwlwifi_mod_params.sw_crypto) {
1329 IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n");
1330 return -EOPNOTSUPP;
1331 }
1332
1333 switch (key->cipher) {
1334 case WLAN_CIPHER_SUITE_TKIP:
1335 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
1336 /* fall-through */
1337 case WLAN_CIPHER_SUITE_CCMP:
1338 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
1339 break;
1340 case WLAN_CIPHER_SUITE_AES_CMAC:
1341 WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE));
1342 break;
1343 case WLAN_CIPHER_SUITE_WEP40:
1344 case WLAN_CIPHER_SUITE_WEP104:
1345 /*
1346 * Support for TX only, at least for now, so accept
1347 * the key and do nothing else. Then mac80211 will
1348 * pass it for TX but we don't have to use it for RX.
1349 */
1350 return 0;
1351 default:
Max Stepanove36e5432013-08-27 19:56:13 +03001352 /* currently FW supports only one optional cipher scheme */
1353 if (hw->n_cipher_schemes &&
1354 hw->cipher_schemes->cipher == key->cipher)
1355 key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
1356 else
1357 return -EOPNOTSUPP;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001358 }
1359
1360 mutex_lock(&mvm->mutex);
1361
1362 switch (cmd) {
1363 case SET_KEY:
Johannes Berg5023d962013-07-31 14:07:43 +02001364 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1365 vif->type == NL80211_IFTYPE_AP) && !sta) {
1366 /*
1367 * GTK on AP interface is a TX-only key, return 0;
1368 * on IBSS they're per-station and because we're lazy
1369 * we don't support them for RX, so do the same.
1370 */
Johannes Berg6caffd42013-03-06 13:15:21 +01001371 ret = 0;
1372 key->hw_key_idx = STA_KEY_IDX_INVALID;
1373 break;
1374 }
1375
Johannes Berg8ca151b2013-01-24 14:25:36 +01001376 IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n");
1377 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false);
1378 if (ret) {
1379 IWL_WARN(mvm, "set key failed\n");
1380 /*
1381 * can't add key for RX, but we don't need it
1382 * in the device for TX so still return 0
1383 */
Johannes Berg6caffd42013-03-06 13:15:21 +01001384 key->hw_key_idx = STA_KEY_IDX_INVALID;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001385 ret = 0;
1386 }
1387
1388 break;
1389 case DISABLE_KEY:
Johannes Berg6caffd42013-03-06 13:15:21 +01001390 if (key->hw_key_idx == STA_KEY_IDX_INVALID) {
1391 ret = 0;
1392 break;
1393 }
1394
Johannes Berg8ca151b2013-01-24 14:25:36 +01001395 IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n");
1396 ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key);
1397 break;
1398 default:
1399 ret = -EINVAL;
1400 }
1401
1402 mutex_unlock(&mvm->mutex);
1403 return ret;
1404}
1405
1406static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw,
1407 struct ieee80211_vif *vif,
1408 struct ieee80211_key_conf *keyconf,
1409 struct ieee80211_sta *sta,
1410 u32 iv32, u16 *phase1key)
1411{
1412 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1413
Johannes Berg5023d962013-07-31 14:07:43 +02001414 if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID)
1415 return;
1416
Johannes Berg8ca151b2013-01-24 14:25:36 +01001417 iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key);
1418}
1419
1420
1421static int iwl_mvm_roc(struct ieee80211_hw *hw,
1422 struct ieee80211_vif *vif,
1423 struct ieee80211_channel *channel,
Ilan Peerd339d5c2013-02-12 09:34:13 +02001424 int duration,
1425 enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001426{
1427 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001428 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001429 struct cfg80211_chan_def chandef;
Ilan Peer31d385a2013-04-02 10:25:46 +03001430 struct iwl_mvm_phy_ctxt *phy_ctxt;
1431 int ret, i;
1432
1433 IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value,
1434 duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001435
1436 if (vif->type != NL80211_IFTYPE_P2P_DEVICE) {
1437 IWL_ERR(mvm, "vif isn't a P2P_DEVICE: %d\n", vif->type);
1438 return -EINVAL;
1439 }
1440
Johannes Berg8ca151b2013-01-24 14:25:36 +01001441 mutex_lock(&mvm->mutex);
1442
Ilan Peer31d385a2013-04-02 10:25:46 +03001443 for (i = 0; i < NUM_PHY_CTX; i++) {
1444 phy_ctxt = &mvm->phy_ctxts[i];
1445 if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt)
1446 continue;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001447
Ilan Peer31d385a2013-04-02 10:25:46 +03001448 if (phy_ctxt->ref && channel == phy_ctxt->channel) {
1449 /*
1450 * Unbind the P2P_DEVICE from the current PHY context,
1451 * and if the PHY context is not used remove it.
1452 */
1453 ret = iwl_mvm_binding_remove_vif(mvm, vif);
1454 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
1455 goto out_unlock;
1456
1457 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
1458
1459 /* Bind the P2P_DEVICE to the current PHY Context */
1460 mvmvif->phy_ctxt = phy_ctxt;
1461
1462 ret = iwl_mvm_binding_add_vif(mvm, vif);
1463 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
1464 goto out_unlock;
1465
1466 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
1467 goto schedule_time_event;
1468 }
1469 }
1470
1471 /* Need to update the PHY context only if the ROC channel changed */
1472 if (channel == mvmvif->phy_ctxt->channel)
1473 goto schedule_time_event;
1474
1475 cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT);
1476
1477 /*
1478 * Change the PHY context configuration as it is currently referenced
1479 * only by the P2P Device MAC
1480 */
1481 if (mvmvif->phy_ctxt->ref == 1) {
1482 ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt,
1483 &chandef, 1, 1);
1484 if (ret)
1485 goto out_unlock;
1486 } else {
1487 /*
1488 * The PHY context is shared with other MACs. Need to remove the
1489 * P2P Device from the binding, allocate an new PHY context and
1490 * create a new binding
1491 */
1492 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1493 if (!phy_ctxt) {
1494 ret = -ENOSPC;
1495 goto out_unlock;
1496 }
1497
1498 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef,
1499 1, 1);
1500 if (ret) {
1501 IWL_ERR(mvm, "Failed to change PHY context\n");
1502 goto out_unlock;
1503 }
1504
1505 /* Unbind the P2P_DEVICE from the current PHY context */
1506 ret = iwl_mvm_binding_remove_vif(mvm, vif);
1507 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
1508 goto out_unlock;
1509
1510 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
1511
1512 /* Bind the P2P_DEVICE to the new allocated PHY context */
1513 mvmvif->phy_ctxt = phy_ctxt;
1514
1515 ret = iwl_mvm_binding_add_vif(mvm, vif);
1516 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
1517 goto out_unlock;
1518
1519 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
1520 }
1521
1522schedule_time_event:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001523 /* Schedule the time events */
Ilan Peere635c792013-02-13 11:05:18 +02001524 ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001525
Ilan Peer31d385a2013-04-02 10:25:46 +03001526out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001527 mutex_unlock(&mvm->mutex);
1528 IWL_DEBUG_MAC80211(mvm, "leave\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001529 return ret;
1530}
1531
1532static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw)
1533{
1534 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1535
1536 IWL_DEBUG_MAC80211(mvm, "enter\n");
1537
1538 mutex_lock(&mvm->mutex);
1539 iwl_mvm_stop_p2p_roc(mvm);
1540 mutex_unlock(&mvm->mutex);
1541
1542 IWL_DEBUG_MAC80211(mvm, "leave\n");
1543 return 0;
1544}
1545
1546static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw,
1547 struct ieee80211_chanctx_conf *ctx)
1548{
1549 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001550 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
1551 struct iwl_mvm_phy_ctxt *phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001552 int ret;
1553
Ilan Peer53a9d612013-04-28 11:55:08 +03001554 IWL_DEBUG_MAC80211(mvm, "Add channel context\n");
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001555
1556 mutex_lock(&mvm->mutex);
1557 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1558 if (!phy_ctxt) {
1559 ret = -ENOSPC;
1560 goto out;
1561 }
1562
Ilan Peer53a9d612013-04-28 11:55:08 +03001563 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->def,
1564 ctx->rx_chains_static,
1565 ctx->rx_chains_dynamic);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001566 if (ret) {
1567 IWL_ERR(mvm, "Failed to add PHY context\n");
1568 goto out;
1569 }
1570
Ilan Peer53a9d612013-04-28 11:55:08 +03001571 iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001572 *phy_ctxt_id = phy_ctxt->id;
1573out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001574 mutex_unlock(&mvm->mutex);
1575 return ret;
1576}
1577
1578static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw,
1579 struct ieee80211_chanctx_conf *ctx)
1580{
1581 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001582 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
1583 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001584
1585 mutex_lock(&mvm->mutex);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001586 iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001587 mutex_unlock(&mvm->mutex);
1588}
1589
1590static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw,
1591 struct ieee80211_chanctx_conf *ctx,
1592 u32 changed)
1593{
1594 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001595 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
1596 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001597
Ilan Peer31d385a2013-04-02 10:25:46 +03001598 if (WARN_ONCE((phy_ctxt->ref > 1) &&
1599 (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH |
1600 IEEE80211_CHANCTX_CHANGE_RX_CHAINS |
1601 IEEE80211_CHANCTX_CHANGE_RADAR)),
1602 "Cannot change PHY. Ref=%d, changed=0x%X\n",
1603 phy_ctxt->ref, changed))
1604 return;
1605
Johannes Berg8ca151b2013-01-24 14:25:36 +01001606 mutex_lock(&mvm->mutex);
1607 iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->def,
1608 ctx->rx_chains_static,
1609 ctx->rx_chains_dynamic);
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001610 iwl_mvm_bt_coex_vif_change(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001611 mutex_unlock(&mvm->mutex);
1612}
1613
1614static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw,
1615 struct ieee80211_vif *vif,
1616 struct ieee80211_chanctx_conf *ctx)
1617{
1618 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001619 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
1620 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001621 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1622 int ret;
1623
1624 mutex_lock(&mvm->mutex);
1625
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001626 mvmvif->phy_ctxt = phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001627
1628 switch (vif->type) {
1629 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02001630 case NL80211_IFTYPE_ADHOC:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001631 /*
1632 * The AP binding flow is handled as part of the start_ap flow
Johannes Berg5023d962013-07-31 14:07:43 +02001633 * (in bss_info_changed), similarly for IBSS.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001634 */
1635 ret = 0;
1636 goto out_unlock;
1637 case NL80211_IFTYPE_STATION:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001638 case NL80211_IFTYPE_MONITOR:
1639 break;
1640 default:
1641 ret = -EINVAL;
1642 goto out_unlock;
1643 }
1644
1645 ret = iwl_mvm_binding_add_vif(mvm, vif);
1646 if (ret)
1647 goto out_unlock;
1648
1649 /*
1650 * Setting the quota at this stage is only required for monitor
1651 * interfaces. For the other types, the bss_info changed flow
1652 * will handle quota settings.
1653 */
1654 if (vif->type == NL80211_IFTYPE_MONITOR) {
Ilan Peer1e1391c2013-03-13 14:52:04 +02001655 mvmvif->monitor_active = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001656 ret = iwl_mvm_update_quotas(mvm, vif);
1657 if (ret)
1658 goto out_remove_binding;
1659 }
1660
1661 goto out_unlock;
1662
1663 out_remove_binding:
1664 iwl_mvm_binding_remove_vif(mvm, vif);
1665 out_unlock:
1666 mutex_unlock(&mvm->mutex);
1667 if (ret)
1668 mvmvif->phy_ctxt = NULL;
1669 return ret;
1670}
1671
1672static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw,
1673 struct ieee80211_vif *vif,
1674 struct ieee80211_chanctx_conf *ctx)
1675{
1676 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1677 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1678
1679 mutex_lock(&mvm->mutex);
1680
1681 iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data);
1682
Johannes Berg8ca151b2013-01-24 14:25:36 +01001683 switch (vif->type) {
Johannes Berg5023d962013-07-31 14:07:43 +02001684 case NL80211_IFTYPE_AP:
1685 case NL80211_IFTYPE_ADHOC:
1686 goto out_unlock;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001687 case NL80211_IFTYPE_MONITOR:
Ilan Peer1e1391c2013-03-13 14:52:04 +02001688 mvmvif->monitor_active = false;
1689 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001690 break;
1691 default:
1692 break;
1693 }
1694
Ilan Peer1e1391c2013-03-13 14:52:04 +02001695 iwl_mvm_binding_remove_vif(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001696out_unlock:
1697 mvmvif->phy_ctxt = NULL;
1698 mutex_unlock(&mvm->mutex);
1699}
1700
1701static int iwl_mvm_set_tim(struct ieee80211_hw *hw,
1702 struct ieee80211_sta *sta,
1703 bool set)
1704{
1705 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1706 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
1707
1708 if (!mvm_sta || !mvm_sta->vif) {
1709 IWL_ERR(mvm, "Station is not associated to a vif\n");
1710 return -EINVAL;
1711 }
1712
1713 return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif);
1714}
1715
David Spinadel507cadf2013-07-31 18:07:21 +03001716#ifdef CONFIG_NL80211_TESTMODE
1717static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = {
1718 [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 },
1719 [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 },
Johannes Bergf6c6ad422013-08-01 14:17:15 +02001720 [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 },
David Spinadel507cadf2013-07-31 18:07:21 +03001721};
1722
1723static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm,
1724 struct ieee80211_vif *vif,
1725 void *data, int len)
1726{
1727 struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1];
1728 int err;
1729 u32 noa_duration;
1730
1731 err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy);
1732 if (err)
1733 return err;
1734
1735 if (!tb[IWL_MVM_TM_ATTR_CMD])
1736 return -EINVAL;
1737
1738 switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) {
1739 case IWL_MVM_TM_CMD_SET_NOA:
1740 if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p ||
1741 !vif->bss_conf.enable_beacon ||
1742 !tb[IWL_MVM_TM_ATTR_NOA_DURATION])
1743 return -EINVAL;
1744
1745 noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]);
1746 if (noa_duration >= vif->bss_conf.beacon_int)
1747 return -EINVAL;
1748
1749 mvm->noa_duration = noa_duration;
1750 mvm->noa_vif = vif;
1751
1752 return iwl_mvm_update_quotas(mvm, NULL);
Johannes Bergf6c6ad422013-08-01 14:17:15 +02001753 case IWL_MVM_TM_CMD_SET_BEACON_FILTER:
1754 /* must be associated client vif - ignore authorized */
1755 if (!vif || vif->type != NL80211_IFTYPE_STATION ||
1756 !vif->bss_conf.assoc || !vif->bss_conf.dtim_period ||
1757 !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])
1758 return -EINVAL;
1759
1760 if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]))
1761 return iwl_mvm_enable_beacon_filter(mvm, vif);
1762 return iwl_mvm_disable_beacon_filter(mvm, vif);
David Spinadel507cadf2013-07-31 18:07:21 +03001763 }
1764
1765 return -EOPNOTSUPP;
1766}
1767
1768static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw,
1769 struct ieee80211_vif *vif,
1770 void *data, int len)
1771{
1772 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1773 int err;
1774
1775 mutex_lock(&mvm->mutex);
1776 err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len);
1777 mutex_unlock(&mvm->mutex);
1778
1779 return err;
1780}
1781#endif
1782
Johannes Berg8ca151b2013-01-24 14:25:36 +01001783struct ieee80211_ops iwl_mvm_hw_ops = {
1784 .tx = iwl_mvm_mac_tx,
1785 .ampdu_action = iwl_mvm_mac_ampdu_action,
1786 .start = iwl_mvm_mac_start,
1787 .restart_complete = iwl_mvm_mac_restart_complete,
1788 .stop = iwl_mvm_mac_stop,
1789 .add_interface = iwl_mvm_mac_add_interface,
1790 .remove_interface = iwl_mvm_mac_remove_interface,
1791 .config = iwl_mvm_mac_config,
1792 .configure_filter = iwl_mvm_configure_filter,
1793 .bss_info_changed = iwl_mvm_bss_info_changed,
1794 .hw_scan = iwl_mvm_mac_hw_scan,
1795 .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan,
1796 .sta_state = iwl_mvm_mac_sta_state,
1797 .sta_notify = iwl_mvm_mac_sta_notify,
1798 .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames,
1799 .set_rts_threshold = iwl_mvm_mac_set_rts_threshold,
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001800 .sta_rc_update = iwl_mvm_sta_rc_update,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001801 .conf_tx = iwl_mvm_mac_conf_tx,
1802 .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx,
David Spinadel35a000b2013-08-28 09:29:43 +03001803 .sched_scan_start = iwl_mvm_mac_sched_scan_start,
1804 .sched_scan_stop = iwl_mvm_mac_sched_scan_stop,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001805 .set_key = iwl_mvm_mac_set_key,
1806 .update_tkip_key = iwl_mvm_mac_update_tkip_key,
1807 .remain_on_channel = iwl_mvm_roc,
1808 .cancel_remain_on_channel = iwl_mvm_cancel_roc,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001809 .add_chanctx = iwl_mvm_add_chanctx,
1810 .remove_chanctx = iwl_mvm_remove_chanctx,
1811 .change_chanctx = iwl_mvm_change_chanctx,
1812 .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx,
1813 .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx,
1814
Johannes Berg5023d962013-07-31 14:07:43 +02001815 .start_ap = iwl_mvm_start_ap_ibss,
1816 .stop_ap = iwl_mvm_stop_ap_ibss,
1817 .join_ibss = iwl_mvm_start_ap_ibss,
1818 .leave_ibss = iwl_mvm_stop_ap_ibss,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001819
1820 .set_tim = iwl_mvm_set_tim,
1821
David Spinadel507cadf2013-07-31 18:07:21 +03001822 CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd)
1823
Johannes Berg8ca151b2013-01-24 14:25:36 +01001824#ifdef CONFIG_PM_SLEEP
1825 /* look at d3.c */
1826 .suspend = iwl_mvm_suspend,
1827 .resume = iwl_mvm_resume,
1828 .set_wakeup = iwl_mvm_set_wakeup,
1829 .set_rekey_data = iwl_mvm_set_rekey_data,
1830#if IS_ENABLED(CONFIG_IPV6)
1831 .ipv6_addr_change = iwl_mvm_ipv6_addr_change,
1832#endif
1833 .set_default_unicast_key = iwl_mvm_set_default_unicast_key,
1834#endif
1835};