blob: cdc272d776e7f298baa6c71dc156ce576021e151 [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 Berg8ca151b2013-01-24 14:25:36 +01009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020025 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010026 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020033 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8ca151b2013-01-24 14:25:36 +010034 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
63#include <linux/kernel.h>
64#include <linux/slab.h>
65#include <linux/skbuff.h>
66#include <linux/netdevice.h>
67#include <linux/etherdevice.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010068#include <linux/ip.h>
Eliad Peller2ee8f022014-01-13 19:07:09 +020069#include <linux/if_arp.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010070#include <net/mac80211.h>
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +020071#include <net/ieee80211_radiotap.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010072#include <net/tcp.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010073
74#include "iwl-op-mode.h"
75#include "iwl-io.h"
76#include "mvm.h"
77#include "sta.h"
78#include "time-event.h"
79#include "iwl-eeprom-parse.h"
80#include "fw-api-scan.h"
81#include "iwl-phy-db.h"
David Spinadel507cadf2013-07-31 18:07:21 +030082#include "testmode.h"
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +030083#include "iwl-fw-error-dump.h"
84#include "iwl-prph.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010085
86static const struct ieee80211_iface_limit iwl_mvm_limits[] = {
87 {
88 .max = 1,
Ilan Peer8eb38712013-06-01 20:17:18 +030089 .types = BIT(NL80211_IFTYPE_STATION),
Johannes Berg8ca151b2013-01-24 14:25:36 +010090 },
Johannes Berg3c15a0f2013-05-31 10:17:19 +020091 {
92 .max = 1,
Ilan Peer8eb38712013-06-01 20:17:18 +030093 .types = BIT(NL80211_IFTYPE_AP) |
94 BIT(NL80211_IFTYPE_P2P_CLIENT) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +020095 BIT(NL80211_IFTYPE_P2P_GO),
96 },
97 {
98 .max = 1,
99 .types = BIT(NL80211_IFTYPE_P2P_DEVICE),
100 },
Johannes Berg8ca151b2013-01-24 14:25:36 +0100101};
102
103static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = {
104 {
105 .num_different_channels = 1,
106 .max_interfaces = 3,
107 .limits = iwl_mvm_limits,
108 .n_limits = ARRAY_SIZE(iwl_mvm_limits),
109 },
110};
111
Johannes Bergf0c26462013-01-22 20:41:58 +0100112#ifdef CONFIG_PM_SLEEP
113static const struct nl80211_wowlan_tcp_data_token_feature
114iwl_mvm_wowlan_tcp_token_feature = {
115 .min_len = 0,
116 .max_len = 255,
117 .bufsize = IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS,
118};
119
120static const struct wiphy_wowlan_tcp_support iwl_mvm_wowlan_tcp_support = {
121 .tok = &iwl_mvm_wowlan_tcp_token_feature,
122 .data_payload_max = IWL_WOWLAN_TCP_MAX_PACKET_LEN -
123 sizeof(struct ethhdr) -
124 sizeof(struct iphdr) -
125 sizeof(struct tcphdr),
126 .data_interval_max = 65535, /* __le16 in API */
127 .wake_payload_max = IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN -
128 sizeof(struct ethhdr) -
129 sizeof(struct iphdr) -
130 sizeof(struct tcphdr),
131 .seq = true,
132};
133#endif
134
Eliad Peller77736922014-01-14 12:35:49 +0200135#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
Eliad Peller2ee8f022014-01-13 19:07:09 +0200136/*
137 * Use the reserved field to indicate magic values.
138 * these values will only be used internally by the driver,
139 * and won't make it to the fw (reserved will be 0).
140 * BC_FILTER_MAGIC_IP - configure the val of this attribute to
141 * be the vif's ip address. in case there is not a single
142 * ip address (0, or more than 1), this attribute will
143 * be skipped.
144 * BC_FILTER_MAGIC_MAC - set the val of this attribute to
145 * the LSB bytes of the vif's mac address
146 */
147enum {
148 BC_FILTER_MAGIC_NONE = 0,
149 BC_FILTER_MAGIC_IP,
150 BC_FILTER_MAGIC_MAC,
151};
152
Eliad Peller77736922014-01-14 12:35:49 +0200153static const struct iwl_fw_bcast_filter iwl_mvm_default_bcast_filters[] = {
154 {
155 /* arp */
156 .discard = 0,
157 .frame_type = BCAST_FILTER_FRAME_TYPE_ALL,
158 .attrs = {
159 {
160 /* frame type - arp, hw type - ethernet */
161 .offset_type =
162 BCAST_FILTER_OFFSET_PAYLOAD_START,
163 .offset = sizeof(rfc1042_header),
164 .val = cpu_to_be32(0x08060001),
165 .mask = cpu_to_be32(0xffffffff),
166 },
Eliad Peller2ee8f022014-01-13 19:07:09 +0200167 {
168 /* arp dest ip */
169 .offset_type =
170 BCAST_FILTER_OFFSET_PAYLOAD_START,
171 .offset = sizeof(rfc1042_header) + 2 +
172 sizeof(struct arphdr) +
173 ETH_ALEN + sizeof(__be32) +
174 ETH_ALEN,
175 .mask = cpu_to_be32(0xffffffff),
176 /* mark it as special field */
177 .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_IP),
178 },
179 },
180 },
181 {
182 /* dhcp offer bcast */
183 .discard = 0,
184 .frame_type = BCAST_FILTER_FRAME_TYPE_IPV4,
185 .attrs = {
186 {
187 /* udp dest port - 68 (bootp client)*/
188 .offset_type = BCAST_FILTER_OFFSET_IP_END,
189 .offset = offsetof(struct udphdr, dest),
190 .val = cpu_to_be32(0x00440000),
191 .mask = cpu_to_be32(0xffff0000),
192 },
193 {
194 /* dhcp - lsb bytes of client hw address */
195 .offset_type = BCAST_FILTER_OFFSET_IP_END,
196 .offset = 38,
197 .mask = cpu_to_be32(0xffffffff),
198 /* mark it as special field */
199 .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_MAC),
200 },
Eliad Peller77736922014-01-14 12:35:49 +0200201 },
202 },
203 /* last filter must be empty */
204 {},
205};
206#endif
207
Eliad Peller7498cf42014-01-16 17:10:44 +0200208void iwl_mvm_ref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
209{
Eliad Peller7bb426e2014-02-24 12:54:37 +0200210 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200211 return;
212
213 IWL_DEBUG_RPM(mvm, "Take mvm reference - type %d\n", ref_type);
Eliad Peller576eeee2014-07-01 18:38:38 +0300214 spin_lock_bh(&mvm->refs_lock);
215 mvm->refs[ref_type]++;
216 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200217 iwl_trans_ref(mvm->trans);
218}
219
220void iwl_mvm_unref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
221{
Eliad Peller7bb426e2014-02-24 12:54:37 +0200222 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200223 return;
224
225 IWL_DEBUG_RPM(mvm, "Leave mvm reference - type %d\n", ref_type);
Eliad Peller576eeee2014-07-01 18:38:38 +0300226 spin_lock_bh(&mvm->refs_lock);
227 WARN_ON(!mvm->refs[ref_type]--);
228 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200229 iwl_trans_unref(mvm->trans);
230}
231
Eliad Peller576eeee2014-07-01 18:38:38 +0300232static void iwl_mvm_unref_all_except(struct iwl_mvm *mvm,
233 enum iwl_mvm_ref_type except_ref)
Eliad Peller7498cf42014-01-16 17:10:44 +0200234{
Eliad Peller576eeee2014-07-01 18:38:38 +0300235 int i, j;
Eliad Peller7498cf42014-01-16 17:10:44 +0200236
Eliad Peller7bb426e2014-02-24 12:54:37 +0200237 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200238 return;
239
Eliad Peller576eeee2014-07-01 18:38:38 +0300240 spin_lock_bh(&mvm->refs_lock);
241 for (i = 0; i < IWL_MVM_REF_COUNT; i++) {
242 if (except_ref == i || !mvm->refs[i])
Eliad Peller7498cf42014-01-16 17:10:44 +0200243 continue;
244
Eliad Peller576eeee2014-07-01 18:38:38 +0300245 IWL_DEBUG_RPM(mvm, "Cleanup: remove mvm ref type %d (%d)\n",
246 i, mvm->refs[i]);
247 for (j = 0; j < mvm->refs[i]; j++)
248 iwl_trans_unref(mvm->trans);
249 mvm->refs[i] = 0;
Eliad Peller7498cf42014-01-16 17:10:44 +0200250 }
Eliad Peller576eeee2014-07-01 18:38:38 +0300251 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200252}
253
Eliad Peller576eeee2014-07-01 18:38:38 +0300254int iwl_mvm_ref_sync(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
Gregory Greenmand40fc482014-06-25 14:08:50 +0200255{
256 iwl_mvm_ref(mvm, ref_type);
257
258 if (!wait_event_timeout(mvm->d0i3_exit_waitq,
259 !test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status),
260 HZ)) {
261 WARN_ON_ONCE(1);
262 iwl_mvm_unref(mvm, ref_type);
263 return -EIO;
264 }
265
266 return 0;
267}
268
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200269static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm)
270{
271 int i;
272
273 memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts));
274 for (i = 0; i < NUM_PHY_CTX; i++) {
275 mvm->phy_ctxts[i].id = i;
276 mvm->phy_ctxts[i].ref = 0;
277 }
278}
279
David Spinadel20f1a5d2013-08-21 09:14:27 +0300280static int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
281{
282 /* we create the 802.11 header and SSID element */
283 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID)
284 return mvm->fw->ucode_capa.max_probe_length - 24 - 2;
285 return mvm->fw->ucode_capa.max_probe_length - 24 - 34;
286}
287
Johannes Berg8ca151b2013-01-24 14:25:36 +0100288int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
289{
290 struct ieee80211_hw *hw = mvm->hw;
Ilan Peer831e85f2013-02-07 17:09:09 +0200291 int num_mac, ret, i;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100292
293 /* Tell mac80211 our characteristics */
294 hw->flags = IEEE80211_HW_SIGNAL_DBM |
295 IEEE80211_HW_SPECTRUM_MGMT |
296 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
297 IEEE80211_HW_QUEUE_CONTROL |
298 IEEE80211_HW_WANT_MONITOR_VIF |
Johannes Berg8ca151b2013-01-24 14:25:36 +0100299 IEEE80211_HW_SUPPORTS_PS |
300 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
Johannes Bergd2931bb2013-02-05 18:10:04 +0100301 IEEE80211_HW_AMPDU_AGGREGATION |
Hila Gonend64048e2013-03-13 18:00:03 +0200302 IEEE80211_HW_TIMING_BEACON_ONLY |
Emmanuel Grumbach147fc9b2013-07-28 11:00:52 +0300303 IEEE80211_HW_CONNECTION_MONITOR |
Luciano Coelhof0c97782014-03-05 15:41:48 +0200304 IEEE80211_HW_CHANCTX_STA_CSA |
Emmanuel Grumbach147fc9b2013-07-28 11:00:52 +0300305 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
Alexander Bondare8e626a2013-10-16 00:21:34 +0200306 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100307
Eytan Lifshitz19e737c2013-09-09 13:30:15 +0200308 hw->queues = mvm->first_agg_queue;
Ilan Peer398e8c62013-03-13 15:20:35 +0200309 hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE;
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200310 hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FEC |
311 IEEE80211_RADIOTAP_MCS_HAVE_STBC;
312 hw->radiotap_vht_details |= IEEE80211_RADIOTAP_VHT_KNOWN_STBC;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100313 hw->rate_control_algorithm = "iwl-mvm-rs";
314
315 /*
316 * Enable 11w if advertised by firmware and software crypto
317 * is not enabled (as the firmware will interpret some mgmt
318 * packets, so enabling it with software crypto isn't safe)
319 */
320 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP &&
321 !iwlwifi_mod_params.sw_crypto)
322 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
323
Matt Chen1504f482014-04-24 18:43:18 +0800324 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT &&
325 IWL_UCODE_API(mvm->fw->ucode_ver) >= 9 &&
326 !iwlwifi_mod_params.uapsd_disable) {
327 hw->flags |= IEEE80211_HW_SUPPORTS_UAPSD;
328 hw->uapsd_queues = IWL_UAPSD_AC_INFO;
329 hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP;
330 }
Alexander Bondare8e626a2013-10-16 00:21:34 +0200331
David Spinadelfb98be52014-05-04 12:51:10 +0300332 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
333 hw->flags |= IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS;
334
Johannes Berg8ca151b2013-01-24 14:25:36 +0100335 hw->sta_data_size = sizeof(struct iwl_mvm_sta);
336 hw->vif_data_size = sizeof(struct iwl_mvm_vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200337 hw->chanctx_data_size = sizeof(u16);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100338
339 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +0200340 BIT(NL80211_IFTYPE_P2P_CLIENT) |
341 BIT(NL80211_IFTYPE_AP) |
342 BIT(NL80211_IFTYPE_P2P_GO) |
Emmanuel Grumbachc13b1722014-03-27 19:12:12 +0200343 BIT(NL80211_IFTYPE_P2P_DEVICE) |
344 BIT(NL80211_IFTYPE_ADHOC);
Johannes Berg5023d962013-07-31 14:07:43 +0200345
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +0100346 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
347 hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
348 REGULATORY_DISABLE_BEACON_HINTS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100349
Johannes Berg3e56ead2013-02-15 22:23:18 +0100350 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_GO_UAPSD)
351 hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
352
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +0200353 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_CSA_FLOW)
354 hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH;
355
Johannes Berg8ca151b2013-01-24 14:25:36 +0100356 hw->wiphy->iface_combinations = iwl_mvm_iface_combinations;
357 hw->wiphy->n_iface_combinations =
358 ARRAY_SIZE(iwl_mvm_iface_combinations);
359
Ilan Peerc451e6d2013-02-20 08:41:54 +0200360 hw->wiphy->max_remain_on_channel_duration = 10000;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100361 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
362
363 /* Extract MAC address */
364 memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN);
365 hw->wiphy->addresses = mvm->addresses;
366 hw->wiphy->n_addresses = 1;
Ilan Peer831e85f2013-02-07 17:09:09 +0200367
368 /* Extract additional MAC addresses if available */
369 num_mac = (mvm->nvm_data->n_hw_addrs > 1) ?
370 min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1;
371
372 for (i = 1; i < num_mac; i++) {
373 memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100374 ETH_ALEN);
Ilan Peer831e85f2013-02-07 17:09:09 +0200375 mvm->addresses[i].addr[5]++;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100376 hw->wiphy->n_addresses++;
377 }
378
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200379 iwl_mvm_reset_phy_ctxts(mvm);
380
David Spinadel20f1a5d2013-08-21 09:14:27 +0300381 hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm);
382
Johannes Berg8ca151b2013-01-24 14:25:36 +0100383 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
384
385 if (mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels)
386 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
387 &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
388 if (mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels)
389 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
390 &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
391
392 hw->wiphy->hw_version = mvm->trans->hw_id;
393
Alexander Bondarade50652013-04-03 16:28:47 +0300394 if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100395 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
396 else
397 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
398
Emmanuel Grumbach6efaaf32014-09-01 10:03:21 +0300399 if (IWL_UCODE_API(mvm->fw->ucode_ver) >= 10) {
400 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
401 hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX;
402 hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES;
403 /* we create the 802.11 header and zero length SSID IE. */
404 hw->wiphy->max_sched_scan_ie_len =
405 SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2;
406 }
David Spinadel35a000b2013-08-28 09:29:43 +0300407
Johannes Berg8ca151b2013-01-24 14:25:36 +0100408 hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN |
Johannes Bergab480032014-06-04 10:13:50 +0200409 NL80211_FEATURE_LOW_PRIORITY_SCAN |
Alexander Bondar8a110d92014-03-12 17:31:19 +0200410 NL80211_FEATURE_P2P_GO_OPPPS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100411
412 mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
413
Max Stepanove36e5432013-08-27 19:56:13 +0300414 /* currently FW API supports only one optional cipher scheme */
Johannes Berg9ddca862014-01-06 09:29:40 +0100415 if (mvm->fw->cs[0].cipher) {
Max Stepanove36e5432013-08-27 19:56:13 +0300416 mvm->hw->n_cipher_schemes = 1;
Johannes Berg9ddca862014-01-06 09:29:40 +0100417 mvm->hw->cipher_schemes = &mvm->fw->cs[0];
Max Stepanove36e5432013-08-27 19:56:13 +0300418 }
419
Johannes Berg8ca151b2013-01-24 14:25:36 +0100420#ifdef CONFIG_PM_SLEEP
Eliad Pellerd15a7472014-03-27 18:53:12 +0200421 if (iwl_mvm_is_d0i3_supported(mvm) &&
422 device_can_wakeup(mvm->trans->dev)) {
423 mvm->wowlan.flags = WIPHY_WOWLAN_ANY;
424 hw->wiphy->wowlan = &mvm->wowlan;
425 } else if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100426 mvm->trans->ops->d3_suspend &&
427 mvm->trans->ops->d3_resume &&
428 device_can_wakeup(mvm->trans->dev)) {
Johannes Berg964dc9e2013-06-03 17:25:34 +0200429 mvm->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
430 WIPHY_WOWLAN_DISCONNECT |
431 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
432 WIPHY_WOWLAN_RFKILL_RELEASE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100433 if (!iwlwifi_mod_params.sw_crypto)
Johannes Berg964dc9e2013-06-03 17:25:34 +0200434 mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
435 WIPHY_WOWLAN_GTK_REKEY_FAILURE |
436 WIPHY_WOWLAN_4WAY_HANDSHAKE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100437
Johannes Berg964dc9e2013-06-03 17:25:34 +0200438 mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS;
439 mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN;
440 mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN;
441 mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support;
442 hw->wiphy->wowlan = &mvm->wowlan;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100443 }
444#endif
445
Eliad Peller77736922014-01-14 12:35:49 +0200446#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
447 /* assign default bcast filtering configuration */
448 mvm->bcast_filters = iwl_mvm_default_bcast_filters;
449#endif
450
Johannes Berg8ca151b2013-01-24 14:25:36 +0100451 ret = iwl_mvm_leds_init(mvm);
452 if (ret)
453 return ret;
454
Emmanuel Grumbachb7327d82013-06-24 15:44:03 +0300455 ret = ieee80211_register_hw(mvm->hw);
456 if (ret)
457 iwl_mvm_leds_exit(mvm);
458
459 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100460}
461
Arik Nemtsovb2492502014-03-13 12:21:50 +0200462static bool iwl_mvm_defer_tx(struct iwl_mvm *mvm,
463 struct ieee80211_sta *sta,
464 struct sk_buff *skb)
465{
466 struct iwl_mvm_sta *mvmsta;
467 bool defer = false;
468
469 /*
470 * double check the IN_D0I3 flag both before and after
471 * taking the spinlock, in order to prevent taking
472 * the spinlock when not needed.
473 */
474 if (likely(!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)))
475 return false;
476
477 spin_lock(&mvm->d0i3_tx_lock);
478 /*
479 * testing the flag again ensures the skb dequeue
480 * loop (on d0i3 exit) hasn't run yet.
481 */
482 if (!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status))
483 goto out;
484
485 mvmsta = iwl_mvm_sta_from_mac80211(sta);
486 if (mvmsta->sta_id == IWL_MVM_STATION_COUNT ||
487 mvmsta->sta_id != mvm->d0i3_ap_sta_id)
488 goto out;
489
490 __skb_queue_tail(&mvm->d0i3_tx, skb);
491 ieee80211_stop_queues(mvm->hw);
492
493 /* trigger wakeup */
494 iwl_mvm_ref(mvm, IWL_MVM_REF_TX);
495 iwl_mvm_unref(mvm, IWL_MVM_REF_TX);
496
497 defer = true;
498out:
499 spin_unlock(&mvm->d0i3_tx_lock);
500 return defer;
501}
502
Johannes Berg8ca151b2013-01-24 14:25:36 +0100503static void iwl_mvm_mac_tx(struct ieee80211_hw *hw,
504 struct ieee80211_tx_control *control,
505 struct sk_buff *skb)
506{
507 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg3e56ead2013-02-15 22:23:18 +0100508 struct ieee80211_sta *sta = control->sta;
509 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
510 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100511
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300512 if (iwl_mvm_is_radio_killed(mvm)) {
513 IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100514 goto drop;
515 }
516
Ilan Peer398e8c62013-03-13 15:20:35 +0200517 if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100518 !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status))
519 goto drop;
520
Johannes Berg3e56ead2013-02-15 22:23:18 +0100521 /* treat non-bufferable MMPDUs as broadcast if sta is sleeping */
522 if (unlikely(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER &&
523 ieee80211_is_mgmt(hdr->frame_control) &&
524 !ieee80211_is_deauth(hdr->frame_control) &&
525 !ieee80211_is_disassoc(hdr->frame_control) &&
526 !ieee80211_is_action(hdr->frame_control)))
527 sta = NULL;
528
529 if (sta) {
Arik Nemtsovb2492502014-03-13 12:21:50 +0200530 if (iwl_mvm_defer_tx(mvm, sta, skb))
531 return;
Johannes Berg3e56ead2013-02-15 22:23:18 +0100532 if (iwl_mvm_tx_skb(mvm, skb, sta))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100533 goto drop;
534 return;
535 }
536
537 if (iwl_mvm_tx_skb_non_sta(mvm, skb))
538 goto drop;
539 return;
540 drop:
541 ieee80211_free_txskb(hw, skb);
542}
543
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200544static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg)
545{
546 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
547 return false;
548 return true;
549}
550
551static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg)
552{
553 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
554 return false;
555 if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG)
556 return true;
557
558 /* enabled by default */
559 return true;
560}
561
Johannes Berg8ca151b2013-01-24 14:25:36 +0100562static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw,
563 struct ieee80211_vif *vif,
564 enum ieee80211_ampdu_mlme_action action,
565 struct ieee80211_sta *sta, u16 tid,
566 u16 *ssn, u8 buf_size)
567{
568 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
569 int ret;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200570 bool tx_agg_ref = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100571
572 IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n",
573 sta->addr, tid, action);
574
575 if (!(mvm->nvm_data->sku_cap_11n_enable))
576 return -EACCES;
577
Arik Nemtsovb2492502014-03-13 12:21:50 +0200578 /* return from D0i3 before starting a new Tx aggregation */
Eliad Peller9256c202014-04-22 13:33:29 +0300579 switch (action) {
580 case IEEE80211_AMPDU_TX_START:
581 case IEEE80211_AMPDU_TX_STOP_CONT:
582 case IEEE80211_AMPDU_TX_STOP_FLUSH:
583 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
584 case IEEE80211_AMPDU_TX_OPERATIONAL:
Arik Nemtsovb2492502014-03-13 12:21:50 +0200585 /*
Eliad Peller9256c202014-04-22 13:33:29 +0300586 * for tx start, wait synchronously until D0i3 exit to
587 * get the correct sequence number for the tid.
588 * additionally, some other ampdu actions use direct
589 * target access, which is not handled automatically
590 * by the trans layer (unlike commands), so wait for
591 * d0i3 exit in these cases as well.
Arik Nemtsovb2492502014-03-13 12:21:50 +0200592 */
Gregory Greenmand40fc482014-06-25 14:08:50 +0200593 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_TX_AGG);
594 if (ret)
595 return ret;
596
597 tx_agg_ref = true;
Eliad Peller9256c202014-04-22 13:33:29 +0300598 break;
599 default:
600 break;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200601 }
602
Johannes Berg8ca151b2013-01-24 14:25:36 +0100603 mutex_lock(&mvm->mutex);
604
605 switch (action) {
606 case IEEE80211_AMPDU_RX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200607 if (!iwl_enable_rx_ampdu(mvm->cfg)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100608 ret = -EINVAL;
609 break;
610 }
611 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true);
612 break;
613 case IEEE80211_AMPDU_RX_STOP:
614 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false);
615 break;
616 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200617 if (!iwl_enable_tx_ampdu(mvm->cfg)) {
Emmanuel Grumbach5d158ef2013-02-19 14:39:58 +0200618 ret = -EINVAL;
619 break;
620 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100621 ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn);
622 break;
623 case IEEE80211_AMPDU_TX_STOP_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200624 ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid);
625 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100626 case IEEE80211_AMPDU_TX_STOP_FLUSH:
627 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200628 ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100629 break;
630 case IEEE80211_AMPDU_TX_OPERATIONAL:
631 ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size);
632 break;
633 default:
634 WARN_ON_ONCE(1);
635 ret = -EINVAL;
636 break;
637 }
638 mutex_unlock(&mvm->mutex);
639
Arik Nemtsovb2492502014-03-13 12:21:50 +0200640 /*
641 * If the tid is marked as started, we won't use it for offloaded
642 * traffic on the next D0i3 entry. It's safe to unref.
643 */
644 if (tx_agg_ref)
645 iwl_mvm_unref(mvm, IWL_MVM_REF_TX_AGG);
646
Johannes Berg8ca151b2013-01-24 14:25:36 +0100647 return ret;
648}
649
650static void iwl_mvm_cleanup_iterator(void *data, u8 *mac,
651 struct ieee80211_vif *vif)
652{
653 struct iwl_mvm *mvm = data;
654 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
655
656 mvmvif->uploaded = false;
657 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
658
659 /* does this make sense at all? */
660 mvmvif->color++;
661
662 spin_lock_bh(&mvm->time_event_lock);
663 iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data);
664 spin_unlock_bh(&mvm->time_event_lock);
665
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200666 mvmvif->phy_ctxt = NULL;
Emmanuel Grumbach8a275ba2014-07-13 09:12:11 +0300667 memset(&mvmvif->bf_data, 0, sizeof(mvmvif->bf_data));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100668}
669
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300670#ifdef CONFIG_IWLWIFI_DEBUGFS
671static void iwl_mvm_fw_error_dump(struct iwl_mvm *mvm)
672{
673 struct iwl_fw_error_dump_file *dump_file;
674 struct iwl_fw_error_dump_data *dump_data;
675 struct iwl_fw_error_dump_info *dump_info;
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300676 struct iwl_mvm_dump_ptrs *fw_error_dump;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300677 const struct fw_img *img;
678 u32 sram_len, sram_ofs;
679 u32 file_len, rxf_len;
680 unsigned long flags;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300681 int reg_val;
682
683 lockdep_assert_held(&mvm->mutex);
684
685 if (mvm->fw_error_dump)
686 return;
687
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300688 fw_error_dump = kzalloc(sizeof(*mvm->fw_error_dump), GFP_KERNEL);
689 if (!fw_error_dump)
690 return;
691
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300692 img = &mvm->fw->img[mvm->cur_ucode];
693 sram_ofs = img->sec[IWL_UCODE_SECTION_DATA].offset;
694 sram_len = img->sec[IWL_UCODE_SECTION_DATA].len;
695
696 /* reading buffer size */
697 reg_val = iwl_trans_read_prph(mvm->trans, RXF_SIZE_ADDR);
698 rxf_len = (reg_val & RXF_SIZE_BYTE_CNT_MSK) >> RXF_SIZE_BYTE_CND_POS;
699
700 /* the register holds the value divided by 128 */
701 rxf_len = rxf_len << 7;
702
703 file_len = sizeof(*dump_file) +
704 sizeof(*dump_data) * 3 +
705 sram_len +
706 rxf_len +
707 sizeof(*dump_info);
708
Emmanuel Grumbach5bfe6f52014-06-25 16:21:43 +0300709 dump_file = vzalloc(file_len);
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300710 if (!dump_file) {
711 kfree(fw_error_dump);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300712 return;
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300713 }
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300714
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300715 fw_error_dump->op_mode_ptr = dump_file;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300716
717 dump_file->barker = cpu_to_le32(IWL_FW_ERROR_DUMP_BARKER);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300718 dump_data = (void *)dump_file->data;
719
720 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_DEV_FW_INFO);
721 dump_data->len = cpu_to_le32(sizeof(*dump_info));
722 dump_info = (void *) dump_data->data;
723 dump_info->device_family =
724 mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000 ?
725 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_7) :
726 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_8);
727 memcpy(dump_info->fw_human_readable, mvm->fw->human_readable,
728 sizeof(dump_info->fw_human_readable));
729 strncpy(dump_info->dev_human_readable, mvm->cfg->name,
730 sizeof(dump_info->dev_human_readable));
731 strncpy(dump_info->bus_human_readable, mvm->dev->bus->name,
732 sizeof(dump_info->bus_human_readable));
733
734 dump_data = iwl_fw_error_next_data(dump_data);
735 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RXF);
736 dump_data->len = cpu_to_le32(rxf_len);
737
738 if (iwl_trans_grab_nic_access(mvm->trans, false, &flags)) {
739 u32 *rxf = (void *)dump_data->data;
740 int i;
741
742 for (i = 0; i < (rxf_len / sizeof(u32)); i++) {
743 iwl_trans_write_prph(mvm->trans,
744 RXF_LD_FENCE_OFFSET_ADDR,
745 i * sizeof(u32));
746 rxf[i] = iwl_trans_read_prph(mvm->trans,
747 RXF_FIFO_RD_FENCE_ADDR);
748 }
749 iwl_trans_release_nic_access(mvm->trans, &flags);
750 }
751
752 dump_data = iwl_fw_error_next_data(dump_data);
753 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_SRAM);
754 dump_data->len = cpu_to_le32(sram_len);
755 iwl_trans_read_mem_bytes(mvm->trans, sram_ofs, dump_data->data,
756 sram_len);
757
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300758 fw_error_dump->trans_ptr = iwl_trans_dump_data(mvm->trans);
759 fw_error_dump->op_mode_len = file_len;
760 if (fw_error_dump->trans_ptr)
761 file_len += fw_error_dump->trans_ptr->len;
762 dump_file->file_len = cpu_to_le32(file_len);
763 mvm->fw_error_dump = fw_error_dump;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300764}
765#endif
766
Johannes Berg8ca151b2013-01-24 14:25:36 +0100767static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm)
768{
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200769#ifdef CONFIG_IWLWIFI_DEBUGFS
770 static char *env[] = { "DRIVER=iwlwifi", "EVENT=error_dump", NULL };
771
772 iwl_mvm_fw_error_dump(mvm);
773
774 /* notify the userspace about the error we had */
775 kobject_uevent_env(&mvm->hw->wiphy->dev.kobj, KOBJ_CHANGE, env);
776#endif
777
Johannes Berg8ca151b2013-01-24 14:25:36 +0100778 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100779
780 mvm->scan_status = IWL_MVM_SCAN_NONE;
781
782 /* just in case one was running */
783 ieee80211_remain_on_channel_expired(mvm->hw);
784
785 ieee80211_iterate_active_interfaces_atomic(
786 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
787 iwl_mvm_cleanup_iterator, mvm);
788
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200789 mvm->p2p_device_vif = NULL;
Eliad Peller37577fe2013-12-05 17:19:39 +0200790 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200791
792 iwl_mvm_reset_phy_ctxts(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100793 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
794 memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained));
Emmanuel Grumbach8a275ba2014-07-13 09:12:11 +0300795 memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif));
796 memset(&mvm->last_bt_notif_old, 0, sizeof(mvm->last_bt_notif_old));
797 memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd));
798 memset(&mvm->last_bt_ci_cmd_old, 0, sizeof(mvm->last_bt_ci_cmd_old));
799 memset(&mvm->bt_ack_kill_msk, 0, sizeof(mvm->bt_ack_kill_msk));
800 memset(&mvm->bt_cts_kill_msk, 0, sizeof(mvm->bt_cts_kill_msk));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100801
802 ieee80211_wake_queues(mvm->hw);
803
Eliad Peller7498cf42014-01-16 17:10:44 +0200804 /* cleanup all stale references (scan, roc), but keep the
805 * ucode_down ref until reconfig is complete */
806 iwl_mvm_unref_all_except(mvm, IWL_MVM_REF_UCODE_DOWN);
807
Johannes Berg8ca151b2013-01-24 14:25:36 +0100808 mvm->vif_count = 0;
Emmanuel Grumbach113a0442013-07-02 14:16:38 +0300809 mvm->rx_ba_sessions = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100810}
811
812static int iwl_mvm_mac_start(struct ieee80211_hw *hw)
813{
814 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
815 int ret;
816
817 mutex_lock(&mvm->mutex);
818
819 /* Clean up some internal and mac80211 state on restart */
820 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
821 iwl_mvm_restart_cleanup(mvm);
822
823 ret = iwl_mvm_up(mvm);
Johannes Bergc47af222014-04-30 16:34:45 +0200824
825 if (ret && test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
826 /* Something went wrong - we need to finish some cleanup
827 * that normally iwl_mvm_mac_restart_complete() below
828 * would do.
829 */
830 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
831 iwl_mvm_d0i3_enable_tx(mvm, NULL);
832 }
833
Johannes Berg8ca151b2013-01-24 14:25:36 +0100834 mutex_unlock(&mvm->mutex);
835
836 return ret;
837}
838
839static void iwl_mvm_mac_restart_complete(struct ieee80211_hw *hw)
840{
841 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
842 int ret;
843
844 mutex_lock(&mvm->mutex);
845
846 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
Arik Nemtsovb2492502014-03-13 12:21:50 +0200847 iwl_mvm_d0i3_enable_tx(mvm, NULL);
Johannes Berg01662302014-06-06 15:18:45 +0200848 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100849 if (ret)
850 IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n",
851 ret);
852
Eliad Peller7498cf42014-01-16 17:10:44 +0200853 /* allow transport/FW low power modes */
854 iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN);
855
Johannes Berg8ca151b2013-01-24 14:25:36 +0100856 mutex_unlock(&mvm->mutex);
857}
858
859static void iwl_mvm_mac_stop(struct ieee80211_hw *hw)
860{
861 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
862
Eliad Peller37577fe2013-12-05 17:19:39 +0200863 flush_work(&mvm->d0i3_exit_work);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100864 flush_work(&mvm->async_handlers_wk);
865
866 mutex_lock(&mvm->mutex);
Eliad Peller7498cf42014-01-16 17:10:44 +0200867
868 /* disallow low power states when the FW is down */
869 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
870
Johannes Berg8ca151b2013-01-24 14:25:36 +0100871 /* async_handlers_wk is now blocked */
872
873 /*
874 * The work item could be running or queued if the
875 * ROC time event stops just as we get here.
876 */
877 cancel_work_sync(&mvm->roc_done_wk);
878
879 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100880
881 iwl_mvm_async_handlers_purge(mvm);
882 /* async_handlers_list is empty and will stay empty: HW is stopped */
883
884 /* the fw is stopped, the aux sta is dead: clean up driver state */
885 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
886
887 mutex_unlock(&mvm->mutex);
888
889 /*
890 * The worker might have been waiting for the mutex, let it run and
891 * discover that its list is now empty.
892 */
893 cancel_work_sync(&mvm->async_handlers_wk);
894}
895
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200896static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm)
897{
898 u16 i;
899
900 lockdep_assert_held(&mvm->mutex);
901
902 for (i = 0; i < NUM_PHY_CTX; i++)
903 if (!mvm->phy_ctxts[i].ref)
904 return &mvm->phy_ctxts[i];
905
906 IWL_ERR(mvm, "No available PHY context\n");
907 return NULL;
908}
909
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200910static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
911 s8 tx_power)
912{
913 /* FW is in charge of regulatory enforcement */
914 struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = {
915 .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id,
916 .pwr_restriction = cpu_to_le16(tx_power),
917 };
918
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300919 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0,
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200920 sizeof(reduce_txpwr_cmd),
921 &reduce_txpwr_cmd);
922}
923
Johannes Berg8ca151b2013-01-24 14:25:36 +0100924static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
925 struct ieee80211_vif *vif)
926{
927 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
928 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
929 int ret;
930
931 /*
Gregory Greenmand40fc482014-06-25 14:08:50 +0200932 * make sure D0i3 exit is completed, otherwise a target access
933 * during tx queue configuration could be done when still in
934 * D0i3 state.
935 */
936 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_ADD_IF);
937 if (ret)
938 return ret;
939
940 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100941 * Not much to do here. The stack will not allow interface
942 * types or combinations that we didn't advertise, so we
943 * don't really have to check the types.
944 */
945
946 mutex_lock(&mvm->mutex);
947
Eliad Pellere89044d2013-07-16 17:33:26 +0300948 /* Allocate resources for the MAC context, and add it to the fw */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100949 ret = iwl_mvm_mac_ctxt_init(mvm, vif);
950 if (ret)
951 goto out_unlock;
952
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300953 /* Counting number of interfaces is needed for legacy PM */
Ilan Peerea183d02013-07-23 14:41:53 +0300954 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
955 mvm->vif_count++;
Ilan Peerea183d02013-07-23 14:41:53 +0300956
957 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100958 * The AP binding flow can be done only after the beacon
959 * template is configured (which happens only in the mac80211
960 * start_ap() flow), and adding the broadcast station can happen
961 * only after the binding.
962 * In addition, since modifying the MAC before adding a bcast
963 * station is not allowed by the FW, delay the adding of MAC context to
964 * the point where we can also add the bcast station.
965 * In short: there's not much we can do at this point, other than
966 * allocating resources :)
967 */
Johannes Berg5023d962013-07-31 14:07:43 +0200968 if (vif->type == NL80211_IFTYPE_AP ||
969 vif->type == NL80211_IFTYPE_ADHOC) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100970 u32 qmask = iwl_mvm_mac_get_queues_mask(mvm, vif);
971 ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta,
Eliad Pellerb92e6612014-01-23 17:58:23 +0200972 qmask,
973 ieee80211_vif_type_p2p(vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100974 if (ret) {
975 IWL_ERR(mvm, "Failed to allocate bcast sta\n");
976 goto out_release;
977 }
978
Emmanuel Grumbach77740cb2013-06-26 23:51:41 +0300979 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100980 goto out_unlock;
981 }
982
Johannes Berg8ca151b2013-01-24 14:25:36 +0100983 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
984 if (ret)
985 goto out_release;
986
Arik Nemtsov999609f2014-05-15 17:31:51 +0300987 ret = iwl_mvm_power_update_mac(mvm);
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200988 if (ret)
989 goto out_release;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100990
Hila Gonen7df15b12012-12-12 11:16:19 +0200991 /* beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300992 ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0);
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300993 if (ret)
994 goto out_remove_mac;
995
Hila Gonen7df15b12012-12-12 11:16:19 +0200996 if (!mvm->bf_allowed_vif &&
Emmanuel Grumbach73e5f2c2014-03-30 08:57:30 +0300997 vif->type == NL80211_IFTYPE_STATION && !vif->p2p) {
Hila Gonen7df15b12012-12-12 11:16:19 +0200998 mvm->bf_allowed_vif = mvmvif;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300999 vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
1000 IEEE80211_VIF_SUPPORTS_CQM_RSSI;
Hila Gonen7df15b12012-12-12 11:16:19 +02001001 }
1002
Johannes Berg8ca151b2013-01-24 14:25:36 +01001003 /*
1004 * P2P_DEVICE interface does not have a channel context assigned to it,
1005 * so a dedicated PHY context is allocated to it and the corresponding
1006 * MAC context is bound to it at this stage.
1007 */
1008 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001009
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001010 mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1011 if (!mvmvif->phy_ctxt) {
1012 ret = -ENOSPC;
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001013 goto out_free_bf;
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001014 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001015
Ilan Peer53a9d612013-04-28 11:55:08 +03001016 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001017 ret = iwl_mvm_binding_add_vif(mvm, vif);
1018 if (ret)
Ilan Peer53a9d612013-04-28 11:55:08 +03001019 goto out_unref_phy;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001020
1021 ret = iwl_mvm_add_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
1022 if (ret)
1023 goto out_unbind;
1024
1025 /* Save a pointer to p2p device vif, so it can later be used to
1026 * update the p2p device MAC when a GO is started/stopped */
1027 mvm->p2p_device_vif = vif;
1028 }
1029
Johannes Berg63494372013-03-26 10:47:53 +01001030 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001031 goto out_unlock;
1032
1033 out_unbind:
1034 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peer53a9d612013-04-28 11:55:08 +03001035 out_unref_phy:
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001036 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001037 out_free_bf:
1038 if (mvm->bf_allowed_vif == mvmvif) {
1039 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001040 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1041 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001042 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001043 out_remove_mac:
1044 mvmvif->phy_ctxt = NULL;
1045 iwl_mvm_mac_ctxt_remove(mvm, vif);
1046 out_release:
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001047 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
1048 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001049
Johannes Berg8ca151b2013-01-24 14:25:36 +01001050 iwl_mvm_mac_ctxt_release(mvm, vif);
1051 out_unlock:
1052 mutex_unlock(&mvm->mutex);
1053
Gregory Greenmand40fc482014-06-25 14:08:50 +02001054 iwl_mvm_unref(mvm, IWL_MVM_REF_ADD_IF);
1055
Johannes Berg8ca151b2013-01-24 14:25:36 +01001056 return ret;
1057}
1058
Johannes Berg38a12b52013-02-22 14:07:56 +01001059static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm,
1060 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001061{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001062 u32 tfd_msk = 0, ac;
1063
1064 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1065 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
1066 tfd_msk |= BIT(vif->hw_queue[ac]);
1067
1068 if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE)
1069 tfd_msk |= BIT(vif->cab_queue);
1070
1071 if (tfd_msk) {
1072 mutex_lock(&mvm->mutex);
1073 iwl_mvm_flush_tx_path(mvm, tfd_msk, true);
1074 mutex_unlock(&mvm->mutex);
1075 }
1076
1077 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1078 /*
1079 * Flush the ROC worker which will flush the OFFCHANNEL queue.
1080 * We assume here that all the packets sent to the OFFCHANNEL
1081 * queue are sent in ROC session.
1082 */
1083 flush_work(&mvm->roc_done_wk);
1084 } else {
1085 /*
1086 * By now, all the AC queues are empty. The AGG queues are
1087 * empty too. We already got all the Tx responses for all the
1088 * packets in the queues. The drain work can have been
Emmanuel Grumbach0742a752013-06-10 14:10:33 +03001089 * triggered. Flush it.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001090 */
1091 flush_work(&mvm->sta_drained_wk);
1092 }
Johannes Berg38a12b52013-02-22 14:07:56 +01001093}
1094
1095static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw,
1096 struct ieee80211_vif *vif)
1097{
1098 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1099 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1100
1101 iwl_mvm_prepare_mac_removal(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001102
1103 mutex_lock(&mvm->mutex);
1104
Hila Gonen7df15b12012-12-12 11:16:19 +02001105 if (mvm->bf_allowed_vif == mvmvif) {
1106 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001107 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1108 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Hila Gonen7df15b12012-12-12 11:16:19 +02001109 }
1110
Johannes Berg63494372013-03-26 10:47:53 +01001111 iwl_mvm_vif_dbgfs_clean(mvm, vif);
1112
Johannes Berg8ca151b2013-01-24 14:25:36 +01001113 /*
1114 * For AP/GO interface, the tear down of the resources allocated to the
Johannes Berg38a12b52013-02-22 14:07:56 +01001115 * interface is be handled as part of the stop_ap flow.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001116 */
Johannes Berg5023d962013-07-31 14:07:43 +02001117 if (vif->type == NL80211_IFTYPE_AP ||
1118 vif->type == NL80211_IFTYPE_ADHOC) {
David Spinadel507cadf2013-07-31 18:07:21 +03001119#ifdef CONFIG_NL80211_TESTMODE
1120 if (vif == mvm->noa_vif) {
1121 mvm->noa_vif = NULL;
1122 mvm->noa_duration = 0;
1123 }
1124#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +01001125 iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta);
1126 goto out_release;
1127 }
1128
1129 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1130 mvm->p2p_device_vif = NULL;
1131 iwl_mvm_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1132 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001133 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001134 mvmvif->phy_ctxt = NULL;
1135 }
1136
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001137 if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001138 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001139
Arik Nemtsov999609f2014-05-15 17:31:51 +03001140 iwl_mvm_power_update_mac(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001141 iwl_mvm_mac_ctxt_remove(mvm, vif);
1142
1143out_release:
1144 iwl_mvm_mac_ctxt_release(mvm, vif);
1145 mutex_unlock(&mvm->mutex);
1146}
1147
1148static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed)
1149{
1150 return 0;
1151}
1152
Eliad Pellere59647e2013-11-28 14:08:50 +02001153struct iwl_mvm_mc_iter_data {
1154 struct iwl_mvm *mvm;
1155 int port_id;
1156};
1157
1158static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac,
1159 struct ieee80211_vif *vif)
1160{
1161 struct iwl_mvm_mc_iter_data *data = _data;
1162 struct iwl_mvm *mvm = data->mvm;
1163 struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd;
1164 int ret, len;
1165
1166 /* if we don't have free ports, mcast frames will be dropped */
1167 if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM))
1168 return;
1169
1170 if (vif->type != NL80211_IFTYPE_STATION ||
1171 !vif->bss_conf.assoc)
1172 return;
1173
1174 cmd->port_id = data->port_id++;
1175 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
1176 len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4);
1177
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001178 ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_ASYNC, len, cmd);
Eliad Pellere59647e2013-11-28 14:08:50 +02001179 if (ret)
1180 IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret);
1181}
1182
1183static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm)
1184{
1185 struct iwl_mvm_mc_iter_data iter_data = {
1186 .mvm = mvm,
1187 };
1188
1189 lockdep_assert_held(&mvm->mutex);
1190
1191 if (WARN_ON_ONCE(!mvm->mcast_filter_cmd))
1192 return;
1193
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001194 ieee80211_iterate_active_interfaces_atomic(
Eliad Pellere59647e2013-11-28 14:08:50 +02001195 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1196 iwl_mvm_mc_iface_iterator, &iter_data);
1197}
1198
1199static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw,
1200 struct netdev_hw_addr_list *mc_list)
1201{
1202 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1203 struct iwl_mcast_filter_cmd *cmd;
1204 struct netdev_hw_addr *addr;
1205 int addr_count = netdev_hw_addr_list_count(mc_list);
1206 bool pass_all = false;
1207 int len;
1208
1209 if (addr_count > MAX_MCAST_FILTERING_ADDRESSES) {
1210 pass_all = true;
1211 addr_count = 0;
1212 }
1213
1214 len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4);
1215 cmd = kzalloc(len, GFP_ATOMIC);
1216 if (!cmd)
1217 return 0;
1218
1219 if (pass_all) {
1220 cmd->pass_all = 1;
1221 return (u64)(unsigned long)cmd;
1222 }
1223
1224 netdev_hw_addr_list_for_each(addr, mc_list) {
1225 IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n",
1226 cmd->count, addr->addr);
1227 memcpy(&cmd->addr_list[cmd->count * ETH_ALEN],
1228 addr->addr, ETH_ALEN);
1229 cmd->count++;
1230 }
1231
1232 return (u64)(unsigned long)cmd;
1233}
1234
Johannes Berg8ca151b2013-01-24 14:25:36 +01001235static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
1236 unsigned int changed_flags,
1237 unsigned int *total_flags,
1238 u64 multicast)
1239{
Eliad Pellere59647e2013-11-28 14:08:50 +02001240 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1241 struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast;
1242
1243 mutex_lock(&mvm->mutex);
1244
1245 /* replace previous configuration */
1246 kfree(mvm->mcast_filter_cmd);
1247 mvm->mcast_filter_cmd = cmd;
1248
1249 if (!cmd)
1250 goto out;
1251
1252 iwl_mvm_recalc_multicast(mvm);
1253out:
1254 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001255 *total_flags = 0;
1256}
1257
Eliad Pellerc87163b2014-01-08 10:11:11 +02001258#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1259struct iwl_bcast_iter_data {
1260 struct iwl_mvm *mvm;
1261 struct iwl_bcast_filter_cmd *cmd;
1262 u8 current_filter;
1263};
1264
1265static void
1266iwl_mvm_set_bcast_filter(struct ieee80211_vif *vif,
1267 const struct iwl_fw_bcast_filter *in_filter,
1268 struct iwl_fw_bcast_filter *out_filter)
1269{
1270 struct iwl_fw_bcast_filter_attr *attr;
1271 int i;
1272
1273 memcpy(out_filter, in_filter, sizeof(*out_filter));
1274
1275 for (i = 0; i < ARRAY_SIZE(out_filter->attrs); i++) {
1276 attr = &out_filter->attrs[i];
1277
1278 if (!attr->mask)
1279 break;
1280
Eliad Peller2ee8f022014-01-13 19:07:09 +02001281 switch (attr->reserved1) {
1282 case cpu_to_le16(BC_FILTER_MAGIC_IP):
1283 if (vif->bss_conf.arp_addr_cnt != 1) {
1284 attr->mask = 0;
1285 continue;
1286 }
1287
1288 attr->val = vif->bss_conf.arp_addr_list[0];
1289 break;
1290 case cpu_to_le16(BC_FILTER_MAGIC_MAC):
1291 attr->val = *(__be32 *)&vif->addr[2];
1292 break;
1293 default:
1294 break;
1295 }
1296 attr->reserved1 = 0;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001297 out_filter->num_attrs++;
1298 }
1299}
1300
1301static void iwl_mvm_bcast_filter_iterator(void *_data, u8 *mac,
1302 struct ieee80211_vif *vif)
1303{
1304 struct iwl_bcast_iter_data *data = _data;
1305 struct iwl_mvm *mvm = data->mvm;
1306 struct iwl_bcast_filter_cmd *cmd = data->cmd;
1307 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1308 struct iwl_fw_bcast_mac *bcast_mac;
1309 int i;
1310
1311 if (WARN_ON(mvmvif->id >= ARRAY_SIZE(cmd->macs)))
1312 return;
1313
1314 bcast_mac = &cmd->macs[mvmvif->id];
1315
Ilan Peere48393e2014-05-22 11:19:02 +03001316 /*
1317 * enable filtering only for associated stations, but not for P2P
1318 * Clients
1319 */
1320 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p ||
1321 !vif->bss_conf.assoc)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001322 return;
1323
1324 bcast_mac->default_discard = 1;
1325
1326 /* copy all configured filters */
1327 for (i = 0; mvm->bcast_filters[i].attrs[0].mask; i++) {
1328 /*
1329 * Make sure we don't exceed our filters limit.
1330 * if there is still a valid filter to be configured,
1331 * be on the safe side and just allow bcast for this mac.
1332 */
1333 if (WARN_ON_ONCE(data->current_filter >=
1334 ARRAY_SIZE(cmd->filters))) {
1335 bcast_mac->default_discard = 0;
1336 bcast_mac->attached_filters = 0;
1337 break;
1338 }
1339
1340 iwl_mvm_set_bcast_filter(vif,
1341 &mvm->bcast_filters[i],
1342 &cmd->filters[data->current_filter]);
1343
1344 /* skip current filter if it contains no attributes */
1345 if (!cmd->filters[data->current_filter].num_attrs)
1346 continue;
1347
1348 /* attach the filter to current mac */
1349 bcast_mac->attached_filters |=
1350 cpu_to_le16(BIT(data->current_filter));
1351
1352 data->current_filter++;
1353 }
1354}
1355
Eliad Pellerde06a592014-01-08 10:11:12 +02001356bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm,
1357 struct iwl_bcast_filter_cmd *cmd)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001358{
Eliad Pellerc87163b2014-01-08 10:11:11 +02001359 struct iwl_bcast_iter_data iter_data = {
1360 .mvm = mvm,
Eliad Pellerde06a592014-01-08 10:11:12 +02001361 .cmd = cmd,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001362 };
1363
Eliad Pellerde06a592014-01-08 10:11:12 +02001364 memset(cmd, 0, sizeof(*cmd));
1365 cmd->max_bcast_filters = ARRAY_SIZE(cmd->filters);
1366 cmd->max_macs = ARRAY_SIZE(cmd->macs);
1367
1368#ifdef CONFIG_IWLWIFI_DEBUGFS
1369 /* use debugfs filters/macs if override is configured */
1370 if (mvm->dbgfs_bcast_filtering.override) {
1371 memcpy(cmd->filters, &mvm->dbgfs_bcast_filtering.cmd.filters,
1372 sizeof(cmd->filters));
1373 memcpy(cmd->macs, &mvm->dbgfs_bcast_filtering.cmd.macs,
1374 sizeof(cmd->macs));
1375 return true;
1376 }
1377#endif
Eliad Pellerc87163b2014-01-08 10:11:11 +02001378
1379 /* if no filters are configured, do nothing */
1380 if (!mvm->bcast_filters)
Eliad Pellerde06a592014-01-08 10:11:12 +02001381 return false;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001382
1383 /* configure and attach these filters for each associated sta vif */
1384 ieee80211_iterate_active_interfaces(
1385 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1386 iwl_mvm_bcast_filter_iterator, &iter_data);
1387
Eliad Pellerde06a592014-01-08 10:11:12 +02001388 return true;
1389}
1390static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1391 struct ieee80211_vif *vif)
1392{
1393 struct iwl_bcast_filter_cmd cmd;
1394
1395 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING))
1396 return 0;
1397
1398 if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
1399 return 0;
1400
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001401 return iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001402 sizeof(cmd), &cmd);
1403}
1404#else
1405static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1406 struct ieee80211_vif *vif)
1407{
1408 return 0;
1409}
1410#endif
1411
Arik Nemtsovf6972672014-06-15 16:03:55 +03001412static void iwl_mvm_teardown_tdls_peers(struct iwl_mvm *mvm)
1413{
1414 struct ieee80211_sta *sta;
1415 struct iwl_mvm_sta *mvmsta;
1416 int i;
1417
1418 lockdep_assert_held(&mvm->mutex);
1419
1420 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
1421 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
1422 lockdep_is_held(&mvm->mutex));
1423 if (!sta || IS_ERR(sta) || !sta->tdls)
1424 continue;
1425
1426 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1427 ieee80211_tdls_oper_request(mvmsta->vif, sta->addr,
1428 NL80211_TDLS_TEARDOWN,
1429 WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED,
1430 GFP_KERNEL);
1431 }
1432}
1433
Johannes Berg8ca151b2013-01-24 14:25:36 +01001434static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
1435 struct ieee80211_vif *vif,
1436 struct ieee80211_bss_conf *bss_conf,
1437 u32 changes)
1438{
1439 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1440 int ret;
1441
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001442 /*
1443 * Re-calculate the tsf id, as the master-slave relations depend on the
1444 * beacon interval, which was not known when the station interface was
1445 * added.
1446 */
1447 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc)
1448 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1449
Luciano Coelhobca49d92014-05-13 17:33:38 +03001450 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001451 if (ret)
1452 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
1453
1454 if (changes & BSS_CHANGED_ASSOC) {
1455 if (bss_conf->assoc) {
1456 /* add quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001457 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001458 if (ret) {
1459 IWL_ERR(mvm, "failed to update quotas\n");
1460 return;
1461 }
Johannes Berg016d27e2013-05-03 11:16:15 +02001462
1463 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
1464 &mvm->status)) {
1465 /*
1466 * If we're restarting then the firmware will
1467 * obviously have lost synchronisation with
1468 * the AP. It will attempt to synchronise by
1469 * itself, but we can make it more reliable by
1470 * scheduling a session protection time event.
1471 *
1472 * The firmware needs to receive a beacon to
1473 * catch up with synchronisation, use 110% of
1474 * the beacon interval.
1475 *
1476 * Set a large maximum delay to allow for more
1477 * than a single interface.
1478 */
1479 u32 dur = (11 * vif->bss_conf.beacon_int) / 10;
1480 iwl_mvm_protect_session(mvm, vif, dur, dur,
1481 5 * dur);
1482 }
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001483
1484 iwl_mvm_sf_update(mvm, vif, false);
Alexander Bondar175a70b2013-04-14 20:59:37 +03001485 iwl_mvm_power_vif_assoc(mvm, vif);
Eliad Peller29a90a42013-11-05 14:06:29 +02001486 if (vif->p2p)
1487 iwl_mvm_ref(mvm, IWL_MVM_REF_P2P_CLIENT);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001488 } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001489 /*
1490 * If update fails - SF might be running in associated
1491 * mode while disassociated - which is forbidden.
1492 */
1493 WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false),
1494 "Failed to update SF upon disassociation\n");
1495
Johannes Berg8ca151b2013-01-24 14:25:36 +01001496 /* remove AP station now that the MAC is unassoc */
1497 ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id);
1498 if (ret)
1499 IWL_ERR(mvm, "failed to remove AP station\n");
Eliad Peller37577fe2013-12-05 17:19:39 +02001500
1501 if (mvm->d0i3_ap_sta_id == mvmvif->ap_sta_id)
1502 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001503 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
1504 /* remove quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001505 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001506 if (ret)
1507 IWL_ERR(mvm, "failed to update quotas\n");
Eliad Peller29a90a42013-11-05 14:06:29 +02001508
1509 if (vif->p2p)
1510 iwl_mvm_unref(mvm, IWL_MVM_REF_P2P_CLIENT);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001511 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001512
Eliad Pellere59647e2013-11-28 14:08:50 +02001513 iwl_mvm_recalc_multicast(mvm);
Eliad Pellerc87163b2014-01-08 10:11:11 +02001514 iwl_mvm_configure_bcast_filter(mvm, vif);
Eliad Pellere59647e2013-11-28 14:08:50 +02001515
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001516 /* reset rssi values */
1517 mvmvif->bf_data.ave_beacon_signal = 0;
1518
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001519 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachf94045e2014-01-06 13:38:55 +02001520 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT,
1521 IEEE80211_SMPS_AUTOMATIC);
Alexander Bondar989c6502013-05-16 17:34:17 +03001522 } else if (changes & BSS_CHANGED_BEACON_INFO) {
Johannes Berg210a5442013-01-24 23:48:23 +01001523 /*
1524 * We received a beacon _after_ association so
1525 * remove the session protection.
1526 */
1527 iwl_mvm_remove_time_event(mvm, mvmvif,
1528 &mvmvif->time_event_data);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001529 }
Eran Hararycc87d322014-07-15 14:04:23 +03001530
1531 if (changes & BSS_CHANGED_BEACON_INFO) {
1532 iwl_mvm_sf_update(mvm, vif, false);
1533 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
1534 }
1535
Johannes Berg1bc10d32014-08-26 14:25:46 +02001536 if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS | BSS_CHANGED_QOS)) {
1537 ret = iwl_mvm_power_update_mac(mvm);
1538 if (ret)
1539 IWL_ERR(mvm, "failed to update power mode\n");
1540 }
1541
Matti Gottlieb88f2fd72013-07-09 15:25:46 +03001542 if (changes & BSS_CHANGED_TXPOWER) {
1543 IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
1544 bss_conf->txpower);
1545 iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
1546 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001547
1548 if (changes & BSS_CHANGED_CQM) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001549 IWL_DEBUG_MAC80211(mvm, "cqm info_changed\n");
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001550 /* reset cqm events tracking */
1551 mvmvif->bf_data.last_cqm_event = 0;
Avri Altmanfa7b2e72014-05-20 08:03:24 +03001552 if (mvmvif->bf_data.bf_enabled) {
1553 ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0);
1554 if (ret)
1555 IWL_ERR(mvm,
1556 "failed to update CQM thresholds\n");
1557 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001558 }
Eliad Peller2ee8f022014-01-13 19:07:09 +02001559
1560 if (changes & BSS_CHANGED_ARP_FILTER) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001561 IWL_DEBUG_MAC80211(mvm, "arp filter changed\n");
Eliad Peller2ee8f022014-01-13 19:07:09 +02001562 iwl_mvm_configure_bcast_filter(mvm, vif);
1563 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001564}
1565
Johannes Berg5023d962013-07-31 14:07:43 +02001566static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
1567 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001568{
1569 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1570 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1571 int ret;
1572
Eliad Peller576eeee2014-07-01 18:38:38 +03001573 /*
1574 * iwl_mvm_mac_ctxt_add() might read directly from the device
1575 * (the system time), so make sure it is available.
1576 */
1577 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_START_AP);
1578 if (ret)
1579 return ret;
1580
Johannes Berg8ca151b2013-01-24 14:25:36 +01001581 mutex_lock(&mvm->mutex);
1582
1583 /* Send the beacon template */
1584 ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif);
1585 if (ret)
1586 goto out_unlock;
1587
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001588 /*
1589 * Re-calculate the tsf id, as the master-slave relations depend on the
1590 * beacon interval, which was not known when the AP interface was added.
1591 */
1592 if (vif->type == NL80211_IFTYPE_AP)
1593 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1594
Johannes Berg8ca151b2013-01-24 14:25:36 +01001595 /* Add the mac context */
1596 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
1597 if (ret)
1598 goto out_unlock;
1599
1600 /* Perform the binding */
1601 ret = iwl_mvm_binding_add_vif(mvm, vif);
1602 if (ret)
1603 goto out_remove;
1604
Johannes Berg8ca151b2013-01-24 14:25:36 +01001605 /* Send the bcast station. At this stage the TBTT and DTIM time events
1606 * are added and applied to the scheduler */
1607 ret = iwl_mvm_send_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
1608 if (ret)
1609 goto out_unbind;
1610
Ilan Peer5691e212013-12-31 21:05:50 +02001611 /* must be set before quota calculations */
1612 mvmvif->ap_ibss_active = true;
1613
Ilan Peera11e1442013-12-31 21:19:55 +02001614 /* power updated needs to be done before quotas */
Arik Nemtsov999609f2014-05-15 17:31:51 +03001615 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001616
Johannes Berg01662302014-06-06 15:18:45 +02001617 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001618 if (ret)
Ilan Peera11e1442013-12-31 21:19:55 +02001619 goto out_quota_failed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001620
Johannes Berg5023d962013-07-31 14:07:43 +02001621 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001622 if (vif->p2p && mvm->p2p_device_vif)
Luciano Coelhobca49d92014-05-13 17:33:38 +03001623 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001624
Eliad Peller29a90a42013-11-05 14:06:29 +02001625 iwl_mvm_ref(mvm, IWL_MVM_REF_AP_IBSS);
1626
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001627 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001628
Arik Nemtsovf6972672014-06-15 16:03:55 +03001629 /* we don't support TDLS during DCM */
1630 if (iwl_mvm_phy_ctx_count(mvm) > 1)
1631 iwl_mvm_teardown_tdls_peers(mvm);
1632
Johannes Berg8ca151b2013-01-24 14:25:36 +01001633 mutex_unlock(&mvm->mutex);
1634 return 0;
1635
Ilan Peera11e1442013-12-31 21:19:55 +02001636out_quota_failed:
Arik Nemtsov999609f2014-05-15 17:31:51 +03001637 iwl_mvm_power_update_mac(mvm);
Ilan Peer5691e212013-12-31 21:05:50 +02001638 mvmvif->ap_ibss_active = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001639 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1640out_unbind:
1641 iwl_mvm_binding_remove_vif(mvm, vif);
1642out_remove:
1643 iwl_mvm_mac_ctxt_remove(mvm, vif);
1644out_unlock:
1645 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03001646 iwl_mvm_unref(mvm, IWL_MVM_REF_START_AP);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001647 return ret;
1648}
1649
Johannes Berg5023d962013-07-31 14:07:43 +02001650static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
1651 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001652{
1653 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1654 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1655
Johannes Berg38a12b52013-02-22 14:07:56 +01001656 iwl_mvm_prepare_mac_removal(mvm, vif);
1657
Johannes Berg8ca151b2013-01-24 14:25:36 +01001658 mutex_lock(&mvm->mutex);
1659
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001660 /* Handle AP stop while in CSA */
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001661 if (rcu_access_pointer(mvm->csa_vif) == vif) {
1662 iwl_mvm_remove_time_event(mvm, mvmvif,
1663 &mvmvif->time_event_data);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001664 RCU_INIT_POINTER(mvm->csa_vif, NULL);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001665 }
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001666
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001667 if (rcu_access_pointer(mvm->csa_tx_blocked_vif) == vif) {
1668 RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
1669 mvm->csa_tx_block_bcn_timeout = 0;
1670 }
1671
Johannes Berg5023d962013-07-31 14:07:43 +02001672 mvmvif->ap_ibss_active = false;
David Spinadel1c87bba2014-02-27 16:41:52 +02001673 mvm->ap_last_beacon_gp2 = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001674
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001675 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001676
Eliad Peller29a90a42013-11-05 14:06:29 +02001677 iwl_mvm_unref(mvm, IWL_MVM_REF_AP_IBSS);
1678
Johannes Berg5023d962013-07-31 14:07:43 +02001679 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001680 if (vif->p2p && mvm->p2p_device_vif)
Luciano Coelhobca49d92014-05-13 17:33:38 +03001681 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001682
Johannes Berg01662302014-06-06 15:18:45 +02001683 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001684 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1685 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peera11e1442013-12-31 21:19:55 +02001686
Arik Nemtsov999609f2014-05-15 17:31:51 +03001687 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001688
Johannes Berg8ca151b2013-01-24 14:25:36 +01001689 iwl_mvm_mac_ctxt_remove(mvm, vif);
1690
1691 mutex_unlock(&mvm->mutex);
1692}
1693
Johannes Berg5023d962013-07-31 14:07:43 +02001694static void
1695iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm,
1696 struct ieee80211_vif *vif,
1697 struct ieee80211_bss_conf *bss_conf,
1698 u32 changes)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001699{
Ilan Peerbe2056f2013-12-04 16:47:14 +02001700 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Avri Altman8a5e3662013-11-12 19:16:03 +02001701
Ilan Peerbe2056f2013-12-04 16:47:14 +02001702 /* Changes will be applied when the AP/IBSS is started */
1703 if (!mvmvif->ap_ibss_active)
1704 return;
1705
Johannes Berg863230da2013-12-04 17:08:40 +01001706 if (changes & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT |
1707 BSS_CHANGED_BANDWIDTH) &&
Luciano Coelhobca49d92014-05-13 17:33:38 +03001708 iwl_mvm_mac_ctxt_changed(mvm, vif, false))
Johannes Berg863230da2013-12-04 17:08:40 +01001709 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
Avri Altman8a5e3662013-11-12 19:16:03 +02001710
Johannes Berg8ca151b2013-01-24 14:25:36 +01001711 /* Need to send a new beacon template to the FW */
Johannes Berg863230da2013-12-04 17:08:40 +01001712 if (changes & BSS_CHANGED_BEACON &&
1713 iwl_mvm_mac_ctxt_beacon_changed(mvm, vif))
1714 IWL_WARN(mvm, "Failed updating beacon data\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001715}
1716
1717static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw,
1718 struct ieee80211_vif *vif,
1719 struct ieee80211_bss_conf *bss_conf,
1720 u32 changes)
1721{
1722 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1723
Eliad Peller576eeee2014-07-01 18:38:38 +03001724 /*
1725 * iwl_mvm_bss_info_changed_station() might call
1726 * iwl_mvm_protect_session(), which reads directly from
1727 * the device (the system time), so make sure it is available.
1728 */
1729 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_BSS_CHANGED))
1730 return;
1731
Johannes Berg8ca151b2013-01-24 14:25:36 +01001732 mutex_lock(&mvm->mutex);
1733
David Spinadel723f02e2014-04-27 09:54:54 +03001734 if (changes & BSS_CHANGED_IDLE && !bss_conf->idle)
David Spinadelfb98be52014-05-04 12:51:10 +03001735 iwl_mvm_scan_offload_stop(mvm, true);
David Spinadel723f02e2014-04-27 09:54:54 +03001736
Johannes Berg8ca151b2013-01-24 14:25:36 +01001737 switch (vif->type) {
1738 case NL80211_IFTYPE_STATION:
1739 iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes);
1740 break;
1741 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02001742 case NL80211_IFTYPE_ADHOC:
1743 iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001744 break;
1745 default:
1746 /* shouldn't happen */
1747 WARN_ON_ONCE(1);
1748 }
1749
1750 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03001751 iwl_mvm_unref(mvm, IWL_MVM_REF_BSS_CHANGED);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001752}
1753
Eliad Peller4660dfb2014-06-22 18:15:59 +03001754static int iwl_mvm_cancel_scan_wait_notif(struct iwl_mvm *mvm,
1755 enum iwl_scan_status scan_type)
1756{
1757 int ret;
1758 bool wait_for_handlers = false;
1759
1760 mutex_lock(&mvm->mutex);
1761
1762 if (mvm->scan_status != scan_type) {
1763 ret = 0;
1764 /* make sure there are no pending notifications */
1765 wait_for_handlers = true;
1766 goto out;
1767 }
1768
1769 switch (scan_type) {
1770 case IWL_MVM_SCAN_SCHED:
1771 ret = iwl_mvm_scan_offload_stop(mvm, true);
1772 break;
1773 case IWL_MVM_SCAN_OS:
1774 ret = iwl_mvm_cancel_scan(mvm);
1775 break;
1776 case IWL_MVM_SCAN_NONE:
1777 default:
1778 WARN_ON_ONCE(1);
1779 ret = -EINVAL;
1780 break;
1781 }
1782 if (ret)
1783 goto out;
1784
1785 wait_for_handlers = true;
1786out:
1787 mutex_unlock(&mvm->mutex);
1788
1789 /* make sure we consume the completion notification */
1790 if (wait_for_handlers)
1791 iwl_mvm_wait_for_async_handlers(mvm);
1792
1793 return ret;
1794}
Johannes Berg8ca151b2013-01-24 14:25:36 +01001795static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw,
1796 struct ieee80211_vif *vif,
David Spinadelc56ef672014-02-05 15:21:13 +02001797 struct ieee80211_scan_request *hw_req)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001798{
1799 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
David Spinadelc56ef672014-02-05 15:21:13 +02001800 struct cfg80211_scan_request *req = &hw_req->req;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001801 int ret;
1802
David Spinadel762533b2014-06-05 11:20:43 +03001803 if (req->n_channels == 0 ||
1804 req->n_channels > mvm->fw->ucode_capa.n_scan_channels)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001805 return -EINVAL;
1806
Eliad Peller4660dfb2014-06-22 18:15:59 +03001807 ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_SCHED);
1808 if (ret)
1809 return ret;
1810
Johannes Berg8ca151b2013-01-24 14:25:36 +01001811 mutex_lock(&mvm->mutex);
1812
Eliad Peller4660dfb2014-06-22 18:15:59 +03001813 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001814 ret = -EBUSY;
Arik Nemtsov519e2022013-10-17 17:51:35 +03001815 goto out;
1816 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001817
Arik Nemtsov519e2022013-10-17 17:51:35 +03001818 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
1819
David Spinadelfb98be52014-05-04 12:51:10 +03001820 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
1821 ret = iwl_mvm_unified_scan_lmac(mvm, vif, hw_req);
1822 else
1823 ret = iwl_mvm_scan_request(mvm, vif, req);
1824
Arik Nemtsov519e2022013-10-17 17:51:35 +03001825 if (ret)
1826 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1827out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001828 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001829 return ret;
1830}
1831
1832static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw,
1833 struct ieee80211_vif *vif)
1834{
1835 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1836
1837 mutex_lock(&mvm->mutex);
1838
1839 iwl_mvm_cancel_scan(mvm);
1840
1841 mutex_unlock(&mvm->mutex);
1842}
1843
1844static void
1845iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw,
Johannes Berg3e56ead2013-02-15 22:23:18 +01001846 struct ieee80211_sta *sta, u16 tids,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001847 int num_frames,
1848 enum ieee80211_frame_release_type reason,
1849 bool more_data)
1850{
1851 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001852
Johannes Berg3e56ead2013-02-15 22:23:18 +01001853 /* Called when we need to transmit (a) frame(s) from mac80211 */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001854
Johannes Berg3e56ead2013-02-15 22:23:18 +01001855 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
1856 tids, more_data, false);
1857}
1858
1859static void
1860iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw,
1861 struct ieee80211_sta *sta, u16 tids,
1862 int num_frames,
1863 enum ieee80211_frame_release_type reason,
1864 bool more_data)
1865{
1866 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1867
1868 /* Called when we need to transmit (a) frame(s) from agg queue */
1869
1870 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
1871 tids, more_data, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001872}
1873
1874static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
1875 struct ieee80211_vif *vif,
1876 enum sta_notify_cmd cmd,
1877 struct ieee80211_sta *sta)
1878{
1879 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg5b577a92013-11-14 18:20:04 +01001880 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg3e56ead2013-02-15 22:23:18 +01001881 int tid;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001882
1883 switch (cmd) {
1884 case STA_NOTIFY_SLEEP:
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001885 if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001886 ieee80211_sta_block_awake(hw, sta, true);
Johannes Berg3e56ead2013-02-15 22:23:18 +01001887 spin_lock_bh(&mvmsta->lock);
1888 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
1889 struct iwl_mvm_tid_data *tid_data;
1890
1891 tid_data = &mvmsta->tid_data[tid];
1892 if (tid_data->state != IWL_AGG_ON &&
1893 tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA)
1894 continue;
1895 if (iwl_mvm_tid_queued(tid_data) == 0)
1896 continue;
1897 ieee80211_sta_set_buffered(sta, tid, true);
1898 }
1899 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001900 /*
1901 * The fw updates the STA to be asleep. Tx packets on the Tx
1902 * queues to this station will not be transmitted. The fw will
1903 * send a Tx response with TX_STATUS_FAIL_DEST_PS.
1904 */
1905 break;
1906 case STA_NOTIFY_AWAKE:
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02001907 if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001908 break;
Johannes Berg9cc40712013-02-15 22:47:48 +01001909 iwl_mvm_sta_modify_ps_wake(mvm, sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001910 break;
1911 default:
1912 break;
1913 }
1914}
1915
Johannes Berg1ddbbb02013-12-04 22:39:17 +01001916static void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw,
1917 struct ieee80211_vif *vif,
1918 struct ieee80211_sta *sta)
1919{
1920 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1921 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
1922
1923 /*
1924 * This is called before mac80211 does RCU synchronisation,
1925 * so here we already invalidate our internal RCU-protected
1926 * station pointer. The rest of the code will thus no longer
1927 * be able to find the station this way, and we don't rely
1928 * on further RCU synchronisation after the sta_state()
1929 * callback deleted the station.
1930 */
1931 mutex_lock(&mvm->mutex);
1932 if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id]))
1933 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id],
1934 ERR_PTR(-ENOENT));
1935 mutex_unlock(&mvm->mutex);
1936}
1937
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001938int iwl_mvm_tdls_sta_count(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001939{
1940 struct ieee80211_sta *sta;
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001941 struct iwl_mvm_sta *mvmsta;
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001942 int count = 0;
1943 int i;
1944
1945 lockdep_assert_held(&mvm->mutex);
1946
1947 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
1948 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
1949 lockdep_is_held(&mvm->mutex));
1950 if (!sta || IS_ERR(sta) || !sta->tdls)
1951 continue;
1952
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001953 if (vif) {
1954 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1955 if (mvmsta->vif != vif)
1956 continue;
1957 }
1958
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001959 count++;
1960 }
1961
1962 return count;
1963}
1964
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001965static void iwl_mvm_recalc_tdls_state(struct iwl_mvm *mvm,
1966 struct ieee80211_vif *vif,
1967 bool sta_added)
1968{
1969 int tdls_sta_cnt = iwl_mvm_tdls_sta_count(mvm, vif);
1970
1971 /*
1972 * Disable ps when the first TDLS sta is added and re-enable it
1973 * when the last TDLS sta is removed
1974 */
1975 if ((tdls_sta_cnt == 1 && sta_added) ||
1976 (tdls_sta_cnt == 0 && !sta_added))
1977 iwl_mvm_power_update_mac(mvm);
1978}
1979
Johannes Berg8ca151b2013-01-24 14:25:36 +01001980static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
1981 struct ieee80211_vif *vif,
1982 struct ieee80211_sta *sta,
1983 enum ieee80211_sta_state old_state,
1984 enum ieee80211_sta_state new_state)
1985{
1986 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1987 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1988 int ret;
1989
1990 IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n",
1991 sta->addr, old_state, new_state);
1992
1993 /* this would be a mac80211 bug ... but don't crash */
1994 if (WARN_ON_ONCE(!mvmvif->phy_ctxt))
1995 return -EINVAL;
1996
1997 /* if a STA is being removed, reuse its ID */
1998 flush_work(&mvm->sta_drained_wk);
1999
2000 mutex_lock(&mvm->mutex);
2001 if (old_state == IEEE80211_STA_NOTEXIST &&
2002 new_state == IEEE80211_STA_NONE) {
Johannes Berg48bc1302013-07-04 15:55:29 +02002003 /*
2004 * Firmware bug - it'll crash if the beacon interval is less
2005 * than 16. We can't avoid connecting at all, so refuse the
2006 * station state change, this will cause mac80211 to abandon
2007 * attempts to connect to this AP, and eventually wpa_s will
2008 * blacklist the AP...
2009 */
2010 if (vif->type == NL80211_IFTYPE_STATION &&
2011 vif->bss_conf.beacon_int < 16) {
2012 IWL_ERR(mvm,
2013 "AP %pM beacon interval is %d, refusing due to firmware bug!\n",
2014 sta->addr, vif->bss_conf.beacon_int);
2015 ret = -EINVAL;
2016 goto out_unlock;
2017 }
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03002018
2019 if (sta->tdls &&
2020 (vif->p2p ||
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002021 iwl_mvm_tdls_sta_count(mvm, NULL) ==
2022 IWL_MVM_TDLS_STA_COUNT ||
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03002023 iwl_mvm_phy_ctx_count(mvm) > 1)) {
2024 IWL_DEBUG_MAC80211(mvm, "refusing TDLS sta\n");
2025 ret = -EBUSY;
2026 goto out_unlock;
2027 }
2028
Johannes Berg8ca151b2013-01-24 14:25:36 +01002029 ret = iwl_mvm_add_sta(mvm, vif, sta);
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002030 if (sta->tdls && ret == 0)
2031 iwl_mvm_recalc_tdls_state(mvm, vif, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002032 } else if (old_state == IEEE80211_STA_NONE &&
2033 new_state == IEEE80211_STA_AUTH) {
Haim Dreyfusse820c2d2014-04-06 11:19:09 +03002034 /*
2035 * EBS may be disabled due to previous failures reported by FW.
2036 * Reset EBS status here assuming environment has been changed.
2037 */
2038 mvm->last_ebs_successful = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002039 ret = 0;
2040 } else if (old_state == IEEE80211_STA_AUTH &&
2041 new_state == IEEE80211_STA_ASSOC) {
Johannes Berg7a453972013-02-12 13:10:44 +01002042 ret = iwl_mvm_update_sta(mvm, vif, sta);
2043 if (ret == 0)
2044 iwl_mvm_rs_rate_init(mvm, sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +02002045 mvmvif->phy_ctxt->channel->band,
2046 true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002047 } else if (old_state == IEEE80211_STA_ASSOC &&
2048 new_state == IEEE80211_STA_AUTHORIZED) {
Arik Nemtsovf59e0e3c2014-06-10 19:56:27 +03002049
2050 /* we don't support TDLS during DCM */
2051 if (iwl_mvm_phy_ctx_count(mvm) > 1)
2052 iwl_mvm_teardown_tdls_peers(mvm);
2053
Hila Gonen7df15b12012-12-12 11:16:19 +02002054 /* enable beacon filtering */
Avri Altmanfa7b2e72014-05-20 08:03:24 +03002055 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01002056 ret = 0;
2057 } else if (old_state == IEEE80211_STA_AUTHORIZED &&
2058 new_state == IEEE80211_STA_ASSOC) {
Hila Gonen7df15b12012-12-12 11:16:19 +02002059 /* disable beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03002060 WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01002061 ret = 0;
2062 } else if (old_state == IEEE80211_STA_ASSOC &&
2063 new_state == IEEE80211_STA_AUTH) {
2064 ret = 0;
2065 } else if (old_state == IEEE80211_STA_AUTH &&
2066 new_state == IEEE80211_STA_NONE) {
2067 ret = 0;
2068 } else if (old_state == IEEE80211_STA_NONE &&
2069 new_state == IEEE80211_STA_NOTEXIST) {
2070 ret = iwl_mvm_rm_sta(mvm, vif, sta);
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002071 if (sta->tdls)
2072 iwl_mvm_recalc_tdls_state(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002073 } else {
2074 ret = -EIO;
2075 }
Johannes Berg48bc1302013-07-04 15:55:29 +02002076 out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002077 mutex_unlock(&mvm->mutex);
2078
2079 return ret;
2080}
2081
2082static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2083{
2084 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2085
2086 mvm->rts_threshold = value;
2087
2088 return 0;
2089}
2090
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02002091static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw,
2092 struct ieee80211_vif *vif,
2093 struct ieee80211_sta *sta, u32 changed)
2094{
2095 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2096
2097 if (vif->type == NL80211_IFTYPE_STATION &&
2098 changed & IEEE80211_RC_NSS_CHANGED)
2099 iwl_mvm_sf_update(mvm, vif, false);
2100}
2101
Johannes Berg8ca151b2013-01-24 14:25:36 +01002102static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw,
2103 struct ieee80211_vif *vif, u16 ac,
2104 const struct ieee80211_tx_queue_params *params)
2105{
2106 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2107 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2108
2109 mvmvif->queue_params[ac] = *params;
2110
2111 /*
2112 * No need to update right away, we'll get BSS_CHANGED_QOS
2113 * The exception is P2P_DEVICE interface which needs immediate update.
2114 */
2115 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
2116 int ret;
2117
2118 mutex_lock(&mvm->mutex);
Luciano Coelhobca49d92014-05-13 17:33:38 +03002119 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002120 mutex_unlock(&mvm->mutex);
2121 return ret;
2122 }
2123 return 0;
2124}
2125
2126static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw,
2127 struct ieee80211_vif *vif)
2128{
2129 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2130 u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS,
2131 200 + vif->bss_conf.beacon_int);
2132 u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS,
2133 100 + vif->bss_conf.beacon_int);
2134
2135 if (WARN_ON_ONCE(vif->bss_conf.assoc))
2136 return;
2137
Eliad Peller576eeee2014-07-01 18:38:38 +03002138 /*
2139 * iwl_mvm_protect_session() reads directly from the device
2140 * (the system time), so make sure it is available.
2141 */
2142 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PREPARE_TX))
2143 return;
2144
Johannes Berg8ca151b2013-01-24 14:25:36 +01002145 mutex_lock(&mvm->mutex);
2146 /* Try really hard to protect the session and hear a beacon */
Johannes Berg016d27e2013-05-03 11:16:15 +02002147 iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002148 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002149
2150 iwl_mvm_unref(mvm, IWL_MVM_REF_PREPARE_TX);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002151}
2152
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002153static void iwl_mvm_mac_mgd_protect_tdls_discover(struct ieee80211_hw *hw,
2154 struct ieee80211_vif *vif)
2155{
2156 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2157 u32 duration = 2 * vif->bss_conf.dtim_period * vif->bss_conf.beacon_int;
2158
Eliad Peller576eeee2014-07-01 18:38:38 +03002159 /*
2160 * iwl_mvm_protect_session() reads directly from the device
2161 * (the system time), so make sure it is available.
2162 */
2163 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PROTECT_TDLS))
2164 return;
2165
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002166 mutex_lock(&mvm->mutex);
2167 /* Protect the session to hear the TDLS setup response on the channel */
2168 iwl_mvm_protect_session(mvm, vif, duration, duration, 100);
2169 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002170
2171 iwl_mvm_unref(mvm, IWL_MVM_REF_PROTECT_TDLS);
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002172}
2173
David Spinadel35a000b2013-08-28 09:29:43 +03002174static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw,
2175 struct ieee80211_vif *vif,
2176 struct cfg80211_sched_scan_request *req,
David Spinadel633e2712014-02-06 16:15:23 +02002177 struct ieee80211_scan_ies *ies)
David Spinadel35a000b2013-08-28 09:29:43 +03002178{
2179 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2180 int ret;
2181
Eliad Peller4660dfb2014-06-22 18:15:59 +03002182 ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_OS);
2183 if (ret)
2184 return ret;
2185
David Spinadel35a000b2013-08-28 09:29:43 +03002186 mutex_lock(&mvm->mutex);
2187
David Spinadelb538b8c2014-05-13 14:29:36 +03002188 if (!iwl_mvm_is_idle(mvm)) {
David Spinadelbd5e4742014-04-24 13:15:29 +03002189 ret = -EBUSY;
2190 goto out;
2191 }
2192
Eliad Peller4660dfb2014-06-22 18:15:59 +03002193 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
David Spinadel35a000b2013-08-28 09:29:43 +03002194 ret = -EBUSY;
2195 goto out;
2196 }
2197
2198 mvm->scan_status = IWL_MVM_SCAN_SCHED;
2199
David Spinadelfb98be52014-05-04 12:51:10 +03002200 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)) {
2201 ret = iwl_mvm_config_sched_scan(mvm, vif, req, ies);
2202 if (ret)
2203 goto err;
2204 }
David Spinadel35a000b2013-08-28 09:29:43 +03002205
2206 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
2207 if (ret)
2208 goto err;
2209
David Spinadelfb98be52014-05-04 12:51:10 +03002210 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
2211 ret = iwl_mvm_unified_sched_scan_lmac(mvm, vif, req, ies);
2212 else
2213 ret = iwl_mvm_sched_scan_start(mvm, req);
2214
David Spinadel35a000b2013-08-28 09:29:43 +03002215 if (!ret)
2216 goto out;
2217err:
2218 mvm->scan_status = IWL_MVM_SCAN_NONE;
2219out:
2220 mutex_unlock(&mvm->mutex);
2221 return ret;
2222}
2223
Johannes Berg37e33082014-02-17 10:48:17 +01002224static int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw,
2225 struct ieee80211_vif *vif)
David Spinadel35a000b2013-08-28 09:29:43 +03002226{
2227 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002228 int ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002229
2230 mutex_lock(&mvm->mutex);
David Spinadelfb98be52014-05-04 12:51:10 +03002231 ret = iwl_mvm_scan_offload_stop(mvm, false);
David Spinadel35a000b2013-08-28 09:29:43 +03002232 mutex_unlock(&mvm->mutex);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002233 iwl_mvm_wait_for_async_handlers(mvm);
Johannes Berg37e33082014-02-17 10:48:17 +01002234
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002235 return ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002236}
2237
Johannes Berg8ca151b2013-01-24 14:25:36 +01002238static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw,
2239 enum set_key_cmd cmd,
2240 struct ieee80211_vif *vif,
2241 struct ieee80211_sta *sta,
2242 struct ieee80211_key_conf *key)
2243{
2244 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2245 int ret;
2246
2247 if (iwlwifi_mod_params.sw_crypto) {
2248 IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n");
2249 return -EOPNOTSUPP;
2250 }
2251
2252 switch (key->cipher) {
2253 case WLAN_CIPHER_SUITE_TKIP:
2254 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
2255 /* fall-through */
2256 case WLAN_CIPHER_SUITE_CCMP:
2257 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2258 break;
2259 case WLAN_CIPHER_SUITE_AES_CMAC:
2260 WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE));
2261 break;
2262 case WLAN_CIPHER_SUITE_WEP40:
2263 case WLAN_CIPHER_SUITE_WEP104:
2264 /*
2265 * Support for TX only, at least for now, so accept
2266 * the key and do nothing else. Then mac80211 will
2267 * pass it for TX but we don't have to use it for RX.
2268 */
2269 return 0;
2270 default:
Max Stepanove36e5432013-08-27 19:56:13 +03002271 /* currently FW supports only one optional cipher scheme */
2272 if (hw->n_cipher_schemes &&
2273 hw->cipher_schemes->cipher == key->cipher)
2274 key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
2275 else
2276 return -EOPNOTSUPP;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002277 }
2278
2279 mutex_lock(&mvm->mutex);
2280
2281 switch (cmd) {
2282 case SET_KEY:
Johannes Berg5023d962013-07-31 14:07:43 +02002283 if ((vif->type == NL80211_IFTYPE_ADHOC ||
2284 vif->type == NL80211_IFTYPE_AP) && !sta) {
2285 /*
2286 * GTK on AP interface is a TX-only key, return 0;
2287 * on IBSS they're per-station and because we're lazy
2288 * we don't support them for RX, so do the same.
2289 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002290 ret = 0;
2291 key->hw_key_idx = STA_KEY_IDX_INVALID;
2292 break;
2293 }
2294
Johannes Berg8ca151b2013-01-24 14:25:36 +01002295 IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n");
2296 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false);
2297 if (ret) {
2298 IWL_WARN(mvm, "set key failed\n");
2299 /*
2300 * can't add key for RX, but we don't need it
2301 * in the device for TX so still return 0
2302 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002303 key->hw_key_idx = STA_KEY_IDX_INVALID;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002304 ret = 0;
2305 }
2306
2307 break;
2308 case DISABLE_KEY:
Johannes Berg6caffd42013-03-06 13:15:21 +01002309 if (key->hw_key_idx == STA_KEY_IDX_INVALID) {
2310 ret = 0;
2311 break;
2312 }
2313
Johannes Berg8ca151b2013-01-24 14:25:36 +01002314 IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n");
2315 ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key);
2316 break;
2317 default:
2318 ret = -EINVAL;
2319 }
2320
2321 mutex_unlock(&mvm->mutex);
2322 return ret;
2323}
2324
2325static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw,
2326 struct ieee80211_vif *vif,
2327 struct ieee80211_key_conf *keyconf,
2328 struct ieee80211_sta *sta,
2329 u32 iv32, u16 *phase1key)
2330{
2331 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2332
Johannes Berg5023d962013-07-31 14:07:43 +02002333 if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID)
2334 return;
2335
Johannes Berg8ca151b2013-01-24 14:25:36 +01002336 iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key);
2337}
2338
2339
Ariej Marjiehb1128892014-07-16 21:11:12 +03002340static bool iwl_mvm_rx_aux_roc(struct iwl_notif_wait_data *notif_wait,
2341 struct iwl_rx_packet *pkt, void *data)
2342{
2343 struct iwl_mvm *mvm =
2344 container_of(notif_wait, struct iwl_mvm, notif_wait);
2345 struct iwl_hs20_roc_res *resp;
2346 int resp_len = iwl_rx_packet_payload_len(pkt);
2347 struct iwl_mvm_time_event_data *te_data = data;
2348
2349 if (WARN_ON(pkt->hdr.cmd != HOT_SPOT_CMD))
2350 return true;
2351
2352 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
2353 IWL_ERR(mvm, "Invalid HOT_SPOT_CMD response\n");
2354 return true;
2355 }
2356
2357 resp = (void *)pkt->data;
2358
2359 IWL_DEBUG_TE(mvm,
2360 "Aux ROC: Recieved response from ucode: status=%d uid=%d\n",
2361 resp->status, resp->event_unique_id);
2362
2363 te_data->uid = le32_to_cpu(resp->event_unique_id);
2364 IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
2365 te_data->uid);
2366
2367 spin_lock_bh(&mvm->time_event_lock);
2368 list_add_tail(&te_data->list, &mvm->aux_roc_te_list);
2369 spin_unlock_bh(&mvm->time_event_lock);
2370
2371 return true;
2372}
2373
2374#define AUX_ROC_MAX_DELAY_ON_CHANNEL 5000
2375static int iwl_mvm_send_aux_roc_cmd(struct iwl_mvm *mvm,
2376 struct ieee80211_channel *channel,
2377 struct ieee80211_vif *vif,
2378 int duration)
2379{
2380 int res, time_reg = DEVICE_SYSTEM_TIME_REG;
2381 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2382 struct iwl_mvm_time_event_data *te_data = &mvmvif->hs_time_event_data;
2383 static const u8 time_event_response[] = { HOT_SPOT_CMD };
2384 struct iwl_notification_wait wait_time_event;
2385 struct iwl_hs20_roc_req aux_roc_req = {
2386 .action = cpu_to_le32(FW_CTXT_ACTION_ADD),
2387 .id_and_color =
2388 cpu_to_le32(FW_CMD_ID_AND_COLOR(MAC_INDEX_AUX, 0)),
2389 .sta_id_and_color = cpu_to_le32(mvm->aux_sta.sta_id),
2390 /* Set the channel info data */
2391 .channel_info.band = (channel->band == IEEE80211_BAND_2GHZ) ?
2392 PHY_BAND_24 : PHY_BAND_5,
2393 .channel_info.channel = channel->hw_value,
2394 .channel_info.width = PHY_VHT_CHANNEL_MODE20,
2395 /* Set the time and duration */
2396 .apply_time = cpu_to_le32(iwl_read_prph(mvm->trans, time_reg)),
2397 .apply_time_max_delay =
2398 cpu_to_le32(MSEC_TO_TU(AUX_ROC_MAX_DELAY_ON_CHANNEL)),
2399 .duration = cpu_to_le32(MSEC_TO_TU(duration)),
2400 };
2401
2402 /* Set the node address */
2403 memcpy(aux_roc_req.node_addr, vif->addr, ETH_ALEN);
2404
2405 te_data->vif = vif;
2406 te_data->duration = duration;
2407 te_data->id = HOT_SPOT_CMD;
2408
2409 lockdep_assert_held(&mvm->mutex);
2410
2411 spin_lock_bh(&mvm->time_event_lock);
2412 list_add_tail(&te_data->list, &mvm->time_event_list);
2413 spin_unlock_bh(&mvm->time_event_lock);
2414
2415 /*
2416 * Use a notification wait, which really just processes the
2417 * command response and doesn't wait for anything, in order
2418 * to be able to process the response and get the UID inside
2419 * the RX path. Using CMD_WANT_SKB doesn't work because it
2420 * stores the buffer and then wakes up this thread, by which
2421 * time another notification (that the time event started)
2422 * might already be processed unsuccessfully.
2423 */
2424 iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
2425 time_event_response,
2426 ARRAY_SIZE(time_event_response),
2427 iwl_mvm_rx_aux_roc, te_data);
2428
2429 res = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0, sizeof(aux_roc_req),
2430 &aux_roc_req);
2431
2432 if (res) {
2433 IWL_ERR(mvm, "Couldn't send HOT_SPOT_CMD: %d\n", res);
2434 iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
2435 goto out_clear_te;
2436 }
2437
2438 /* No need to wait for anything, so just pass 1 (0 isn't valid) */
2439 res = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
2440 /* should never fail */
2441 WARN_ON_ONCE(res);
2442
2443 if (res) {
2444 out_clear_te:
2445 spin_lock_bh(&mvm->time_event_lock);
2446 iwl_mvm_te_clear_data(mvm, te_data);
2447 spin_unlock_bh(&mvm->time_event_lock);
2448 }
2449
2450 return res;
2451}
2452
Johannes Berg8ca151b2013-01-24 14:25:36 +01002453static int iwl_mvm_roc(struct ieee80211_hw *hw,
2454 struct ieee80211_vif *vif,
2455 struct ieee80211_channel *channel,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002456 int duration,
2457 enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002458{
2459 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002460 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002461 struct cfg80211_chan_def chandef;
Ilan Peer31d385a2013-04-02 10:25:46 +03002462 struct iwl_mvm_phy_ctxt *phy_ctxt;
2463 int ret, i;
2464
2465 IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value,
2466 duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002467
Ariej Marjiehb1128892014-07-16 21:11:12 +03002468 switch (vif->type) {
2469 case NL80211_IFTYPE_STATION:
2470 /* Use aux roc framework (HS20) */
2471 ret = iwl_mvm_send_aux_roc_cmd(mvm, channel,
2472 vif, duration);
2473 return ret;
2474 case NL80211_IFTYPE_P2P_DEVICE:
2475 /* handle below */
2476 break;
2477 default:
2478 IWL_ERR(mvm, "vif isn't P2P_DEVICE: %d\n", vif->type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002479 return -EINVAL;
2480 }
2481
Johannes Berg8ca151b2013-01-24 14:25:36 +01002482 mutex_lock(&mvm->mutex);
2483
Ilan Peer31d385a2013-04-02 10:25:46 +03002484 for (i = 0; i < NUM_PHY_CTX; i++) {
2485 phy_ctxt = &mvm->phy_ctxts[i];
2486 if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt)
2487 continue;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002488
Ilan Peer31d385a2013-04-02 10:25:46 +03002489 if (phy_ctxt->ref && channel == phy_ctxt->channel) {
2490 /*
2491 * Unbind the P2P_DEVICE from the current PHY context,
2492 * and if the PHY context is not used remove it.
2493 */
2494 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2495 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2496 goto out_unlock;
2497
2498 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2499
2500 /* Bind the P2P_DEVICE to the current PHY Context */
2501 mvmvif->phy_ctxt = phy_ctxt;
2502
2503 ret = iwl_mvm_binding_add_vif(mvm, vif);
2504 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2505 goto out_unlock;
2506
2507 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2508 goto schedule_time_event;
2509 }
2510 }
2511
2512 /* Need to update the PHY context only if the ROC channel changed */
2513 if (channel == mvmvif->phy_ctxt->channel)
2514 goto schedule_time_event;
2515
2516 cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT);
2517
2518 /*
2519 * Change the PHY context configuration as it is currently referenced
2520 * only by the P2P Device MAC
2521 */
2522 if (mvmvif->phy_ctxt->ref == 1) {
2523 ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt,
2524 &chandef, 1, 1);
2525 if (ret)
2526 goto out_unlock;
2527 } else {
2528 /*
2529 * The PHY context is shared with other MACs. Need to remove the
2530 * P2P Device from the binding, allocate an new PHY context and
2531 * create a new binding
2532 */
2533 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2534 if (!phy_ctxt) {
2535 ret = -ENOSPC;
2536 goto out_unlock;
2537 }
2538
2539 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef,
2540 1, 1);
2541 if (ret) {
2542 IWL_ERR(mvm, "Failed to change PHY context\n");
2543 goto out_unlock;
2544 }
2545
2546 /* Unbind the P2P_DEVICE from the current PHY context */
2547 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2548 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2549 goto out_unlock;
2550
2551 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2552
2553 /* Bind the P2P_DEVICE to the new allocated PHY context */
2554 mvmvif->phy_ctxt = phy_ctxt;
2555
2556 ret = iwl_mvm_binding_add_vif(mvm, vif);
2557 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2558 goto out_unlock;
2559
2560 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2561 }
2562
2563schedule_time_event:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002564 /* Schedule the time events */
Ilan Peere635c792013-02-13 11:05:18 +02002565 ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002566
Ilan Peer31d385a2013-04-02 10:25:46 +03002567out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002568 mutex_unlock(&mvm->mutex);
2569 IWL_DEBUG_MAC80211(mvm, "leave\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01002570 return ret;
2571}
2572
2573static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw)
2574{
2575 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2576
2577 IWL_DEBUG_MAC80211(mvm, "enter\n");
2578
2579 mutex_lock(&mvm->mutex);
2580 iwl_mvm_stop_p2p_roc(mvm);
2581 mutex_unlock(&mvm->mutex);
2582
2583 IWL_DEBUG_MAC80211(mvm, "leave\n");
2584 return 0;
2585}
2586
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002587static int __iwl_mvm_add_chanctx(struct iwl_mvm *mvm,
2588 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002589{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002590 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2591 struct iwl_mvm_phy_ctxt *phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002592 int ret;
2593
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002594 lockdep_assert_held(&mvm->mutex);
2595
Ilan Peer53a9d612013-04-28 11:55:08 +03002596 IWL_DEBUG_MAC80211(mvm, "Add channel context\n");
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002597
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002598 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2599 if (!phy_ctxt) {
2600 ret = -ENOSPC;
2601 goto out;
2602 }
2603
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002604 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Ilan Peer53a9d612013-04-28 11:55:08 +03002605 ctx->rx_chains_static,
2606 ctx->rx_chains_dynamic);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002607 if (ret) {
2608 IWL_ERR(mvm, "Failed to add PHY context\n");
2609 goto out;
2610 }
2611
Ilan Peer53a9d612013-04-28 11:55:08 +03002612 iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002613 *phy_ctxt_id = phy_ctxt->id;
2614out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002615 return ret;
2616}
2617
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002618static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw,
2619 struct ieee80211_chanctx_conf *ctx)
2620{
2621 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2622 int ret;
2623
2624 mutex_lock(&mvm->mutex);
2625 ret = __iwl_mvm_add_chanctx(mvm, ctx);
2626 mutex_unlock(&mvm->mutex);
2627
2628 return ret;
2629}
2630
2631static void __iwl_mvm_remove_chanctx(struct iwl_mvm *mvm,
2632 struct ieee80211_chanctx_conf *ctx)
2633{
2634 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2635 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
2636
2637 lockdep_assert_held(&mvm->mutex);
2638
2639 iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt);
2640}
2641
Johannes Berg8ca151b2013-01-24 14:25:36 +01002642static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw,
2643 struct ieee80211_chanctx_conf *ctx)
2644{
2645 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002646
2647 mutex_lock(&mvm->mutex);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002648 __iwl_mvm_remove_chanctx(mvm, ctx);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002649 mutex_unlock(&mvm->mutex);
2650}
2651
2652static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw,
2653 struct ieee80211_chanctx_conf *ctx,
2654 u32 changed)
2655{
2656 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002657 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2658 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002659
Ilan Peer31d385a2013-04-02 10:25:46 +03002660 if (WARN_ONCE((phy_ctxt->ref > 1) &&
2661 (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH |
2662 IEEE80211_CHANCTX_CHANGE_RX_CHAINS |
Arik Nemtsov2dceeda2013-12-29 17:57:53 +02002663 IEEE80211_CHANCTX_CHANGE_RADAR |
2664 IEEE80211_CHANCTX_CHANGE_MIN_WIDTH)),
Ilan Peer31d385a2013-04-02 10:25:46 +03002665 "Cannot change PHY. Ref=%d, changed=0x%X\n",
2666 phy_ctxt->ref, changed))
2667 return;
2668
Johannes Berg8ca151b2013-01-24 14:25:36 +01002669 mutex_lock(&mvm->mutex);
Emmanuel Grumbach4d664492014-04-30 18:09:59 +03002670 iwl_mvm_bt_coex_vif_change(mvm);
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002671 iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002672 ctx->rx_chains_static,
2673 ctx->rx_chains_dynamic);
2674 mutex_unlock(&mvm->mutex);
2675}
2676
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002677static int __iwl_mvm_assign_vif_chanctx(struct iwl_mvm *mvm,
2678 struct ieee80211_vif *vif,
Luciano Coelhof0c97782014-03-05 15:41:48 +02002679 struct ieee80211_chanctx_conf *ctx,
2680 bool switching_chanctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002681{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002682 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2683 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002684 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2685 int ret;
2686
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002687 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002688
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002689 mvmvif->phy_ctxt = phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002690
2691 switch (vif->type) {
2692 case NL80211_IFTYPE_AP:
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002693 /* Unless it's a CSA flow we have nothing to do here */
2694 if (vif->csa_active) {
2695 mvmvif->ap_ibss_active = true;
2696 break;
2697 }
Johannes Berg5023d962013-07-31 14:07:43 +02002698 case NL80211_IFTYPE_ADHOC:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002699 /*
2700 * The AP binding flow is handled as part of the start_ap flow
Johannes Berg5023d962013-07-31 14:07:43 +02002701 * (in bss_info_changed), similarly for IBSS.
Johannes Berg8ca151b2013-01-24 14:25:36 +01002702 */
2703 ret = 0;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002704 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002705 case NL80211_IFTYPE_STATION:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002706 case NL80211_IFTYPE_MONITOR:
2707 break;
2708 default:
2709 ret = -EINVAL;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002710 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002711 }
2712
2713 ret = iwl_mvm_binding_add_vif(mvm, vif);
2714 if (ret)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002715 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002716
2717 /*
Alexander Bondar92d85562013-10-23 11:50:34 +02002718 * Power state must be updated before quotas,
2719 * otherwise fw will complain.
2720 */
Arik Nemtsov999609f2014-05-15 17:31:51 +03002721 iwl_mvm_power_update_mac(mvm);
Alexander Bondar92d85562013-10-23 11:50:34 +02002722
2723 /* Setting the quota at this stage is only required for monitor
Johannes Berg8ca151b2013-01-24 14:25:36 +01002724 * interfaces. For the other types, the bss_info changed flow
2725 * will handle quota settings.
2726 */
2727 if (vif->type == NL80211_IFTYPE_MONITOR) {
Ilan Peer1e1391c2013-03-13 14:52:04 +02002728 mvmvif->monitor_active = true;
Johannes Berg01662302014-06-06 15:18:45 +02002729 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002730 if (ret)
2731 goto out_remove_binding;
2732 }
2733
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002734 /* Handle binding during CSA */
Luciano Coelhof0c97782014-03-05 15:41:48 +02002735 if ((vif->type == NL80211_IFTYPE_AP) ||
2736 (switching_chanctx && (vif->type == NL80211_IFTYPE_STATION))) {
Johannes Berg01662302014-06-06 15:18:45 +02002737 iwl_mvm_update_quotas(mvm, NULL);
Luciano Coelhobca49d92014-05-13 17:33:38 +03002738 iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002739 }
2740
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002741 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002742
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002743out_remove_binding:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002744 iwl_mvm_binding_remove_vif(mvm, vif);
Arik Nemtsov999609f2014-05-15 17:31:51 +03002745 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002746out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002747 if (ret)
2748 mvmvif->phy_ctxt = NULL;
2749 return ret;
2750}
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002751static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw,
2752 struct ieee80211_vif *vif,
2753 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002754{
2755 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002756 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002757
2758 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002759 ret = __iwl_mvm_assign_vif_chanctx(mvm, vif, ctx, false);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002760 mutex_unlock(&mvm->mutex);
2761
2762 return ret;
2763}
2764
2765static void __iwl_mvm_unassign_vif_chanctx(struct iwl_mvm *mvm,
2766 struct ieee80211_vif *vif,
Luciano Coelhof0c97782014-03-05 15:41:48 +02002767 struct ieee80211_chanctx_conf *ctx,
2768 bool switching_chanctx)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002769{
2770 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002771 struct ieee80211_vif *disabled_vif = NULL;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002772
2773 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002774
2775 iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data);
2776
Johannes Berg8ca151b2013-01-24 14:25:36 +01002777 switch (vif->type) {
Johannes Berg5023d962013-07-31 14:07:43 +02002778 case NL80211_IFTYPE_ADHOC:
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002779 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002780 case NL80211_IFTYPE_MONITOR:
Ilan Peer1e1391c2013-03-13 14:52:04 +02002781 mvmvif->monitor_active = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002782 break;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002783 case NL80211_IFTYPE_AP:
2784 /* This part is triggered only during CSA */
2785 if (!vif->csa_active || !mvmvif->ap_ibss_active)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002786 goto out;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002787
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03002788 /* Set CS bit on all the stations */
2789 iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, true);
2790
2791 /* Save blocked iface, the timeout is set on the next beacon */
2792 rcu_assign_pointer(mvm->csa_tx_blocked_vif, vif);
2793
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002794 mvmvif->ap_ibss_active = false;
Luciano Coelhof0c97782014-03-05 15:41:48 +02002795 break;
2796 case NL80211_IFTYPE_STATION:
2797 if (!switching_chanctx)
2798 break;
2799
2800 disabled_vif = vif;
2801
2802 iwl_mvm_mac_ctxt_changed(mvm, vif, true);
2803 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002804 default:
2805 break;
2806 }
2807
Luciano Coelhof0c97782014-03-05 15:41:48 +02002808 iwl_mvm_update_quotas(mvm, disabled_vif);
Ilan Peer1e1391c2013-03-13 14:52:04 +02002809 iwl_mvm_binding_remove_vif(mvm, vif);
Alexander Bondar1c2abf72013-08-27 20:31:48 +03002810
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002811out:
Ilan Peera11e1442013-12-31 21:19:55 +02002812 mvmvif->phy_ctxt = NULL;
Arik Nemtsov999609f2014-05-15 17:31:51 +03002813 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002814}
2815
2816static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw,
2817 struct ieee80211_vif *vif,
2818 struct ieee80211_chanctx_conf *ctx)
2819{
2820 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2821
2822 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002823 __iwl_mvm_unassign_vif_chanctx(mvm, vif, ctx, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002824 mutex_unlock(&mvm->mutex);
2825}
2826
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002827static int iwl_mvm_switch_vif_chanctx(struct ieee80211_hw *hw,
2828 struct ieee80211_vif_chanctx_switch *vifs,
2829 int n_vifs,
2830 enum ieee80211_chanctx_switch_mode mode)
2831{
2832 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2833 int ret;
2834
2835 /* we only support SWAP_CONTEXTS and with a single-vif right now */
2836 if (mode != CHANCTX_SWMODE_SWAP_CONTEXTS || n_vifs > 1)
2837 return -EOPNOTSUPP;
2838
2839 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002840 __iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002841 __iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx);
2842
2843 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].new_ctx);
2844 if (ret) {
2845 IWL_ERR(mvm, "failed to add new_ctx during channel switch\n");
2846 goto out_reassign;
2847 }
2848
Luciano Coelhof0c97782014-03-05 15:41:48 +02002849 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx,
2850 true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002851 if (ret) {
2852 IWL_ERR(mvm,
2853 "failed to assign new_ctx during channel switch\n");
2854 goto out_remove;
2855 }
2856
Arik Nemtsovf6972672014-06-15 16:03:55 +03002857 /* we don't support TDLS during DCM - can be caused by channel switch */
2858 if (iwl_mvm_phy_ctx_count(mvm) > 1)
2859 iwl_mvm_teardown_tdls_peers(mvm);
2860
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002861 goto out;
2862
2863out_remove:
2864 __iwl_mvm_remove_chanctx(mvm, vifs[0].new_ctx);
2865
2866out_reassign:
2867 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx);
2868 if (ret) {
2869 IWL_ERR(mvm, "failed to add old_ctx back after failure.\n");
2870 goto out_restart;
2871 }
2872
Luciano Coelhof0c97782014-03-05 15:41:48 +02002873 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx,
2874 true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002875 if (ret) {
2876 IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n");
2877 goto out_restart;
2878 }
2879
2880 goto out;
2881
2882out_restart:
2883 /* things keep failing, better restart the hw */
2884 iwl_mvm_nic_restart(mvm, false);
2885
2886out:
2887 mutex_unlock(&mvm->mutex);
2888 return ret;
2889}
2890
Johannes Berg8ca151b2013-01-24 14:25:36 +01002891static int iwl_mvm_set_tim(struct ieee80211_hw *hw,
2892 struct ieee80211_sta *sta,
2893 bool set)
2894{
2895 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2896 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
2897
2898 if (!mvm_sta || !mvm_sta->vif) {
2899 IWL_ERR(mvm, "Station is not associated to a vif\n");
2900 return -EINVAL;
2901 }
2902
2903 return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif);
2904}
2905
David Spinadel507cadf2013-07-31 18:07:21 +03002906#ifdef CONFIG_NL80211_TESTMODE
2907static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = {
2908 [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 },
2909 [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 },
Johannes Bergf6c6ad422013-08-01 14:17:15 +02002910 [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 },
David Spinadel507cadf2013-07-31 18:07:21 +03002911};
2912
2913static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm,
2914 struct ieee80211_vif *vif,
2915 void *data, int len)
2916{
2917 struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1];
2918 int err;
2919 u32 noa_duration;
2920
2921 err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy);
2922 if (err)
2923 return err;
2924
2925 if (!tb[IWL_MVM_TM_ATTR_CMD])
2926 return -EINVAL;
2927
2928 switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) {
2929 case IWL_MVM_TM_CMD_SET_NOA:
2930 if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p ||
2931 !vif->bss_conf.enable_beacon ||
2932 !tb[IWL_MVM_TM_ATTR_NOA_DURATION])
2933 return -EINVAL;
2934
2935 noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]);
2936 if (noa_duration >= vif->bss_conf.beacon_int)
2937 return -EINVAL;
2938
2939 mvm->noa_duration = noa_duration;
2940 mvm->noa_vif = vif;
2941
Johannes Berg01662302014-06-06 15:18:45 +02002942 return iwl_mvm_update_quotas(mvm, NULL);
Johannes Bergf6c6ad422013-08-01 14:17:15 +02002943 case IWL_MVM_TM_CMD_SET_BEACON_FILTER:
2944 /* must be associated client vif - ignore authorized */
2945 if (!vif || vif->type != NL80211_IFTYPE_STATION ||
2946 !vif->bss_conf.assoc || !vif->bss_conf.dtim_period ||
2947 !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])
2948 return -EINVAL;
2949
2950 if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]))
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03002951 return iwl_mvm_enable_beacon_filter(mvm, vif, 0);
2952 return iwl_mvm_disable_beacon_filter(mvm, vif, 0);
David Spinadel507cadf2013-07-31 18:07:21 +03002953 }
2954
2955 return -EOPNOTSUPP;
2956}
2957
2958static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw,
2959 struct ieee80211_vif *vif,
2960 void *data, int len)
2961{
2962 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2963 int err;
2964
2965 mutex_lock(&mvm->mutex);
2966 err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len);
2967 mutex_unlock(&mvm->mutex);
2968
2969 return err;
2970}
2971#endif
2972
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002973static void iwl_mvm_channel_switch_beacon(struct ieee80211_hw *hw,
2974 struct ieee80211_vif *vif,
2975 struct cfg80211_chan_def *chandef)
2976{
2977 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002978 struct ieee80211_vif *csa_vif;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002979
2980 mutex_lock(&mvm->mutex);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002981
2982 csa_vif = rcu_dereference_protected(mvm->csa_vif,
2983 lockdep_is_held(&mvm->mutex));
2984 if (WARN(csa_vif && csa_vif->csa_active,
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002985 "Another CSA is already in progress"))
2986 goto out_unlock;
2987
2988 IWL_DEBUG_MAC80211(mvm, "CSA started to freq %d\n",
2989 chandef->center_freq1);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002990 rcu_assign_pointer(mvm->csa_vif, vif);
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002991
2992out_unlock:
2993 mutex_unlock(&mvm->mutex);
2994}
2995
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02002996static void iwl_mvm_mac_flush(struct ieee80211_hw *hw,
2997 struct ieee80211_vif *vif, u32 queues, bool drop)
2998{
2999 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3000 struct iwl_mvm_vif *mvmvif;
3001 struct iwl_mvm_sta *mvmsta;
3002
3003 if (!vif || vif->type != NL80211_IFTYPE_STATION)
3004 return;
3005
3006 mutex_lock(&mvm->mutex);
3007 mvmvif = iwl_mvm_vif_from_mac80211(vif);
3008 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, mvmvif->ap_sta_id);
3009
3010 if (WARN_ON_ONCE(!mvmsta))
3011 goto done;
3012
3013 if (drop) {
3014 if (iwl_mvm_flush_tx_path(mvm, mvmsta->tfd_queue_msk, true))
3015 IWL_ERR(mvm, "flush request fail\n");
3016 } else {
3017 iwl_trans_wait_tx_queue_empty(mvm->trans,
3018 mvmsta->tfd_queue_msk);
3019 }
3020done:
3021 mutex_unlock(&mvm->mutex);
3022}
3023
Johannes Berge5209262014-01-20 23:38:59 +01003024const struct ieee80211_ops iwl_mvm_hw_ops = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01003025 .tx = iwl_mvm_mac_tx,
3026 .ampdu_action = iwl_mvm_mac_ampdu_action,
3027 .start = iwl_mvm_mac_start,
3028 .restart_complete = iwl_mvm_mac_restart_complete,
3029 .stop = iwl_mvm_mac_stop,
3030 .add_interface = iwl_mvm_mac_add_interface,
3031 .remove_interface = iwl_mvm_mac_remove_interface,
3032 .config = iwl_mvm_mac_config,
Eliad Pellere59647e2013-11-28 14:08:50 +02003033 .prepare_multicast = iwl_mvm_prepare_multicast,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003034 .configure_filter = iwl_mvm_configure_filter,
3035 .bss_info_changed = iwl_mvm_bss_info_changed,
3036 .hw_scan = iwl_mvm_mac_hw_scan,
3037 .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan,
Johannes Berg1ddbbb02013-12-04 22:39:17 +01003038 .sta_pre_rcu_remove = iwl_mvm_sta_pre_rcu_remove,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003039 .sta_state = iwl_mvm_mac_sta_state,
3040 .sta_notify = iwl_mvm_mac_sta_notify,
3041 .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames,
Johannes Berg3e56ead2013-02-15 22:23:18 +01003042 .release_buffered_frames = iwl_mvm_mac_release_buffered_frames,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003043 .set_rts_threshold = iwl_mvm_mac_set_rts_threshold,
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02003044 .sta_rc_update = iwl_mvm_sta_rc_update,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003045 .conf_tx = iwl_mvm_mac_conf_tx,
3046 .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx,
Arik Nemtsov07ecd892014-05-20 18:16:42 +03003047 .mgd_protect_tdls_discover = iwl_mvm_mac_mgd_protect_tdls_discover,
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003048 .flush = iwl_mvm_mac_flush,
David Spinadel35a000b2013-08-28 09:29:43 +03003049 .sched_scan_start = iwl_mvm_mac_sched_scan_start,
3050 .sched_scan_stop = iwl_mvm_mac_sched_scan_stop,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003051 .set_key = iwl_mvm_mac_set_key,
3052 .update_tkip_key = iwl_mvm_mac_update_tkip_key,
3053 .remain_on_channel = iwl_mvm_roc,
3054 .cancel_remain_on_channel = iwl_mvm_cancel_roc,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003055 .add_chanctx = iwl_mvm_add_chanctx,
3056 .remove_chanctx = iwl_mvm_remove_chanctx,
3057 .change_chanctx = iwl_mvm_change_chanctx,
3058 .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx,
3059 .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx,
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003060 .switch_vif_chanctx = iwl_mvm_switch_vif_chanctx,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003061
Johannes Berg5023d962013-07-31 14:07:43 +02003062 .start_ap = iwl_mvm_start_ap_ibss,
3063 .stop_ap = iwl_mvm_stop_ap_ibss,
3064 .join_ibss = iwl_mvm_start_ap_ibss,
3065 .leave_ibss = iwl_mvm_stop_ap_ibss,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003066
3067 .set_tim = iwl_mvm_set_tim,
3068
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003069 .channel_switch_beacon = iwl_mvm_channel_switch_beacon,
3070
David Spinadel507cadf2013-07-31 18:07:21 +03003071 CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd)
3072
Johannes Berg8ca151b2013-01-24 14:25:36 +01003073#ifdef CONFIG_PM_SLEEP
3074 /* look at d3.c */
3075 .suspend = iwl_mvm_suspend,
3076 .resume = iwl_mvm_resume,
3077 .set_wakeup = iwl_mvm_set_wakeup,
3078 .set_rekey_data = iwl_mvm_set_rekey_data,
3079#if IS_ENABLED(CONFIG_IPV6)
3080 .ipv6_addr_change = iwl_mvm_ipv6_addr_change,
3081#endif
3082 .set_default_unicast_key = iwl_mvm_set_default_unicast_key,
3083#endif
3084};