blob: 0ea0f0a2239a77b933321b64ea5ba7d12bfe4c29 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020035 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
64 *****************************************************************************/
65#include <linux/kernel.h>
66#include <linux/slab.h>
67#include <linux/skbuff.h>
68#include <linux/netdevice.h>
69#include <linux/etherdevice.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010070#include <linux/ip.h>
Eliad Peller2ee8f022014-01-13 19:07:09 +020071#include <linux/if_arp.h>
Johannes Bergaadede62014-10-09 17:01:36 +020072#include <linux/devcoredump.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010073#include <net/mac80211.h>
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +020074#include <net/ieee80211_radiotap.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010075#include <net/tcp.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010076
77#include "iwl-op-mode.h"
78#include "iwl-io.h"
79#include "mvm.h"
80#include "sta.h"
81#include "time-event.h"
82#include "iwl-eeprom-parse.h"
83#include "fw-api-scan.h"
84#include "iwl-phy-db.h"
David Spinadel507cadf2013-07-31 18:07:21 +030085#include "testmode.h"
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +030086#include "iwl-fw-error-dump.h"
87#include "iwl-prph.h"
Eran Harary363039b2014-12-02 15:19:22 +020088#include "iwl-csr.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010089
90static const struct ieee80211_iface_limit iwl_mvm_limits[] = {
91 {
92 .max = 1,
Ilan Peer8eb38712013-06-01 20:17:18 +030093 .types = BIT(NL80211_IFTYPE_STATION),
Johannes Berg8ca151b2013-01-24 14:25:36 +010094 },
Johannes Berg3c15a0f2013-05-31 10:17:19 +020095 {
96 .max = 1,
Ilan Peer8eb38712013-06-01 20:17:18 +030097 .types = BIT(NL80211_IFTYPE_AP) |
98 BIT(NL80211_IFTYPE_P2P_CLIENT) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +020099 BIT(NL80211_IFTYPE_P2P_GO),
100 },
101 {
102 .max = 1,
103 .types = BIT(NL80211_IFTYPE_P2P_DEVICE),
104 },
Johannes Berg8ca151b2013-01-24 14:25:36 +0100105};
106
107static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = {
108 {
Emmanuel Grumbach2624a5c2014-12-16 13:02:03 +0200109 .num_different_channels = 2,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100110 .max_interfaces = 3,
111 .limits = iwl_mvm_limits,
112 .n_limits = ARRAY_SIZE(iwl_mvm_limits),
113 },
114};
115
Johannes Bergf0c26462013-01-22 20:41:58 +0100116#ifdef CONFIG_PM_SLEEP
117static const struct nl80211_wowlan_tcp_data_token_feature
118iwl_mvm_wowlan_tcp_token_feature = {
119 .min_len = 0,
120 .max_len = 255,
121 .bufsize = IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS,
122};
123
124static const struct wiphy_wowlan_tcp_support iwl_mvm_wowlan_tcp_support = {
125 .tok = &iwl_mvm_wowlan_tcp_token_feature,
126 .data_payload_max = IWL_WOWLAN_TCP_MAX_PACKET_LEN -
127 sizeof(struct ethhdr) -
128 sizeof(struct iphdr) -
129 sizeof(struct tcphdr),
130 .data_interval_max = 65535, /* __le16 in API */
131 .wake_payload_max = IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN -
132 sizeof(struct ethhdr) -
133 sizeof(struct iphdr) -
134 sizeof(struct tcphdr),
135 .seq = true,
136};
137#endif
138
Eliad Peller77736922014-01-14 12:35:49 +0200139#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
Eliad Peller2ee8f022014-01-13 19:07:09 +0200140/*
141 * Use the reserved field to indicate magic values.
142 * these values will only be used internally by the driver,
143 * and won't make it to the fw (reserved will be 0).
144 * BC_FILTER_MAGIC_IP - configure the val of this attribute to
145 * be the vif's ip address. in case there is not a single
146 * ip address (0, or more than 1), this attribute will
147 * be skipped.
148 * BC_FILTER_MAGIC_MAC - set the val of this attribute to
149 * the LSB bytes of the vif's mac address
150 */
151enum {
152 BC_FILTER_MAGIC_NONE = 0,
153 BC_FILTER_MAGIC_IP,
154 BC_FILTER_MAGIC_MAC,
155};
156
Eliad Peller77736922014-01-14 12:35:49 +0200157static const struct iwl_fw_bcast_filter iwl_mvm_default_bcast_filters[] = {
158 {
159 /* arp */
160 .discard = 0,
161 .frame_type = BCAST_FILTER_FRAME_TYPE_ALL,
162 .attrs = {
163 {
164 /* frame type - arp, hw type - ethernet */
165 .offset_type =
166 BCAST_FILTER_OFFSET_PAYLOAD_START,
167 .offset = sizeof(rfc1042_header),
168 .val = cpu_to_be32(0x08060001),
169 .mask = cpu_to_be32(0xffffffff),
170 },
Eliad Peller2ee8f022014-01-13 19:07:09 +0200171 {
172 /* arp dest ip */
173 .offset_type =
174 BCAST_FILTER_OFFSET_PAYLOAD_START,
175 .offset = sizeof(rfc1042_header) + 2 +
176 sizeof(struct arphdr) +
177 ETH_ALEN + sizeof(__be32) +
178 ETH_ALEN,
179 .mask = cpu_to_be32(0xffffffff),
180 /* mark it as special field */
181 .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_IP),
182 },
183 },
184 },
185 {
186 /* dhcp offer bcast */
187 .discard = 0,
188 .frame_type = BCAST_FILTER_FRAME_TYPE_IPV4,
189 .attrs = {
190 {
191 /* udp dest port - 68 (bootp client)*/
192 .offset_type = BCAST_FILTER_OFFSET_IP_END,
193 .offset = offsetof(struct udphdr, dest),
194 .val = cpu_to_be32(0x00440000),
195 .mask = cpu_to_be32(0xffff0000),
196 },
197 {
198 /* dhcp - lsb bytes of client hw address */
199 .offset_type = BCAST_FILTER_OFFSET_IP_END,
200 .offset = 38,
201 .mask = cpu_to_be32(0xffffffff),
202 /* mark it as special field */
203 .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_MAC),
204 },
Eliad Peller77736922014-01-14 12:35:49 +0200205 },
206 },
207 /* last filter must be empty */
208 {},
209};
210#endif
211
Eliad Peller7498cf42014-01-16 17:10:44 +0200212void iwl_mvm_ref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
213{
Eliad Peller7bb426e2014-02-24 12:54:37 +0200214 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200215 return;
216
217 IWL_DEBUG_RPM(mvm, "Take mvm reference - type %d\n", ref_type);
Eliad Peller576eeee2014-07-01 18:38:38 +0300218 spin_lock_bh(&mvm->refs_lock);
219 mvm->refs[ref_type]++;
220 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200221 iwl_trans_ref(mvm->trans);
222}
223
224void iwl_mvm_unref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
225{
Eliad Peller7bb426e2014-02-24 12:54:37 +0200226 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200227 return;
228
229 IWL_DEBUG_RPM(mvm, "Leave mvm reference - type %d\n", ref_type);
Eliad Peller576eeee2014-07-01 18:38:38 +0300230 spin_lock_bh(&mvm->refs_lock);
231 WARN_ON(!mvm->refs[ref_type]--);
232 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200233 iwl_trans_unref(mvm->trans);
234}
235
Eliad Peller576eeee2014-07-01 18:38:38 +0300236static void iwl_mvm_unref_all_except(struct iwl_mvm *mvm,
237 enum iwl_mvm_ref_type except_ref)
Eliad Peller7498cf42014-01-16 17:10:44 +0200238{
Eliad Peller576eeee2014-07-01 18:38:38 +0300239 int i, j;
Eliad Peller7498cf42014-01-16 17:10:44 +0200240
Eliad Peller7bb426e2014-02-24 12:54:37 +0200241 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200242 return;
243
Eliad Peller576eeee2014-07-01 18:38:38 +0300244 spin_lock_bh(&mvm->refs_lock);
245 for (i = 0; i < IWL_MVM_REF_COUNT; i++) {
246 if (except_ref == i || !mvm->refs[i])
Eliad Peller7498cf42014-01-16 17:10:44 +0200247 continue;
248
Eliad Peller576eeee2014-07-01 18:38:38 +0300249 IWL_DEBUG_RPM(mvm, "Cleanup: remove mvm ref type %d (%d)\n",
250 i, mvm->refs[i]);
251 for (j = 0; j < mvm->refs[i]; j++)
252 iwl_trans_unref(mvm->trans);
253 mvm->refs[i] = 0;
Eliad Peller7498cf42014-01-16 17:10:44 +0200254 }
Eliad Peller576eeee2014-07-01 18:38:38 +0300255 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200256}
257
Eliad Pellerf4cf8682014-11-04 16:57:06 +0200258bool iwl_mvm_ref_taken(struct iwl_mvm *mvm)
259{
260 int i;
261 bool taken = false;
262
263 if (!iwl_mvm_is_d0i3_supported(mvm))
264 return true;
265
266 spin_lock_bh(&mvm->refs_lock);
267 for (i = 0; i < IWL_MVM_REF_COUNT; i++) {
268 if (mvm->refs[i]) {
269 taken = true;
270 break;
271 }
272 }
273 spin_unlock_bh(&mvm->refs_lock);
274
275 return taken;
276}
277
Eliad Peller576eeee2014-07-01 18:38:38 +0300278int iwl_mvm_ref_sync(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
Gregory Greenmand40fc482014-06-25 14:08:50 +0200279{
280 iwl_mvm_ref(mvm, ref_type);
281
282 if (!wait_event_timeout(mvm->d0i3_exit_waitq,
283 !test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status),
284 HZ)) {
285 WARN_ON_ONCE(1);
286 iwl_mvm_unref(mvm, ref_type);
287 return -EIO;
288 }
289
290 return 0;
291}
292
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200293static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm)
294{
295 int i;
296
297 memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts));
298 for (i = 0; i < NUM_PHY_CTX; i++) {
299 mvm->phy_ctxts[i].id = i;
300 mvm->phy_ctxts[i].ref = 0;
301 }
302}
303
Johannes Berg8ca151b2013-01-24 14:25:36 +0100304int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
305{
306 struct ieee80211_hw *hw = mvm->hw;
Ilan Peer831e85f2013-02-07 17:09:09 +0200307 int num_mac, ret, i;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100308
309 /* Tell mac80211 our characteristics */
310 hw->flags = IEEE80211_HW_SIGNAL_DBM |
311 IEEE80211_HW_SPECTRUM_MGMT |
312 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
313 IEEE80211_HW_QUEUE_CONTROL |
314 IEEE80211_HW_WANT_MONITOR_VIF |
Johannes Berg8ca151b2013-01-24 14:25:36 +0100315 IEEE80211_HW_SUPPORTS_PS |
316 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
Johannes Bergd2931bb2013-02-05 18:10:04 +0100317 IEEE80211_HW_AMPDU_AGGREGATION |
Hila Gonend64048e2013-03-13 18:00:03 +0200318 IEEE80211_HW_TIMING_BEACON_ONLY |
Emmanuel Grumbach147fc9b2013-07-28 11:00:52 +0300319 IEEE80211_HW_CONNECTION_MONITOR |
Ido Yarivb71d9c82014-07-23 09:31:14 -0400320 IEEE80211_HW_CHANCTX_STA_CSA |
321 IEEE80211_HW_SUPPORTS_CLONED_SKBS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100322
Eytan Lifshitz19e737c2013-09-09 13:30:15 +0200323 hw->queues = mvm->first_agg_queue;
Ilan Peer398e8c62013-03-13 15:20:35 +0200324 hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE;
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200325 hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FEC |
326 IEEE80211_RADIOTAP_MCS_HAVE_STBC;
Eyal Shapira339b3082014-11-18 16:43:55 +0200327 hw->radiotap_vht_details |= IEEE80211_RADIOTAP_VHT_KNOWN_STBC |
328 IEEE80211_RADIOTAP_VHT_KNOWN_BEAMFORMED;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100329 hw->rate_control_algorithm = "iwl-mvm-rs";
330
331 /*
332 * Enable 11w if advertised by firmware and software crypto
333 * is not enabled (as the firmware will interpret some mgmt
334 * packets, so enabling it with software crypto isn't safe)
335 */
336 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP &&
337 !iwlwifi_mod_params.sw_crypto)
338 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
339
Matt Chen1504f482014-04-24 18:43:18 +0800340 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT &&
Matt Chen1504f482014-04-24 18:43:18 +0800341 !iwlwifi_mod_params.uapsd_disable) {
342 hw->flags |= IEEE80211_HW_SUPPORTS_UAPSD;
Eliad Peller4cb832d2014-08-06 10:52:27 +0300343 hw->uapsd_queues = IWL_MVM_UAPSD_QUEUES;
Matt Chen1504f482014-04-24 18:43:18 +0800344 hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP;
345 }
Alexander Bondare8e626a2013-10-16 00:21:34 +0200346
David Spinadeld2496222014-05-20 12:46:37 +0300347 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN ||
Johannes Bergeffd05a2014-11-18 17:21:19 +0100348 mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN) {
David Spinadelfb98be52014-05-04 12:51:10 +0300349 hw->flags |= IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS;
Johannes Bergeffd05a2014-11-18 17:21:19 +0100350 hw->wiphy->features |=
351 NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR |
352 NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR;
353 }
David Spinadelfb98be52014-05-04 12:51:10 +0300354
Johannes Berg8ca151b2013-01-24 14:25:36 +0100355 hw->sta_data_size = sizeof(struct iwl_mvm_sta);
356 hw->vif_data_size = sizeof(struct iwl_mvm_vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200357 hw->chanctx_data_size = sizeof(u16);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100358
359 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +0200360 BIT(NL80211_IFTYPE_P2P_CLIENT) |
361 BIT(NL80211_IFTYPE_AP) |
362 BIT(NL80211_IFTYPE_P2P_GO) |
Emmanuel Grumbachc13b1722014-03-27 19:12:12 +0200363 BIT(NL80211_IFTYPE_P2P_DEVICE) |
364 BIT(NL80211_IFTYPE_ADHOC);
Johannes Berg5023d962013-07-31 14:07:43 +0200365
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +0100366 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
367 hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
368 REGULATORY_DISABLE_BEACON_HINTS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100369
Johannes Berg3e56ead2013-02-15 22:23:18 +0100370 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_GO_UAPSD)
371 hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
372
Emmanuel Grumbach94bbed72014-11-24 08:53:33 +0200373 hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +0200374
Johannes Berg8ca151b2013-01-24 14:25:36 +0100375 hw->wiphy->iface_combinations = iwl_mvm_iface_combinations;
376 hw->wiphy->n_iface_combinations =
377 ARRAY_SIZE(iwl_mvm_iface_combinations);
378
Ilan Peerc451e6d2013-02-20 08:41:54 +0200379 hw->wiphy->max_remain_on_channel_duration = 10000;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100380 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
Emmanuel Grumbachf1a68542014-12-16 12:31:13 +0200381 /* we can compensate an offset of up to 3 channels = 15 MHz */
382 hw->wiphy->max_adj_channel_rssi_comp = 3 * 5;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100383
384 /* Extract MAC address */
385 memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN);
386 hw->wiphy->addresses = mvm->addresses;
387 hw->wiphy->n_addresses = 1;
Ilan Peer831e85f2013-02-07 17:09:09 +0200388
389 /* Extract additional MAC addresses if available */
390 num_mac = (mvm->nvm_data->n_hw_addrs > 1) ?
391 min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1;
392
393 for (i = 1; i < num_mac; i++) {
394 memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100395 ETH_ALEN);
Ilan Peer831e85f2013-02-07 17:09:09 +0200396 mvm->addresses[i].addr[5]++;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100397 hw->wiphy->n_addresses++;
398 }
399
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200400 iwl_mvm_reset_phy_ctxts(mvm);
401
Andrei Otcheretianski48849a42014-09-09 10:58:49 +0300402 hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm, false);
David Spinadel20f1a5d2013-08-21 09:14:27 +0300403
Johannes Berg8ca151b2013-01-24 14:25:36 +0100404 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
405
406 if (mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels)
407 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
408 &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
409 if (mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels)
410 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
411 &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
412
413 hw->wiphy->hw_version = mvm->trans->hw_id;
414
Alexander Bondarade50652013-04-03 16:28:47 +0300415 if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100416 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
417 else
418 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
419
Emmanuel Grumbach6efaaf32014-09-01 10:03:21 +0300420 if (IWL_UCODE_API(mvm->fw->ucode_ver) >= 10) {
421 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
422 hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX;
423 hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES;
424 /* we create the 802.11 header and zero length SSID IE. */
425 hw->wiphy->max_sched_scan_ie_len =
426 SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2;
427 }
David Spinadel35a000b2013-08-28 09:29:43 +0300428
Johannes Berg8ca151b2013-01-24 14:25:36 +0100429 hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN |
Johannes Bergab480032014-06-04 10:13:50 +0200430 NL80211_FEATURE_LOW_PRIORITY_SCAN |
Eliad Peller0d8614b2014-09-10 14:07:36 +0300431 NL80211_FEATURE_P2P_GO_OPPPS |
432 NL80211_FEATURE_DYNAMIC_SMPS |
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +0300433 NL80211_FEATURE_STATIC_SMPS |
434 NL80211_FEATURE_SUPPORTS_WMM_ADMISSION;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100435
Andrei Otcheretianskif1daa002014-07-01 12:54:25 +0300436 if (mvm->fw->ucode_capa.capa[0] &
437 IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT)
438 hw->wiphy->features |= NL80211_FEATURE_TX_POWER_INSERTION;
Assaf Krauss226bcd42014-03-13 08:12:15 +0200439 if (mvm->fw->ucode_capa.capa[0] &
440 IWL_UCODE_TLV_CAPA_QUIET_PERIOD_SUPPORT)
441 hw->wiphy->features |= NL80211_FEATURE_QUIET;
Andrei Otcheretianskif1daa002014-07-01 12:54:25 +0300442
Andrei Otcheretianski73897bd2014-07-09 18:59:14 +0300443 if (mvm->fw->ucode_capa.capa[0] &
444 IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT)
445 hw->wiphy->features |=
446 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES;
447
448 if (mvm->fw->ucode_capa.capa[0] &
449 IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT)
450 hw->wiphy->features |= NL80211_FEATURE_WFA_TPC_IE_IN_PROBES;
451
Johannes Berg8ca151b2013-01-24 14:25:36 +0100452 mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
453
Max Stepanove36e5432013-08-27 19:56:13 +0300454 /* currently FW API supports only one optional cipher scheme */
Johannes Berg9ddca862014-01-06 09:29:40 +0100455 if (mvm->fw->cs[0].cipher) {
Max Stepanove36e5432013-08-27 19:56:13 +0300456 mvm->hw->n_cipher_schemes = 1;
Johannes Berg9ddca862014-01-06 09:29:40 +0100457 mvm->hw->cipher_schemes = &mvm->fw->cs[0];
Max Stepanove36e5432013-08-27 19:56:13 +0300458 }
459
Johannes Berg8ca151b2013-01-24 14:25:36 +0100460#ifdef CONFIG_PM_SLEEP
Eliad Pellerd15a7472014-03-27 18:53:12 +0200461 if (iwl_mvm_is_d0i3_supported(mvm) &&
462 device_can_wakeup(mvm->trans->dev)) {
463 mvm->wowlan.flags = WIPHY_WOWLAN_ANY;
464 hw->wiphy->wowlan = &mvm->wowlan;
Eliad Peller91742442014-12-09 15:54:46 +0200465 }
466
467 if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100468 mvm->trans->ops->d3_suspend &&
469 mvm->trans->ops->d3_resume &&
470 device_can_wakeup(mvm->trans->dev)) {
Eliad Peller91742442014-12-09 15:54:46 +0200471 mvm->wowlan.flags |= WIPHY_WOWLAN_MAGIC_PKT |
472 WIPHY_WOWLAN_DISCONNECT |
473 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
474 WIPHY_WOWLAN_RFKILL_RELEASE |
475 WIPHY_WOWLAN_NET_DETECT;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100476 if (!iwlwifi_mod_params.sw_crypto)
Johannes Berg964dc9e2013-06-03 17:25:34 +0200477 mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
478 WIPHY_WOWLAN_GTK_REKEY_FAILURE |
479 WIPHY_WOWLAN_4WAY_HANDSHAKE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100480
Johannes Berg964dc9e2013-06-03 17:25:34 +0200481 mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS;
482 mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN;
483 mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN;
Luciano Coelhoc55385f2014-10-24 10:39:51 +0300484 mvm->wowlan.max_nd_match_sets = IWL_SCAN_MAX_PROFILES;
Johannes Berg964dc9e2013-06-03 17:25:34 +0200485 mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support;
486 hw->wiphy->wowlan = &mvm->wowlan;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100487 }
488#endif
489
Eliad Peller77736922014-01-14 12:35:49 +0200490#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
491 /* assign default bcast filtering configuration */
492 mvm->bcast_filters = iwl_mvm_default_bcast_filters;
493#endif
494
Johannes Berg8ca151b2013-01-24 14:25:36 +0100495 ret = iwl_mvm_leds_init(mvm);
496 if (ret)
497 return ret;
498
Arik Nemtsovd8f1c512014-05-11 18:13:04 +0300499 if (mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_TDLS_SUPPORT) {
500 IWL_DEBUG_TDLS(mvm, "TDLS supported\n");
501 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS;
502 }
503
Arik Nemtsov1d3c3f62014-10-23 18:03:10 +0300504 if (mvm->fw->ucode_capa.capa[0] &
505 IWL_UCODE_TLV_CAPA_TDLS_CHANNEL_SWITCH) {
506 IWL_DEBUG_TDLS(mvm, "TDLS channel switch supported\n");
507 hw->wiphy->features |= NL80211_FEATURE_TDLS_CHANNEL_SWITCH;
508 }
509
Emmanuel Grumbachb7327d82013-06-24 15:44:03 +0300510 ret = ieee80211_register_hw(mvm->hw);
511 if (ret)
512 iwl_mvm_leds_exit(mvm);
513
514 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100515}
516
Arik Nemtsovb2492502014-03-13 12:21:50 +0200517static bool iwl_mvm_defer_tx(struct iwl_mvm *mvm,
518 struct ieee80211_sta *sta,
519 struct sk_buff *skb)
520{
521 struct iwl_mvm_sta *mvmsta;
522 bool defer = false;
523
524 /*
525 * double check the IN_D0I3 flag both before and after
526 * taking the spinlock, in order to prevent taking
527 * the spinlock when not needed.
528 */
529 if (likely(!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)))
530 return false;
531
532 spin_lock(&mvm->d0i3_tx_lock);
533 /*
534 * testing the flag again ensures the skb dequeue
535 * loop (on d0i3 exit) hasn't run yet.
536 */
537 if (!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status))
538 goto out;
539
540 mvmsta = iwl_mvm_sta_from_mac80211(sta);
541 if (mvmsta->sta_id == IWL_MVM_STATION_COUNT ||
542 mvmsta->sta_id != mvm->d0i3_ap_sta_id)
543 goto out;
544
545 __skb_queue_tail(&mvm->d0i3_tx, skb);
546 ieee80211_stop_queues(mvm->hw);
547
548 /* trigger wakeup */
549 iwl_mvm_ref(mvm, IWL_MVM_REF_TX);
550 iwl_mvm_unref(mvm, IWL_MVM_REF_TX);
551
552 defer = true;
553out:
554 spin_unlock(&mvm->d0i3_tx_lock);
555 return defer;
556}
557
Johannes Berg8ca151b2013-01-24 14:25:36 +0100558static void iwl_mvm_mac_tx(struct ieee80211_hw *hw,
559 struct ieee80211_tx_control *control,
560 struct sk_buff *skb)
561{
562 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg3e56ead2013-02-15 22:23:18 +0100563 struct ieee80211_sta *sta = control->sta;
564 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
565 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100566
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300567 if (iwl_mvm_is_radio_killed(mvm)) {
568 IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100569 goto drop;
570 }
571
Ilan Peer398e8c62013-03-13 15:20:35 +0200572 if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Matti Gottlieba6cc5162014-09-29 11:46:04 +0300573 !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status) &&
574 !test_bit(IWL_MVM_STATUS_ROC_AUX_RUNNING, &mvm->status))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100575 goto drop;
576
Johannes Berg3e56ead2013-02-15 22:23:18 +0100577 /* treat non-bufferable MMPDUs as broadcast if sta is sleeping */
578 if (unlikely(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER &&
579 ieee80211_is_mgmt(hdr->frame_control) &&
580 !ieee80211_is_deauth(hdr->frame_control) &&
581 !ieee80211_is_disassoc(hdr->frame_control) &&
582 !ieee80211_is_action(hdr->frame_control)))
583 sta = NULL;
584
585 if (sta) {
Arik Nemtsovb2492502014-03-13 12:21:50 +0200586 if (iwl_mvm_defer_tx(mvm, sta, skb))
587 return;
Johannes Berg3e56ead2013-02-15 22:23:18 +0100588 if (iwl_mvm_tx_skb(mvm, skb, sta))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100589 goto drop;
590 return;
591 }
592
593 if (iwl_mvm_tx_skb_non_sta(mvm, skb))
594 goto drop;
595 return;
596 drop:
597 ieee80211_free_txskb(hw, skb);
598}
599
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200600static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg)
601{
602 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
603 return false;
604 return true;
605}
606
607static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg)
608{
609 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
610 return false;
611 if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG)
612 return true;
613
614 /* enabled by default */
615 return true;
616}
617
Johannes Berg8ca151b2013-01-24 14:25:36 +0100618static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw,
619 struct ieee80211_vif *vif,
620 enum ieee80211_ampdu_mlme_action action,
621 struct ieee80211_sta *sta, u16 tid,
622 u16 *ssn, u8 buf_size)
623{
624 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
625 int ret;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200626 bool tx_agg_ref = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100627
628 IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n",
629 sta->addr, tid, action);
630
631 if (!(mvm->nvm_data->sku_cap_11n_enable))
632 return -EACCES;
633
Arik Nemtsovb2492502014-03-13 12:21:50 +0200634 /* return from D0i3 before starting a new Tx aggregation */
Eliad Peller9256c202014-04-22 13:33:29 +0300635 switch (action) {
636 case IEEE80211_AMPDU_TX_START:
637 case IEEE80211_AMPDU_TX_STOP_CONT:
638 case IEEE80211_AMPDU_TX_STOP_FLUSH:
639 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
640 case IEEE80211_AMPDU_TX_OPERATIONAL:
Arik Nemtsovb2492502014-03-13 12:21:50 +0200641 /*
Eliad Peller9256c202014-04-22 13:33:29 +0300642 * for tx start, wait synchronously until D0i3 exit to
643 * get the correct sequence number for the tid.
644 * additionally, some other ampdu actions use direct
645 * target access, which is not handled automatically
646 * by the trans layer (unlike commands), so wait for
647 * d0i3 exit in these cases as well.
Arik Nemtsovb2492502014-03-13 12:21:50 +0200648 */
Gregory Greenmand40fc482014-06-25 14:08:50 +0200649 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_TX_AGG);
650 if (ret)
651 return ret;
652
653 tx_agg_ref = true;
Eliad Peller9256c202014-04-22 13:33:29 +0300654 break;
655 default:
656 break;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200657 }
658
Johannes Berg8ca151b2013-01-24 14:25:36 +0100659 mutex_lock(&mvm->mutex);
660
661 switch (action) {
662 case IEEE80211_AMPDU_RX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200663 if (!iwl_enable_rx_ampdu(mvm->cfg)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100664 ret = -EINVAL;
665 break;
666 }
667 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true);
668 break;
669 case IEEE80211_AMPDU_RX_STOP:
670 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false);
671 break;
672 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200673 if (!iwl_enable_tx_ampdu(mvm->cfg)) {
Emmanuel Grumbach5d158ef2013-02-19 14:39:58 +0200674 ret = -EINVAL;
675 break;
676 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100677 ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn);
678 break;
679 case IEEE80211_AMPDU_TX_STOP_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200680 ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid);
681 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100682 case IEEE80211_AMPDU_TX_STOP_FLUSH:
683 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200684 ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100685 break;
686 case IEEE80211_AMPDU_TX_OPERATIONAL:
687 ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size);
688 break;
689 default:
690 WARN_ON_ONCE(1);
691 ret = -EINVAL;
692 break;
693 }
694 mutex_unlock(&mvm->mutex);
695
Arik Nemtsovb2492502014-03-13 12:21:50 +0200696 /*
697 * If the tid is marked as started, we won't use it for offloaded
698 * traffic on the next D0i3 entry. It's safe to unref.
699 */
700 if (tx_agg_ref)
701 iwl_mvm_unref(mvm, IWL_MVM_REF_TX_AGG);
702
Johannes Berg8ca151b2013-01-24 14:25:36 +0100703 return ret;
704}
705
706static void iwl_mvm_cleanup_iterator(void *data, u8 *mac,
707 struct ieee80211_vif *vif)
708{
709 struct iwl_mvm *mvm = data;
710 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
711
712 mvmvif->uploaded = false;
713 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
714
715 /* does this make sense at all? */
716 mvmvif->color++;
717
718 spin_lock_bh(&mvm->time_event_lock);
719 iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data);
720 spin_unlock_bh(&mvm->time_event_lock);
721
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200722 mvmvif->phy_ctxt = NULL;
Emmanuel Grumbach8a275ba2014-07-13 09:12:11 +0300723 memset(&mvmvif->bf_data, 0, sizeof(mvmvif->bf_data));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100724}
725
Johannes Bergaadede62014-10-09 17:01:36 +0200726static ssize_t iwl_mvm_read_coredump(char *buffer, loff_t offset, size_t count,
727 const void *data, size_t datalen)
728{
729 const struct iwl_mvm_dump_ptrs *dump_ptrs = data;
730 ssize_t bytes_read;
731 ssize_t bytes_read_trans;
732
733 if (offset < dump_ptrs->op_mode_len) {
734 bytes_read = min_t(ssize_t, count,
735 dump_ptrs->op_mode_len - offset);
736 memcpy(buffer, (u8 *)dump_ptrs->op_mode_ptr + offset,
737 bytes_read);
738 offset += bytes_read;
739 count -= bytes_read;
740
741 if (count == 0)
742 return bytes_read;
743 } else {
744 bytes_read = 0;
745 }
746
747 if (!dump_ptrs->trans_ptr)
748 return bytes_read;
749
750 offset -= dump_ptrs->op_mode_len;
751 bytes_read_trans = min_t(ssize_t, count,
752 dump_ptrs->trans_ptr->len - offset);
753 memcpy(buffer + bytes_read,
754 (u8 *)dump_ptrs->trans_ptr->data + offset,
755 bytes_read_trans);
756
757 return bytes_read + bytes_read_trans;
758}
759
760static void iwl_mvm_free_coredump(const void *data)
761{
762 const struct iwl_mvm_dump_ptrs *fw_error_dump = data;
763
764 vfree(fw_error_dump->op_mode_ptr);
765 vfree(fw_error_dump->trans_ptr);
766 kfree(fw_error_dump);
767}
768
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200769static void iwl_mvm_dump_fifos(struct iwl_mvm *mvm,
770 struct iwl_fw_error_dump_data **dump_data)
771{
772 struct iwl_fw_error_dump_fifo *fifo_hdr;
773 u32 *fifo_data;
774 u32 fifo_len;
775 unsigned long flags;
776 int i, j;
777
778 if (!iwl_trans_grab_nic_access(mvm->trans, false, &flags))
779 return;
780
781 /* Pull RXF data from all RXFs */
782 for (i = 0; i < ARRAY_SIZE(mvm->shared_mem_cfg.rxfifo_size); i++) {
783 /*
784 * Keep aside the additional offset that might be needed for
785 * next RXF
786 */
787 u32 offset_diff = RXF_DIFF_FROM_PREV * i;
788
789 fifo_hdr = (void *)(*dump_data)->data;
790 fifo_data = (void *)fifo_hdr->data;
791 fifo_len = mvm->shared_mem_cfg.rxfifo_size[i];
792
793 /* No need to try to read the data if the length is 0 */
794 if (fifo_len == 0)
795 continue;
796
797 /* Add a TLV for the RXF */
798 (*dump_data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RXF);
799 (*dump_data)->len = cpu_to_le32(fifo_len + sizeof(*fifo_hdr));
800
801 fifo_hdr->fifo_num = cpu_to_le32(i);
802 fifo_hdr->available_bytes =
803 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
804 RXF_RD_D_SPACE +
805 offset_diff));
806 fifo_hdr->wr_ptr =
807 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
808 RXF_RD_WR_PTR +
809 offset_diff));
810 fifo_hdr->rd_ptr =
811 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
812 RXF_RD_RD_PTR +
813 offset_diff));
814 fifo_hdr->fence_ptr =
815 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
816 RXF_RD_FENCE_PTR +
817 offset_diff));
818 fifo_hdr->fence_mode =
819 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
820 RXF_SET_FENCE_MODE +
821 offset_diff));
822
823 /* Lock fence */
824 iwl_trans_write_prph(mvm->trans,
825 RXF_SET_FENCE_MODE + offset_diff, 0x1);
826 /* Set fence pointer to the same place like WR pointer */
827 iwl_trans_write_prph(mvm->trans,
828 RXF_LD_WR2FENCE + offset_diff, 0x1);
829 /* Set fence offset */
830 iwl_trans_write_prph(mvm->trans,
831 RXF_LD_FENCE_OFFSET_ADDR + offset_diff,
832 0x0);
833
834 /* Read FIFO */
835 fifo_len /= sizeof(u32); /* Size in DWORDS */
836 for (j = 0; j < fifo_len; j++)
837 fifo_data[j] = iwl_trans_read_prph(mvm->trans,
838 RXF_FIFO_RD_FENCE_INC +
839 offset_diff);
840 *dump_data = iwl_fw_error_next_data(*dump_data);
841 }
842
843 /* Pull TXF data from all TXFs */
844 for (i = 0; i < ARRAY_SIZE(mvm->shared_mem_cfg.txfifo_size); i++) {
845 /* Mark the number of TXF we're pulling now */
846 iwl_trans_write_prph(mvm->trans, TXF_LARC_NUM, i);
847
848 fifo_hdr = (void *)(*dump_data)->data;
849 fifo_data = (void *)fifo_hdr->data;
850 fifo_len = mvm->shared_mem_cfg.txfifo_size[i];
851
852 /* No need to try to read the data if the length is 0 */
853 if (fifo_len == 0)
854 continue;
855
856 /* Add a TLV for the FIFO */
857 (*dump_data)->type = cpu_to_le32(IWL_FW_ERROR_DUMP_TXF);
858 (*dump_data)->len = cpu_to_le32(fifo_len + sizeof(*fifo_hdr));
859
860 fifo_hdr->fifo_num = cpu_to_le32(i);
861 fifo_hdr->available_bytes =
862 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
863 TXF_FIFO_ITEM_CNT));
864 fifo_hdr->wr_ptr =
865 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
866 TXF_WR_PTR));
867 fifo_hdr->rd_ptr =
868 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
869 TXF_RD_PTR));
870 fifo_hdr->fence_ptr =
871 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
872 TXF_FENCE_PTR));
873 fifo_hdr->fence_mode =
874 cpu_to_le32(iwl_trans_read_prph(mvm->trans,
875 TXF_LOCK_FENCE));
876
877 /* Set the TXF_READ_MODIFY_ADDR to TXF_WR_PTR */
878 iwl_trans_write_prph(mvm->trans, TXF_READ_MODIFY_ADDR,
879 TXF_WR_PTR);
880
881 /* Dummy-read to advance the read pointer to the head */
882 iwl_trans_read_prph(mvm->trans, TXF_READ_MODIFY_DATA);
883
884 /* Read FIFO */
885 fifo_len /= sizeof(u32); /* Size in DWORDS */
886 for (j = 0; j < fifo_len; j++)
887 fifo_data[j] = iwl_trans_read_prph(mvm->trans,
888 TXF_READ_MODIFY_DATA);
889 *dump_data = iwl_fw_error_next_data(*dump_data);
890 }
891
892 iwl_trans_release_nic_access(mvm->trans, &flags);
893}
894
Emmanuel Grumbach4bfa47f2014-09-11 16:19:43 +0300895void iwl_mvm_fw_error_dump(struct iwl_mvm *mvm)
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300896{
897 struct iwl_fw_error_dump_file *dump_file;
898 struct iwl_fw_error_dump_data *dump_data;
899 struct iwl_fw_error_dump_info *dump_info;
Emmanuel Grumbacha549b292014-12-09 14:47:57 +0200900 struct iwl_fw_error_dump_mem *dump_mem;
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300901 struct iwl_mvm_dump_ptrs *fw_error_dump;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300902 u32 sram_len, sram_ofs;
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200903 u32 file_len, fifo_data_len = 0;
Liad Kaufmanaddfaad2014-12-02 11:16:04 +0200904 u32 smem_len = mvm->cfg->smem_len;
Ido Yariv86138322014-12-10 12:39:27 -0500905 u32 sram2_len = mvm->cfg->dccm2_len;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300906
907 lockdep_assert_held(&mvm->mutex);
908
Liad Kaufmanaddfaad2014-12-02 11:16:04 +0200909 /* W/A for 8000 HW family A-step */
Ido Yariv86138322014-12-10 12:39:27 -0500910 if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_8000 &&
911 CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_A_STEP) {
912 if (smem_len)
913 smem_len = 0x38000;
914
915 if (sram2_len)
916 sram2_len = 0x10000;
917 }
Liad Kaufmanaddfaad2014-12-02 11:16:04 +0200918
Johannes Bergaadede62014-10-09 17:01:36 +0200919 fw_error_dump = kzalloc(sizeof(*fw_error_dump), GFP_KERNEL);
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300920 if (!fw_error_dump)
921 return;
922
Liad Kaufmanf53bf4c2014-12-01 10:44:18 +0200923 /* SRAM - include stack CCM if driver knows the values for it */
924 if (!mvm->cfg->dccm_offset || !mvm->cfg->dccm_len) {
925 const struct fw_img *img;
926
927 img = &mvm->fw->img[mvm->cur_ucode];
928 sram_ofs = img->sec[IWL_UCODE_SECTION_DATA].offset;
929 sram_len = img->sec[IWL_UCODE_SECTION_DATA].len;
930 } else {
931 sram_ofs = mvm->cfg->dccm_offset;
932 sram_len = mvm->cfg->dccm_len;
933 }
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300934
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200935 /* reading RXF/TXF sizes */
936 if (test_bit(STATUS_FW_ERROR, &mvm->trans->status)) {
937 struct iwl_mvm_shared_mem_cfg *mem_cfg = &mvm->shared_mem_cfg;
938 int i;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300939
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200940 fifo_data_len = 0;
941
942 /* Count RXF size */
943 for (i = 0; i < ARRAY_SIZE(mem_cfg->rxfifo_size); i++) {
944 if (!mem_cfg->rxfifo_size[i])
945 continue;
946
947 /* Add header info */
948 fifo_data_len += mem_cfg->rxfifo_size[i] +
949 sizeof(*dump_data) +
950 sizeof(struct iwl_fw_error_dump_fifo);
951 }
952
953 for (i = 0; i < ARRAY_SIZE(mem_cfg->txfifo_size); i++) {
954 if (!mem_cfg->txfifo_size[i])
955 continue;
956
957 /* Add header info */
958 fifo_data_len += mem_cfg->txfifo_size[i] +
959 sizeof(*dump_data) +
960 sizeof(struct iwl_fw_error_dump_fifo);
961 }
962 }
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300963
964 file_len = sizeof(*dump_file) +
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200965 sizeof(*dump_data) * 2 +
Emmanuel Grumbacha549b292014-12-09 14:47:57 +0200966 sram_len + sizeof(*dump_mem) +
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200967 fifo_data_len +
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300968 sizeof(*dump_info);
969
Liad Kaufmanaddfaad2014-12-02 11:16:04 +0200970 /* Make room for the SMEM, if it exists */
971 if (smem_len)
Emmanuel Grumbacha549b292014-12-09 14:47:57 +0200972 file_len += sizeof(*dump_data) + sizeof(*dump_mem) + smem_len;
Liad Kaufmanaddfaad2014-12-02 11:16:04 +0200973
Ido Yariv86138322014-12-10 12:39:27 -0500974 /* Make room for the secondary SRAM, if it exists */
975 if (sram2_len)
976 file_len += sizeof(*dump_data) + sizeof(*dump_mem) + sram2_len;
977
Emmanuel Grumbach5bfe6f52014-06-25 16:21:43 +0300978 dump_file = vzalloc(file_len);
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300979 if (!dump_file) {
980 kfree(fw_error_dump);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300981 return;
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300982 }
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300983
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300984 fw_error_dump->op_mode_ptr = dump_file;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300985
986 dump_file->barker = cpu_to_le32(IWL_FW_ERROR_DUMP_BARKER);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300987 dump_data = (void *)dump_file->data;
988
989 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_DEV_FW_INFO);
990 dump_data->len = cpu_to_le32(sizeof(*dump_info));
991 dump_info = (void *) dump_data->data;
992 dump_info->device_family =
993 mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000 ?
994 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_7) :
995 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_8);
Ido Yariv435da2c2014-12-11 16:11:01 -0500996 dump_info->hw_step = cpu_to_le32(CSR_HW_REV_STEP(mvm->trans->hw_rev));
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300997 memcpy(dump_info->fw_human_readable, mvm->fw->human_readable,
998 sizeof(dump_info->fw_human_readable));
999 strncpy(dump_info->dev_human_readable, mvm->cfg->name,
1000 sizeof(dump_info->dev_human_readable));
1001 strncpy(dump_info->bus_human_readable, mvm->dev->bus->name,
1002 sizeof(dump_info->bus_human_readable));
1003
1004 dump_data = iwl_fw_error_next_data(dump_data);
Liad Kaufman04fd2c22014-12-15 17:54:16 +02001005 /* We only dump the FIFOs if the FW is in error state */
1006 if (test_bit(STATUS_FW_ERROR, &mvm->trans->status))
1007 iwl_mvm_dump_fifos(mvm, &dump_data);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +03001008
Emmanuel Grumbacha549b292014-12-09 14:47:57 +02001009 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM);
1010 dump_data->len = cpu_to_le32(sram_len + sizeof(*dump_mem));
1011 dump_mem = (void *)dump_data->data;
1012 dump_mem->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM_SRAM);
1013 dump_mem->offset = cpu_to_le32(sram_ofs);
1014 iwl_trans_read_mem_bytes(mvm->trans, sram_ofs, dump_mem->data,
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +03001015 sram_len);
1016
Liad Kaufmanaddfaad2014-12-02 11:16:04 +02001017 if (smem_len) {
1018 dump_data = iwl_fw_error_next_data(dump_data);
Emmanuel Grumbache06d8432014-12-09 14:36:41 +02001019 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM);
1020 dump_data->len = cpu_to_le32(smem_len + sizeof(*dump_mem));
1021 dump_mem = (void *)dump_data->data;
1022 dump_mem->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM_SMEM);
1023 dump_mem->offset = cpu_to_le32(mvm->cfg->smem_offset);
Liad Kaufmanaddfaad2014-12-02 11:16:04 +02001024 iwl_trans_read_mem_bytes(mvm->trans, mvm->cfg->smem_offset,
Emmanuel Grumbache06d8432014-12-09 14:36:41 +02001025 dump_mem->data, smem_len);
Liad Kaufmanaddfaad2014-12-02 11:16:04 +02001026 }
1027
Ido Yariv86138322014-12-10 12:39:27 -05001028 if (sram2_len) {
1029 dump_data = iwl_fw_error_next_data(dump_data);
1030 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM);
1031 dump_data->len = cpu_to_le32(sram2_len + sizeof(*dump_mem));
1032 dump_mem = (void *)dump_data->data;
1033 dump_mem->type = cpu_to_le32(IWL_FW_ERROR_DUMP_MEM_SRAM);
1034 dump_mem->offset = cpu_to_le32(mvm->cfg->dccm2_offset);
1035 iwl_trans_read_mem_bytes(mvm->trans, mvm->cfg->dccm2_offset,
1036 dump_mem->data, sram2_len);
1037 }
1038
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +03001039 fw_error_dump->trans_ptr = iwl_trans_dump_data(mvm->trans);
1040 fw_error_dump->op_mode_len = file_len;
1041 if (fw_error_dump->trans_ptr)
1042 file_len += fw_error_dump->trans_ptr->len;
1043 dump_file->file_len = cpu_to_le32(file_len);
Emmanuel Grumbach4bfa47f2014-09-11 16:19:43 +03001044
Johannes Bergaadede62014-10-09 17:01:36 +02001045 dev_coredumpm(mvm->trans->dev, THIS_MODULE, fw_error_dump, 0,
1046 GFP_KERNEL, iwl_mvm_read_coredump, iwl_mvm_free_coredump);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +03001047}
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +03001048
Johannes Berg8ca151b2013-01-24 14:25:36 +01001049static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm)
1050{
Johannes Berg58629d92014-11-06 09:40:50 +01001051 /* clear the D3 reconfig, we only need it to avoid dumping a
1052 * firmware coredump on reconfiguration, we shouldn't do that
1053 * on D3->D0 transition
1054 */
1055 if (!test_and_clear_bit(IWL_MVM_STATUS_D3_RECONFIG, &mvm->status))
1056 iwl_mvm_fw_error_dump(mvm);
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +02001057
Eliad Peller744cb692014-12-10 18:44:13 +02001058 /* cleanup all stale references (scan, roc), but keep the
1059 * ucode_down ref until reconfig is complete
1060 */
1061 iwl_mvm_unref_all_except(mvm, IWL_MVM_REF_UCODE_DOWN);
1062
Johannes Berg8ca151b2013-01-24 14:25:36 +01001063 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001064
1065 mvm->scan_status = IWL_MVM_SCAN_NONE;
Luciano Coelhob1873302014-08-08 17:12:07 +03001066 mvm->ps_disabled = false;
Emmanuel Grumbach31b8b342014-11-02 15:48:09 +02001067 mvm->calibrating = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001068
1069 /* just in case one was running */
1070 ieee80211_remain_on_channel_expired(mvm->hw);
1071
1072 ieee80211_iterate_active_interfaces_atomic(
1073 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
1074 iwl_mvm_cleanup_iterator, mvm);
1075
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001076 mvm->p2p_device_vif = NULL;
Eliad Peller37577fe2013-12-05 17:19:39 +02001077 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001078
1079 iwl_mvm_reset_phy_ctxts(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001080 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
1081 memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained));
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03001082 memset(mvm->tfd_drained, 0, sizeof(mvm->tfd_drained));
Emmanuel Grumbach8a275ba2014-07-13 09:12:11 +03001083 memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif));
1084 memset(&mvm->last_bt_notif_old, 0, sizeof(mvm->last_bt_notif_old));
1085 memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd));
1086 memset(&mvm->last_bt_ci_cmd_old, 0, sizeof(mvm->last_bt_ci_cmd_old));
1087 memset(&mvm->bt_ack_kill_msk, 0, sizeof(mvm->bt_ack_kill_msk));
1088 memset(&mvm->bt_cts_kill_msk, 0, sizeof(mvm->bt_cts_kill_msk));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001089
1090 ieee80211_wake_queues(mvm->hw);
1091
Eliad Peller228670b2014-08-10 17:00:15 +03001092 /* clear any stale d0i3 state */
1093 clear_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status);
1094
Johannes Berg8ca151b2013-01-24 14:25:36 +01001095 mvm->vif_count = 0;
Emmanuel Grumbach113a0442013-07-02 14:16:38 +03001096 mvm->rx_ba_sessions = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001097}
1098
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001099int __iwl_mvm_mac_start(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001100{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001101 int ret;
1102
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001103 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001104
1105 /* Clean up some internal and mac80211 state on restart */
1106 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
1107 iwl_mvm_restart_cleanup(mvm);
1108
1109 ret = iwl_mvm_up(mvm);
Johannes Bergc47af222014-04-30 16:34:45 +02001110
1111 if (ret && test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
1112 /* Something went wrong - we need to finish some cleanup
1113 * that normally iwl_mvm_mac_restart_complete() below
1114 * would do.
1115 */
1116 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
1117 iwl_mvm_d0i3_enable_tx(mvm, NULL);
1118 }
1119
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001120 return ret;
1121}
1122
1123static int iwl_mvm_mac_start(struct ieee80211_hw *hw)
1124{
1125 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1126 int ret;
1127
Eliad Peller37948fc2014-12-11 10:48:18 +02001128 /* Some hw restart cleanups must not hold the mutex */
1129 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
1130 /*
1131 * Make sure we are out of d0i3. This is needed
1132 * to make sure the reference accounting is correct
1133 * (and there is no stale d0i3_exit_work).
1134 */
1135 wait_event_timeout(mvm->d0i3_exit_waitq,
1136 !test_bit(IWL_MVM_STATUS_IN_D0I3,
1137 &mvm->status),
1138 HZ);
1139 }
1140
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001141 mutex_lock(&mvm->mutex);
1142 ret = __iwl_mvm_mac_start(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001143 mutex_unlock(&mvm->mutex);
1144
1145 return ret;
1146}
1147
Eliad Pellercf2c92d2014-11-04 11:43:54 +02001148static void iwl_mvm_restart_complete(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001149{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001150 int ret;
1151
1152 mutex_lock(&mvm->mutex);
1153
1154 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
Arik Nemtsovb2492502014-03-13 12:21:50 +02001155 iwl_mvm_d0i3_enable_tx(mvm, NULL);
Johannes Berg01662302014-06-06 15:18:45 +02001156 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001157 if (ret)
1158 IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n",
1159 ret);
1160
Eliad Peller7498cf42014-01-16 17:10:44 +02001161 /* allow transport/FW low power modes */
1162 iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN);
1163
Arik Nemtsovcbd2ae22014-09-14 19:13:54 +03001164 /*
1165 * If we have TDLS peers, remove them. We don't know the last seqno/PN
1166 * of packets the FW sent out, so we must reconnect.
1167 */
1168 iwl_mvm_teardown_tdls_peers(mvm);
1169
Johannes Berg8ca151b2013-01-24 14:25:36 +01001170 mutex_unlock(&mvm->mutex);
1171}
1172
Eliad Peller088070a22014-10-20 18:42:58 +03001173static void iwl_mvm_resume_complete(struct iwl_mvm *mvm)
1174{
1175 bool exit_now;
1176
1177 if (!iwl_mvm_is_d0i3_supported(mvm))
1178 return;
1179
1180 mutex_lock(&mvm->d0i3_suspend_mutex);
1181 __clear_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags);
1182 exit_now = __test_and_clear_bit(D0I3_PENDING_WAKEUP,
1183 &mvm->d0i3_suspend_flags);
1184 mutex_unlock(&mvm->d0i3_suspend_mutex);
1185
1186 if (exit_now) {
1187 IWL_DEBUG_RPM(mvm, "Run deferred d0i3 exit\n");
1188 _iwl_mvm_exit_d0i3(mvm);
1189 }
Eliad Peller67359432014-12-09 15:23:54 +02001190
1191 if (mvm->trans->d0i3_mode == IWL_D0I3_MODE_ON_SUSPEND)
1192 if (!wait_event_timeout(mvm->d0i3_exit_waitq,
1193 !test_bit(IWL_MVM_STATUS_IN_D0I3,
1194 &mvm->status),
1195 HZ))
1196 WARN_ONCE(1, "D0i3 exit on resume timed out\n");
Eliad Peller088070a22014-10-20 18:42:58 +03001197}
1198
Eliad Pellercf2c92d2014-11-04 11:43:54 +02001199static void
1200iwl_mvm_mac_reconfig_complete(struct ieee80211_hw *hw,
1201 enum ieee80211_reconfig_type reconfig_type)
1202{
1203 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1204
1205 switch (reconfig_type) {
1206 case IEEE80211_RECONFIG_TYPE_RESTART:
1207 iwl_mvm_restart_complete(mvm);
1208 break;
1209 case IEEE80211_RECONFIG_TYPE_SUSPEND:
Eliad Peller088070a22014-10-20 18:42:58 +03001210 iwl_mvm_resume_complete(mvm);
Eliad Pellercf2c92d2014-11-04 11:43:54 +02001211 break;
1212 }
1213}
1214
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001215void __iwl_mvm_mac_stop(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001216{
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001217 lockdep_assert_held(&mvm->mutex);
Eliad Peller7498cf42014-01-16 17:10:44 +02001218
1219 /* disallow low power states when the FW is down */
1220 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
1221
Johannes Berg8ca151b2013-01-24 14:25:36 +01001222 /* async_handlers_wk is now blocked */
1223
1224 /*
1225 * The work item could be running or queued if the
1226 * ROC time event stops just as we get here.
1227 */
1228 cancel_work_sync(&mvm->roc_done_wk);
1229
1230 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001231
1232 iwl_mvm_async_handlers_purge(mvm);
1233 /* async_handlers_list is empty and will stay empty: HW is stopped */
1234
1235 /* the fw is stopped, the aux sta is dead: clean up driver state */
Johannes Berg712b24a2014-08-04 14:14:14 +02001236 iwl_mvm_del_aux_sta(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001237
Luciano Coelhobc448862014-08-20 11:49:11 +03001238 mvm->ucode_loaded = false;
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001239}
Luciano Coelhobc448862014-08-20 11:49:11 +03001240
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001241static void iwl_mvm_mac_stop(struct ieee80211_hw *hw)
1242{
1243 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1244
1245 flush_work(&mvm->d0i3_exit_work);
1246 flush_work(&mvm->async_handlers_wk);
Emmanuel Grumbach4bfa47f2014-09-11 16:19:43 +03001247 flush_work(&mvm->fw_error_dump_wk);
Luciano Coelhoa0a09242014-09-04 12:29:15 +03001248
1249 mutex_lock(&mvm->mutex);
1250 __iwl_mvm_mac_stop(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001251 mutex_unlock(&mvm->mutex);
1252
1253 /*
1254 * The worker might have been waiting for the mutex, let it run and
1255 * discover that its list is now empty.
1256 */
1257 cancel_work_sync(&mvm->async_handlers_wk);
1258}
1259
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001260static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm)
1261{
1262 u16 i;
1263
1264 lockdep_assert_held(&mvm->mutex);
1265
1266 for (i = 0; i < NUM_PHY_CTX; i++)
1267 if (!mvm->phy_ctxts[i].ref)
1268 return &mvm->phy_ctxts[i];
1269
1270 IWL_ERR(mvm, "No available PHY context\n");
1271 return NULL;
1272}
1273
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +02001274static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
1275 s8 tx_power)
1276{
1277 /* FW is in charge of regulatory enforcement */
1278 struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = {
1279 .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id,
1280 .pwr_restriction = cpu_to_le16(tx_power),
1281 };
1282
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001283 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0,
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +02001284 sizeof(reduce_txpwr_cmd),
1285 &reduce_txpwr_cmd);
1286}
1287
Johannes Berg8ca151b2013-01-24 14:25:36 +01001288static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
1289 struct ieee80211_vif *vif)
1290{
1291 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1292 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1293 int ret;
1294
1295 /*
Gregory Greenmand40fc482014-06-25 14:08:50 +02001296 * make sure D0i3 exit is completed, otherwise a target access
1297 * during tx queue configuration could be done when still in
1298 * D0i3 state.
1299 */
1300 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_ADD_IF);
1301 if (ret)
1302 return ret;
1303
1304 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +01001305 * Not much to do here. The stack will not allow interface
1306 * types or combinations that we didn't advertise, so we
1307 * don't really have to check the types.
1308 */
1309
1310 mutex_lock(&mvm->mutex);
1311
Eliad Pellere89044d2013-07-16 17:33:26 +03001312 /* Allocate resources for the MAC context, and add it to the fw */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001313 ret = iwl_mvm_mac_ctxt_init(mvm, vif);
1314 if (ret)
1315 goto out_unlock;
1316
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001317 /* Counting number of interfaces is needed for legacy PM */
Ilan Peerea183d02013-07-23 14:41:53 +03001318 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
1319 mvm->vif_count++;
Ilan Peerea183d02013-07-23 14:41:53 +03001320
1321 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +01001322 * The AP binding flow can be done only after the beacon
1323 * template is configured (which happens only in the mac80211
1324 * start_ap() flow), and adding the broadcast station can happen
1325 * only after the binding.
1326 * In addition, since modifying the MAC before adding a bcast
1327 * station is not allowed by the FW, delay the adding of MAC context to
1328 * the point where we can also add the bcast station.
1329 * In short: there's not much we can do at this point, other than
1330 * allocating resources :)
1331 */
Johannes Berg5023d962013-07-31 14:07:43 +02001332 if (vif->type == NL80211_IFTYPE_AP ||
1333 vif->type == NL80211_IFTYPE_ADHOC) {
Johannes Berg013290a2014-08-04 13:38:48 +02001334 ret = iwl_mvm_alloc_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001335 if (ret) {
1336 IWL_ERR(mvm, "Failed to allocate bcast sta\n");
1337 goto out_release;
1338 }
1339
Emmanuel Grumbach77740cb2013-06-26 23:51:41 +03001340 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001341 goto out_unlock;
1342 }
1343
Johannes Berg8ca151b2013-01-24 14:25:36 +01001344 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
1345 if (ret)
1346 goto out_release;
1347
Arik Nemtsov999609f2014-05-15 17:31:51 +03001348 ret = iwl_mvm_power_update_mac(mvm);
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +02001349 if (ret)
1350 goto out_release;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001351
Hila Gonen7df15b12012-12-12 11:16:19 +02001352 /* beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001353 ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001354 if (ret)
1355 goto out_remove_mac;
1356
Hila Gonen7df15b12012-12-12 11:16:19 +02001357 if (!mvm->bf_allowed_vif &&
Emmanuel Grumbach73e5f2c2014-03-30 08:57:30 +03001358 vif->type == NL80211_IFTYPE_STATION && !vif->p2p) {
Hila Gonen7df15b12012-12-12 11:16:19 +02001359 mvm->bf_allowed_vif = mvmvif;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001360 vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
1361 IEEE80211_VIF_SUPPORTS_CQM_RSSI;
Hila Gonen7df15b12012-12-12 11:16:19 +02001362 }
1363
Johannes Berg8ca151b2013-01-24 14:25:36 +01001364 /*
1365 * P2P_DEVICE interface does not have a channel context assigned to it,
1366 * so a dedicated PHY context is allocated to it and the corresponding
1367 * MAC context is bound to it at this stage.
1368 */
1369 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001370
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001371 mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1372 if (!mvmvif->phy_ctxt) {
1373 ret = -ENOSPC;
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001374 goto out_free_bf;
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001375 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001376
Ilan Peer53a9d612013-04-28 11:55:08 +03001377 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001378 ret = iwl_mvm_binding_add_vif(mvm, vif);
1379 if (ret)
Ilan Peer53a9d612013-04-28 11:55:08 +03001380 goto out_unref_phy;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001381
Johannes Berg013290a2014-08-04 13:38:48 +02001382 ret = iwl_mvm_add_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001383 if (ret)
1384 goto out_unbind;
1385
1386 /* Save a pointer to p2p device vif, so it can later be used to
1387 * update the p2p device MAC when a GO is started/stopped */
1388 mvm->p2p_device_vif = vif;
1389 }
1390
Johannes Berg63494372013-03-26 10:47:53 +01001391 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001392 goto out_unlock;
1393
1394 out_unbind:
1395 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peer53a9d612013-04-28 11:55:08 +03001396 out_unref_phy:
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001397 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001398 out_free_bf:
1399 if (mvm->bf_allowed_vif == mvmvif) {
1400 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001401 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1402 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001403 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001404 out_remove_mac:
1405 mvmvif->phy_ctxt = NULL;
1406 iwl_mvm_mac_ctxt_remove(mvm, vif);
1407 out_release:
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001408 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
1409 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001410
Johannes Berg8ca151b2013-01-24 14:25:36 +01001411 iwl_mvm_mac_ctxt_release(mvm, vif);
1412 out_unlock:
1413 mutex_unlock(&mvm->mutex);
1414
Gregory Greenmand40fc482014-06-25 14:08:50 +02001415 iwl_mvm_unref(mvm, IWL_MVM_REF_ADD_IF);
1416
Johannes Berg8ca151b2013-01-24 14:25:36 +01001417 return ret;
1418}
1419
Johannes Berg38a12b52013-02-22 14:07:56 +01001420static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm,
1421 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001422{
Arik Nemtsovd92b732e2014-09-21 19:00:42 +03001423 u32 tfd_msk = iwl_mvm_mac_get_queues_mask(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001424
1425 if (tfd_msk) {
1426 mutex_lock(&mvm->mutex);
1427 iwl_mvm_flush_tx_path(mvm, tfd_msk, true);
1428 mutex_unlock(&mvm->mutex);
1429 }
1430
1431 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1432 /*
1433 * Flush the ROC worker which will flush the OFFCHANNEL queue.
1434 * We assume here that all the packets sent to the OFFCHANNEL
1435 * queue are sent in ROC session.
1436 */
1437 flush_work(&mvm->roc_done_wk);
1438 } else {
1439 /*
1440 * By now, all the AC queues are empty. The AGG queues are
1441 * empty too. We already got all the Tx responses for all the
1442 * packets in the queues. The drain work can have been
Emmanuel Grumbach0742a752013-06-10 14:10:33 +03001443 * triggered. Flush it.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001444 */
1445 flush_work(&mvm->sta_drained_wk);
1446 }
Johannes Berg38a12b52013-02-22 14:07:56 +01001447}
1448
1449static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw,
1450 struct ieee80211_vif *vif)
1451{
1452 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1453 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1454
1455 iwl_mvm_prepare_mac_removal(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001456
1457 mutex_lock(&mvm->mutex);
1458
Hila Gonen7df15b12012-12-12 11:16:19 +02001459 if (mvm->bf_allowed_vif == mvmvif) {
1460 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001461 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1462 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Hila Gonen7df15b12012-12-12 11:16:19 +02001463 }
1464
Johannes Berg63494372013-03-26 10:47:53 +01001465 iwl_mvm_vif_dbgfs_clean(mvm, vif);
1466
Johannes Berg8ca151b2013-01-24 14:25:36 +01001467 /*
1468 * For AP/GO interface, the tear down of the resources allocated to the
Johannes Berg38a12b52013-02-22 14:07:56 +01001469 * interface is be handled as part of the stop_ap flow.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001470 */
Johannes Berg5023d962013-07-31 14:07:43 +02001471 if (vif->type == NL80211_IFTYPE_AP ||
1472 vif->type == NL80211_IFTYPE_ADHOC) {
David Spinadel507cadf2013-07-31 18:07:21 +03001473#ifdef CONFIG_NL80211_TESTMODE
1474 if (vif == mvm->noa_vif) {
1475 mvm->noa_vif = NULL;
1476 mvm->noa_duration = 0;
1477 }
1478#endif
Johannes Berg013290a2014-08-04 13:38:48 +02001479 iwl_mvm_dealloc_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001480 goto out_release;
1481 }
1482
1483 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1484 mvm->p2p_device_vif = NULL;
Johannes Berg013290a2014-08-04 13:38:48 +02001485 iwl_mvm_rm_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001486 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001487 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001488 mvmvif->phy_ctxt = NULL;
1489 }
1490
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001491 if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001492 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001493
Arik Nemtsov999609f2014-05-15 17:31:51 +03001494 iwl_mvm_power_update_mac(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001495 iwl_mvm_mac_ctxt_remove(mvm, vif);
1496
1497out_release:
1498 iwl_mvm_mac_ctxt_release(mvm, vif);
1499 mutex_unlock(&mvm->mutex);
1500}
1501
1502static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed)
1503{
1504 return 0;
1505}
1506
Eliad Pellere59647e2013-11-28 14:08:50 +02001507struct iwl_mvm_mc_iter_data {
1508 struct iwl_mvm *mvm;
1509 int port_id;
1510};
1511
1512static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac,
1513 struct ieee80211_vif *vif)
1514{
1515 struct iwl_mvm_mc_iter_data *data = _data;
1516 struct iwl_mvm *mvm = data->mvm;
1517 struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd;
1518 int ret, len;
1519
1520 /* if we don't have free ports, mcast frames will be dropped */
1521 if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM))
1522 return;
1523
1524 if (vif->type != NL80211_IFTYPE_STATION ||
1525 !vif->bss_conf.assoc)
1526 return;
1527
1528 cmd->port_id = data->port_id++;
1529 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
1530 len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4);
1531
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001532 ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_ASYNC, len, cmd);
Eliad Pellere59647e2013-11-28 14:08:50 +02001533 if (ret)
1534 IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret);
1535}
1536
1537static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm)
1538{
1539 struct iwl_mvm_mc_iter_data iter_data = {
1540 .mvm = mvm,
1541 };
1542
1543 lockdep_assert_held(&mvm->mutex);
1544
1545 if (WARN_ON_ONCE(!mvm->mcast_filter_cmd))
1546 return;
1547
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001548 ieee80211_iterate_active_interfaces_atomic(
Eliad Pellere59647e2013-11-28 14:08:50 +02001549 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1550 iwl_mvm_mc_iface_iterator, &iter_data);
1551}
1552
1553static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw,
1554 struct netdev_hw_addr_list *mc_list)
1555{
1556 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1557 struct iwl_mcast_filter_cmd *cmd;
1558 struct netdev_hw_addr *addr;
Max Stepanovf3bd58f2014-08-04 13:55:01 +03001559 int addr_count;
1560 bool pass_all;
Eliad Pellere59647e2013-11-28 14:08:50 +02001561 int len;
1562
Max Stepanovf3bd58f2014-08-04 13:55:01 +03001563 addr_count = netdev_hw_addr_list_count(mc_list);
1564 pass_all = addr_count > MAX_MCAST_FILTERING_ADDRESSES ||
1565 IWL_MVM_FW_MCAST_FILTER_PASS_ALL;
1566 if (pass_all)
Eliad Pellere59647e2013-11-28 14:08:50 +02001567 addr_count = 0;
Eliad Pellere59647e2013-11-28 14:08:50 +02001568
1569 len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4);
1570 cmd = kzalloc(len, GFP_ATOMIC);
1571 if (!cmd)
1572 return 0;
1573
1574 if (pass_all) {
1575 cmd->pass_all = 1;
1576 return (u64)(unsigned long)cmd;
1577 }
1578
1579 netdev_hw_addr_list_for_each(addr, mc_list) {
1580 IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n",
1581 cmd->count, addr->addr);
1582 memcpy(&cmd->addr_list[cmd->count * ETH_ALEN],
1583 addr->addr, ETH_ALEN);
1584 cmd->count++;
1585 }
1586
1587 return (u64)(unsigned long)cmd;
1588}
1589
Johannes Berg8ca151b2013-01-24 14:25:36 +01001590static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
1591 unsigned int changed_flags,
1592 unsigned int *total_flags,
1593 u64 multicast)
1594{
Eliad Pellere59647e2013-11-28 14:08:50 +02001595 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1596 struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast;
1597
1598 mutex_lock(&mvm->mutex);
1599
1600 /* replace previous configuration */
1601 kfree(mvm->mcast_filter_cmd);
1602 mvm->mcast_filter_cmd = cmd;
1603
1604 if (!cmd)
1605 goto out;
1606
1607 iwl_mvm_recalc_multicast(mvm);
1608out:
1609 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001610 *total_flags = 0;
1611}
1612
Eliad Pellerc87163b2014-01-08 10:11:11 +02001613#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1614struct iwl_bcast_iter_data {
1615 struct iwl_mvm *mvm;
1616 struct iwl_bcast_filter_cmd *cmd;
1617 u8 current_filter;
1618};
1619
1620static void
1621iwl_mvm_set_bcast_filter(struct ieee80211_vif *vif,
1622 const struct iwl_fw_bcast_filter *in_filter,
1623 struct iwl_fw_bcast_filter *out_filter)
1624{
1625 struct iwl_fw_bcast_filter_attr *attr;
1626 int i;
1627
1628 memcpy(out_filter, in_filter, sizeof(*out_filter));
1629
1630 for (i = 0; i < ARRAY_SIZE(out_filter->attrs); i++) {
1631 attr = &out_filter->attrs[i];
1632
1633 if (!attr->mask)
1634 break;
1635
Eliad Peller2ee8f022014-01-13 19:07:09 +02001636 switch (attr->reserved1) {
1637 case cpu_to_le16(BC_FILTER_MAGIC_IP):
1638 if (vif->bss_conf.arp_addr_cnt != 1) {
1639 attr->mask = 0;
1640 continue;
1641 }
1642
1643 attr->val = vif->bss_conf.arp_addr_list[0];
1644 break;
1645 case cpu_to_le16(BC_FILTER_MAGIC_MAC):
1646 attr->val = *(__be32 *)&vif->addr[2];
1647 break;
1648 default:
1649 break;
1650 }
1651 attr->reserved1 = 0;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001652 out_filter->num_attrs++;
1653 }
1654}
1655
1656static void iwl_mvm_bcast_filter_iterator(void *_data, u8 *mac,
1657 struct ieee80211_vif *vif)
1658{
1659 struct iwl_bcast_iter_data *data = _data;
1660 struct iwl_mvm *mvm = data->mvm;
1661 struct iwl_bcast_filter_cmd *cmd = data->cmd;
1662 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1663 struct iwl_fw_bcast_mac *bcast_mac;
1664 int i;
1665
1666 if (WARN_ON(mvmvif->id >= ARRAY_SIZE(cmd->macs)))
1667 return;
1668
1669 bcast_mac = &cmd->macs[mvmvif->id];
1670
Ilan Peere48393e2014-05-22 11:19:02 +03001671 /*
1672 * enable filtering only for associated stations, but not for P2P
1673 * Clients
1674 */
1675 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p ||
1676 !vif->bss_conf.assoc)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001677 return;
1678
1679 bcast_mac->default_discard = 1;
1680
1681 /* copy all configured filters */
1682 for (i = 0; mvm->bcast_filters[i].attrs[0].mask; i++) {
1683 /*
1684 * Make sure we don't exceed our filters limit.
1685 * if there is still a valid filter to be configured,
1686 * be on the safe side and just allow bcast for this mac.
1687 */
1688 if (WARN_ON_ONCE(data->current_filter >=
1689 ARRAY_SIZE(cmd->filters))) {
1690 bcast_mac->default_discard = 0;
1691 bcast_mac->attached_filters = 0;
1692 break;
1693 }
1694
1695 iwl_mvm_set_bcast_filter(vif,
1696 &mvm->bcast_filters[i],
1697 &cmd->filters[data->current_filter]);
1698
1699 /* skip current filter if it contains no attributes */
1700 if (!cmd->filters[data->current_filter].num_attrs)
1701 continue;
1702
1703 /* attach the filter to current mac */
1704 bcast_mac->attached_filters |=
1705 cpu_to_le16(BIT(data->current_filter));
1706
1707 data->current_filter++;
1708 }
1709}
1710
Eliad Pellerde06a592014-01-08 10:11:12 +02001711bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm,
1712 struct iwl_bcast_filter_cmd *cmd)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001713{
Eliad Pellerc87163b2014-01-08 10:11:11 +02001714 struct iwl_bcast_iter_data iter_data = {
1715 .mvm = mvm,
Eliad Pellerde06a592014-01-08 10:11:12 +02001716 .cmd = cmd,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001717 };
1718
Max Stepanov3b8983b2014-10-15 11:27:16 +03001719 if (IWL_MVM_FW_BCAST_FILTER_PASS_ALL)
1720 return false;
1721
Eliad Pellerde06a592014-01-08 10:11:12 +02001722 memset(cmd, 0, sizeof(*cmd));
1723 cmd->max_bcast_filters = ARRAY_SIZE(cmd->filters);
1724 cmd->max_macs = ARRAY_SIZE(cmd->macs);
1725
1726#ifdef CONFIG_IWLWIFI_DEBUGFS
1727 /* use debugfs filters/macs if override is configured */
1728 if (mvm->dbgfs_bcast_filtering.override) {
1729 memcpy(cmd->filters, &mvm->dbgfs_bcast_filtering.cmd.filters,
1730 sizeof(cmd->filters));
1731 memcpy(cmd->macs, &mvm->dbgfs_bcast_filtering.cmd.macs,
1732 sizeof(cmd->macs));
1733 return true;
1734 }
1735#endif
Eliad Pellerc87163b2014-01-08 10:11:11 +02001736
1737 /* if no filters are configured, do nothing */
1738 if (!mvm->bcast_filters)
Eliad Pellerde06a592014-01-08 10:11:12 +02001739 return false;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001740
1741 /* configure and attach these filters for each associated sta vif */
1742 ieee80211_iterate_active_interfaces(
1743 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1744 iwl_mvm_bcast_filter_iterator, &iter_data);
1745
Eliad Pellerde06a592014-01-08 10:11:12 +02001746 return true;
1747}
1748static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1749 struct ieee80211_vif *vif)
1750{
1751 struct iwl_bcast_filter_cmd cmd;
1752
1753 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING))
1754 return 0;
1755
1756 if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
1757 return 0;
1758
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001759 return iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001760 sizeof(cmd), &cmd);
1761}
1762#else
1763static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1764 struct ieee80211_vif *vif)
1765{
1766 return 0;
1767}
1768#endif
1769
Johannes Berg8ca151b2013-01-24 14:25:36 +01001770static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
1771 struct ieee80211_vif *vif,
1772 struct ieee80211_bss_conf *bss_conf,
1773 u32 changes)
1774{
1775 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1776 int ret;
1777
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001778 /*
1779 * Re-calculate the tsf id, as the master-slave relations depend on the
1780 * beacon interval, which was not known when the station interface was
1781 * added.
1782 */
1783 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc)
1784 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1785
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001786 /*
1787 * If we're not associated yet, take the (new) BSSID before associating
1788 * so the firmware knows. If we're already associated, then use the old
1789 * BSSID here, and we'll send a cleared one later in the CHANGED_ASSOC
1790 * branch for disassociation below.
1791 */
1792 if (changes & BSS_CHANGED_BSSID && !mvmvif->associated)
1793 memcpy(mvmvif->bssid, bss_conf->bssid, ETH_ALEN);
1794
1795 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, mvmvif->bssid);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001796 if (ret)
1797 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
1798
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001799 /* after sending it once, adopt mac80211 data */
1800 memcpy(mvmvif->bssid, bss_conf->bssid, ETH_ALEN);
1801 mvmvif->associated = bss_conf->assoc;
1802
Johannes Berg8ca151b2013-01-24 14:25:36 +01001803 if (changes & BSS_CHANGED_ASSOC) {
1804 if (bss_conf->assoc) {
1805 /* add quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001806 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001807 if (ret) {
1808 IWL_ERR(mvm, "failed to update quotas\n");
1809 return;
1810 }
Johannes Berg016d27e2013-05-03 11:16:15 +02001811
1812 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
1813 &mvm->status)) {
1814 /*
1815 * If we're restarting then the firmware will
1816 * obviously have lost synchronisation with
1817 * the AP. It will attempt to synchronise by
1818 * itself, but we can make it more reliable by
1819 * scheduling a session protection time event.
1820 *
1821 * The firmware needs to receive a beacon to
1822 * catch up with synchronisation, use 110% of
1823 * the beacon interval.
1824 *
1825 * Set a large maximum delay to allow for more
1826 * than a single interface.
1827 */
1828 u32 dur = (11 * vif->bss_conf.beacon_int) / 10;
1829 iwl_mvm_protect_session(mvm, vif, dur, dur,
Liad Kaufmand20d37b2014-07-06 17:14:39 +03001830 5 * dur, false);
Johannes Berg016d27e2013-05-03 11:16:15 +02001831 }
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001832
1833 iwl_mvm_sf_update(mvm, vif, false);
Alexander Bondar175a70b2013-04-14 20:59:37 +03001834 iwl_mvm_power_vif_assoc(mvm, vif);
Emmanuel Grumbach697162a2014-07-30 15:56:42 +03001835 if (vif->p2p) {
Eliad Peller29a90a42013-11-05 14:06:29 +02001836 iwl_mvm_ref(mvm, IWL_MVM_REF_P2P_CLIENT);
Emmanuel Grumbach697162a2014-07-30 15:56:42 +03001837 iwl_mvm_update_smps(mvm, vif,
1838 IWL_MVM_SMPS_REQ_PROT,
1839 IEEE80211_SMPS_DYNAMIC);
1840 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001841 } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001842 /*
1843 * If update fails - SF might be running in associated
1844 * mode while disassociated - which is forbidden.
1845 */
1846 WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false),
1847 "Failed to update SF upon disassociation\n");
1848
Johannes Berg8ca151b2013-01-24 14:25:36 +01001849 /* remove AP station now that the MAC is unassoc */
1850 ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id);
1851 if (ret)
1852 IWL_ERR(mvm, "failed to remove AP station\n");
Eliad Peller37577fe2013-12-05 17:19:39 +02001853
1854 if (mvm->d0i3_ap_sta_id == mvmvif->ap_sta_id)
1855 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001856 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
1857 /* remove quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001858 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001859 if (ret)
1860 IWL_ERR(mvm, "failed to update quotas\n");
Eliad Peller29a90a42013-11-05 14:06:29 +02001861
1862 if (vif->p2p)
1863 iwl_mvm_unref(mvm, IWL_MVM_REF_P2P_CLIENT);
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001864
1865 /* this will take the cleared BSSID from bss_conf */
1866 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
1867 if (ret)
1868 IWL_ERR(mvm,
1869 "failed to update MAC %pM (clear after unassoc)\n",
1870 vif->addr);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001871 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001872
Eliad Pellere59647e2013-11-28 14:08:50 +02001873 iwl_mvm_recalc_multicast(mvm);
Eliad Pellerc87163b2014-01-08 10:11:11 +02001874 iwl_mvm_configure_bcast_filter(mvm, vif);
Eliad Pellere59647e2013-11-28 14:08:50 +02001875
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001876 /* reset rssi values */
1877 mvmvif->bf_data.ave_beacon_signal = 0;
1878
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001879 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachf94045e2014-01-06 13:38:55 +02001880 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT,
1881 IEEE80211_SMPS_AUTOMATIC);
Alexander Bondar989c6502013-05-16 17:34:17 +03001882 } else if (changes & BSS_CHANGED_BEACON_INFO) {
Johannes Berg210a5442013-01-24 23:48:23 +01001883 /*
1884 * We received a beacon _after_ association so
1885 * remove the session protection.
1886 */
1887 iwl_mvm_remove_time_event(mvm, mvmvif,
1888 &mvmvif->time_event_data);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001889 }
Eran Hararycc87d322014-07-15 14:04:23 +03001890
1891 if (changes & BSS_CHANGED_BEACON_INFO) {
1892 iwl_mvm_sf_update(mvm, vif, false);
1893 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
1894 }
1895
Johannes Berg1bc10d32014-08-26 14:25:46 +02001896 if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS | BSS_CHANGED_QOS)) {
1897 ret = iwl_mvm_power_update_mac(mvm);
1898 if (ret)
1899 IWL_ERR(mvm, "failed to update power mode\n");
1900 }
1901
Matti Gottlieb88f2fd72013-07-09 15:25:46 +03001902 if (changes & BSS_CHANGED_TXPOWER) {
1903 IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
1904 bss_conf->txpower);
1905 iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
1906 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001907
1908 if (changes & BSS_CHANGED_CQM) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001909 IWL_DEBUG_MAC80211(mvm, "cqm info_changed\n");
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001910 /* reset cqm events tracking */
1911 mvmvif->bf_data.last_cqm_event = 0;
Avri Altmanfa7b2e72014-05-20 08:03:24 +03001912 if (mvmvif->bf_data.bf_enabled) {
1913 ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0);
1914 if (ret)
1915 IWL_ERR(mvm,
1916 "failed to update CQM thresholds\n");
1917 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001918 }
Eliad Peller2ee8f022014-01-13 19:07:09 +02001919
1920 if (changes & BSS_CHANGED_ARP_FILTER) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001921 IWL_DEBUG_MAC80211(mvm, "arp filter changed\n");
Eliad Peller2ee8f022014-01-13 19:07:09 +02001922 iwl_mvm_configure_bcast_filter(mvm, vif);
1923 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001924}
1925
Johannes Berg5023d962013-07-31 14:07:43 +02001926static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
1927 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001928{
1929 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1930 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1931 int ret;
1932
Eliad Peller576eeee2014-07-01 18:38:38 +03001933 /*
1934 * iwl_mvm_mac_ctxt_add() might read directly from the device
1935 * (the system time), so make sure it is available.
1936 */
1937 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_START_AP);
1938 if (ret)
1939 return ret;
1940
Johannes Berg8ca151b2013-01-24 14:25:36 +01001941 mutex_lock(&mvm->mutex);
1942
1943 /* Send the beacon template */
1944 ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif);
1945 if (ret)
1946 goto out_unlock;
1947
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001948 /*
1949 * Re-calculate the tsf id, as the master-slave relations depend on the
1950 * beacon interval, which was not known when the AP interface was added.
1951 */
1952 if (vif->type == NL80211_IFTYPE_AP)
1953 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1954
Johannes Berg8ca151b2013-01-24 14:25:36 +01001955 /* Add the mac context */
1956 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
1957 if (ret)
1958 goto out_unlock;
1959
1960 /* Perform the binding */
1961 ret = iwl_mvm_binding_add_vif(mvm, vif);
1962 if (ret)
1963 goto out_remove;
1964
Johannes Berg8ca151b2013-01-24 14:25:36 +01001965 /* Send the bcast station. At this stage the TBTT and DTIM time events
1966 * are added and applied to the scheduler */
Johannes Berg013290a2014-08-04 13:38:48 +02001967 ret = iwl_mvm_send_add_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001968 if (ret)
1969 goto out_unbind;
1970
Ilan Peer5691e212013-12-31 21:05:50 +02001971 /* must be set before quota calculations */
1972 mvmvif->ap_ibss_active = true;
1973
Ilan Peera11e1442013-12-31 21:19:55 +02001974 /* power updated needs to be done before quotas */
Arik Nemtsov999609f2014-05-15 17:31:51 +03001975 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001976
Johannes Berg01662302014-06-06 15:18:45 +02001977 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001978 if (ret)
Ilan Peera11e1442013-12-31 21:19:55 +02001979 goto out_quota_failed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001980
Johannes Berg5023d962013-07-31 14:07:43 +02001981 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001982 if (vif->p2p && mvm->p2p_device_vif)
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001983 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001984
Eliad Peller29a90a42013-11-05 14:06:29 +02001985 iwl_mvm_ref(mvm, IWL_MVM_REF_AP_IBSS);
1986
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001987 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001988
Arik Nemtsovf6972672014-06-15 16:03:55 +03001989 /* we don't support TDLS during DCM */
1990 if (iwl_mvm_phy_ctx_count(mvm) > 1)
1991 iwl_mvm_teardown_tdls_peers(mvm);
1992
Johannes Berg8ca151b2013-01-24 14:25:36 +01001993 mutex_unlock(&mvm->mutex);
1994 return 0;
1995
Ilan Peera11e1442013-12-31 21:19:55 +02001996out_quota_failed:
Arik Nemtsov999609f2014-05-15 17:31:51 +03001997 iwl_mvm_power_update_mac(mvm);
Ilan Peer5691e212013-12-31 21:05:50 +02001998 mvmvif->ap_ibss_active = false;
Johannes Berg013290a2014-08-04 13:38:48 +02001999 iwl_mvm_send_rm_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002000out_unbind:
2001 iwl_mvm_binding_remove_vif(mvm, vif);
2002out_remove:
2003 iwl_mvm_mac_ctxt_remove(mvm, vif);
2004out_unlock:
2005 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002006 iwl_mvm_unref(mvm, IWL_MVM_REF_START_AP);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002007 return ret;
2008}
2009
Johannes Berg5023d962013-07-31 14:07:43 +02002010static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
2011 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002012{
2013 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2014 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2015
Johannes Berg38a12b52013-02-22 14:07:56 +01002016 iwl_mvm_prepare_mac_removal(mvm, vif);
2017
Johannes Berg8ca151b2013-01-24 14:25:36 +01002018 mutex_lock(&mvm->mutex);
2019
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002020 /* Handle AP stop while in CSA */
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03002021 if (rcu_access_pointer(mvm->csa_vif) == vif) {
2022 iwl_mvm_remove_time_event(mvm, mvmvif,
2023 &mvmvif->time_event_data);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002024 RCU_INIT_POINTER(mvm->csa_vif, NULL);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03002025 }
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002026
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03002027 if (rcu_access_pointer(mvm->csa_tx_blocked_vif) == vif) {
2028 RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
2029 mvm->csa_tx_block_bcn_timeout = 0;
2030 }
2031
Johannes Berg5023d962013-07-31 14:07:43 +02002032 mvmvif->ap_ibss_active = false;
David Spinadel1c87bba2014-02-27 16:41:52 +02002033 mvm->ap_last_beacon_gp2 = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002034
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03002035 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03002036
Eliad Peller29a90a42013-11-05 14:06:29 +02002037 iwl_mvm_unref(mvm, IWL_MVM_REF_AP_IBSS);
2038
Johannes Berg5023d962013-07-31 14:07:43 +02002039 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002040 if (vif->p2p && mvm->p2p_device_vif)
Johannes Berg3dfd3a92014-08-11 21:37:30 +02002041 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002042
Johannes Berg01662302014-06-06 15:18:45 +02002043 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg013290a2014-08-04 13:38:48 +02002044 iwl_mvm_send_rm_bcast_sta(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002045 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peera11e1442013-12-31 21:19:55 +02002046
Arik Nemtsov999609f2014-05-15 17:31:51 +03002047 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02002048
Johannes Berg8ca151b2013-01-24 14:25:36 +01002049 iwl_mvm_mac_ctxt_remove(mvm, vif);
2050
2051 mutex_unlock(&mvm->mutex);
2052}
2053
Johannes Berg5023d962013-07-31 14:07:43 +02002054static void
2055iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm,
2056 struct ieee80211_vif *vif,
2057 struct ieee80211_bss_conf *bss_conf,
2058 u32 changes)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002059{
Ilan Peerbe2056f2013-12-04 16:47:14 +02002060 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Avri Altman8a5e3662013-11-12 19:16:03 +02002061
Ilan Peerbe2056f2013-12-04 16:47:14 +02002062 /* Changes will be applied when the AP/IBSS is started */
2063 if (!mvmvif->ap_ibss_active)
2064 return;
2065
Johannes Berg863230da2013-12-04 17:08:40 +01002066 if (changes & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT |
Johannes Bergf7d8b702014-09-09 15:49:19 +02002067 BSS_CHANGED_BANDWIDTH | BSS_CHANGED_QOS) &&
Johannes Berg3dfd3a92014-08-11 21:37:30 +02002068 iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL))
Johannes Berg863230da2013-12-04 17:08:40 +01002069 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
Avri Altman8a5e3662013-11-12 19:16:03 +02002070
Johannes Berg8ca151b2013-01-24 14:25:36 +01002071 /* Need to send a new beacon template to the FW */
Johannes Berg863230da2013-12-04 17:08:40 +01002072 if (changes & BSS_CHANGED_BEACON &&
2073 iwl_mvm_mac_ctxt_beacon_changed(mvm, vif))
2074 IWL_WARN(mvm, "Failed updating beacon data\n");
Haim Dreyfuss79b7a692014-09-14 12:40:00 +03002075
2076 if (changes & BSS_CHANGED_TXPOWER) {
2077 IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
2078 bss_conf->txpower);
2079 iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
2080 }
2081
Johannes Berg8ca151b2013-01-24 14:25:36 +01002082}
2083
2084static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw,
2085 struct ieee80211_vif *vif,
2086 struct ieee80211_bss_conf *bss_conf,
2087 u32 changes)
2088{
2089 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2090
Eliad Peller576eeee2014-07-01 18:38:38 +03002091 /*
2092 * iwl_mvm_bss_info_changed_station() might call
2093 * iwl_mvm_protect_session(), which reads directly from
2094 * the device (the system time), so make sure it is available.
2095 */
2096 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_BSS_CHANGED))
2097 return;
2098
Johannes Berg8ca151b2013-01-24 14:25:36 +01002099 mutex_lock(&mvm->mutex);
2100
David Spinadel723f02e2014-04-27 09:54:54 +03002101 if (changes & BSS_CHANGED_IDLE && !bss_conf->idle)
David Spinadelfb98be52014-05-04 12:51:10 +03002102 iwl_mvm_scan_offload_stop(mvm, true);
David Spinadel723f02e2014-04-27 09:54:54 +03002103
Johannes Berg8ca151b2013-01-24 14:25:36 +01002104 switch (vif->type) {
2105 case NL80211_IFTYPE_STATION:
2106 iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes);
2107 break;
2108 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02002109 case NL80211_IFTYPE_ADHOC:
2110 iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002111 break;
2112 default:
2113 /* shouldn't happen */
2114 WARN_ON_ONCE(1);
2115 }
2116
2117 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002118 iwl_mvm_unref(mvm, IWL_MVM_REF_BSS_CHANGED);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002119}
2120
Eliad Peller4660dfb2014-06-22 18:15:59 +03002121static int iwl_mvm_cancel_scan_wait_notif(struct iwl_mvm *mvm,
2122 enum iwl_scan_status scan_type)
2123{
2124 int ret;
2125 bool wait_for_handlers = false;
2126
2127 mutex_lock(&mvm->mutex);
2128
2129 if (mvm->scan_status != scan_type) {
2130 ret = 0;
2131 /* make sure there are no pending notifications */
2132 wait_for_handlers = true;
2133 goto out;
2134 }
2135
2136 switch (scan_type) {
2137 case IWL_MVM_SCAN_SCHED:
2138 ret = iwl_mvm_scan_offload_stop(mvm, true);
2139 break;
2140 case IWL_MVM_SCAN_OS:
2141 ret = iwl_mvm_cancel_scan(mvm);
2142 break;
2143 case IWL_MVM_SCAN_NONE:
2144 default:
2145 WARN_ON_ONCE(1);
2146 ret = -EINVAL;
2147 break;
2148 }
2149 if (ret)
2150 goto out;
2151
2152 wait_for_handlers = true;
2153out:
2154 mutex_unlock(&mvm->mutex);
2155
2156 /* make sure we consume the completion notification */
2157 if (wait_for_handlers)
2158 iwl_mvm_wait_for_async_handlers(mvm);
2159
2160 return ret;
2161}
Johannes Berg8ca151b2013-01-24 14:25:36 +01002162static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw,
2163 struct ieee80211_vif *vif,
David Spinadelc56ef672014-02-05 15:21:13 +02002164 struct ieee80211_scan_request *hw_req)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002165{
2166 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
David Spinadelc56ef672014-02-05 15:21:13 +02002167 struct cfg80211_scan_request *req = &hw_req->req;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002168 int ret;
2169
David Spinadel762533b2014-06-05 11:20:43 +03002170 if (req->n_channels == 0 ||
2171 req->n_channels > mvm->fw->ucode_capa.n_scan_channels)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002172 return -EINVAL;
2173
David Spinadeld2496222014-05-20 12:46:37 +03002174 if (!(mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
2175 ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_SCHED);
2176 if (ret)
2177 return ret;
2178 }
Eliad Peller4660dfb2014-06-22 18:15:59 +03002179
Johannes Berg8ca151b2013-01-24 14:25:36 +01002180 mutex_lock(&mvm->mutex);
2181
Eliad Peller4660dfb2014-06-22 18:15:59 +03002182 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002183 ret = -EBUSY;
Arik Nemtsov519e2022013-10-17 17:51:35 +03002184 goto out;
2185 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01002186
Arik Nemtsov519e2022013-10-17 17:51:35 +03002187 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
2188
David Spinadelb975e552014-11-17 12:30:05 +02002189 if (mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN)
David Spinadeld2496222014-05-20 12:46:37 +03002190 ret = iwl_mvm_scan_umac(mvm, vif, hw_req);
David Spinadelb975e552014-11-17 12:30:05 +02002191 else if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
2192 ret = iwl_mvm_unified_scan_lmac(mvm, vif, hw_req);
David Spinadelfb98be52014-05-04 12:51:10 +03002193 else
2194 ret = iwl_mvm_scan_request(mvm, vif, req);
2195
Arik Nemtsov519e2022013-10-17 17:51:35 +03002196 if (ret)
2197 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
2198out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002199 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002200 return ret;
2201}
2202
2203static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw,
2204 struct ieee80211_vif *vif)
2205{
2206 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2207
2208 mutex_lock(&mvm->mutex);
2209
2210 iwl_mvm_cancel_scan(mvm);
2211
2212 mutex_unlock(&mvm->mutex);
2213}
2214
2215static void
2216iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw,
Johannes Berg3e56ead2013-02-15 22:23:18 +01002217 struct ieee80211_sta *sta, u16 tids,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002218 int num_frames,
2219 enum ieee80211_frame_release_type reason,
2220 bool more_data)
2221{
2222 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002223
Johannes Berg3e56ead2013-02-15 22:23:18 +01002224 /* Called when we need to transmit (a) frame(s) from mac80211 */
Johannes Berg8ca151b2013-01-24 14:25:36 +01002225
Johannes Berg3e56ead2013-02-15 22:23:18 +01002226 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
2227 tids, more_data, false);
2228}
2229
2230static void
2231iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw,
2232 struct ieee80211_sta *sta, u16 tids,
2233 int num_frames,
2234 enum ieee80211_frame_release_type reason,
2235 bool more_data)
2236{
2237 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2238
2239 /* Called when we need to transmit (a) frame(s) from agg queue */
2240
2241 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
2242 tids, more_data, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002243}
2244
2245static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
2246 struct ieee80211_vif *vif,
2247 enum sta_notify_cmd cmd,
2248 struct ieee80211_sta *sta)
2249{
2250 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg5b577a92013-11-14 18:20:04 +01002251 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg3e56ead2013-02-15 22:23:18 +01002252 int tid;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002253
2254 switch (cmd) {
2255 case STA_NOTIFY_SLEEP:
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03002256 if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002257 ieee80211_sta_block_awake(hw, sta, true);
Johannes Berg3e56ead2013-02-15 22:23:18 +01002258 spin_lock_bh(&mvmsta->lock);
2259 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
2260 struct iwl_mvm_tid_data *tid_data;
2261
2262 tid_data = &mvmsta->tid_data[tid];
2263 if (tid_data->state != IWL_AGG_ON &&
2264 tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA)
2265 continue;
2266 if (iwl_mvm_tid_queued(tid_data) == 0)
2267 continue;
2268 ieee80211_sta_set_buffered(sta, tid, true);
2269 }
2270 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002271 /*
2272 * The fw updates the STA to be asleep. Tx packets on the Tx
2273 * queues to this station will not be transmitted. The fw will
2274 * send a Tx response with TX_STATUS_FAIL_DEST_PS.
2275 */
2276 break;
2277 case STA_NOTIFY_AWAKE:
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02002278 if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +01002279 break;
Johannes Berg9cc40712013-02-15 22:47:48 +01002280 iwl_mvm_sta_modify_ps_wake(mvm, sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002281 break;
2282 default:
2283 break;
2284 }
2285}
2286
Johannes Berg1ddbbb02013-12-04 22:39:17 +01002287static void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw,
2288 struct ieee80211_vif *vif,
2289 struct ieee80211_sta *sta)
2290{
2291 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01002292 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg1ddbbb02013-12-04 22:39:17 +01002293
2294 /*
2295 * This is called before mac80211 does RCU synchronisation,
2296 * so here we already invalidate our internal RCU-protected
2297 * station pointer. The rest of the code will thus no longer
2298 * be able to find the station this way, and we don't rely
2299 * on further RCU synchronisation after the sta_state()
2300 * callback deleted the station.
2301 */
2302 mutex_lock(&mvm->mutex);
2303 if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id]))
2304 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id],
2305 ERR_PTR(-ENOENT));
2306 mutex_unlock(&mvm->mutex);
2307}
2308
Johannes Berg8ca151b2013-01-24 14:25:36 +01002309static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
2310 struct ieee80211_vif *vif,
2311 struct ieee80211_sta *sta,
2312 enum ieee80211_sta_state old_state,
2313 enum ieee80211_sta_state new_state)
2314{
2315 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2316 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2317 int ret;
2318
2319 IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n",
2320 sta->addr, old_state, new_state);
2321
2322 /* this would be a mac80211 bug ... but don't crash */
2323 if (WARN_ON_ONCE(!mvmvif->phy_ctxt))
2324 return -EINVAL;
2325
2326 /* if a STA is being removed, reuse its ID */
2327 flush_work(&mvm->sta_drained_wk);
2328
2329 mutex_lock(&mvm->mutex);
2330 if (old_state == IEEE80211_STA_NOTEXIST &&
2331 new_state == IEEE80211_STA_NONE) {
Johannes Berg48bc1302013-07-04 15:55:29 +02002332 /*
2333 * Firmware bug - it'll crash if the beacon interval is less
2334 * than 16. We can't avoid connecting at all, so refuse the
2335 * station state change, this will cause mac80211 to abandon
2336 * attempts to connect to this AP, and eventually wpa_s will
2337 * blacklist the AP...
2338 */
2339 if (vif->type == NL80211_IFTYPE_STATION &&
2340 vif->bss_conf.beacon_int < 16) {
2341 IWL_ERR(mvm,
2342 "AP %pM beacon interval is %d, refusing due to firmware bug!\n",
2343 sta->addr, vif->bss_conf.beacon_int);
2344 ret = -EINVAL;
2345 goto out_unlock;
2346 }
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03002347
2348 if (sta->tdls &&
2349 (vif->p2p ||
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002350 iwl_mvm_tdls_sta_count(mvm, NULL) ==
2351 IWL_MVM_TDLS_STA_COUNT ||
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03002352 iwl_mvm_phy_ctx_count(mvm) > 1)) {
2353 IWL_DEBUG_MAC80211(mvm, "refusing TDLS sta\n");
2354 ret = -EBUSY;
2355 goto out_unlock;
2356 }
2357
Johannes Berg8ca151b2013-01-24 14:25:36 +01002358 ret = iwl_mvm_add_sta(mvm, vif, sta);
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002359 if (sta->tdls && ret == 0)
2360 iwl_mvm_recalc_tdls_state(mvm, vif, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002361 } else if (old_state == IEEE80211_STA_NONE &&
2362 new_state == IEEE80211_STA_AUTH) {
Haim Dreyfusse820c2d2014-04-06 11:19:09 +03002363 /*
2364 * EBS may be disabled due to previous failures reported by FW.
2365 * Reset EBS status here assuming environment has been changed.
2366 */
2367 mvm->last_ebs_successful = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002368 ret = 0;
2369 } else if (old_state == IEEE80211_STA_AUTH &&
2370 new_state == IEEE80211_STA_ASSOC) {
Johannes Berg7a453972013-02-12 13:10:44 +01002371 ret = iwl_mvm_update_sta(mvm, vif, sta);
2372 if (ret == 0)
2373 iwl_mvm_rs_rate_init(mvm, sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +02002374 mvmvif->phy_ctxt->channel->band,
2375 true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002376 } else if (old_state == IEEE80211_STA_ASSOC &&
2377 new_state == IEEE80211_STA_AUTHORIZED) {
Arik Nemtsovf59e0e3c2014-06-10 19:56:27 +03002378
2379 /* we don't support TDLS during DCM */
2380 if (iwl_mvm_phy_ctx_count(mvm) > 1)
2381 iwl_mvm_teardown_tdls_peers(mvm);
2382
Hila Gonen7df15b12012-12-12 11:16:19 +02002383 /* enable beacon filtering */
Avri Altmanfa7b2e72014-05-20 08:03:24 +03002384 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01002385 ret = 0;
2386 } else if (old_state == IEEE80211_STA_AUTHORIZED &&
2387 new_state == IEEE80211_STA_ASSOC) {
Hila Gonen7df15b12012-12-12 11:16:19 +02002388 /* disable beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03002389 WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01002390 ret = 0;
2391 } else if (old_state == IEEE80211_STA_ASSOC &&
2392 new_state == IEEE80211_STA_AUTH) {
2393 ret = 0;
2394 } else if (old_state == IEEE80211_STA_AUTH &&
2395 new_state == IEEE80211_STA_NONE) {
2396 ret = 0;
2397 } else if (old_state == IEEE80211_STA_NONE &&
2398 new_state == IEEE80211_STA_NOTEXIST) {
2399 ret = iwl_mvm_rm_sta(mvm, vif, sta);
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002400 if (sta->tdls)
2401 iwl_mvm_recalc_tdls_state(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002402 } else {
2403 ret = -EIO;
2404 }
Johannes Berg48bc1302013-07-04 15:55:29 +02002405 out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002406 mutex_unlock(&mvm->mutex);
2407
Liad Kaufman9c126cd2014-10-06 19:08:56 +02002408 if (sta->tdls && ret == 0) {
2409 if (old_state == IEEE80211_STA_NOTEXIST &&
2410 new_state == IEEE80211_STA_NONE)
2411 ieee80211_reserve_tid(sta, IWL_MVM_TDLS_FW_TID);
2412 else if (old_state == IEEE80211_STA_NONE &&
2413 new_state == IEEE80211_STA_NOTEXIST)
2414 ieee80211_unreserve_tid(sta, IWL_MVM_TDLS_FW_TID);
2415 }
2416
Johannes Berg8ca151b2013-01-24 14:25:36 +01002417 return ret;
2418}
2419
2420static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2421{
2422 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2423
2424 mvm->rts_threshold = value;
2425
2426 return 0;
2427}
2428
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02002429static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw,
2430 struct ieee80211_vif *vif,
2431 struct ieee80211_sta *sta, u32 changed)
2432{
2433 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2434
2435 if (vif->type == NL80211_IFTYPE_STATION &&
2436 changed & IEEE80211_RC_NSS_CHANGED)
2437 iwl_mvm_sf_update(mvm, vif, false);
2438}
2439
Johannes Berg8ca151b2013-01-24 14:25:36 +01002440static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw,
2441 struct ieee80211_vif *vif, u16 ac,
2442 const struct ieee80211_tx_queue_params *params)
2443{
2444 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2445 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2446
2447 mvmvif->queue_params[ac] = *params;
2448
2449 /*
2450 * No need to update right away, we'll get BSS_CHANGED_QOS
2451 * The exception is P2P_DEVICE interface which needs immediate update.
2452 */
2453 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
2454 int ret;
2455
2456 mutex_lock(&mvm->mutex);
Johannes Berg3dfd3a92014-08-11 21:37:30 +02002457 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002458 mutex_unlock(&mvm->mutex);
2459 return ret;
2460 }
2461 return 0;
2462}
2463
2464static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw,
2465 struct ieee80211_vif *vif)
2466{
2467 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2468 u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS,
2469 200 + vif->bss_conf.beacon_int);
2470 u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS,
2471 100 + vif->bss_conf.beacon_int);
2472
2473 if (WARN_ON_ONCE(vif->bss_conf.assoc))
2474 return;
2475
Eliad Peller576eeee2014-07-01 18:38:38 +03002476 /*
2477 * iwl_mvm_protect_session() reads directly from the device
2478 * (the system time), so make sure it is available.
2479 */
2480 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PREPARE_TX))
2481 return;
2482
Johannes Berg8ca151b2013-01-24 14:25:36 +01002483 mutex_lock(&mvm->mutex);
2484 /* Try really hard to protect the session and hear a beacon */
Liad Kaufmand20d37b2014-07-06 17:14:39 +03002485 iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002486 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002487
2488 iwl_mvm_unref(mvm, IWL_MVM_REF_PREPARE_TX);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002489}
2490
David Spinadel35a000b2013-08-28 09:29:43 +03002491static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw,
2492 struct ieee80211_vif *vif,
2493 struct cfg80211_sched_scan_request *req,
David Spinadel633e2712014-02-06 16:15:23 +02002494 struct ieee80211_scan_ies *ies)
David Spinadel35a000b2013-08-28 09:29:43 +03002495{
2496 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2497 int ret;
2498
David Spinadeld2496222014-05-20 12:46:37 +03002499 if (!(mvm->fw->ucode_capa.capa[0] & IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
2500 ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_OS);
2501 if (ret)
2502 return ret;
2503 }
Eliad Peller4660dfb2014-06-22 18:15:59 +03002504
David Spinadel35a000b2013-08-28 09:29:43 +03002505 mutex_lock(&mvm->mutex);
2506
Alexander Bondar59ecb122014-07-30 17:40:28 +03002507 /* Newest FW fixes sched scan while connected on another interface */
2508 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN) {
2509 if (!vif->bss_conf.idle) {
2510 ret = -EBUSY;
2511 goto out;
2512 }
2513 } else if (!iwl_mvm_is_idle(mvm)) {
David Spinadelbd5e4742014-04-24 13:15:29 +03002514 ret = -EBUSY;
2515 goto out;
2516 }
2517
Eliad Peller4660dfb2014-06-22 18:15:59 +03002518 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
David Spinadel35a000b2013-08-28 09:29:43 +03002519 ret = -EBUSY;
2520 goto out;
2521 }
2522
Luciano Coelhob141c232014-10-01 13:22:40 +03002523 ret = iwl_mvm_scan_offload_start(mvm, vif, req, ies);
David Spinadel35a000b2013-08-28 09:29:43 +03002524 if (ret)
Luciano Coelhob141c232014-10-01 13:22:40 +03002525 mvm->scan_status = IWL_MVM_SCAN_NONE;
David Spinadeld2496222014-05-20 12:46:37 +03002526
David Spinadel35a000b2013-08-28 09:29:43 +03002527out:
2528 mutex_unlock(&mvm->mutex);
2529 return ret;
2530}
2531
Johannes Berg37e33082014-02-17 10:48:17 +01002532static int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw,
2533 struct ieee80211_vif *vif)
David Spinadel35a000b2013-08-28 09:29:43 +03002534{
2535 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002536 int ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002537
2538 mutex_lock(&mvm->mutex);
David Spinadelfb98be52014-05-04 12:51:10 +03002539 ret = iwl_mvm_scan_offload_stop(mvm, false);
David Spinadel35a000b2013-08-28 09:29:43 +03002540 mutex_unlock(&mvm->mutex);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002541 iwl_mvm_wait_for_async_handlers(mvm);
Johannes Berg37e33082014-02-17 10:48:17 +01002542
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002543 return ret;
David Spinadeld2496222014-05-20 12:46:37 +03002544
David Spinadel35a000b2013-08-28 09:29:43 +03002545}
2546
Johannes Berg8ca151b2013-01-24 14:25:36 +01002547static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw,
2548 enum set_key_cmd cmd,
2549 struct ieee80211_vif *vif,
2550 struct ieee80211_sta *sta,
2551 struct ieee80211_key_conf *key)
2552{
2553 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2554 int ret;
2555
2556 if (iwlwifi_mod_params.sw_crypto) {
2557 IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n");
2558 return -EOPNOTSUPP;
2559 }
2560
2561 switch (key->cipher) {
2562 case WLAN_CIPHER_SUITE_TKIP:
2563 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
2564 /* fall-through */
2565 case WLAN_CIPHER_SUITE_CCMP:
2566 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2567 break;
2568 case WLAN_CIPHER_SUITE_AES_CMAC:
2569 WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE));
2570 break;
2571 case WLAN_CIPHER_SUITE_WEP40:
2572 case WLAN_CIPHER_SUITE_WEP104:
Johannes Bergba3943b2014-11-12 23:54:48 +01002573 /* For non-client mode, only use WEP keys for TX as we probably
2574 * don't have a station yet anyway and would then have to keep
2575 * track of the keys, linking them to each of the clients/peers
2576 * as they appear. For now, don't do that, for performance WEP
2577 * offload doesn't really matter much, but we need it for some
2578 * other offload features in client mode.
Johannes Berg8ca151b2013-01-24 14:25:36 +01002579 */
Johannes Bergba3943b2014-11-12 23:54:48 +01002580 if (vif->type != NL80211_IFTYPE_STATION)
2581 return 0;
2582 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002583 default:
Max Stepanove36e5432013-08-27 19:56:13 +03002584 /* currently FW supports only one optional cipher scheme */
2585 if (hw->n_cipher_schemes &&
2586 hw->cipher_schemes->cipher == key->cipher)
2587 key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
2588 else
2589 return -EOPNOTSUPP;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002590 }
2591
2592 mutex_lock(&mvm->mutex);
2593
2594 switch (cmd) {
2595 case SET_KEY:
Johannes Berg5023d962013-07-31 14:07:43 +02002596 if ((vif->type == NL80211_IFTYPE_ADHOC ||
2597 vif->type == NL80211_IFTYPE_AP) && !sta) {
2598 /*
2599 * GTK on AP interface is a TX-only key, return 0;
2600 * on IBSS they're per-station and because we're lazy
2601 * we don't support them for RX, so do the same.
2602 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002603 ret = 0;
2604 key->hw_key_idx = STA_KEY_IDX_INVALID;
2605 break;
2606 }
2607
Johannes Berg8ca151b2013-01-24 14:25:36 +01002608 IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n");
2609 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false);
2610 if (ret) {
2611 IWL_WARN(mvm, "set key failed\n");
2612 /*
2613 * can't add key for RX, but we don't need it
2614 * in the device for TX so still return 0
2615 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002616 key->hw_key_idx = STA_KEY_IDX_INVALID;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002617 ret = 0;
2618 }
2619
2620 break;
2621 case DISABLE_KEY:
Johannes Berg6caffd42013-03-06 13:15:21 +01002622 if (key->hw_key_idx == STA_KEY_IDX_INVALID) {
2623 ret = 0;
2624 break;
2625 }
2626
Johannes Berg8ca151b2013-01-24 14:25:36 +01002627 IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n");
2628 ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key);
2629 break;
2630 default:
2631 ret = -EINVAL;
2632 }
2633
2634 mutex_unlock(&mvm->mutex);
2635 return ret;
2636}
2637
2638static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw,
2639 struct ieee80211_vif *vif,
2640 struct ieee80211_key_conf *keyconf,
2641 struct ieee80211_sta *sta,
2642 u32 iv32, u16 *phase1key)
2643{
2644 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2645
Johannes Berg5023d962013-07-31 14:07:43 +02002646 if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID)
2647 return;
2648
Johannes Berg8ca151b2013-01-24 14:25:36 +01002649 iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key);
2650}
2651
2652
Ariej Marjiehb1128892014-07-16 21:11:12 +03002653static bool iwl_mvm_rx_aux_roc(struct iwl_notif_wait_data *notif_wait,
2654 struct iwl_rx_packet *pkt, void *data)
2655{
2656 struct iwl_mvm *mvm =
2657 container_of(notif_wait, struct iwl_mvm, notif_wait);
2658 struct iwl_hs20_roc_res *resp;
2659 int resp_len = iwl_rx_packet_payload_len(pkt);
2660 struct iwl_mvm_time_event_data *te_data = data;
2661
2662 if (WARN_ON(pkt->hdr.cmd != HOT_SPOT_CMD))
2663 return true;
2664
2665 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
2666 IWL_ERR(mvm, "Invalid HOT_SPOT_CMD response\n");
2667 return true;
2668 }
2669
2670 resp = (void *)pkt->data;
2671
2672 IWL_DEBUG_TE(mvm,
2673 "Aux ROC: Recieved response from ucode: status=%d uid=%d\n",
2674 resp->status, resp->event_unique_id);
2675
2676 te_data->uid = le32_to_cpu(resp->event_unique_id);
2677 IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
2678 te_data->uid);
2679
2680 spin_lock_bh(&mvm->time_event_lock);
2681 list_add_tail(&te_data->list, &mvm->aux_roc_te_list);
2682 spin_unlock_bh(&mvm->time_event_lock);
2683
2684 return true;
2685}
2686
2687#define AUX_ROC_MAX_DELAY_ON_CHANNEL 5000
2688static int iwl_mvm_send_aux_roc_cmd(struct iwl_mvm *mvm,
2689 struct ieee80211_channel *channel,
2690 struct ieee80211_vif *vif,
2691 int duration)
2692{
2693 int res, time_reg = DEVICE_SYSTEM_TIME_REG;
2694 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2695 struct iwl_mvm_time_event_data *te_data = &mvmvif->hs_time_event_data;
2696 static const u8 time_event_response[] = { HOT_SPOT_CMD };
2697 struct iwl_notification_wait wait_time_event;
2698 struct iwl_hs20_roc_req aux_roc_req = {
2699 .action = cpu_to_le32(FW_CTXT_ACTION_ADD),
2700 .id_and_color =
2701 cpu_to_le32(FW_CMD_ID_AND_COLOR(MAC_INDEX_AUX, 0)),
2702 .sta_id_and_color = cpu_to_le32(mvm->aux_sta.sta_id),
2703 /* Set the channel info data */
2704 .channel_info.band = (channel->band == IEEE80211_BAND_2GHZ) ?
2705 PHY_BAND_24 : PHY_BAND_5,
2706 .channel_info.channel = channel->hw_value,
2707 .channel_info.width = PHY_VHT_CHANNEL_MODE20,
2708 /* Set the time and duration */
2709 .apply_time = cpu_to_le32(iwl_read_prph(mvm->trans, time_reg)),
2710 .apply_time_max_delay =
2711 cpu_to_le32(MSEC_TO_TU(AUX_ROC_MAX_DELAY_ON_CHANNEL)),
2712 .duration = cpu_to_le32(MSEC_TO_TU(duration)),
2713 };
2714
2715 /* Set the node address */
2716 memcpy(aux_roc_req.node_addr, vif->addr, ETH_ALEN);
2717
Matti Gottlieba6cc5162014-09-29 11:46:04 +03002718 lockdep_assert_held(&mvm->mutex);
2719
2720 spin_lock_bh(&mvm->time_event_lock);
2721
2722 if (WARN_ON(te_data->id == HOT_SPOT_CMD)) {
2723 spin_unlock_bh(&mvm->time_event_lock);
2724 return -EIO;
2725 }
2726
Ariej Marjiehb1128892014-07-16 21:11:12 +03002727 te_data->vif = vif;
2728 te_data->duration = duration;
2729 te_data->id = HOT_SPOT_CMD;
2730
Ariej Marjiehb1128892014-07-16 21:11:12 +03002731 spin_unlock_bh(&mvm->time_event_lock);
2732
2733 /*
2734 * Use a notification wait, which really just processes the
2735 * command response and doesn't wait for anything, in order
2736 * to be able to process the response and get the UID inside
2737 * the RX path. Using CMD_WANT_SKB doesn't work because it
2738 * stores the buffer and then wakes up this thread, by which
2739 * time another notification (that the time event started)
2740 * might already be processed unsuccessfully.
2741 */
2742 iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
2743 time_event_response,
2744 ARRAY_SIZE(time_event_response),
2745 iwl_mvm_rx_aux_roc, te_data);
2746
2747 res = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0, sizeof(aux_roc_req),
2748 &aux_roc_req);
2749
2750 if (res) {
2751 IWL_ERR(mvm, "Couldn't send HOT_SPOT_CMD: %d\n", res);
2752 iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
2753 goto out_clear_te;
2754 }
2755
2756 /* No need to wait for anything, so just pass 1 (0 isn't valid) */
2757 res = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
2758 /* should never fail */
2759 WARN_ON_ONCE(res);
2760
2761 if (res) {
2762 out_clear_te:
2763 spin_lock_bh(&mvm->time_event_lock);
2764 iwl_mvm_te_clear_data(mvm, te_data);
2765 spin_unlock_bh(&mvm->time_event_lock);
2766 }
2767
2768 return res;
2769}
2770
Johannes Berg8ca151b2013-01-24 14:25:36 +01002771static int iwl_mvm_roc(struct ieee80211_hw *hw,
2772 struct ieee80211_vif *vif,
2773 struct ieee80211_channel *channel,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002774 int duration,
2775 enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002776{
2777 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002778 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002779 struct cfg80211_chan_def chandef;
Ilan Peer31d385a2013-04-02 10:25:46 +03002780 struct iwl_mvm_phy_ctxt *phy_ctxt;
2781 int ret, i;
2782
2783 IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value,
2784 duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002785
Matti Gottlieba6cc5162014-09-29 11:46:04 +03002786 mutex_lock(&mvm->mutex);
2787
Ariej Marjiehb1128892014-07-16 21:11:12 +03002788 switch (vif->type) {
2789 case NL80211_IFTYPE_STATION:
Luciano Coelho5ac6c722014-10-21 16:12:18 +03002790 if (mvm->fw->ucode_capa.capa[0] &
2791 IWL_UCODE_TLV_CAPA_HOTSPOT_SUPPORT) {
2792 /* Use aux roc framework (HS20) */
2793 ret = iwl_mvm_send_aux_roc_cmd(mvm, channel,
2794 vif, duration);
2795 goto out_unlock;
2796 }
2797 IWL_ERR(mvm, "hotspot not supported\n");
2798 ret = -EINVAL;
Matti Gottlieba6cc5162014-09-29 11:46:04 +03002799 goto out_unlock;
Ariej Marjiehb1128892014-07-16 21:11:12 +03002800 case NL80211_IFTYPE_P2P_DEVICE:
2801 /* handle below */
2802 break;
2803 default:
2804 IWL_ERR(mvm, "vif isn't P2P_DEVICE: %d\n", vif->type);
Matti Gottlieba6cc5162014-09-29 11:46:04 +03002805 ret = -EINVAL;
2806 goto out_unlock;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002807 }
2808
Ilan Peer31d385a2013-04-02 10:25:46 +03002809 for (i = 0; i < NUM_PHY_CTX; i++) {
2810 phy_ctxt = &mvm->phy_ctxts[i];
2811 if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt)
2812 continue;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002813
Ilan Peer31d385a2013-04-02 10:25:46 +03002814 if (phy_ctxt->ref && channel == phy_ctxt->channel) {
2815 /*
2816 * Unbind the P2P_DEVICE from the current PHY context,
2817 * and if the PHY context is not used remove it.
2818 */
2819 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2820 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2821 goto out_unlock;
2822
2823 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2824
2825 /* Bind the P2P_DEVICE to the current PHY Context */
2826 mvmvif->phy_ctxt = phy_ctxt;
2827
2828 ret = iwl_mvm_binding_add_vif(mvm, vif);
2829 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2830 goto out_unlock;
2831
2832 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2833 goto schedule_time_event;
2834 }
2835 }
2836
2837 /* Need to update the PHY context only if the ROC channel changed */
2838 if (channel == mvmvif->phy_ctxt->channel)
2839 goto schedule_time_event;
2840
2841 cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT);
2842
2843 /*
2844 * Change the PHY context configuration as it is currently referenced
2845 * only by the P2P Device MAC
2846 */
2847 if (mvmvif->phy_ctxt->ref == 1) {
2848 ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt,
2849 &chandef, 1, 1);
2850 if (ret)
2851 goto out_unlock;
2852 } else {
2853 /*
2854 * The PHY context is shared with other MACs. Need to remove the
2855 * P2P Device from the binding, allocate an new PHY context and
2856 * create a new binding
2857 */
2858 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2859 if (!phy_ctxt) {
2860 ret = -ENOSPC;
2861 goto out_unlock;
2862 }
2863
2864 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef,
2865 1, 1);
2866 if (ret) {
2867 IWL_ERR(mvm, "Failed to change PHY context\n");
2868 goto out_unlock;
2869 }
2870
2871 /* Unbind the P2P_DEVICE from the current PHY context */
2872 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2873 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2874 goto out_unlock;
2875
2876 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2877
2878 /* Bind the P2P_DEVICE to the new allocated PHY context */
2879 mvmvif->phy_ctxt = phy_ctxt;
2880
2881 ret = iwl_mvm_binding_add_vif(mvm, vif);
2882 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2883 goto out_unlock;
2884
2885 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2886 }
2887
2888schedule_time_event:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002889 /* Schedule the time events */
Ilan Peere635c792013-02-13 11:05:18 +02002890 ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002891
Ilan Peer31d385a2013-04-02 10:25:46 +03002892out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002893 mutex_unlock(&mvm->mutex);
2894 IWL_DEBUG_MAC80211(mvm, "leave\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01002895 return ret;
2896}
2897
2898static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw)
2899{
2900 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2901
2902 IWL_DEBUG_MAC80211(mvm, "enter\n");
2903
2904 mutex_lock(&mvm->mutex);
Matti Gottliebbf5da872014-11-16 10:25:12 +02002905 iwl_mvm_stop_roc(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002906 mutex_unlock(&mvm->mutex);
2907
2908 IWL_DEBUG_MAC80211(mvm, "leave\n");
2909 return 0;
2910}
2911
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002912static int __iwl_mvm_add_chanctx(struct iwl_mvm *mvm,
2913 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002914{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002915 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2916 struct iwl_mvm_phy_ctxt *phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002917 int ret;
2918
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002919 lockdep_assert_held(&mvm->mutex);
2920
Ilan Peer53a9d612013-04-28 11:55:08 +03002921 IWL_DEBUG_MAC80211(mvm, "Add channel context\n");
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002922
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002923 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2924 if (!phy_ctxt) {
2925 ret = -ENOSPC;
2926 goto out;
2927 }
2928
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002929 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Ilan Peer53a9d612013-04-28 11:55:08 +03002930 ctx->rx_chains_static,
2931 ctx->rx_chains_dynamic);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002932 if (ret) {
2933 IWL_ERR(mvm, "Failed to add PHY context\n");
2934 goto out;
2935 }
2936
Ilan Peer53a9d612013-04-28 11:55:08 +03002937 iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002938 *phy_ctxt_id = phy_ctxt->id;
2939out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002940 return ret;
2941}
2942
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002943static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw,
2944 struct ieee80211_chanctx_conf *ctx)
2945{
2946 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2947 int ret;
2948
2949 mutex_lock(&mvm->mutex);
2950 ret = __iwl_mvm_add_chanctx(mvm, ctx);
2951 mutex_unlock(&mvm->mutex);
2952
2953 return ret;
2954}
2955
2956static void __iwl_mvm_remove_chanctx(struct iwl_mvm *mvm,
2957 struct ieee80211_chanctx_conf *ctx)
2958{
2959 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2960 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
2961
2962 lockdep_assert_held(&mvm->mutex);
2963
2964 iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt);
2965}
2966
Johannes Berg8ca151b2013-01-24 14:25:36 +01002967static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw,
2968 struct ieee80211_chanctx_conf *ctx)
2969{
2970 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002971
2972 mutex_lock(&mvm->mutex);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002973 __iwl_mvm_remove_chanctx(mvm, ctx);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002974 mutex_unlock(&mvm->mutex);
2975}
2976
2977static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw,
2978 struct ieee80211_chanctx_conf *ctx,
2979 u32 changed)
2980{
2981 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002982 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2983 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002984
Ilan Peer31d385a2013-04-02 10:25:46 +03002985 if (WARN_ONCE((phy_ctxt->ref > 1) &&
2986 (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH |
2987 IEEE80211_CHANCTX_CHANGE_RX_CHAINS |
Arik Nemtsov2dceeda2013-12-29 17:57:53 +02002988 IEEE80211_CHANCTX_CHANGE_RADAR |
2989 IEEE80211_CHANCTX_CHANGE_MIN_WIDTH)),
Ilan Peer31d385a2013-04-02 10:25:46 +03002990 "Cannot change PHY. Ref=%d, changed=0x%X\n",
2991 phy_ctxt->ref, changed))
2992 return;
2993
Johannes Berg8ca151b2013-01-24 14:25:36 +01002994 mutex_lock(&mvm->mutex);
Emmanuel Grumbach4d664492014-04-30 18:09:59 +03002995 iwl_mvm_bt_coex_vif_change(mvm);
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002996 iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002997 ctx->rx_chains_static,
2998 ctx->rx_chains_dynamic);
2999 mutex_unlock(&mvm->mutex);
3000}
3001
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003002static int __iwl_mvm_assign_vif_chanctx(struct iwl_mvm *mvm,
3003 struct ieee80211_vif *vif,
Luciano Coelhof0c97782014-03-05 15:41:48 +02003004 struct ieee80211_chanctx_conf *ctx,
3005 bool switching_chanctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003006{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02003007 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
3008 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01003009 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3010 int ret;
3011
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003012 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003013
Ilan Peerfe0f2de2013-03-21 10:23:52 +02003014 mvmvif->phy_ctxt = phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003015
3016 switch (vif->type) {
3017 case NL80211_IFTYPE_AP:
Luciano Coelho4741dd02014-11-10 11:10:13 +02003018 /* only needed if we're switching chanctx (i.e. during CSA) */
3019 if (switching_chanctx) {
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003020 mvmvif->ap_ibss_active = true;
3021 break;
3022 }
Johannes Berg5023d962013-07-31 14:07:43 +02003023 case NL80211_IFTYPE_ADHOC:
Johannes Berg8ca151b2013-01-24 14:25:36 +01003024 /*
3025 * The AP binding flow is handled as part of the start_ap flow
Johannes Berg5023d962013-07-31 14:07:43 +02003026 * (in bss_info_changed), similarly for IBSS.
Johannes Berg8ca151b2013-01-24 14:25:36 +01003027 */
3028 ret = 0;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003029 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003030 case NL80211_IFTYPE_STATION:
Luciano Coelho2533edc2014-08-08 19:50:46 +03003031 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003032 case NL80211_IFTYPE_MONITOR:
Luciano Coelho2533edc2014-08-08 19:50:46 +03003033 /* always disable PS when a monitor interface is active */
3034 mvmvif->ps_disabled = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003035 break;
3036 default:
3037 ret = -EINVAL;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003038 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003039 }
3040
3041 ret = iwl_mvm_binding_add_vif(mvm, vif);
3042 if (ret)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003043 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003044
3045 /*
Alexander Bondar92d85562013-10-23 11:50:34 +02003046 * Power state must be updated before quotas,
3047 * otherwise fw will complain.
3048 */
Arik Nemtsov999609f2014-05-15 17:31:51 +03003049 iwl_mvm_power_update_mac(mvm);
Alexander Bondar92d85562013-10-23 11:50:34 +02003050
3051 /* Setting the quota at this stage is only required for monitor
Johannes Berg8ca151b2013-01-24 14:25:36 +01003052 * interfaces. For the other types, the bss_info changed flow
3053 * will handle quota settings.
3054 */
3055 if (vif->type == NL80211_IFTYPE_MONITOR) {
Ilan Peer1e1391c2013-03-13 14:52:04 +02003056 mvmvif->monitor_active = true;
Johannes Berg01662302014-06-06 15:18:45 +02003057 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003058 if (ret)
3059 goto out_remove_binding;
3060 }
3061
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003062 /* Handle binding during CSA */
Luciano Coelhoa57c6882014-11-10 11:10:16 +02003063 if (vif->type == NL80211_IFTYPE_AP) {
Johannes Berg01662302014-06-06 15:18:45 +02003064 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg3dfd3a92014-08-11 21:37:30 +02003065 iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003066 }
3067
Luciano Coelho4741dd02014-11-10 11:10:13 +02003068 if (switching_chanctx && vif->type == NL80211_IFTYPE_STATION) {
Luciano Coelho686e7fe2014-11-10 11:10:21 +02003069 u32 duration = 2 * vif->bss_conf.beacon_int;
3070
3071 /* iwl_mvm_protect_session() reads directly from the
3072 * device (the system time), so make sure it is
3073 * available.
3074 */
3075 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PROTECT_CSA);
3076 if (ret)
3077 goto out_remove_binding;
3078
3079 /* Protect the session to make sure we hear the first
3080 * beacon on the new channel.
3081 */
3082 iwl_mvm_protect_session(mvm, vif, duration, duration,
3083 vif->bss_conf.beacon_int / 2,
3084 true);
3085
3086 iwl_mvm_unref(mvm, IWL_MVM_REF_PROTECT_CSA);
3087
Luciano Coelhoa57c6882014-11-10 11:10:16 +02003088 iwl_mvm_update_quotas(mvm, NULL);
Luciano Coelho0ce04ce2014-05-08 16:03:39 +03003089 }
3090
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003091 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003092
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003093out_remove_binding:
Johannes Berg8ca151b2013-01-24 14:25:36 +01003094 iwl_mvm_binding_remove_vif(mvm, vif);
Arik Nemtsov999609f2014-05-15 17:31:51 +03003095 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003096out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01003097 if (ret)
3098 mvmvif->phy_ctxt = NULL;
3099 return ret;
3100}
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003101static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw,
3102 struct ieee80211_vif *vif,
3103 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01003104{
3105 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003106 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003107
3108 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02003109 ret = __iwl_mvm_assign_vif_chanctx(mvm, vif, ctx, false);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003110 mutex_unlock(&mvm->mutex);
3111
3112 return ret;
3113}
3114
3115static void __iwl_mvm_unassign_vif_chanctx(struct iwl_mvm *mvm,
3116 struct ieee80211_vif *vif,
Luciano Coelhof0c97782014-03-05 15:41:48 +02003117 struct ieee80211_chanctx_conf *ctx,
3118 bool switching_chanctx)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003119{
3120 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Luciano Coelhof0c97782014-03-05 15:41:48 +02003121 struct ieee80211_vif *disabled_vif = NULL;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003122
3123 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003124
3125 iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data);
3126
Johannes Berg8ca151b2013-01-24 14:25:36 +01003127 switch (vif->type) {
Johannes Berg5023d962013-07-31 14:07:43 +02003128 case NL80211_IFTYPE_ADHOC:
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003129 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003130 case NL80211_IFTYPE_MONITOR:
Ilan Peer1e1391c2013-03-13 14:52:04 +02003131 mvmvif->monitor_active = false;
Luciano Coelho2533edc2014-08-08 19:50:46 +03003132 mvmvif->ps_disabled = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003133 break;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003134 case NL80211_IFTYPE_AP:
3135 /* This part is triggered only during CSA */
Luciano Coelho4741dd02014-11-10 11:10:13 +02003136 if (!switching_chanctx || !mvmvif->ap_ibss_active)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003137 goto out;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003138
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02003139 mvmvif->csa_countdown = false;
3140
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03003141 /* Set CS bit on all the stations */
3142 iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, true);
3143
3144 /* Save blocked iface, the timeout is set on the next beacon */
3145 rcu_assign_pointer(mvm->csa_tx_blocked_vif, vif);
3146
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003147 mvmvif->ap_ibss_active = false;
Luciano Coelhof0c97782014-03-05 15:41:48 +02003148 break;
3149 case NL80211_IFTYPE_STATION:
3150 if (!switching_chanctx)
3151 break;
3152
3153 disabled_vif = vif;
3154
Johannes Berg3dfd3a92014-08-11 21:37:30 +02003155 iwl_mvm_mac_ctxt_changed(mvm, vif, true, NULL);
Luciano Coelhof0c97782014-03-05 15:41:48 +02003156 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01003157 default:
3158 break;
3159 }
3160
Luciano Coelhof0c97782014-03-05 15:41:48 +02003161 iwl_mvm_update_quotas(mvm, disabled_vif);
Ilan Peer1e1391c2013-03-13 14:52:04 +02003162 iwl_mvm_binding_remove_vif(mvm, vif);
Alexander Bondar1c2abf72013-08-27 20:31:48 +03003163
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003164out:
Ilan Peera11e1442013-12-31 21:19:55 +02003165 mvmvif->phy_ctxt = NULL;
Arik Nemtsov999609f2014-05-15 17:31:51 +03003166 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003167}
3168
3169static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw,
3170 struct ieee80211_vif *vif,
3171 struct ieee80211_chanctx_conf *ctx)
3172{
3173 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3174
3175 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02003176 __iwl_mvm_unassign_vif_chanctx(mvm, vif, ctx, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003177 mutex_unlock(&mvm->mutex);
3178}
3179
Luciano Coelho50cc9572014-11-10 11:10:08 +02003180static int
3181iwl_mvm_switch_vif_chanctx_swap(struct iwl_mvm *mvm,
3182 struct ieee80211_vif_chanctx_switch *vifs)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003183{
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003184 int ret;
3185
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003186 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02003187 __iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003188 __iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx);
3189
3190 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].new_ctx);
3191 if (ret) {
3192 IWL_ERR(mvm, "failed to add new_ctx during channel switch\n");
3193 goto out_reassign;
3194 }
3195
Luciano Coelhof0c97782014-03-05 15:41:48 +02003196 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx,
3197 true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003198 if (ret) {
3199 IWL_ERR(mvm,
3200 "failed to assign new_ctx during channel switch\n");
3201 goto out_remove;
3202 }
3203
Arik Nemtsovf6972672014-06-15 16:03:55 +03003204 /* we don't support TDLS during DCM - can be caused by channel switch */
3205 if (iwl_mvm_phy_ctx_count(mvm) > 1)
3206 iwl_mvm_teardown_tdls_peers(mvm);
3207
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003208 goto out;
3209
3210out_remove:
3211 __iwl_mvm_remove_chanctx(mvm, vifs[0].new_ctx);
3212
3213out_reassign:
Luciano Coelho6fd1fb62014-11-10 11:10:10 +02003214 if (__iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx)) {
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003215 IWL_ERR(mvm, "failed to add old_ctx back after failure.\n");
3216 goto out_restart;
3217 }
3218
Luciano Coelho6fd1fb62014-11-10 11:10:10 +02003219 if (__iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx,
3220 true)) {
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003221 IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n");
3222 goto out_restart;
3223 }
3224
3225 goto out;
3226
3227out_restart:
3228 /* things keep failing, better restart the hw */
3229 iwl_mvm_nic_restart(mvm, false);
3230
3231out:
3232 mutex_unlock(&mvm->mutex);
Luciano Coelho50cc9572014-11-10 11:10:08 +02003233
3234 return ret;
3235}
3236
Luciano Coelho48a256e2014-11-10 11:10:09 +02003237static int
3238iwl_mvm_switch_vif_chanctx_reassign(struct iwl_mvm *mvm,
3239 struct ieee80211_vif_chanctx_switch *vifs)
3240{
3241 int ret;
3242
3243 mutex_lock(&mvm->mutex);
3244 __iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true);
3245
3246 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx,
3247 true);
3248 if (ret) {
3249 IWL_ERR(mvm,
3250 "failed to assign new_ctx during channel switch\n");
3251 goto out_reassign;
3252 }
3253
3254 goto out;
3255
3256out_reassign:
3257 if (__iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx,
3258 true)) {
3259 IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n");
3260 goto out_restart;
3261 }
3262
3263 goto out;
3264
3265out_restart:
3266 /* things keep failing, better restart the hw */
3267 iwl_mvm_nic_restart(mvm, false);
3268
3269out:
3270 mutex_unlock(&mvm->mutex);
3271
3272 return ret;
3273}
3274
Luciano Coelho50cc9572014-11-10 11:10:08 +02003275static int iwl_mvm_switch_vif_chanctx(struct ieee80211_hw *hw,
3276 struct ieee80211_vif_chanctx_switch *vifs,
3277 int n_vifs,
3278 enum ieee80211_chanctx_switch_mode mode)
3279{
3280 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3281 int ret;
3282
3283 /* we only support a single-vif right now */
3284 if (n_vifs > 1)
3285 return -EOPNOTSUPP;
3286
3287 switch (mode) {
3288 case CHANCTX_SWMODE_SWAP_CONTEXTS:
3289 ret = iwl_mvm_switch_vif_chanctx_swap(mvm, vifs);
3290 break;
3291 case CHANCTX_SWMODE_REASSIGN_VIF:
Luciano Coelho48a256e2014-11-10 11:10:09 +02003292 ret = iwl_mvm_switch_vif_chanctx_reassign(mvm, vifs);
Luciano Coelho50cc9572014-11-10 11:10:08 +02003293 break;
3294 default:
3295 ret = -EOPNOTSUPP;
3296 break;
3297 }
3298
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003299 return ret;
3300}
3301
Johannes Berg8ca151b2013-01-24 14:25:36 +01003302static int iwl_mvm_set_tim(struct ieee80211_hw *hw,
3303 struct ieee80211_sta *sta,
3304 bool set)
3305{
3306 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg9d8ce6a2014-12-23 16:02:40 +01003307 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01003308
3309 if (!mvm_sta || !mvm_sta->vif) {
3310 IWL_ERR(mvm, "Station is not associated to a vif\n");
3311 return -EINVAL;
3312 }
3313
3314 return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif);
3315}
3316
David Spinadel507cadf2013-07-31 18:07:21 +03003317#ifdef CONFIG_NL80211_TESTMODE
3318static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = {
3319 [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 },
3320 [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 },
Johannes Bergf6c6ad422013-08-01 14:17:15 +02003321 [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 },
David Spinadel507cadf2013-07-31 18:07:21 +03003322};
3323
3324static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm,
3325 struct ieee80211_vif *vif,
3326 void *data, int len)
3327{
3328 struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1];
3329 int err;
3330 u32 noa_duration;
3331
3332 err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy);
3333 if (err)
3334 return err;
3335
3336 if (!tb[IWL_MVM_TM_ATTR_CMD])
3337 return -EINVAL;
3338
3339 switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) {
3340 case IWL_MVM_TM_CMD_SET_NOA:
3341 if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p ||
3342 !vif->bss_conf.enable_beacon ||
3343 !tb[IWL_MVM_TM_ATTR_NOA_DURATION])
3344 return -EINVAL;
3345
3346 noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]);
3347 if (noa_duration >= vif->bss_conf.beacon_int)
3348 return -EINVAL;
3349
3350 mvm->noa_duration = noa_duration;
3351 mvm->noa_vif = vif;
3352
Johannes Berg01662302014-06-06 15:18:45 +02003353 return iwl_mvm_update_quotas(mvm, NULL);
Johannes Bergf6c6ad422013-08-01 14:17:15 +02003354 case IWL_MVM_TM_CMD_SET_BEACON_FILTER:
3355 /* must be associated client vif - ignore authorized */
3356 if (!vif || vif->type != NL80211_IFTYPE_STATION ||
3357 !vif->bss_conf.assoc || !vif->bss_conf.dtim_period ||
3358 !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])
3359 return -EINVAL;
3360
3361 if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]))
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03003362 return iwl_mvm_enable_beacon_filter(mvm, vif, 0);
3363 return iwl_mvm_disable_beacon_filter(mvm, vif, 0);
David Spinadel507cadf2013-07-31 18:07:21 +03003364 }
3365
3366 return -EOPNOTSUPP;
3367}
3368
3369static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw,
3370 struct ieee80211_vif *vif,
3371 void *data, int len)
3372{
3373 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3374 int err;
3375
3376 mutex_lock(&mvm->mutex);
3377 err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len);
3378 mutex_unlock(&mvm->mutex);
3379
3380 return err;
3381}
3382#endif
3383
Luciano Coelho622e3f92014-11-10 11:10:17 +02003384static void iwl_mvm_channel_switch(struct ieee80211_hw *hw,
3385 struct ieee80211_vif *vif,
3386 struct ieee80211_channel_switch *chsw)
3387{
3388 /* By implementing this operation, we prevent mac80211 from
3389 * starting its own channel switch timer, so that we can call
3390 * ieee80211_chswitch_done() ourselves at the right time
3391 * (which is when the absence time event starts).
3392 */
3393
3394 IWL_DEBUG_MAC80211(IWL_MAC80211_GET_MVM(hw),
3395 "dummy channel switch op\n");
3396}
3397
Luciano Coelhof0289052014-11-10 11:10:06 +02003398static int iwl_mvm_pre_channel_switch(struct ieee80211_hw *hw,
3399 struct ieee80211_vif *vif,
3400 struct ieee80211_channel_switch *chsw)
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003401{
3402 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03003403 struct ieee80211_vif *csa_vif;
Luciano Coelhof6c34822014-11-10 11:10:12 +02003404 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Luciano Coelhodc88b4b2014-11-10 11:10:14 +02003405 u32 apply_time;
Luciano Coelhof0289052014-11-10 11:10:06 +02003406 int ret;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003407
3408 mutex_lock(&mvm->mutex);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03003409
Luciano Coelho6b20d772014-11-10 11:10:07 +02003410 IWL_DEBUG_MAC80211(mvm, "pre CSA to freq %d\n",
Luciano Coelhof0289052014-11-10 11:10:06 +02003411 chsw->chandef.center_freq1);
Luciano Coelho6b20d772014-11-10 11:10:07 +02003412
3413 switch (vif->type) {
3414 case NL80211_IFTYPE_AP:
3415 csa_vif =
3416 rcu_dereference_protected(mvm->csa_vif,
3417 lockdep_is_held(&mvm->mutex));
3418 if (WARN_ONCE(csa_vif && csa_vif->csa_active,
3419 "Another CSA is already in progress")) {
3420 ret = -EBUSY;
3421 goto out_unlock;
3422 }
3423
3424 rcu_assign_pointer(mvm->csa_vif, vif);
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02003425
Andrei Otcheretianski7ef0aab2014-11-10 11:10:11 +02003426 if (WARN_ONCE(mvmvif->csa_countdown,
3427 "Previous CSA countdown didn't complete")) {
3428 ret = -EBUSY;
3429 goto out_unlock;
3430 }
3431
Luciano Coelho6b20d772014-11-10 11:10:07 +02003432 break;
Luciano Coelhodc88b4b2014-11-10 11:10:14 +02003433 case NL80211_IFTYPE_STATION:
Luciano Coelho4500e132014-11-10 11:10:15 +02003434 /* Schedule the time event to a bit before beacon 1,
3435 * to make sure we're in the new channel when the
3436 * GO/AP arrives.
3437 */
3438 apply_time = chsw->device_timestamp +
3439 ((vif->bss_conf.beacon_int * (chsw->count - 1) -
3440 IWL_MVM_CHANNEL_SWITCH_TIME_CLIENT) * 1024);
Luciano Coelhodc88b4b2014-11-10 11:10:14 +02003441
3442 if (chsw->block_tx)
3443 iwl_mvm_csa_client_absent(mvm, vif);
3444
Luciano Coelho4500e132014-11-10 11:10:15 +02003445 iwl_mvm_schedule_csa_period(mvm, vif, vif->bss_conf.beacon_int,
Luciano Coelhodc88b4b2014-11-10 11:10:14 +02003446 apply_time);
Luciano Coelhoc6e0a3e02014-11-10 11:10:18 +02003447 if (mvmvif->bf_data.bf_enabled) {
3448 ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0);
3449 if (ret)
3450 goto out_unlock;
3451 }
3452
Luciano Coelhodc88b4b2014-11-10 11:10:14 +02003453 break;
Luciano Coelho6b20d772014-11-10 11:10:07 +02003454 default:
3455 break;
3456 }
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003457
Luciano Coelhof6c34822014-11-10 11:10:12 +02003458 mvmvif->ps_disabled = true;
3459
3460 ret = iwl_mvm_power_update_ps(mvm);
3461 if (ret)
3462 goto out_unlock;
Luciano Coelhof0289052014-11-10 11:10:06 +02003463
Arik Nemtsove198f5e2014-09-14 19:13:54 +03003464 /* we won't be on this channel any longer */
3465 iwl_mvm_teardown_tdls_peers(mvm);
3466
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003467out_unlock:
3468 mutex_unlock(&mvm->mutex);
Luciano Coelhof0289052014-11-10 11:10:06 +02003469
3470 return ret;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003471}
3472
Luciano Coelhof6c34822014-11-10 11:10:12 +02003473static int iwl_mvm_post_channel_switch(struct ieee80211_hw *hw,
3474 struct ieee80211_vif *vif)
3475{
3476 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
3477 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3478 int ret;
3479
3480 mutex_lock(&mvm->mutex);
3481
Luciano Coelhoa57c6882014-11-10 11:10:16 +02003482 if (vif->type == NL80211_IFTYPE_STATION) {
3483 struct iwl_mvm_sta *mvmsta;
3484
3485 mvmsta = iwl_mvm_sta_from_staid_protected(mvm,
3486 mvmvif->ap_sta_id);
3487
3488 if (WARN_ON(!mvmsta)) {
3489 ret = -EIO;
3490 goto out_unlock;
3491 }
3492
3493 iwl_mvm_sta_modify_disable_tx(mvm, mvmsta, false);
3494
3495 iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
Luciano Coelhoc6e0a3e02014-11-10 11:10:18 +02003496
3497 ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0);
3498 if (ret)
3499 goto out_unlock;
Luciano Coelho686e7fe2014-11-10 11:10:21 +02003500
3501 iwl_mvm_stop_session_protection(mvm, vif);
Luciano Coelhoa57c6882014-11-10 11:10:16 +02003502 }
3503
Luciano Coelhof6c34822014-11-10 11:10:12 +02003504 mvmvif->ps_disabled = false;
3505
3506 ret = iwl_mvm_power_update_ps(mvm);
3507
Luciano Coelhoa57c6882014-11-10 11:10:16 +02003508out_unlock:
Luciano Coelhof6c34822014-11-10 11:10:12 +02003509 mutex_unlock(&mvm->mutex);
3510
3511 return ret;
3512}
3513
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003514static void iwl_mvm_mac_flush(struct ieee80211_hw *hw,
3515 struct ieee80211_vif *vif, u32 queues, bool drop)
3516{
3517 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3518 struct iwl_mvm_vif *mvmvif;
3519 struct iwl_mvm_sta *mvmsta;
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03003520 struct ieee80211_sta *sta;
3521 int i;
3522 u32 msk = 0;
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003523
3524 if (!vif || vif->type != NL80211_IFTYPE_STATION)
3525 return;
3526
3527 mutex_lock(&mvm->mutex);
3528 mvmvif = iwl_mvm_vif_from_mac80211(vif);
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003529
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03003530 /* flush the AP-station and all TDLS peers */
3531 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
3532 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
3533 lockdep_is_held(&mvm->mutex));
3534 if (IS_ERR_OR_NULL(sta))
3535 continue;
3536
3537 mvmsta = iwl_mvm_sta_from_mac80211(sta);
3538 if (mvmsta->vif != vif)
3539 continue;
3540
3541 /* make sure only TDLS peers or the AP are flushed */
3542 WARN_ON(i != mvmvif->ap_sta_id && !sta->tdls);
3543
3544 msk |= mvmsta->tfd_queue_msk;
Johannes Berg480acbc2014-10-10 08:59:27 +02003545 }
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003546
3547 if (drop) {
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03003548 if (iwl_mvm_flush_tx_path(mvm, msk, true))
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003549 IWL_ERR(mvm, "flush request fail\n");
Johannes Berg480acbc2014-10-10 08:59:27 +02003550 mutex_unlock(&mvm->mutex);
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003551 } else {
Johannes Berg480acbc2014-10-10 08:59:27 +02003552 mutex_unlock(&mvm->mutex);
3553
3554 /* this can take a while, and we may need/want other operations
3555 * to succeed while doing this, so do it without the mutex held
3556 */
Arik Nemtsova0f6bf22014-09-21 19:10:04 +03003557 iwl_trans_wait_tx_queue_empty(mvm->trans, msk);
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003558 }
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003559}
3560
Johannes Berge5209262014-01-20 23:38:59 +01003561const struct ieee80211_ops iwl_mvm_hw_ops = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01003562 .tx = iwl_mvm_mac_tx,
3563 .ampdu_action = iwl_mvm_mac_ampdu_action,
3564 .start = iwl_mvm_mac_start,
Eliad Pellercf2c92d2014-11-04 11:43:54 +02003565 .reconfig_complete = iwl_mvm_mac_reconfig_complete,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003566 .stop = iwl_mvm_mac_stop,
3567 .add_interface = iwl_mvm_mac_add_interface,
3568 .remove_interface = iwl_mvm_mac_remove_interface,
3569 .config = iwl_mvm_mac_config,
Eliad Pellere59647e2013-11-28 14:08:50 +02003570 .prepare_multicast = iwl_mvm_prepare_multicast,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003571 .configure_filter = iwl_mvm_configure_filter,
3572 .bss_info_changed = iwl_mvm_bss_info_changed,
3573 .hw_scan = iwl_mvm_mac_hw_scan,
3574 .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan,
Johannes Berg1ddbbb02013-12-04 22:39:17 +01003575 .sta_pre_rcu_remove = iwl_mvm_sta_pre_rcu_remove,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003576 .sta_state = iwl_mvm_mac_sta_state,
3577 .sta_notify = iwl_mvm_mac_sta_notify,
3578 .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames,
Johannes Berg3e56ead2013-02-15 22:23:18 +01003579 .release_buffered_frames = iwl_mvm_mac_release_buffered_frames,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003580 .set_rts_threshold = iwl_mvm_mac_set_rts_threshold,
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02003581 .sta_rc_update = iwl_mvm_sta_rc_update,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003582 .conf_tx = iwl_mvm_mac_conf_tx,
3583 .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx,
Arik Nemtsov07ecd892014-05-20 18:16:42 +03003584 .mgd_protect_tdls_discover = iwl_mvm_mac_mgd_protect_tdls_discover,
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003585 .flush = iwl_mvm_mac_flush,
David Spinadel35a000b2013-08-28 09:29:43 +03003586 .sched_scan_start = iwl_mvm_mac_sched_scan_start,
3587 .sched_scan_stop = iwl_mvm_mac_sched_scan_stop,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003588 .set_key = iwl_mvm_mac_set_key,
3589 .update_tkip_key = iwl_mvm_mac_update_tkip_key,
3590 .remain_on_channel = iwl_mvm_roc,
3591 .cancel_remain_on_channel = iwl_mvm_cancel_roc,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003592 .add_chanctx = iwl_mvm_add_chanctx,
3593 .remove_chanctx = iwl_mvm_remove_chanctx,
3594 .change_chanctx = iwl_mvm_change_chanctx,
3595 .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx,
3596 .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx,
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003597 .switch_vif_chanctx = iwl_mvm_switch_vif_chanctx,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003598
Johannes Berg5023d962013-07-31 14:07:43 +02003599 .start_ap = iwl_mvm_start_ap_ibss,
3600 .stop_ap = iwl_mvm_stop_ap_ibss,
3601 .join_ibss = iwl_mvm_start_ap_ibss,
3602 .leave_ibss = iwl_mvm_stop_ap_ibss,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003603
3604 .set_tim = iwl_mvm_set_tim,
3605
Luciano Coelho622e3f92014-11-10 11:10:17 +02003606 .channel_switch = iwl_mvm_channel_switch,
Luciano Coelhof0289052014-11-10 11:10:06 +02003607 .pre_channel_switch = iwl_mvm_pre_channel_switch,
Luciano Coelhof6c34822014-11-10 11:10:12 +02003608 .post_channel_switch = iwl_mvm_post_channel_switch,
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003609
Arik Nemtsov1d3c3f62014-10-23 18:03:10 +03003610 .tdls_channel_switch = iwl_mvm_tdls_channel_switch,
3611 .tdls_cancel_channel_switch = iwl_mvm_tdls_cancel_channel_switch,
3612 .tdls_recv_channel_switch = iwl_mvm_tdls_recv_channel_switch,
3613
David Spinadel507cadf2013-07-31 18:07:21 +03003614 CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd)
3615
Johannes Berg8ca151b2013-01-24 14:25:36 +01003616#ifdef CONFIG_PM_SLEEP
3617 /* look at d3.c */
3618 .suspend = iwl_mvm_suspend,
3619 .resume = iwl_mvm_resume,
3620 .set_wakeup = iwl_mvm_set_wakeup,
3621 .set_rekey_data = iwl_mvm_set_rekey_data,
3622#if IS_ENABLED(CONFIG_IPV6)
3623 .ipv6_addr_change = iwl_mvm_ipv6_addr_change,
3624#endif
3625 .set_default_unicast_key = iwl_mvm_set_default_unicast_key,
3626#endif
3627};