blob: b61d5a236ebe18f6668b202421a2302853186126 [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);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100408
409 mvm->scan_status = IWL_MVM_SCAN_NONE;
410
411 /* just in case one was running */
412 ieee80211_remain_on_channel_expired(mvm->hw);
413
414 ieee80211_iterate_active_interfaces_atomic(
415 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
416 iwl_mvm_cleanup_iterator, mvm);
417
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200418 mvm->p2p_device_vif = NULL;
419
420 iwl_mvm_reset_phy_ctxts(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100421 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
422 memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained));
423
424 ieee80211_wake_queues(mvm->hw);
425
426 mvm->vif_count = 0;
Emmanuel Grumbach113a0442013-07-02 14:16:38 +0300427 mvm->rx_ba_sessions = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100428}
429
430static int iwl_mvm_mac_start(struct ieee80211_hw *hw)
431{
432 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
433 int ret;
434
435 mutex_lock(&mvm->mutex);
436
437 /* Clean up some internal and mac80211 state on restart */
438 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
439 iwl_mvm_restart_cleanup(mvm);
440
441 ret = iwl_mvm_up(mvm);
442 mutex_unlock(&mvm->mutex);
443
444 return ret;
445}
446
447static void iwl_mvm_mac_restart_complete(struct ieee80211_hw *hw)
448{
449 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
450 int ret;
451
452 mutex_lock(&mvm->mutex);
453
454 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
455 ret = iwl_mvm_update_quotas(mvm, NULL);
456 if (ret)
457 IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n",
458 ret);
459
460 mutex_unlock(&mvm->mutex);
461}
462
463static void iwl_mvm_mac_stop(struct ieee80211_hw *hw)
464{
465 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
466
467 flush_work(&mvm->async_handlers_wk);
468
469 mutex_lock(&mvm->mutex);
470 /* async_handlers_wk is now blocked */
471
472 /*
473 * The work item could be running or queued if the
474 * ROC time event stops just as we get here.
475 */
476 cancel_work_sync(&mvm->roc_done_wk);
477
478 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100479
480 iwl_mvm_async_handlers_purge(mvm);
481 /* async_handlers_list is empty and will stay empty: HW is stopped */
482
483 /* the fw is stopped, the aux sta is dead: clean up driver state */
484 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
485
486 mutex_unlock(&mvm->mutex);
487
488 /*
489 * The worker might have been waiting for the mutex, let it run and
490 * discover that its list is now empty.
491 */
492 cancel_work_sync(&mvm->async_handlers_wk);
493}
494
Johannes Berg8ca151b2013-01-24 14:25:36 +0100495static void iwl_mvm_power_update_iterator(void *data, u8 *mac,
496 struct ieee80211_vif *vif)
497{
498 struct iwl_mvm *mvm = data;
499
500 iwl_mvm_power_update_mode(mvm, vif);
501}
502
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200503static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm)
504{
505 u16 i;
506
507 lockdep_assert_held(&mvm->mutex);
508
509 for (i = 0; i < NUM_PHY_CTX; i++)
510 if (!mvm->phy_ctxts[i].ref)
511 return &mvm->phy_ctxts[i];
512
513 IWL_ERR(mvm, "No available PHY context\n");
514 return NULL;
515}
516
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200517static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
518 s8 tx_power)
519{
520 /* FW is in charge of regulatory enforcement */
521 struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = {
522 .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id,
523 .pwr_restriction = cpu_to_le16(tx_power),
524 };
525
526 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, CMD_SYNC,
527 sizeof(reduce_txpwr_cmd),
528 &reduce_txpwr_cmd);
529}
530
Johannes Berg8ca151b2013-01-24 14:25:36 +0100531static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
532 struct ieee80211_vif *vif)
533{
534 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
535 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
536 int ret;
537
538 /*
539 * Not much to do here. The stack will not allow interface
540 * types or combinations that we didn't advertise, so we
541 * don't really have to check the types.
542 */
543
544 mutex_lock(&mvm->mutex);
545
Eliad Pellere89044d2013-07-16 17:33:26 +0300546 /* Allocate resources for the MAC context, and add it to the fw */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100547 ret = iwl_mvm_mac_ctxt_init(mvm, vif);
548 if (ret)
549 goto out_unlock;
550
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300551 /* Counting number of interfaces is needed for legacy PM */
Ilan Peerea183d02013-07-23 14:41:53 +0300552 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
553 mvm->vif_count++;
Ilan Peerea183d02013-07-23 14:41:53 +0300554
555 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100556 * The AP binding flow can be done only after the beacon
557 * template is configured (which happens only in the mac80211
558 * start_ap() flow), and adding the broadcast station can happen
559 * only after the binding.
560 * In addition, since modifying the MAC before adding a bcast
561 * station is not allowed by the FW, delay the adding of MAC context to
562 * the point where we can also add the bcast station.
563 * In short: there's not much we can do at this point, other than
564 * allocating resources :)
565 */
Johannes Berg5023d962013-07-31 14:07:43 +0200566 if (vif->type == NL80211_IFTYPE_AP ||
567 vif->type == NL80211_IFTYPE_ADHOC) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100568 u32 qmask = iwl_mvm_mac_get_queues_mask(mvm, vif);
569 ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta,
570 qmask);
571 if (ret) {
572 IWL_ERR(mvm, "Failed to allocate bcast sta\n");
573 goto out_release;
574 }
575
Emmanuel Grumbach77740cb2013-06-26 23:51:41 +0300576 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100577 goto out_unlock;
578 }
579
Johannes Berg8ca151b2013-01-24 14:25:36 +0100580 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
581 if (ret)
582 goto out_release;
583
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300584 iwl_mvm_power_disable(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100585
Hila Gonen7df15b12012-12-12 11:16:19 +0200586 /* beacon filtering */
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300587 ret = iwl_mvm_disable_beacon_filter(mvm, vif);
588 if (ret)
589 goto out_remove_mac;
590
Hila Gonen7df15b12012-12-12 11:16:19 +0200591 if (!mvm->bf_allowed_vif &&
Hila Gonen5dca7c22013-07-16 11:15:35 +0300592 vif->type == NL80211_IFTYPE_STATION && !vif->p2p &&
593 mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BF_UPDATED){
Hila Gonen7df15b12012-12-12 11:16:19 +0200594 mvm->bf_allowed_vif = mvmvif;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300595 vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
596 IEEE80211_VIF_SUPPORTS_CQM_RSSI;
Hila Gonen7df15b12012-12-12 11:16:19 +0200597 }
598
Johannes Berg8ca151b2013-01-24 14:25:36 +0100599 /*
600 * P2P_DEVICE interface does not have a channel context assigned to it,
601 * so a dedicated PHY context is allocated to it and the corresponding
602 * MAC context is bound to it at this stage.
603 */
604 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100605
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200606 mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
607 if (!mvmvif->phy_ctxt) {
608 ret = -ENOSPC;
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300609 goto out_free_bf;
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200610 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100611
Ilan Peer53a9d612013-04-28 11:55:08 +0300612 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100613 ret = iwl_mvm_binding_add_vif(mvm, vif);
614 if (ret)
Ilan Peer53a9d612013-04-28 11:55:08 +0300615 goto out_unref_phy;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100616
617 ret = iwl_mvm_add_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
618 if (ret)
619 goto out_unbind;
620
621 /* Save a pointer to p2p device vif, so it can later be used to
622 * update the p2p device MAC when a GO is started/stopped */
623 mvm->p2p_device_vif = vif;
624 }
625
Johannes Berg63494372013-03-26 10:47:53 +0100626 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100627 goto out_unlock;
628
629 out_unbind:
630 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peer53a9d612013-04-28 11:55:08 +0300631 out_unref_phy:
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200632 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300633 out_free_bf:
634 if (mvm->bf_allowed_vif == mvmvif) {
635 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300636 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
637 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300638 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100639 out_remove_mac:
640 mvmvif->phy_ctxt = NULL;
641 iwl_mvm_mac_ctxt_remove(mvm, vif);
642 out_release:
Alexander Bondar5ee2b212013-03-05 10:16:40 +0200643 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
644 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300645
646 /* TODO: remove this when legacy PM will be discarded */
Alexander Bondar4bf881f2013-05-29 10:19:50 +0300647 ieee80211_iterate_active_interfaces(
648 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
649 iwl_mvm_power_update_iterator, mvm);
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300650
Johannes Berg8ca151b2013-01-24 14:25:36 +0100651 iwl_mvm_mac_ctxt_release(mvm, vif);
652 out_unlock:
653 mutex_unlock(&mvm->mutex);
654
655 return ret;
656}
657
Johannes Berg38a12b52013-02-22 14:07:56 +0100658static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm,
659 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100660{
Johannes Berg8ca151b2013-01-24 14:25:36 +0100661 u32 tfd_msk = 0, ac;
662
663 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
664 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
665 tfd_msk |= BIT(vif->hw_queue[ac]);
666
667 if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE)
668 tfd_msk |= BIT(vif->cab_queue);
669
670 if (tfd_msk) {
671 mutex_lock(&mvm->mutex);
672 iwl_mvm_flush_tx_path(mvm, tfd_msk, true);
673 mutex_unlock(&mvm->mutex);
674 }
675
676 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
677 /*
678 * Flush the ROC worker which will flush the OFFCHANNEL queue.
679 * We assume here that all the packets sent to the OFFCHANNEL
680 * queue are sent in ROC session.
681 */
682 flush_work(&mvm->roc_done_wk);
683 } else {
684 /*
685 * By now, all the AC queues are empty. The AGG queues are
686 * empty too. We already got all the Tx responses for all the
687 * packets in the queues. The drain work can have been
Emmanuel Grumbach0742a752013-06-10 14:10:33 +0300688 * triggered. Flush it.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100689 */
690 flush_work(&mvm->sta_drained_wk);
691 }
Johannes Berg38a12b52013-02-22 14:07:56 +0100692}
693
694static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw,
695 struct ieee80211_vif *vif)
696{
697 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
698 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
699
700 iwl_mvm_prepare_mac_removal(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100701
702 mutex_lock(&mvm->mutex);
703
Hila Gonen7df15b12012-12-12 11:16:19 +0200704 if (mvm->bf_allowed_vif == mvmvif) {
705 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300706 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
707 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Hila Gonen7df15b12012-12-12 11:16:19 +0200708 }
709
Johannes Berg63494372013-03-26 10:47:53 +0100710 iwl_mvm_vif_dbgfs_clean(mvm, vif);
711
Johannes Berg8ca151b2013-01-24 14:25:36 +0100712 /*
713 * For AP/GO interface, the tear down of the resources allocated to the
Johannes Berg38a12b52013-02-22 14:07:56 +0100714 * interface is be handled as part of the stop_ap flow.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100715 */
Johannes Berg5023d962013-07-31 14:07:43 +0200716 if (vif->type == NL80211_IFTYPE_AP ||
717 vif->type == NL80211_IFTYPE_ADHOC) {
David Spinadel507cadf2013-07-31 18:07:21 +0300718#ifdef CONFIG_NL80211_TESTMODE
719 if (vif == mvm->noa_vif) {
720 mvm->noa_vif = NULL;
721 mvm->noa_duration = 0;
722 }
723#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100724 iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta);
725 goto out_release;
726 }
727
728 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
729 mvm->p2p_device_vif = NULL;
730 iwl_mvm_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
731 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200732 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100733 mvmvif->phy_ctxt = NULL;
734 }
735
Alexander Bondar5ee2b212013-03-05 10:16:40 +0200736 if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100737 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300738
739 /* TODO: remove this when legacy PM will be discarded */
740 ieee80211_iterate_active_interfaces(
741 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
742 iwl_mvm_power_update_iterator, mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100743
744 iwl_mvm_mac_ctxt_remove(mvm, vif);
745
746out_release:
747 iwl_mvm_mac_ctxt_release(mvm, vif);
748 mutex_unlock(&mvm->mutex);
749}
750
751static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed)
752{
753 return 0;
754}
755
Eliad Pellere59647e2013-11-28 14:08:50 +0200756struct iwl_mvm_mc_iter_data {
757 struct iwl_mvm *mvm;
758 int port_id;
759};
760
761static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac,
762 struct ieee80211_vif *vif)
763{
764 struct iwl_mvm_mc_iter_data *data = _data;
765 struct iwl_mvm *mvm = data->mvm;
766 struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd;
767 int ret, len;
768
769 /* if we don't have free ports, mcast frames will be dropped */
770 if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM))
771 return;
772
773 if (vif->type != NL80211_IFTYPE_STATION ||
774 !vif->bss_conf.assoc)
775 return;
776
777 cmd->port_id = data->port_id++;
778 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
779 len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4);
780
781 ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_SYNC, len, cmd);
782 if (ret)
783 IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret);
784}
785
786static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm)
787{
788 struct iwl_mvm_mc_iter_data iter_data = {
789 .mvm = mvm,
790 };
791
792 lockdep_assert_held(&mvm->mutex);
793
794 if (WARN_ON_ONCE(!mvm->mcast_filter_cmd))
795 return;
796
797 ieee80211_iterate_active_interfaces(
798 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
799 iwl_mvm_mc_iface_iterator, &iter_data);
800}
801
802static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw,
803 struct netdev_hw_addr_list *mc_list)
804{
805 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
806 struct iwl_mcast_filter_cmd *cmd;
807 struct netdev_hw_addr *addr;
808 int addr_count = netdev_hw_addr_list_count(mc_list);
809 bool pass_all = false;
810 int len;
811
812 if (addr_count > MAX_MCAST_FILTERING_ADDRESSES) {
813 pass_all = true;
814 addr_count = 0;
815 }
816
817 len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4);
818 cmd = kzalloc(len, GFP_ATOMIC);
819 if (!cmd)
820 return 0;
821
822 if (pass_all) {
823 cmd->pass_all = 1;
824 return (u64)(unsigned long)cmd;
825 }
826
827 netdev_hw_addr_list_for_each(addr, mc_list) {
828 IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n",
829 cmd->count, addr->addr);
830 memcpy(&cmd->addr_list[cmd->count * ETH_ALEN],
831 addr->addr, ETH_ALEN);
832 cmd->count++;
833 }
834
835 return (u64)(unsigned long)cmd;
836}
837
Johannes Berg8ca151b2013-01-24 14:25:36 +0100838static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
839 unsigned int changed_flags,
840 unsigned int *total_flags,
841 u64 multicast)
842{
Eliad Pellere59647e2013-11-28 14:08:50 +0200843 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
844 struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast;
845
846 mutex_lock(&mvm->mutex);
847
848 /* replace previous configuration */
849 kfree(mvm->mcast_filter_cmd);
850 mvm->mcast_filter_cmd = cmd;
851
852 if (!cmd)
853 goto out;
854
855 iwl_mvm_recalc_multicast(mvm);
856out:
857 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100858 *total_flags = 0;
859}
860
861static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
862 struct ieee80211_vif *vif,
863 struct ieee80211_bss_conf *bss_conf,
864 u32 changes)
865{
866 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
867 int ret;
868
869 ret = iwl_mvm_mac_ctxt_changed(mvm, vif);
870 if (ret)
871 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
872
873 if (changes & BSS_CHANGED_ASSOC) {
874 if (bss_conf->assoc) {
875 /* add quota for this interface */
876 ret = iwl_mvm_update_quotas(mvm, vif);
877 if (ret) {
878 IWL_ERR(mvm, "failed to update quotas\n");
879 return;
880 }
Johannes Berg016d27e2013-05-03 11:16:15 +0200881
882 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
883 &mvm->status)) {
884 /*
885 * If we're restarting then the firmware will
886 * obviously have lost synchronisation with
887 * the AP. It will attempt to synchronise by
888 * itself, but we can make it more reliable by
889 * scheduling a session protection time event.
890 *
891 * The firmware needs to receive a beacon to
892 * catch up with synchronisation, use 110% of
893 * the beacon interval.
894 *
895 * Set a large maximum delay to allow for more
896 * than a single interface.
897 */
898 u32 dur = (11 * vif->bss_conf.beacon_int) / 10;
899 iwl_mvm_protect_session(mvm, vif, dur, dur,
900 5 * dur);
901 }
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +0200902
903 iwl_mvm_sf_update(mvm, vif, false);
Alexander Bondar175a70b2013-04-14 20:59:37 +0300904 iwl_mvm_power_vif_assoc(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100905 } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +0200906 /*
907 * If update fails - SF might be running in associated
908 * mode while disassociated - which is forbidden.
909 */
910 WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false),
911 "Failed to update SF upon disassociation\n");
912
Johannes Berg8ca151b2013-01-24 14:25:36 +0100913 /* remove AP station now that the MAC is unassoc */
914 ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id);
915 if (ret)
916 IWL_ERR(mvm, "failed to remove AP station\n");
917 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
918 /* remove quota for this interface */
919 ret = iwl_mvm_update_quotas(mvm, NULL);
920 if (ret)
921 IWL_ERR(mvm, "failed to update quotas\n");
922 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300923
Eliad Pellere59647e2013-11-28 14:08:50 +0200924 iwl_mvm_recalc_multicast(mvm);
925
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300926 /* reset rssi values */
927 mvmvif->bf_data.ave_beacon_signal = 0;
928
Alexander Bondare8e626a2013-10-16 00:21:34 +0200929 if (!(mvm->fw->ucode_capa.flags &
930 IWL_UCODE_TLV_FLAGS_PM_CMD_SUPPORT)) {
Alexander Bondare811ada2013-03-10 15:29:44 +0200931 /* Workaround for FW bug, otherwise FW disables device
932 * power save upon disassociation
933 */
934 ret = iwl_mvm_power_update_mode(mvm, vif);
935 if (ret)
936 IWL_ERR(mvm, "failed to update power mode\n");
937 }
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +0300938 iwl_mvm_bt_coex_vif_change(mvm);
Alexander Bondar989c6502013-05-16 17:34:17 +0300939 } else if (changes & BSS_CHANGED_BEACON_INFO) {
Johannes Berg210a5442013-01-24 23:48:23 +0100940 /*
941 * We received a beacon _after_ association so
942 * remove the session protection.
943 */
944 iwl_mvm_remove_time_event(mvm, mvmvif,
945 &mvmvif->time_event_data);
Alexander Bondar51498cf2013-09-02 17:10:14 +0300946 } else if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS |
947 BSS_CHANGED_QOS)) {
Alexander Bondar4bf881f2013-05-29 10:19:50 +0300948 ret = iwl_mvm_power_update_mode(mvm, vif);
949 if (ret)
950 IWL_ERR(mvm, "failed to update power mode\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100951 }
Matti Gottlieb88f2fd72013-07-09 15:25:46 +0300952 if (changes & BSS_CHANGED_TXPOWER) {
953 IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
954 bss_conf->txpower);
955 iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
956 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300957
958 if (changes & BSS_CHANGED_CQM) {
959 IWL_DEBUG_MAC80211(mvm, "cqm info_changed");
960 /* reset cqm events tracking */
961 mvmvif->bf_data.last_cqm_event = 0;
962 ret = iwl_mvm_update_beacon_filter(mvm, vif);
963 if (ret)
964 IWL_ERR(mvm, "failed to update CQM thresholds\n");
965 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100966}
967
Johannes Berg5023d962013-07-31 14:07:43 +0200968static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
969 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100970{
971 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
972 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
973 int ret;
974
975 mutex_lock(&mvm->mutex);
976
977 /* Send the beacon template */
978 ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif);
979 if (ret)
980 goto out_unlock;
981
982 /* Add the mac context */
983 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
984 if (ret)
985 goto out_unlock;
986
987 /* Perform the binding */
988 ret = iwl_mvm_binding_add_vif(mvm, vif);
989 if (ret)
990 goto out_remove;
991
Johannes Berg5023d962013-07-31 14:07:43 +0200992 mvmvif->ap_ibss_active = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100993
994 /* Send the bcast station. At this stage the TBTT and DTIM time events
995 * are added and applied to the scheduler */
996 ret = iwl_mvm_send_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
997 if (ret)
998 goto out_unbind;
999
1000 ret = iwl_mvm_update_quotas(mvm, vif);
1001 if (ret)
1002 goto out_rm_bcast;
1003
Johannes Berg5023d962013-07-31 14:07:43 +02001004 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001005 if (vif->p2p && mvm->p2p_device_vif)
1006 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif);
1007
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001008 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001009
Johannes Berg8ca151b2013-01-24 14:25:36 +01001010 mutex_unlock(&mvm->mutex);
1011 return 0;
1012
1013out_rm_bcast:
1014 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1015out_unbind:
1016 iwl_mvm_binding_remove_vif(mvm, vif);
1017out_remove:
1018 iwl_mvm_mac_ctxt_remove(mvm, vif);
1019out_unlock:
1020 mutex_unlock(&mvm->mutex);
1021 return ret;
1022}
1023
Johannes Berg5023d962013-07-31 14:07:43 +02001024static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
1025 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001026{
1027 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1028 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1029
Johannes Berg38a12b52013-02-22 14:07:56 +01001030 iwl_mvm_prepare_mac_removal(mvm, vif);
1031
Johannes Berg8ca151b2013-01-24 14:25:36 +01001032 mutex_lock(&mvm->mutex);
1033
Johannes Berg5023d962013-07-31 14:07:43 +02001034 mvmvif->ap_ibss_active = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001035
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001036 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001037
Johannes Berg5023d962013-07-31 14:07:43 +02001038 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001039 if (vif->p2p && mvm->p2p_device_vif)
1040 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif);
1041
1042 iwl_mvm_update_quotas(mvm, NULL);
1043 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1044 iwl_mvm_binding_remove_vif(mvm, vif);
1045 iwl_mvm_mac_ctxt_remove(mvm, vif);
1046
1047 mutex_unlock(&mvm->mutex);
1048}
1049
Johannes Berg5023d962013-07-31 14:07:43 +02001050static void
1051iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm,
1052 struct ieee80211_vif *vif,
1053 struct ieee80211_bss_conf *bss_conf,
1054 u32 changes)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001055{
Ilan Peerbe2056f2013-12-04 16:47:14 +02001056 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Avri Altman8a5e3662013-11-12 19:16:03 +02001057 enum ieee80211_bss_change ht_change = BSS_CHANGED_ERP_CTS_PROT |
1058 BSS_CHANGED_HT |
1059 BSS_CHANGED_BANDWIDTH;
1060 int ret;
1061
Ilan Peerbe2056f2013-12-04 16:47:14 +02001062 /* Changes will be applied when the AP/IBSS is started */
1063 if (!mvmvif->ap_ibss_active)
1064 return;
1065
Avri Altman8a5e3662013-11-12 19:16:03 +02001066 if (changes & ht_change) {
1067 ret = iwl_mvm_mac_ctxt_changed(mvm, vif);
1068 if (ret)
1069 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
1070 }
1071
Johannes Berg8ca151b2013-01-24 14:25:36 +01001072 /* Need to send a new beacon template to the FW */
1073 if (changes & BSS_CHANGED_BEACON) {
1074 if (iwl_mvm_mac_ctxt_beacon_changed(mvm, vif))
1075 IWL_WARN(mvm, "Failed updating beacon data\n");
1076 }
1077}
1078
1079static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw,
1080 struct ieee80211_vif *vif,
1081 struct ieee80211_bss_conf *bss_conf,
1082 u32 changes)
1083{
1084 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1085
1086 mutex_lock(&mvm->mutex);
1087
1088 switch (vif->type) {
1089 case NL80211_IFTYPE_STATION:
1090 iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes);
1091 break;
1092 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02001093 case NL80211_IFTYPE_ADHOC:
1094 iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001095 break;
1096 default:
1097 /* shouldn't happen */
1098 WARN_ON_ONCE(1);
1099 }
1100
1101 mutex_unlock(&mvm->mutex);
1102}
1103
1104static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw,
1105 struct ieee80211_vif *vif,
1106 struct cfg80211_scan_request *req)
1107{
1108 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1109 int ret;
1110
1111 if (req->n_channels == 0 || req->n_channels > MAX_NUM_SCAN_CHANNELS)
1112 return -EINVAL;
1113
1114 mutex_lock(&mvm->mutex);
1115
1116 if (mvm->scan_status == IWL_MVM_SCAN_NONE)
1117 ret = iwl_mvm_scan_request(mvm, vif, req);
1118 else
1119 ret = -EBUSY;
1120
1121 mutex_unlock(&mvm->mutex);
1122
1123 return ret;
1124}
1125
1126static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw,
1127 struct ieee80211_vif *vif)
1128{
1129 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1130
1131 mutex_lock(&mvm->mutex);
1132
1133 iwl_mvm_cancel_scan(mvm);
1134
1135 mutex_unlock(&mvm->mutex);
1136}
1137
1138static void
1139iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw,
1140 struct ieee80211_sta *sta, u16 tid,
1141 int num_frames,
1142 enum ieee80211_frame_release_type reason,
1143 bool more_data)
1144{
1145 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001146
1147 /* TODO: how do we tell the fw to send frames for a specific TID */
1148
1149 /*
1150 * The fw will send EOSP notification when the last frame will be
1151 * transmitted.
1152 */
Johannes Berg9cc40712013-02-15 22:47:48 +01001153 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001154}
1155
1156static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
1157 struct ieee80211_vif *vif,
1158 enum sta_notify_cmd cmd,
1159 struct ieee80211_sta *sta)
1160{
1161 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg5b577a92013-11-14 18:20:04 +01001162 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001163
1164 switch (cmd) {
1165 case STA_NOTIFY_SLEEP:
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001166 if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001167 ieee80211_sta_block_awake(hw, sta, true);
1168 /*
1169 * The fw updates the STA to be asleep. Tx packets on the Tx
1170 * queues to this station will not be transmitted. The fw will
1171 * send a Tx response with TX_STATUS_FAIL_DEST_PS.
1172 */
1173 break;
1174 case STA_NOTIFY_AWAKE:
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02001175 if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001176 break;
Johannes Berg9cc40712013-02-15 22:47:48 +01001177 iwl_mvm_sta_modify_ps_wake(mvm, sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001178 break;
1179 default:
1180 break;
1181 }
1182}
1183
1184static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
1185 struct ieee80211_vif *vif,
1186 struct ieee80211_sta *sta,
1187 enum ieee80211_sta_state old_state,
1188 enum ieee80211_sta_state new_state)
1189{
1190 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1191 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1192 int ret;
1193
1194 IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n",
1195 sta->addr, old_state, new_state);
1196
1197 /* this would be a mac80211 bug ... but don't crash */
1198 if (WARN_ON_ONCE(!mvmvif->phy_ctxt))
1199 return -EINVAL;
1200
1201 /* if a STA is being removed, reuse its ID */
1202 flush_work(&mvm->sta_drained_wk);
1203
1204 mutex_lock(&mvm->mutex);
1205 if (old_state == IEEE80211_STA_NOTEXIST &&
1206 new_state == IEEE80211_STA_NONE) {
Johannes Berg48bc1302013-07-04 15:55:29 +02001207 /*
1208 * Firmware bug - it'll crash if the beacon interval is less
1209 * than 16. We can't avoid connecting at all, so refuse the
1210 * station state change, this will cause mac80211 to abandon
1211 * attempts to connect to this AP, and eventually wpa_s will
1212 * blacklist the AP...
1213 */
1214 if (vif->type == NL80211_IFTYPE_STATION &&
1215 vif->bss_conf.beacon_int < 16) {
1216 IWL_ERR(mvm,
1217 "AP %pM beacon interval is %d, refusing due to firmware bug!\n",
1218 sta->addr, vif->bss_conf.beacon_int);
1219 ret = -EINVAL;
1220 goto out_unlock;
1221 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001222 ret = iwl_mvm_add_sta(mvm, vif, sta);
1223 } else if (old_state == IEEE80211_STA_NONE &&
1224 new_state == IEEE80211_STA_AUTH) {
1225 ret = 0;
1226 } else if (old_state == IEEE80211_STA_AUTH &&
1227 new_state == IEEE80211_STA_ASSOC) {
Johannes Berg7a453972013-02-12 13:10:44 +01001228 ret = iwl_mvm_update_sta(mvm, vif, sta);
1229 if (ret == 0)
1230 iwl_mvm_rs_rate_init(mvm, sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +02001231 mvmvif->phy_ctxt->channel->band,
1232 true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001233 } else if (old_state == IEEE80211_STA_ASSOC &&
1234 new_state == IEEE80211_STA_AUTHORIZED) {
Hila Gonen7df15b12012-12-12 11:16:19 +02001235 /* enable beacon filtering */
1236 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001237 ret = 0;
1238 } else if (old_state == IEEE80211_STA_AUTHORIZED &&
1239 new_state == IEEE80211_STA_ASSOC) {
Hila Gonen7df15b12012-12-12 11:16:19 +02001240 /* disable beacon filtering */
1241 WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001242 ret = 0;
1243 } else if (old_state == IEEE80211_STA_ASSOC &&
1244 new_state == IEEE80211_STA_AUTH) {
1245 ret = 0;
1246 } else if (old_state == IEEE80211_STA_AUTH &&
1247 new_state == IEEE80211_STA_NONE) {
1248 ret = 0;
1249 } else if (old_state == IEEE80211_STA_NONE &&
1250 new_state == IEEE80211_STA_NOTEXIST) {
1251 ret = iwl_mvm_rm_sta(mvm, vif, sta);
1252 } else {
1253 ret = -EIO;
1254 }
Johannes Berg48bc1302013-07-04 15:55:29 +02001255 out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001256 mutex_unlock(&mvm->mutex);
1257
1258 return ret;
1259}
1260
1261static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
1262{
1263 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1264
1265 mvm->rts_threshold = value;
1266
1267 return 0;
1268}
1269
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001270static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw,
1271 struct ieee80211_vif *vif,
1272 struct ieee80211_sta *sta, u32 changed)
1273{
1274 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1275
1276 if (vif->type == NL80211_IFTYPE_STATION &&
1277 changed & IEEE80211_RC_NSS_CHANGED)
1278 iwl_mvm_sf_update(mvm, vif, false);
1279}
1280
Johannes Berg8ca151b2013-01-24 14:25:36 +01001281static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw,
1282 struct ieee80211_vif *vif, u16 ac,
1283 const struct ieee80211_tx_queue_params *params)
1284{
1285 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1286 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1287
1288 mvmvif->queue_params[ac] = *params;
1289
1290 /*
1291 * No need to update right away, we'll get BSS_CHANGED_QOS
1292 * The exception is P2P_DEVICE interface which needs immediate update.
1293 */
1294 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1295 int ret;
1296
1297 mutex_lock(&mvm->mutex);
1298 ret = iwl_mvm_mac_ctxt_changed(mvm, vif);
1299 mutex_unlock(&mvm->mutex);
1300 return ret;
1301 }
1302 return 0;
1303}
1304
1305static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw,
1306 struct ieee80211_vif *vif)
1307{
1308 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1309 u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS,
1310 200 + vif->bss_conf.beacon_int);
1311 u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS,
1312 100 + vif->bss_conf.beacon_int);
1313
1314 if (WARN_ON_ONCE(vif->bss_conf.assoc))
1315 return;
1316
1317 mutex_lock(&mvm->mutex);
1318 /* Try really hard to protect the session and hear a beacon */
Johannes Berg016d27e2013-05-03 11:16:15 +02001319 iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001320 mutex_unlock(&mvm->mutex);
1321}
1322
David Spinadel35a000b2013-08-28 09:29:43 +03001323static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw,
1324 struct ieee80211_vif *vif,
1325 struct cfg80211_sched_scan_request *req,
1326 struct ieee80211_sched_scan_ies *ies)
1327{
1328 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1329 int ret;
1330
1331 mutex_lock(&mvm->mutex);
1332
1333 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
1334 IWL_DEBUG_SCAN(mvm,
1335 "SCHED SCAN request during internal scan - abort\n");
1336 ret = -EBUSY;
1337 goto out;
1338 }
1339
1340 mvm->scan_status = IWL_MVM_SCAN_SCHED;
1341
1342 ret = iwl_mvm_config_sched_scan(mvm, vif, req, ies);
1343 if (ret)
1344 goto err;
1345
1346 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
1347 if (ret)
1348 goto err;
1349
1350 ret = iwl_mvm_sched_scan_start(mvm, req);
1351 if (!ret)
1352 goto out;
1353err:
1354 mvm->scan_status = IWL_MVM_SCAN_NONE;
1355out:
1356 mutex_unlock(&mvm->mutex);
1357 return ret;
1358}
1359
1360static void iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw,
1361 struct ieee80211_vif *vif)
1362{
1363 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1364
1365 mutex_lock(&mvm->mutex);
1366 iwl_mvm_sched_scan_stop(mvm);
1367 mutex_unlock(&mvm->mutex);
1368}
1369
Johannes Berg8ca151b2013-01-24 14:25:36 +01001370static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw,
1371 enum set_key_cmd cmd,
1372 struct ieee80211_vif *vif,
1373 struct ieee80211_sta *sta,
1374 struct ieee80211_key_conf *key)
1375{
1376 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1377 int ret;
1378
1379 if (iwlwifi_mod_params.sw_crypto) {
1380 IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n");
1381 return -EOPNOTSUPP;
1382 }
1383
1384 switch (key->cipher) {
1385 case WLAN_CIPHER_SUITE_TKIP:
1386 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
1387 /* fall-through */
1388 case WLAN_CIPHER_SUITE_CCMP:
1389 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
1390 break;
1391 case WLAN_CIPHER_SUITE_AES_CMAC:
1392 WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE));
1393 break;
1394 case WLAN_CIPHER_SUITE_WEP40:
1395 case WLAN_CIPHER_SUITE_WEP104:
1396 /*
1397 * Support for TX only, at least for now, so accept
1398 * the key and do nothing else. Then mac80211 will
1399 * pass it for TX but we don't have to use it for RX.
1400 */
1401 return 0;
1402 default:
Max Stepanove36e5432013-08-27 19:56:13 +03001403 /* currently FW supports only one optional cipher scheme */
1404 if (hw->n_cipher_schemes &&
1405 hw->cipher_schemes->cipher == key->cipher)
1406 key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
1407 else
1408 return -EOPNOTSUPP;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001409 }
1410
1411 mutex_lock(&mvm->mutex);
1412
1413 switch (cmd) {
1414 case SET_KEY:
Johannes Berg5023d962013-07-31 14:07:43 +02001415 if ((vif->type == NL80211_IFTYPE_ADHOC ||
1416 vif->type == NL80211_IFTYPE_AP) && !sta) {
1417 /*
1418 * GTK on AP interface is a TX-only key, return 0;
1419 * on IBSS they're per-station and because we're lazy
1420 * we don't support them for RX, so do the same.
1421 */
Johannes Berg6caffd42013-03-06 13:15:21 +01001422 ret = 0;
1423 key->hw_key_idx = STA_KEY_IDX_INVALID;
1424 break;
1425 }
1426
Johannes Berg8ca151b2013-01-24 14:25:36 +01001427 IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n");
1428 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false);
1429 if (ret) {
1430 IWL_WARN(mvm, "set key failed\n");
1431 /*
1432 * can't add key for RX, but we don't need it
1433 * in the device for TX so still return 0
1434 */
Johannes Berg6caffd42013-03-06 13:15:21 +01001435 key->hw_key_idx = STA_KEY_IDX_INVALID;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001436 ret = 0;
1437 }
1438
1439 break;
1440 case DISABLE_KEY:
Johannes Berg6caffd42013-03-06 13:15:21 +01001441 if (key->hw_key_idx == STA_KEY_IDX_INVALID) {
1442 ret = 0;
1443 break;
1444 }
1445
Johannes Berg8ca151b2013-01-24 14:25:36 +01001446 IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n");
1447 ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key);
1448 break;
1449 default:
1450 ret = -EINVAL;
1451 }
1452
1453 mutex_unlock(&mvm->mutex);
1454 return ret;
1455}
1456
1457static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw,
1458 struct ieee80211_vif *vif,
1459 struct ieee80211_key_conf *keyconf,
1460 struct ieee80211_sta *sta,
1461 u32 iv32, u16 *phase1key)
1462{
1463 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1464
Johannes Berg5023d962013-07-31 14:07:43 +02001465 if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID)
1466 return;
1467
Johannes Berg8ca151b2013-01-24 14:25:36 +01001468 iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key);
1469}
1470
1471
1472static int iwl_mvm_roc(struct ieee80211_hw *hw,
1473 struct ieee80211_vif *vif,
1474 struct ieee80211_channel *channel,
Ilan Peerd339d5c2013-02-12 09:34:13 +02001475 int duration,
1476 enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001477{
1478 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001479 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001480 struct cfg80211_chan_def chandef;
Ilan Peer31d385a2013-04-02 10:25:46 +03001481 struct iwl_mvm_phy_ctxt *phy_ctxt;
1482 int ret, i;
1483
1484 IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value,
1485 duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001486
1487 if (vif->type != NL80211_IFTYPE_P2P_DEVICE) {
1488 IWL_ERR(mvm, "vif isn't a P2P_DEVICE: %d\n", vif->type);
1489 return -EINVAL;
1490 }
1491
Johannes Berg8ca151b2013-01-24 14:25:36 +01001492 mutex_lock(&mvm->mutex);
1493
Ilan Peer31d385a2013-04-02 10:25:46 +03001494 for (i = 0; i < NUM_PHY_CTX; i++) {
1495 phy_ctxt = &mvm->phy_ctxts[i];
1496 if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt)
1497 continue;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001498
Ilan Peer31d385a2013-04-02 10:25:46 +03001499 if (phy_ctxt->ref && channel == phy_ctxt->channel) {
1500 /*
1501 * Unbind the P2P_DEVICE from the current PHY context,
1502 * and if the PHY context is not used remove it.
1503 */
1504 ret = iwl_mvm_binding_remove_vif(mvm, vif);
1505 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
1506 goto out_unlock;
1507
1508 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
1509
1510 /* Bind the P2P_DEVICE to the current PHY Context */
1511 mvmvif->phy_ctxt = phy_ctxt;
1512
1513 ret = iwl_mvm_binding_add_vif(mvm, vif);
1514 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
1515 goto out_unlock;
1516
1517 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
1518 goto schedule_time_event;
1519 }
1520 }
1521
1522 /* Need to update the PHY context only if the ROC channel changed */
1523 if (channel == mvmvif->phy_ctxt->channel)
1524 goto schedule_time_event;
1525
1526 cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT);
1527
1528 /*
1529 * Change the PHY context configuration as it is currently referenced
1530 * only by the P2P Device MAC
1531 */
1532 if (mvmvif->phy_ctxt->ref == 1) {
1533 ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt,
1534 &chandef, 1, 1);
1535 if (ret)
1536 goto out_unlock;
1537 } else {
1538 /*
1539 * The PHY context is shared with other MACs. Need to remove the
1540 * P2P Device from the binding, allocate an new PHY context and
1541 * create a new binding
1542 */
1543 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1544 if (!phy_ctxt) {
1545 ret = -ENOSPC;
1546 goto out_unlock;
1547 }
1548
1549 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef,
1550 1, 1);
1551 if (ret) {
1552 IWL_ERR(mvm, "Failed to change PHY context\n");
1553 goto out_unlock;
1554 }
1555
1556 /* Unbind the P2P_DEVICE from the current PHY context */
1557 ret = iwl_mvm_binding_remove_vif(mvm, vif);
1558 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
1559 goto out_unlock;
1560
1561 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
1562
1563 /* Bind the P2P_DEVICE to the new allocated PHY context */
1564 mvmvif->phy_ctxt = phy_ctxt;
1565
1566 ret = iwl_mvm_binding_add_vif(mvm, vif);
1567 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
1568 goto out_unlock;
1569
1570 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
1571 }
1572
1573schedule_time_event:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001574 /* Schedule the time events */
Ilan Peere635c792013-02-13 11:05:18 +02001575 ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001576
Ilan Peer31d385a2013-04-02 10:25:46 +03001577out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001578 mutex_unlock(&mvm->mutex);
1579 IWL_DEBUG_MAC80211(mvm, "leave\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001580 return ret;
1581}
1582
1583static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw)
1584{
1585 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1586
1587 IWL_DEBUG_MAC80211(mvm, "enter\n");
1588
1589 mutex_lock(&mvm->mutex);
1590 iwl_mvm_stop_p2p_roc(mvm);
1591 mutex_unlock(&mvm->mutex);
1592
1593 IWL_DEBUG_MAC80211(mvm, "leave\n");
1594 return 0;
1595}
1596
1597static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw,
1598 struct ieee80211_chanctx_conf *ctx)
1599{
1600 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001601 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
1602 struct iwl_mvm_phy_ctxt *phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001603 int ret;
1604
Ilan Peer53a9d612013-04-28 11:55:08 +03001605 IWL_DEBUG_MAC80211(mvm, "Add channel context\n");
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001606
1607 mutex_lock(&mvm->mutex);
1608 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1609 if (!phy_ctxt) {
1610 ret = -ENOSPC;
1611 goto out;
1612 }
1613
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02001614 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Ilan Peer53a9d612013-04-28 11:55:08 +03001615 ctx->rx_chains_static,
1616 ctx->rx_chains_dynamic);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001617 if (ret) {
1618 IWL_ERR(mvm, "Failed to add PHY context\n");
1619 goto out;
1620 }
1621
Ilan Peer53a9d612013-04-28 11:55:08 +03001622 iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001623 *phy_ctxt_id = phy_ctxt->id;
1624out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001625 mutex_unlock(&mvm->mutex);
1626 return ret;
1627}
1628
1629static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw,
1630 struct ieee80211_chanctx_conf *ctx)
1631{
1632 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001633 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
1634 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001635
1636 mutex_lock(&mvm->mutex);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001637 iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001638 mutex_unlock(&mvm->mutex);
1639}
1640
1641static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw,
1642 struct ieee80211_chanctx_conf *ctx,
1643 u32 changed)
1644{
1645 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001646 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
1647 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001648
Ilan Peer31d385a2013-04-02 10:25:46 +03001649 if (WARN_ONCE((phy_ctxt->ref > 1) &&
1650 (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH |
1651 IEEE80211_CHANCTX_CHANGE_RX_CHAINS |
1652 IEEE80211_CHANCTX_CHANGE_RADAR)),
1653 "Cannot change PHY. Ref=%d, changed=0x%X\n",
1654 phy_ctxt->ref, changed))
1655 return;
1656
Johannes Berg8ca151b2013-01-24 14:25:36 +01001657 mutex_lock(&mvm->mutex);
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02001658 iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001659 ctx->rx_chains_static,
1660 ctx->rx_chains_dynamic);
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001661 iwl_mvm_bt_coex_vif_change(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001662 mutex_unlock(&mvm->mutex);
1663}
1664
1665static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw,
1666 struct ieee80211_vif *vif,
1667 struct ieee80211_chanctx_conf *ctx)
1668{
1669 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001670 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
1671 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01001672 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1673 int ret;
1674
1675 mutex_lock(&mvm->mutex);
1676
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001677 mvmvif->phy_ctxt = phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001678
1679 switch (vif->type) {
1680 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02001681 case NL80211_IFTYPE_ADHOC:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001682 /*
1683 * The AP binding flow is handled as part of the start_ap flow
Johannes Berg5023d962013-07-31 14:07:43 +02001684 * (in bss_info_changed), similarly for IBSS.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001685 */
1686 ret = 0;
1687 goto out_unlock;
1688 case NL80211_IFTYPE_STATION:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001689 case NL80211_IFTYPE_MONITOR:
1690 break;
1691 default:
1692 ret = -EINVAL;
1693 goto out_unlock;
1694 }
1695
1696 ret = iwl_mvm_binding_add_vif(mvm, vif);
1697 if (ret)
1698 goto out_unlock;
1699
1700 /*
Alexander Bondar92d85562013-10-23 11:50:34 +02001701 * Power state must be updated before quotas,
1702 * otherwise fw will complain.
1703 */
1704 mvm->bound_vif_cnt++;
1705 iwl_mvm_power_update_binding(mvm, vif, true);
1706
1707 /* Setting the quota at this stage is only required for monitor
Johannes Berg8ca151b2013-01-24 14:25:36 +01001708 * interfaces. For the other types, the bss_info changed flow
1709 * will handle quota settings.
1710 */
1711 if (vif->type == NL80211_IFTYPE_MONITOR) {
Ilan Peer1e1391c2013-03-13 14:52:04 +02001712 mvmvif->monitor_active = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001713 ret = iwl_mvm_update_quotas(mvm, vif);
1714 if (ret)
1715 goto out_remove_binding;
1716 }
1717
1718 goto out_unlock;
1719
1720 out_remove_binding:
1721 iwl_mvm_binding_remove_vif(mvm, vif);
Alexander Bondar92d85562013-10-23 11:50:34 +02001722 mvm->bound_vif_cnt--;
1723 iwl_mvm_power_update_binding(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001724 out_unlock:
1725 mutex_unlock(&mvm->mutex);
1726 if (ret)
1727 mvmvif->phy_ctxt = NULL;
1728 return ret;
1729}
1730
1731static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw,
1732 struct ieee80211_vif *vif,
1733 struct ieee80211_chanctx_conf *ctx)
1734{
1735 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1736 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1737
1738 mutex_lock(&mvm->mutex);
1739
1740 iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data);
1741
Johannes Berg8ca151b2013-01-24 14:25:36 +01001742 switch (vif->type) {
Johannes Berg5023d962013-07-31 14:07:43 +02001743 case NL80211_IFTYPE_AP:
1744 case NL80211_IFTYPE_ADHOC:
1745 goto out_unlock;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001746 case NL80211_IFTYPE_MONITOR:
Ilan Peer1e1391c2013-03-13 14:52:04 +02001747 mvmvif->monitor_active = false;
1748 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001749 break;
1750 default:
1751 break;
1752 }
1753
Ilan Peer1e1391c2013-03-13 14:52:04 +02001754 iwl_mvm_binding_remove_vif(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001755out_unlock:
1756 mvmvif->phy_ctxt = NULL;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001757 mvm->bound_vif_cnt--;
Alexander Bondar92d85562013-10-23 11:50:34 +02001758 iwl_mvm_power_update_binding(mvm, vif, false);
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001759
Johannes Berg8ca151b2013-01-24 14:25:36 +01001760 mutex_unlock(&mvm->mutex);
1761}
1762
1763static int iwl_mvm_set_tim(struct ieee80211_hw *hw,
1764 struct ieee80211_sta *sta,
1765 bool set)
1766{
1767 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1768 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
1769
1770 if (!mvm_sta || !mvm_sta->vif) {
1771 IWL_ERR(mvm, "Station is not associated to a vif\n");
1772 return -EINVAL;
1773 }
1774
1775 return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif);
1776}
1777
David Spinadel507cadf2013-07-31 18:07:21 +03001778#ifdef CONFIG_NL80211_TESTMODE
1779static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = {
1780 [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 },
1781 [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 },
Johannes Bergf6c6ad42013-08-01 14:17:15 +02001782 [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 },
David Spinadel507cadf2013-07-31 18:07:21 +03001783};
1784
1785static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm,
1786 struct ieee80211_vif *vif,
1787 void *data, int len)
1788{
1789 struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1];
1790 int err;
1791 u32 noa_duration;
1792
1793 err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy);
1794 if (err)
1795 return err;
1796
1797 if (!tb[IWL_MVM_TM_ATTR_CMD])
1798 return -EINVAL;
1799
1800 switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) {
1801 case IWL_MVM_TM_CMD_SET_NOA:
1802 if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p ||
1803 !vif->bss_conf.enable_beacon ||
1804 !tb[IWL_MVM_TM_ATTR_NOA_DURATION])
1805 return -EINVAL;
1806
1807 noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]);
1808 if (noa_duration >= vif->bss_conf.beacon_int)
1809 return -EINVAL;
1810
1811 mvm->noa_duration = noa_duration;
1812 mvm->noa_vif = vif;
1813
1814 return iwl_mvm_update_quotas(mvm, NULL);
Johannes Bergf6c6ad42013-08-01 14:17:15 +02001815 case IWL_MVM_TM_CMD_SET_BEACON_FILTER:
1816 /* must be associated client vif - ignore authorized */
1817 if (!vif || vif->type != NL80211_IFTYPE_STATION ||
1818 !vif->bss_conf.assoc || !vif->bss_conf.dtim_period ||
1819 !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])
1820 return -EINVAL;
1821
1822 if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]))
1823 return iwl_mvm_enable_beacon_filter(mvm, vif);
1824 return iwl_mvm_disable_beacon_filter(mvm, vif);
David Spinadel507cadf2013-07-31 18:07:21 +03001825 }
1826
1827 return -EOPNOTSUPP;
1828}
1829
1830static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw,
1831 struct ieee80211_vif *vif,
1832 void *data, int len)
1833{
1834 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1835 int err;
1836
1837 mutex_lock(&mvm->mutex);
1838 err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len);
1839 mutex_unlock(&mvm->mutex);
1840
1841 return err;
1842}
1843#endif
1844
Johannes Berg8ca151b2013-01-24 14:25:36 +01001845struct ieee80211_ops iwl_mvm_hw_ops = {
1846 .tx = iwl_mvm_mac_tx,
1847 .ampdu_action = iwl_mvm_mac_ampdu_action,
1848 .start = iwl_mvm_mac_start,
1849 .restart_complete = iwl_mvm_mac_restart_complete,
1850 .stop = iwl_mvm_mac_stop,
1851 .add_interface = iwl_mvm_mac_add_interface,
1852 .remove_interface = iwl_mvm_mac_remove_interface,
1853 .config = iwl_mvm_mac_config,
Eliad Pellere59647e2013-11-28 14:08:50 +02001854 .prepare_multicast = iwl_mvm_prepare_multicast,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001855 .configure_filter = iwl_mvm_configure_filter,
1856 .bss_info_changed = iwl_mvm_bss_info_changed,
1857 .hw_scan = iwl_mvm_mac_hw_scan,
1858 .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan,
1859 .sta_state = iwl_mvm_mac_sta_state,
1860 .sta_notify = iwl_mvm_mac_sta_notify,
1861 .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames,
1862 .set_rts_threshold = iwl_mvm_mac_set_rts_threshold,
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001863 .sta_rc_update = iwl_mvm_sta_rc_update,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001864 .conf_tx = iwl_mvm_mac_conf_tx,
1865 .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx,
David Spinadel35a000b2013-08-28 09:29:43 +03001866 .sched_scan_start = iwl_mvm_mac_sched_scan_start,
1867 .sched_scan_stop = iwl_mvm_mac_sched_scan_stop,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001868 .set_key = iwl_mvm_mac_set_key,
1869 .update_tkip_key = iwl_mvm_mac_update_tkip_key,
1870 .remain_on_channel = iwl_mvm_roc,
1871 .cancel_remain_on_channel = iwl_mvm_cancel_roc,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001872 .add_chanctx = iwl_mvm_add_chanctx,
1873 .remove_chanctx = iwl_mvm_remove_chanctx,
1874 .change_chanctx = iwl_mvm_change_chanctx,
1875 .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx,
1876 .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx,
1877
Johannes Berg5023d962013-07-31 14:07:43 +02001878 .start_ap = iwl_mvm_start_ap_ibss,
1879 .stop_ap = iwl_mvm_stop_ap_ibss,
1880 .join_ibss = iwl_mvm_start_ap_ibss,
1881 .leave_ibss = iwl_mvm_stop_ap_ibss,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001882
1883 .set_tim = iwl_mvm_set_tim,
1884
David Spinadel507cadf2013-07-31 18:07:21 +03001885 CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd)
1886
Johannes Berg8ca151b2013-01-24 14:25:36 +01001887#ifdef CONFIG_PM_SLEEP
1888 /* look at d3.c */
1889 .suspend = iwl_mvm_suspend,
1890 .resume = iwl_mvm_resume,
1891 .set_wakeup = iwl_mvm_set_wakeup,
1892 .set_rekey_data = iwl_mvm_set_rekey_data,
1893#if IS_ENABLED(CONFIG_IPV6)
1894 .ipv6_addr_change = iwl_mvm_ipv6_addr_change,
1895#endif
1896 .set_default_unicast_key = iwl_mvm_set_default_unicast_key,
1897#endif
1898};