blob: 83c2ce60cdbb81193fb95d063e783e33a052b17e [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 Grumbach77b2f282014-08-14 19:32:16 +0300399 /* TODO: enable that only for firmwares that don't crash */
400 /* hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN; */
Emmanuel Grumbach536a3ee2014-03-30 09:11:44 +0300401 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 = SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2;
David Spinadel35a000b2013-08-28 09:29:43 +0300405
Johannes Berg8ca151b2013-01-24 14:25:36 +0100406 hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN |
Johannes Bergab480032014-06-04 10:13:50 +0200407 NL80211_FEATURE_LOW_PRIORITY_SCAN |
Alexander Bondar8a110d92014-03-12 17:31:19 +0200408 NL80211_FEATURE_P2P_GO_OPPPS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100409
410 mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
411
Max Stepanove36e5432013-08-27 19:56:13 +0300412 /* currently FW API supports only one optional cipher scheme */
Johannes Berg9ddca862014-01-06 09:29:40 +0100413 if (mvm->fw->cs[0].cipher) {
Max Stepanove36e5432013-08-27 19:56:13 +0300414 mvm->hw->n_cipher_schemes = 1;
Johannes Berg9ddca862014-01-06 09:29:40 +0100415 mvm->hw->cipher_schemes = &mvm->fw->cs[0];
Max Stepanove36e5432013-08-27 19:56:13 +0300416 }
417
Johannes Berg8ca151b2013-01-24 14:25:36 +0100418#ifdef CONFIG_PM_SLEEP
Eliad Pellerd15a7472014-03-27 18:53:12 +0200419 if (iwl_mvm_is_d0i3_supported(mvm) &&
420 device_can_wakeup(mvm->trans->dev)) {
421 mvm->wowlan.flags = WIPHY_WOWLAN_ANY;
422 hw->wiphy->wowlan = &mvm->wowlan;
423 } else if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100424 mvm->trans->ops->d3_suspend &&
425 mvm->trans->ops->d3_resume &&
426 device_can_wakeup(mvm->trans->dev)) {
Johannes Berg964dc9e2013-06-03 17:25:34 +0200427 mvm->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
428 WIPHY_WOWLAN_DISCONNECT |
429 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
430 WIPHY_WOWLAN_RFKILL_RELEASE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100431 if (!iwlwifi_mod_params.sw_crypto)
Johannes Berg964dc9e2013-06-03 17:25:34 +0200432 mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
433 WIPHY_WOWLAN_GTK_REKEY_FAILURE |
434 WIPHY_WOWLAN_4WAY_HANDSHAKE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100435
Johannes Berg964dc9e2013-06-03 17:25:34 +0200436 mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS;
437 mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN;
438 mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN;
439 mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support;
440 hw->wiphy->wowlan = &mvm->wowlan;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100441 }
442#endif
443
Eliad Peller77736922014-01-14 12:35:49 +0200444#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
445 /* assign default bcast filtering configuration */
446 mvm->bcast_filters = iwl_mvm_default_bcast_filters;
447#endif
448
Johannes Berg8ca151b2013-01-24 14:25:36 +0100449 ret = iwl_mvm_leds_init(mvm);
450 if (ret)
451 return ret;
452
Emmanuel Grumbachb7327d82013-06-24 15:44:03 +0300453 ret = ieee80211_register_hw(mvm->hw);
454 if (ret)
455 iwl_mvm_leds_exit(mvm);
456
457 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100458}
459
Arik Nemtsovb2492502014-03-13 12:21:50 +0200460static bool iwl_mvm_defer_tx(struct iwl_mvm *mvm,
461 struct ieee80211_sta *sta,
462 struct sk_buff *skb)
463{
464 struct iwl_mvm_sta *mvmsta;
465 bool defer = false;
466
467 /*
468 * double check the IN_D0I3 flag both before and after
469 * taking the spinlock, in order to prevent taking
470 * the spinlock when not needed.
471 */
472 if (likely(!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)))
473 return false;
474
475 spin_lock(&mvm->d0i3_tx_lock);
476 /*
477 * testing the flag again ensures the skb dequeue
478 * loop (on d0i3 exit) hasn't run yet.
479 */
480 if (!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status))
481 goto out;
482
483 mvmsta = iwl_mvm_sta_from_mac80211(sta);
484 if (mvmsta->sta_id == IWL_MVM_STATION_COUNT ||
485 mvmsta->sta_id != mvm->d0i3_ap_sta_id)
486 goto out;
487
488 __skb_queue_tail(&mvm->d0i3_tx, skb);
489 ieee80211_stop_queues(mvm->hw);
490
491 /* trigger wakeup */
492 iwl_mvm_ref(mvm, IWL_MVM_REF_TX);
493 iwl_mvm_unref(mvm, IWL_MVM_REF_TX);
494
495 defer = true;
496out:
497 spin_unlock(&mvm->d0i3_tx_lock);
498 return defer;
499}
500
Johannes Berg8ca151b2013-01-24 14:25:36 +0100501static void iwl_mvm_mac_tx(struct ieee80211_hw *hw,
502 struct ieee80211_tx_control *control,
503 struct sk_buff *skb)
504{
505 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg3e56ead2013-02-15 22:23:18 +0100506 struct ieee80211_sta *sta = control->sta;
507 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
508 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100509
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300510 if (iwl_mvm_is_radio_killed(mvm)) {
511 IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100512 goto drop;
513 }
514
Ilan Peer398e8c62013-03-13 15:20:35 +0200515 if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100516 !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status))
517 goto drop;
518
Johannes Berg3e56ead2013-02-15 22:23:18 +0100519 /* treat non-bufferable MMPDUs as broadcast if sta is sleeping */
520 if (unlikely(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER &&
521 ieee80211_is_mgmt(hdr->frame_control) &&
522 !ieee80211_is_deauth(hdr->frame_control) &&
523 !ieee80211_is_disassoc(hdr->frame_control) &&
524 !ieee80211_is_action(hdr->frame_control)))
525 sta = NULL;
526
527 if (sta) {
Arik Nemtsovb2492502014-03-13 12:21:50 +0200528 if (iwl_mvm_defer_tx(mvm, sta, skb))
529 return;
Johannes Berg3e56ead2013-02-15 22:23:18 +0100530 if (iwl_mvm_tx_skb(mvm, skb, sta))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100531 goto drop;
532 return;
533 }
534
535 if (iwl_mvm_tx_skb_non_sta(mvm, skb))
536 goto drop;
537 return;
538 drop:
539 ieee80211_free_txskb(hw, skb);
540}
541
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200542static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg)
543{
544 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
545 return false;
546 return true;
547}
548
549static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg)
550{
551 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
552 return false;
553 if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG)
554 return true;
555
556 /* enabled by default */
557 return true;
558}
559
Johannes Berg8ca151b2013-01-24 14:25:36 +0100560static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw,
561 struct ieee80211_vif *vif,
562 enum ieee80211_ampdu_mlme_action action,
563 struct ieee80211_sta *sta, u16 tid,
564 u16 *ssn, u8 buf_size)
565{
566 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
567 int ret;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200568 bool tx_agg_ref = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100569
570 IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n",
571 sta->addr, tid, action);
572
573 if (!(mvm->nvm_data->sku_cap_11n_enable))
574 return -EACCES;
575
Arik Nemtsovb2492502014-03-13 12:21:50 +0200576 /* return from D0i3 before starting a new Tx aggregation */
Eliad Peller9256c202014-04-22 13:33:29 +0300577 switch (action) {
578 case IEEE80211_AMPDU_TX_START:
579 case IEEE80211_AMPDU_TX_STOP_CONT:
580 case IEEE80211_AMPDU_TX_STOP_FLUSH:
581 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
582 case IEEE80211_AMPDU_TX_OPERATIONAL:
Arik Nemtsovb2492502014-03-13 12:21:50 +0200583 /*
Eliad Peller9256c202014-04-22 13:33:29 +0300584 * for tx start, wait synchronously until D0i3 exit to
585 * get the correct sequence number for the tid.
586 * additionally, some other ampdu actions use direct
587 * target access, which is not handled automatically
588 * by the trans layer (unlike commands), so wait for
589 * d0i3 exit in these cases as well.
Arik Nemtsovb2492502014-03-13 12:21:50 +0200590 */
Gregory Greenmand40fc482014-06-25 14:08:50 +0200591 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_TX_AGG);
592 if (ret)
593 return ret;
594
595 tx_agg_ref = true;
Eliad Peller9256c202014-04-22 13:33:29 +0300596 break;
597 default:
598 break;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200599 }
600
Johannes Berg8ca151b2013-01-24 14:25:36 +0100601 mutex_lock(&mvm->mutex);
602
603 switch (action) {
604 case IEEE80211_AMPDU_RX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200605 if (!iwl_enable_rx_ampdu(mvm->cfg)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100606 ret = -EINVAL;
607 break;
608 }
609 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true);
610 break;
611 case IEEE80211_AMPDU_RX_STOP:
612 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false);
613 break;
614 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200615 if (!iwl_enable_tx_ampdu(mvm->cfg)) {
Emmanuel Grumbach5d158ef2013-02-19 14:39:58 +0200616 ret = -EINVAL;
617 break;
618 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100619 ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn);
620 break;
621 case IEEE80211_AMPDU_TX_STOP_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200622 ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid);
623 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100624 case IEEE80211_AMPDU_TX_STOP_FLUSH:
625 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200626 ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100627 break;
628 case IEEE80211_AMPDU_TX_OPERATIONAL:
629 ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size);
630 break;
631 default:
632 WARN_ON_ONCE(1);
633 ret = -EINVAL;
634 break;
635 }
636 mutex_unlock(&mvm->mutex);
637
Arik Nemtsovb2492502014-03-13 12:21:50 +0200638 /*
639 * If the tid is marked as started, we won't use it for offloaded
640 * traffic on the next D0i3 entry. It's safe to unref.
641 */
642 if (tx_agg_ref)
643 iwl_mvm_unref(mvm, IWL_MVM_REF_TX_AGG);
644
Johannes Berg8ca151b2013-01-24 14:25:36 +0100645 return ret;
646}
647
648static void iwl_mvm_cleanup_iterator(void *data, u8 *mac,
649 struct ieee80211_vif *vif)
650{
651 struct iwl_mvm *mvm = data;
652 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
653
654 mvmvif->uploaded = false;
655 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
656
657 /* does this make sense at all? */
658 mvmvif->color++;
659
660 spin_lock_bh(&mvm->time_event_lock);
661 iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data);
662 spin_unlock_bh(&mvm->time_event_lock);
663
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200664 mvmvif->phy_ctxt = NULL;
Emmanuel Grumbach8a275ba2014-07-13 09:12:11 +0300665 memset(&mvmvif->bf_data, 0, sizeof(mvmvif->bf_data));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100666}
667
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300668#ifdef CONFIG_IWLWIFI_DEBUGFS
669static void iwl_mvm_fw_error_dump(struct iwl_mvm *mvm)
670{
671 struct iwl_fw_error_dump_file *dump_file;
672 struct iwl_fw_error_dump_data *dump_data;
673 struct iwl_fw_error_dump_info *dump_info;
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300674 struct iwl_mvm_dump_ptrs *fw_error_dump;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300675 const struct fw_img *img;
676 u32 sram_len, sram_ofs;
677 u32 file_len, rxf_len;
678 unsigned long flags;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300679 int reg_val;
680
681 lockdep_assert_held(&mvm->mutex);
682
683 if (mvm->fw_error_dump)
684 return;
685
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300686 fw_error_dump = kzalloc(sizeof(*mvm->fw_error_dump), GFP_KERNEL);
687 if (!fw_error_dump)
688 return;
689
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300690 img = &mvm->fw->img[mvm->cur_ucode];
691 sram_ofs = img->sec[IWL_UCODE_SECTION_DATA].offset;
692 sram_len = img->sec[IWL_UCODE_SECTION_DATA].len;
693
694 /* reading buffer size */
695 reg_val = iwl_trans_read_prph(mvm->trans, RXF_SIZE_ADDR);
696 rxf_len = (reg_val & RXF_SIZE_BYTE_CNT_MSK) >> RXF_SIZE_BYTE_CND_POS;
697
698 /* the register holds the value divided by 128 */
699 rxf_len = rxf_len << 7;
700
701 file_len = sizeof(*dump_file) +
702 sizeof(*dump_data) * 3 +
703 sram_len +
704 rxf_len +
705 sizeof(*dump_info);
706
Emmanuel Grumbach5bfe6f52014-06-25 16:21:43 +0300707 dump_file = vzalloc(file_len);
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300708 if (!dump_file) {
709 kfree(fw_error_dump);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300710 return;
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300711 }
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300712
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300713 fw_error_dump->op_mode_ptr = dump_file;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300714
715 dump_file->barker = cpu_to_le32(IWL_FW_ERROR_DUMP_BARKER);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300716 dump_data = (void *)dump_file->data;
717
718 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_DEV_FW_INFO);
719 dump_data->len = cpu_to_le32(sizeof(*dump_info));
720 dump_info = (void *) dump_data->data;
721 dump_info->device_family =
722 mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000 ?
723 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_7) :
724 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_8);
725 memcpy(dump_info->fw_human_readable, mvm->fw->human_readable,
726 sizeof(dump_info->fw_human_readable));
727 strncpy(dump_info->dev_human_readable, mvm->cfg->name,
728 sizeof(dump_info->dev_human_readable));
729 strncpy(dump_info->bus_human_readable, mvm->dev->bus->name,
730 sizeof(dump_info->bus_human_readable));
731
732 dump_data = iwl_fw_error_next_data(dump_data);
733 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RXF);
734 dump_data->len = cpu_to_le32(rxf_len);
735
736 if (iwl_trans_grab_nic_access(mvm->trans, false, &flags)) {
737 u32 *rxf = (void *)dump_data->data;
738 int i;
739
740 for (i = 0; i < (rxf_len / sizeof(u32)); i++) {
741 iwl_trans_write_prph(mvm->trans,
742 RXF_LD_FENCE_OFFSET_ADDR,
743 i * sizeof(u32));
744 rxf[i] = iwl_trans_read_prph(mvm->trans,
745 RXF_FIFO_RD_FENCE_ADDR);
746 }
747 iwl_trans_release_nic_access(mvm->trans, &flags);
748 }
749
750 dump_data = iwl_fw_error_next_data(dump_data);
751 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_SRAM);
752 dump_data->len = cpu_to_le32(sram_len);
753 iwl_trans_read_mem_bytes(mvm->trans, sram_ofs, dump_data->data,
754 sram_len);
755
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300756 fw_error_dump->trans_ptr = iwl_trans_dump_data(mvm->trans);
757 fw_error_dump->op_mode_len = file_len;
758 if (fw_error_dump->trans_ptr)
759 file_len += fw_error_dump->trans_ptr->len;
760 dump_file->file_len = cpu_to_le32(file_len);
761 mvm->fw_error_dump = fw_error_dump;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300762}
763#endif
764
Johannes Berg8ca151b2013-01-24 14:25:36 +0100765static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm)
766{
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200767#ifdef CONFIG_IWLWIFI_DEBUGFS
768 static char *env[] = { "DRIVER=iwlwifi", "EVENT=error_dump", NULL };
769
770 iwl_mvm_fw_error_dump(mvm);
771
772 /* notify the userspace about the error we had */
773 kobject_uevent_env(&mvm->hw->wiphy->dev.kobj, KOBJ_CHANGE, env);
774#endif
775
Johannes Berg8ca151b2013-01-24 14:25:36 +0100776 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100777
778 mvm->scan_status = IWL_MVM_SCAN_NONE;
779
780 /* just in case one was running */
781 ieee80211_remain_on_channel_expired(mvm->hw);
782
783 ieee80211_iterate_active_interfaces_atomic(
784 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
785 iwl_mvm_cleanup_iterator, mvm);
786
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200787 mvm->p2p_device_vif = NULL;
Eliad Peller37577fe2013-12-05 17:19:39 +0200788 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200789
790 iwl_mvm_reset_phy_ctxts(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100791 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
792 memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained));
Emmanuel Grumbach8a275ba2014-07-13 09:12:11 +0300793 memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif));
794 memset(&mvm->last_bt_notif_old, 0, sizeof(mvm->last_bt_notif_old));
795 memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd));
796 memset(&mvm->last_bt_ci_cmd_old, 0, sizeof(mvm->last_bt_ci_cmd_old));
797 memset(&mvm->bt_ack_kill_msk, 0, sizeof(mvm->bt_ack_kill_msk));
798 memset(&mvm->bt_cts_kill_msk, 0, sizeof(mvm->bt_cts_kill_msk));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100799
800 ieee80211_wake_queues(mvm->hw);
801
Eliad Peller7498cf42014-01-16 17:10:44 +0200802 /* cleanup all stale references (scan, roc), but keep the
803 * ucode_down ref until reconfig is complete */
804 iwl_mvm_unref_all_except(mvm, IWL_MVM_REF_UCODE_DOWN);
805
Johannes Berg8ca151b2013-01-24 14:25:36 +0100806 mvm->vif_count = 0;
Emmanuel Grumbach113a0442013-07-02 14:16:38 +0300807 mvm->rx_ba_sessions = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100808}
809
810static int iwl_mvm_mac_start(struct ieee80211_hw *hw)
811{
812 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
813 int ret;
814
815 mutex_lock(&mvm->mutex);
816
817 /* Clean up some internal and mac80211 state on restart */
818 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
819 iwl_mvm_restart_cleanup(mvm);
820
821 ret = iwl_mvm_up(mvm);
Johannes Bergc47af222014-04-30 16:34:45 +0200822
823 if (ret && test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
824 /* Something went wrong - we need to finish some cleanup
825 * that normally iwl_mvm_mac_restart_complete() below
826 * would do.
827 */
828 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
829 iwl_mvm_d0i3_enable_tx(mvm, NULL);
830 }
831
Johannes Berg8ca151b2013-01-24 14:25:36 +0100832 mutex_unlock(&mvm->mutex);
833
834 return ret;
835}
836
837static void iwl_mvm_mac_restart_complete(struct ieee80211_hw *hw)
838{
839 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
840 int ret;
841
842 mutex_lock(&mvm->mutex);
843
844 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
Arik Nemtsovb2492502014-03-13 12:21:50 +0200845 iwl_mvm_d0i3_enable_tx(mvm, NULL);
Johannes Berg01662302014-06-06 15:18:45 +0200846 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100847 if (ret)
848 IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n",
849 ret);
850
Eliad Peller7498cf42014-01-16 17:10:44 +0200851 /* allow transport/FW low power modes */
852 iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN);
853
Johannes Berg8ca151b2013-01-24 14:25:36 +0100854 mutex_unlock(&mvm->mutex);
855}
856
857static void iwl_mvm_mac_stop(struct ieee80211_hw *hw)
858{
859 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
860
Eliad Peller37577fe2013-12-05 17:19:39 +0200861 flush_work(&mvm->d0i3_exit_work);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100862 flush_work(&mvm->async_handlers_wk);
863
864 mutex_lock(&mvm->mutex);
Eliad Peller7498cf42014-01-16 17:10:44 +0200865
866 /* disallow low power states when the FW is down */
867 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
868
Johannes Berg8ca151b2013-01-24 14:25:36 +0100869 /* async_handlers_wk is now blocked */
870
871 /*
872 * The work item could be running or queued if the
873 * ROC time event stops just as we get here.
874 */
875 cancel_work_sync(&mvm->roc_done_wk);
876
877 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100878
879 iwl_mvm_async_handlers_purge(mvm);
880 /* async_handlers_list is empty and will stay empty: HW is stopped */
881
882 /* the fw is stopped, the aux sta is dead: clean up driver state */
883 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
884
885 mutex_unlock(&mvm->mutex);
886
887 /*
888 * The worker might have been waiting for the mutex, let it run and
889 * discover that its list is now empty.
890 */
891 cancel_work_sync(&mvm->async_handlers_wk);
892}
893
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200894static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm)
895{
896 u16 i;
897
898 lockdep_assert_held(&mvm->mutex);
899
900 for (i = 0; i < NUM_PHY_CTX; i++)
901 if (!mvm->phy_ctxts[i].ref)
902 return &mvm->phy_ctxts[i];
903
904 IWL_ERR(mvm, "No available PHY context\n");
905 return NULL;
906}
907
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200908static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
909 s8 tx_power)
910{
911 /* FW is in charge of regulatory enforcement */
912 struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = {
913 .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id,
914 .pwr_restriction = cpu_to_le16(tx_power),
915 };
916
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300917 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0,
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200918 sizeof(reduce_txpwr_cmd),
919 &reduce_txpwr_cmd);
920}
921
Johannes Berg8ca151b2013-01-24 14:25:36 +0100922static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
923 struct ieee80211_vif *vif)
924{
925 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
926 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
927 int ret;
928
929 /*
Gregory Greenmand40fc482014-06-25 14:08:50 +0200930 * make sure D0i3 exit is completed, otherwise a target access
931 * during tx queue configuration could be done when still in
932 * D0i3 state.
933 */
934 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_ADD_IF);
935 if (ret)
936 return ret;
937
938 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100939 * Not much to do here. The stack will not allow interface
940 * types or combinations that we didn't advertise, so we
941 * don't really have to check the types.
942 */
943
944 mutex_lock(&mvm->mutex);
945
Eliad Pellere89044d2013-07-16 17:33:26 +0300946 /* Allocate resources for the MAC context, and add it to the fw */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100947 ret = iwl_mvm_mac_ctxt_init(mvm, vif);
948 if (ret)
949 goto out_unlock;
950
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300951 /* Counting number of interfaces is needed for legacy PM */
Ilan Peerea183d02013-07-23 14:41:53 +0300952 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
953 mvm->vif_count++;
Ilan Peerea183d02013-07-23 14:41:53 +0300954
955 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100956 * The AP binding flow can be done only after the beacon
957 * template is configured (which happens only in the mac80211
958 * start_ap() flow), and adding the broadcast station can happen
959 * only after the binding.
960 * In addition, since modifying the MAC before adding a bcast
961 * station is not allowed by the FW, delay the adding of MAC context to
962 * the point where we can also add the bcast station.
963 * In short: there's not much we can do at this point, other than
964 * allocating resources :)
965 */
Johannes Berg5023d962013-07-31 14:07:43 +0200966 if (vif->type == NL80211_IFTYPE_AP ||
967 vif->type == NL80211_IFTYPE_ADHOC) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100968 u32 qmask = iwl_mvm_mac_get_queues_mask(mvm, vif);
969 ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta,
Eliad Pellerb92e6612014-01-23 17:58:23 +0200970 qmask,
971 ieee80211_vif_type_p2p(vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100972 if (ret) {
973 IWL_ERR(mvm, "Failed to allocate bcast sta\n");
974 goto out_release;
975 }
976
Emmanuel Grumbach77740cb2013-06-26 23:51:41 +0300977 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100978 goto out_unlock;
979 }
980
Johannes Berg8ca151b2013-01-24 14:25:36 +0100981 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
982 if (ret)
983 goto out_release;
984
Arik Nemtsov999609f2014-05-15 17:31:51 +0300985 ret = iwl_mvm_power_update_mac(mvm);
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200986 if (ret)
987 goto out_release;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100988
Hila Gonen7df15b12012-12-12 11:16:19 +0200989 /* beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300990 ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0);
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300991 if (ret)
992 goto out_remove_mac;
993
Hila Gonen7df15b12012-12-12 11:16:19 +0200994 if (!mvm->bf_allowed_vif &&
Emmanuel Grumbach73e5f2c2014-03-30 08:57:30 +0300995 vif->type == NL80211_IFTYPE_STATION && !vif->p2p) {
Hila Gonen7df15b12012-12-12 11:16:19 +0200996 mvm->bf_allowed_vif = mvmvif;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300997 vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
998 IEEE80211_VIF_SUPPORTS_CQM_RSSI;
Hila Gonen7df15b12012-12-12 11:16:19 +0200999 }
1000
Johannes Berg8ca151b2013-01-24 14:25:36 +01001001 /*
1002 * P2P_DEVICE interface does not have a channel context assigned to it,
1003 * so a dedicated PHY context is allocated to it and the corresponding
1004 * MAC context is bound to it at this stage.
1005 */
1006 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001007
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001008 mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1009 if (!mvmvif->phy_ctxt) {
1010 ret = -ENOSPC;
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001011 goto out_free_bf;
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001012 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001013
Ilan Peer53a9d612013-04-28 11:55:08 +03001014 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001015 ret = iwl_mvm_binding_add_vif(mvm, vif);
1016 if (ret)
Ilan Peer53a9d612013-04-28 11:55:08 +03001017 goto out_unref_phy;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001018
1019 ret = iwl_mvm_add_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
1020 if (ret)
1021 goto out_unbind;
1022
1023 /* Save a pointer to p2p device vif, so it can later be used to
1024 * update the p2p device MAC when a GO is started/stopped */
1025 mvm->p2p_device_vif = vif;
1026 }
1027
Johannes Berg63494372013-03-26 10:47:53 +01001028 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001029 goto out_unlock;
1030
1031 out_unbind:
1032 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peer53a9d612013-04-28 11:55:08 +03001033 out_unref_phy:
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001034 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001035 out_free_bf:
1036 if (mvm->bf_allowed_vif == mvmvif) {
1037 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001038 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1039 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001040 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001041 out_remove_mac:
1042 mvmvif->phy_ctxt = NULL;
1043 iwl_mvm_mac_ctxt_remove(mvm, vif);
1044 out_release:
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001045 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
1046 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001047
Johannes Berg8ca151b2013-01-24 14:25:36 +01001048 iwl_mvm_mac_ctxt_release(mvm, vif);
1049 out_unlock:
1050 mutex_unlock(&mvm->mutex);
1051
Gregory Greenmand40fc482014-06-25 14:08:50 +02001052 iwl_mvm_unref(mvm, IWL_MVM_REF_ADD_IF);
1053
Johannes Berg8ca151b2013-01-24 14:25:36 +01001054 return ret;
1055}
1056
Johannes Berg38a12b52013-02-22 14:07:56 +01001057static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm,
1058 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001059{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001060 u32 tfd_msk = 0, ac;
1061
1062 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1063 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
1064 tfd_msk |= BIT(vif->hw_queue[ac]);
1065
1066 if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE)
1067 tfd_msk |= BIT(vif->cab_queue);
1068
1069 if (tfd_msk) {
1070 mutex_lock(&mvm->mutex);
1071 iwl_mvm_flush_tx_path(mvm, tfd_msk, true);
1072 mutex_unlock(&mvm->mutex);
1073 }
1074
1075 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1076 /*
1077 * Flush the ROC worker which will flush the OFFCHANNEL queue.
1078 * We assume here that all the packets sent to the OFFCHANNEL
1079 * queue are sent in ROC session.
1080 */
1081 flush_work(&mvm->roc_done_wk);
1082 } else {
1083 /*
1084 * By now, all the AC queues are empty. The AGG queues are
1085 * empty too. We already got all the Tx responses for all the
1086 * packets in the queues. The drain work can have been
Emmanuel Grumbach0742a752013-06-10 14:10:33 +03001087 * triggered. Flush it.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001088 */
1089 flush_work(&mvm->sta_drained_wk);
1090 }
Johannes Berg38a12b52013-02-22 14:07:56 +01001091}
1092
1093static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw,
1094 struct ieee80211_vif *vif)
1095{
1096 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1097 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1098
1099 iwl_mvm_prepare_mac_removal(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001100
1101 mutex_lock(&mvm->mutex);
1102
Hila Gonen7df15b12012-12-12 11:16:19 +02001103 if (mvm->bf_allowed_vif == mvmvif) {
1104 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001105 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1106 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Hila Gonen7df15b12012-12-12 11:16:19 +02001107 }
1108
Johannes Berg63494372013-03-26 10:47:53 +01001109 iwl_mvm_vif_dbgfs_clean(mvm, vif);
1110
Johannes Berg8ca151b2013-01-24 14:25:36 +01001111 /*
1112 * For AP/GO interface, the tear down of the resources allocated to the
Johannes Berg38a12b52013-02-22 14:07:56 +01001113 * interface is be handled as part of the stop_ap flow.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001114 */
Johannes Berg5023d962013-07-31 14:07:43 +02001115 if (vif->type == NL80211_IFTYPE_AP ||
1116 vif->type == NL80211_IFTYPE_ADHOC) {
David Spinadel507cadf2013-07-31 18:07:21 +03001117#ifdef CONFIG_NL80211_TESTMODE
1118 if (vif == mvm->noa_vif) {
1119 mvm->noa_vif = NULL;
1120 mvm->noa_duration = 0;
1121 }
1122#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +01001123 iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta);
1124 goto out_release;
1125 }
1126
1127 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1128 mvm->p2p_device_vif = NULL;
1129 iwl_mvm_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1130 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001131 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001132 mvmvif->phy_ctxt = NULL;
1133 }
1134
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001135 if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001136 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001137
Arik Nemtsov999609f2014-05-15 17:31:51 +03001138 iwl_mvm_power_update_mac(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001139 iwl_mvm_mac_ctxt_remove(mvm, vif);
1140
1141out_release:
1142 iwl_mvm_mac_ctxt_release(mvm, vif);
1143 mutex_unlock(&mvm->mutex);
1144}
1145
1146static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed)
1147{
1148 return 0;
1149}
1150
Eliad Pellere59647e2013-11-28 14:08:50 +02001151struct iwl_mvm_mc_iter_data {
1152 struct iwl_mvm *mvm;
1153 int port_id;
1154};
1155
1156static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac,
1157 struct ieee80211_vif *vif)
1158{
1159 struct iwl_mvm_mc_iter_data *data = _data;
1160 struct iwl_mvm *mvm = data->mvm;
1161 struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd;
1162 int ret, len;
1163
1164 /* if we don't have free ports, mcast frames will be dropped */
1165 if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM))
1166 return;
1167
1168 if (vif->type != NL80211_IFTYPE_STATION ||
1169 !vif->bss_conf.assoc)
1170 return;
1171
1172 cmd->port_id = data->port_id++;
1173 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
1174 len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4);
1175
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001176 ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_ASYNC, len, cmd);
Eliad Pellere59647e2013-11-28 14:08:50 +02001177 if (ret)
1178 IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret);
1179}
1180
1181static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm)
1182{
1183 struct iwl_mvm_mc_iter_data iter_data = {
1184 .mvm = mvm,
1185 };
1186
1187 lockdep_assert_held(&mvm->mutex);
1188
1189 if (WARN_ON_ONCE(!mvm->mcast_filter_cmd))
1190 return;
1191
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001192 ieee80211_iterate_active_interfaces_atomic(
Eliad Pellere59647e2013-11-28 14:08:50 +02001193 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1194 iwl_mvm_mc_iface_iterator, &iter_data);
1195}
1196
1197static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw,
1198 struct netdev_hw_addr_list *mc_list)
1199{
1200 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1201 struct iwl_mcast_filter_cmd *cmd;
1202 struct netdev_hw_addr *addr;
1203 int addr_count = netdev_hw_addr_list_count(mc_list);
1204 bool pass_all = false;
1205 int len;
1206
1207 if (addr_count > MAX_MCAST_FILTERING_ADDRESSES) {
1208 pass_all = true;
1209 addr_count = 0;
1210 }
1211
1212 len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4);
1213 cmd = kzalloc(len, GFP_ATOMIC);
1214 if (!cmd)
1215 return 0;
1216
1217 if (pass_all) {
1218 cmd->pass_all = 1;
1219 return (u64)(unsigned long)cmd;
1220 }
1221
1222 netdev_hw_addr_list_for_each(addr, mc_list) {
1223 IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n",
1224 cmd->count, addr->addr);
1225 memcpy(&cmd->addr_list[cmd->count * ETH_ALEN],
1226 addr->addr, ETH_ALEN);
1227 cmd->count++;
1228 }
1229
1230 return (u64)(unsigned long)cmd;
1231}
1232
Johannes Berg8ca151b2013-01-24 14:25:36 +01001233static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
1234 unsigned int changed_flags,
1235 unsigned int *total_flags,
1236 u64 multicast)
1237{
Eliad Pellere59647e2013-11-28 14:08:50 +02001238 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1239 struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast;
1240
1241 mutex_lock(&mvm->mutex);
1242
1243 /* replace previous configuration */
1244 kfree(mvm->mcast_filter_cmd);
1245 mvm->mcast_filter_cmd = cmd;
1246
1247 if (!cmd)
1248 goto out;
1249
1250 iwl_mvm_recalc_multicast(mvm);
1251out:
1252 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001253 *total_flags = 0;
1254}
1255
Eliad Pellerc87163b2014-01-08 10:11:11 +02001256#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1257struct iwl_bcast_iter_data {
1258 struct iwl_mvm *mvm;
1259 struct iwl_bcast_filter_cmd *cmd;
1260 u8 current_filter;
1261};
1262
1263static void
1264iwl_mvm_set_bcast_filter(struct ieee80211_vif *vif,
1265 const struct iwl_fw_bcast_filter *in_filter,
1266 struct iwl_fw_bcast_filter *out_filter)
1267{
1268 struct iwl_fw_bcast_filter_attr *attr;
1269 int i;
1270
1271 memcpy(out_filter, in_filter, sizeof(*out_filter));
1272
1273 for (i = 0; i < ARRAY_SIZE(out_filter->attrs); i++) {
1274 attr = &out_filter->attrs[i];
1275
1276 if (!attr->mask)
1277 break;
1278
Eliad Peller2ee8f022014-01-13 19:07:09 +02001279 switch (attr->reserved1) {
1280 case cpu_to_le16(BC_FILTER_MAGIC_IP):
1281 if (vif->bss_conf.arp_addr_cnt != 1) {
1282 attr->mask = 0;
1283 continue;
1284 }
1285
1286 attr->val = vif->bss_conf.arp_addr_list[0];
1287 break;
1288 case cpu_to_le16(BC_FILTER_MAGIC_MAC):
1289 attr->val = *(__be32 *)&vif->addr[2];
1290 break;
1291 default:
1292 break;
1293 }
1294 attr->reserved1 = 0;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001295 out_filter->num_attrs++;
1296 }
1297}
1298
1299static void iwl_mvm_bcast_filter_iterator(void *_data, u8 *mac,
1300 struct ieee80211_vif *vif)
1301{
1302 struct iwl_bcast_iter_data *data = _data;
1303 struct iwl_mvm *mvm = data->mvm;
1304 struct iwl_bcast_filter_cmd *cmd = data->cmd;
1305 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1306 struct iwl_fw_bcast_mac *bcast_mac;
1307 int i;
1308
1309 if (WARN_ON(mvmvif->id >= ARRAY_SIZE(cmd->macs)))
1310 return;
1311
1312 bcast_mac = &cmd->macs[mvmvif->id];
1313
Ilan Peere48393e2014-05-22 11:19:02 +03001314 /*
1315 * enable filtering only for associated stations, but not for P2P
1316 * Clients
1317 */
1318 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p ||
1319 !vif->bss_conf.assoc)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001320 return;
1321
1322 bcast_mac->default_discard = 1;
1323
1324 /* copy all configured filters */
1325 for (i = 0; mvm->bcast_filters[i].attrs[0].mask; i++) {
1326 /*
1327 * Make sure we don't exceed our filters limit.
1328 * if there is still a valid filter to be configured,
1329 * be on the safe side and just allow bcast for this mac.
1330 */
1331 if (WARN_ON_ONCE(data->current_filter >=
1332 ARRAY_SIZE(cmd->filters))) {
1333 bcast_mac->default_discard = 0;
1334 bcast_mac->attached_filters = 0;
1335 break;
1336 }
1337
1338 iwl_mvm_set_bcast_filter(vif,
1339 &mvm->bcast_filters[i],
1340 &cmd->filters[data->current_filter]);
1341
1342 /* skip current filter if it contains no attributes */
1343 if (!cmd->filters[data->current_filter].num_attrs)
1344 continue;
1345
1346 /* attach the filter to current mac */
1347 bcast_mac->attached_filters |=
1348 cpu_to_le16(BIT(data->current_filter));
1349
1350 data->current_filter++;
1351 }
1352}
1353
Eliad Pellerde06a592014-01-08 10:11:12 +02001354bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm,
1355 struct iwl_bcast_filter_cmd *cmd)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001356{
Eliad Pellerc87163b2014-01-08 10:11:11 +02001357 struct iwl_bcast_iter_data iter_data = {
1358 .mvm = mvm,
Eliad Pellerde06a592014-01-08 10:11:12 +02001359 .cmd = cmd,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001360 };
1361
Eliad Pellerde06a592014-01-08 10:11:12 +02001362 memset(cmd, 0, sizeof(*cmd));
1363 cmd->max_bcast_filters = ARRAY_SIZE(cmd->filters);
1364 cmd->max_macs = ARRAY_SIZE(cmd->macs);
1365
1366#ifdef CONFIG_IWLWIFI_DEBUGFS
1367 /* use debugfs filters/macs if override is configured */
1368 if (mvm->dbgfs_bcast_filtering.override) {
1369 memcpy(cmd->filters, &mvm->dbgfs_bcast_filtering.cmd.filters,
1370 sizeof(cmd->filters));
1371 memcpy(cmd->macs, &mvm->dbgfs_bcast_filtering.cmd.macs,
1372 sizeof(cmd->macs));
1373 return true;
1374 }
1375#endif
Eliad Pellerc87163b2014-01-08 10:11:11 +02001376
1377 /* if no filters are configured, do nothing */
1378 if (!mvm->bcast_filters)
Eliad Pellerde06a592014-01-08 10:11:12 +02001379 return false;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001380
1381 /* configure and attach these filters for each associated sta vif */
1382 ieee80211_iterate_active_interfaces(
1383 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1384 iwl_mvm_bcast_filter_iterator, &iter_data);
1385
Eliad Pellerde06a592014-01-08 10:11:12 +02001386 return true;
1387}
1388static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1389 struct ieee80211_vif *vif)
1390{
1391 struct iwl_bcast_filter_cmd cmd;
1392
1393 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING))
1394 return 0;
1395
1396 if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
1397 return 0;
1398
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001399 return iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001400 sizeof(cmd), &cmd);
1401}
1402#else
1403static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1404 struct ieee80211_vif *vif)
1405{
1406 return 0;
1407}
1408#endif
1409
Arik Nemtsovf6972672014-06-15 16:03:55 +03001410static void iwl_mvm_teardown_tdls_peers(struct iwl_mvm *mvm)
1411{
1412 struct ieee80211_sta *sta;
1413 struct iwl_mvm_sta *mvmsta;
1414 int i;
1415
1416 lockdep_assert_held(&mvm->mutex);
1417
1418 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
1419 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
1420 lockdep_is_held(&mvm->mutex));
1421 if (!sta || IS_ERR(sta) || !sta->tdls)
1422 continue;
1423
1424 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1425 ieee80211_tdls_oper_request(mvmsta->vif, sta->addr,
1426 NL80211_TDLS_TEARDOWN,
1427 WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED,
1428 GFP_KERNEL);
1429 }
1430}
1431
Johannes Berg8ca151b2013-01-24 14:25:36 +01001432static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
1433 struct ieee80211_vif *vif,
1434 struct ieee80211_bss_conf *bss_conf,
1435 u32 changes)
1436{
1437 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1438 int ret;
1439
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001440 /*
1441 * Re-calculate the tsf id, as the master-slave relations depend on the
1442 * beacon interval, which was not known when the station interface was
1443 * added.
1444 */
1445 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc)
1446 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1447
Luciano Coelhobca49d92014-05-13 17:33:38 +03001448 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001449 if (ret)
1450 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
1451
1452 if (changes & BSS_CHANGED_ASSOC) {
1453 if (bss_conf->assoc) {
1454 /* add quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001455 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001456 if (ret) {
1457 IWL_ERR(mvm, "failed to update quotas\n");
1458 return;
1459 }
Johannes Berg016d27e2013-05-03 11:16:15 +02001460
1461 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
1462 &mvm->status)) {
1463 /*
1464 * If we're restarting then the firmware will
1465 * obviously have lost synchronisation with
1466 * the AP. It will attempt to synchronise by
1467 * itself, but we can make it more reliable by
1468 * scheduling a session protection time event.
1469 *
1470 * The firmware needs to receive a beacon to
1471 * catch up with synchronisation, use 110% of
1472 * the beacon interval.
1473 *
1474 * Set a large maximum delay to allow for more
1475 * than a single interface.
1476 */
1477 u32 dur = (11 * vif->bss_conf.beacon_int) / 10;
1478 iwl_mvm_protect_session(mvm, vif, dur, dur,
1479 5 * dur);
1480 }
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001481
1482 iwl_mvm_sf_update(mvm, vif, false);
Alexander Bondar175a70b2013-04-14 20:59:37 +03001483 iwl_mvm_power_vif_assoc(mvm, vif);
Emmanuel Grumbach697162a2014-07-30 15:56:42 +03001484 if (vif->p2p) {
Eliad Peller29a90a42013-11-05 14:06:29 +02001485 iwl_mvm_ref(mvm, IWL_MVM_REF_P2P_CLIENT);
Emmanuel Grumbach697162a2014-07-30 15:56:42 +03001486 iwl_mvm_update_smps(mvm, vif,
1487 IWL_MVM_SMPS_REQ_PROT,
1488 IEEE80211_SMPS_DYNAMIC);
1489 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001490 } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001491 /*
1492 * If update fails - SF might be running in associated
1493 * mode while disassociated - which is forbidden.
1494 */
1495 WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false),
1496 "Failed to update SF upon disassociation\n");
1497
Johannes Berg8ca151b2013-01-24 14:25:36 +01001498 /* remove AP station now that the MAC is unassoc */
1499 ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id);
1500 if (ret)
1501 IWL_ERR(mvm, "failed to remove AP station\n");
Eliad Peller37577fe2013-12-05 17:19:39 +02001502
1503 if (mvm->d0i3_ap_sta_id == mvmvif->ap_sta_id)
1504 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001505 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
1506 /* remove quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001507 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001508 if (ret)
1509 IWL_ERR(mvm, "failed to update quotas\n");
Eliad Peller29a90a42013-11-05 14:06:29 +02001510
1511 if (vif->p2p)
1512 iwl_mvm_unref(mvm, IWL_MVM_REF_P2P_CLIENT);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001513 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001514
Eliad Pellere59647e2013-11-28 14:08:50 +02001515 iwl_mvm_recalc_multicast(mvm);
Eliad Pellerc87163b2014-01-08 10:11:11 +02001516 iwl_mvm_configure_bcast_filter(mvm, vif);
Eliad Pellere59647e2013-11-28 14:08:50 +02001517
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001518 /* reset rssi values */
1519 mvmvif->bf_data.ave_beacon_signal = 0;
1520
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001521 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachf94045e2014-01-06 13:38:55 +02001522 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT,
1523 IEEE80211_SMPS_AUTOMATIC);
Alexander Bondar989c6502013-05-16 17:34:17 +03001524 } else if (changes & BSS_CHANGED_BEACON_INFO) {
Johannes Berg210a5442013-01-24 23:48:23 +01001525 /*
1526 * We received a beacon _after_ association so
1527 * remove the session protection.
1528 */
1529 iwl_mvm_remove_time_event(mvm, mvmvif,
1530 &mvmvif->time_event_data);
Alexander Bondar51498cf2013-09-02 17:10:14 +03001531 } else if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS |
1532 BSS_CHANGED_QOS)) {
Arik Nemtsov999609f2014-05-15 17:31:51 +03001533 ret = iwl_mvm_power_update_mac(mvm);
Alexander Bondar4bf881f2013-05-29 10:19:50 +03001534 if (ret)
1535 IWL_ERR(mvm, "failed to update power mode\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001536 }
Eran Hararycc87d322014-07-15 14:04:23 +03001537
1538 if (changes & BSS_CHANGED_BEACON_INFO) {
1539 iwl_mvm_sf_update(mvm, vif, false);
1540 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
1541 }
1542
Matti Gottlieb88f2fd72013-07-09 15:25:46 +03001543 if (changes & BSS_CHANGED_TXPOWER) {
1544 IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
1545 bss_conf->txpower);
1546 iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
1547 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001548
1549 if (changes & BSS_CHANGED_CQM) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001550 IWL_DEBUG_MAC80211(mvm, "cqm info_changed\n");
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001551 /* reset cqm events tracking */
1552 mvmvif->bf_data.last_cqm_event = 0;
Avri Altmanfa7b2e72014-05-20 08:03:24 +03001553 if (mvmvif->bf_data.bf_enabled) {
1554 ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0);
1555 if (ret)
1556 IWL_ERR(mvm,
1557 "failed to update CQM thresholds\n");
1558 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001559 }
Eliad Peller2ee8f022014-01-13 19:07:09 +02001560
1561 if (changes & BSS_CHANGED_ARP_FILTER) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001562 IWL_DEBUG_MAC80211(mvm, "arp filter changed\n");
Eliad Peller2ee8f022014-01-13 19:07:09 +02001563 iwl_mvm_configure_bcast_filter(mvm, vif);
1564 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001565}
1566
Johannes Berg5023d962013-07-31 14:07:43 +02001567static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
1568 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001569{
1570 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1571 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1572 int ret;
1573
Eliad Peller576eeee2014-07-01 18:38:38 +03001574 /*
1575 * iwl_mvm_mac_ctxt_add() might read directly from the device
1576 * (the system time), so make sure it is available.
1577 */
1578 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_START_AP);
1579 if (ret)
1580 return ret;
1581
Johannes Berg8ca151b2013-01-24 14:25:36 +01001582 mutex_lock(&mvm->mutex);
1583
1584 /* Send the beacon template */
1585 ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif);
1586 if (ret)
1587 goto out_unlock;
1588
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001589 /*
1590 * Re-calculate the tsf id, as the master-slave relations depend on the
1591 * beacon interval, which was not known when the AP interface was added.
1592 */
1593 if (vif->type == NL80211_IFTYPE_AP)
1594 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1595
Johannes Berg8ca151b2013-01-24 14:25:36 +01001596 /* Add the mac context */
1597 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
1598 if (ret)
1599 goto out_unlock;
1600
1601 /* Perform the binding */
1602 ret = iwl_mvm_binding_add_vif(mvm, vif);
1603 if (ret)
1604 goto out_remove;
1605
Johannes Berg8ca151b2013-01-24 14:25:36 +01001606 /* Send the bcast station. At this stage the TBTT and DTIM time events
1607 * are added and applied to the scheduler */
1608 ret = iwl_mvm_send_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
1609 if (ret)
1610 goto out_unbind;
1611
Ilan Peer5691e212013-12-31 21:05:50 +02001612 /* must be set before quota calculations */
1613 mvmvif->ap_ibss_active = true;
1614
Ilan Peera11e1442013-12-31 21:19:55 +02001615 /* power updated needs to be done before quotas */
Arik Nemtsov999609f2014-05-15 17:31:51 +03001616 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001617
Johannes Berg01662302014-06-06 15:18:45 +02001618 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001619 if (ret)
Ilan Peera11e1442013-12-31 21:19:55 +02001620 goto out_quota_failed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001621
Johannes Berg5023d962013-07-31 14:07:43 +02001622 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001623 if (vif->p2p && mvm->p2p_device_vif)
Luciano Coelhobca49d92014-05-13 17:33:38 +03001624 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001625
Eliad Peller29a90a42013-11-05 14:06:29 +02001626 iwl_mvm_ref(mvm, IWL_MVM_REF_AP_IBSS);
1627
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001628 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001629
Arik Nemtsovf6972672014-06-15 16:03:55 +03001630 /* we don't support TDLS during DCM */
1631 if (iwl_mvm_phy_ctx_count(mvm) > 1)
1632 iwl_mvm_teardown_tdls_peers(mvm);
1633
Johannes Berg8ca151b2013-01-24 14:25:36 +01001634 mutex_unlock(&mvm->mutex);
1635 return 0;
1636
Ilan Peera11e1442013-12-31 21:19:55 +02001637out_quota_failed:
Arik Nemtsov999609f2014-05-15 17:31:51 +03001638 iwl_mvm_power_update_mac(mvm);
Ilan Peer5691e212013-12-31 21:05:50 +02001639 mvmvif->ap_ibss_active = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001640 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1641out_unbind:
1642 iwl_mvm_binding_remove_vif(mvm, vif);
1643out_remove:
1644 iwl_mvm_mac_ctxt_remove(mvm, vif);
1645out_unlock:
1646 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03001647 iwl_mvm_unref(mvm, IWL_MVM_REF_START_AP);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001648 return ret;
1649}
1650
Johannes Berg5023d962013-07-31 14:07:43 +02001651static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
1652 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001653{
1654 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1655 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1656
Johannes Berg38a12b52013-02-22 14:07:56 +01001657 iwl_mvm_prepare_mac_removal(mvm, vif);
1658
Johannes Berg8ca151b2013-01-24 14:25:36 +01001659 mutex_lock(&mvm->mutex);
1660
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001661 /* Handle AP stop while in CSA */
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001662 if (rcu_access_pointer(mvm->csa_vif) == vif) {
1663 iwl_mvm_remove_time_event(mvm, mvmvif,
1664 &mvmvif->time_event_data);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001665 RCU_INIT_POINTER(mvm->csa_vif, NULL);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001666 }
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001667
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001668 if (rcu_access_pointer(mvm->csa_tx_blocked_vif) == vif) {
1669 RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
1670 mvm->csa_tx_block_bcn_timeout = 0;
1671 }
1672
Johannes Berg5023d962013-07-31 14:07:43 +02001673 mvmvif->ap_ibss_active = false;
David Spinadel1c87bba2014-02-27 16:41:52 +02001674 mvm->ap_last_beacon_gp2 = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001675
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001676 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001677
Eliad Peller29a90a42013-11-05 14:06:29 +02001678 iwl_mvm_unref(mvm, IWL_MVM_REF_AP_IBSS);
1679
Johannes Berg5023d962013-07-31 14:07:43 +02001680 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001681 if (vif->p2p && mvm->p2p_device_vif)
Luciano Coelhobca49d92014-05-13 17:33:38 +03001682 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001683
Johannes Berg01662302014-06-06 15:18:45 +02001684 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001685 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1686 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peera11e1442013-12-31 21:19:55 +02001687
Arik Nemtsov999609f2014-05-15 17:31:51 +03001688 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001689
Johannes Berg8ca151b2013-01-24 14:25:36 +01001690 iwl_mvm_mac_ctxt_remove(mvm, vif);
1691
1692 mutex_unlock(&mvm->mutex);
1693}
1694
Johannes Berg5023d962013-07-31 14:07:43 +02001695static void
1696iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm,
1697 struct ieee80211_vif *vif,
1698 struct ieee80211_bss_conf *bss_conf,
1699 u32 changes)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001700{
Ilan Peerbe2056f2013-12-04 16:47:14 +02001701 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Avri Altman8a5e3662013-11-12 19:16:03 +02001702
Ilan Peerbe2056f2013-12-04 16:47:14 +02001703 /* Changes will be applied when the AP/IBSS is started */
1704 if (!mvmvif->ap_ibss_active)
1705 return;
1706
Johannes Berg863230da2013-12-04 17:08:40 +01001707 if (changes & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT |
1708 BSS_CHANGED_BANDWIDTH) &&
Luciano Coelhobca49d92014-05-13 17:33:38 +03001709 iwl_mvm_mac_ctxt_changed(mvm, vif, false))
Johannes Berg863230da2013-12-04 17:08:40 +01001710 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
Avri Altman8a5e3662013-11-12 19:16:03 +02001711
Johannes Berg8ca151b2013-01-24 14:25:36 +01001712 /* Need to send a new beacon template to the FW */
Johannes Berg863230da2013-12-04 17:08:40 +01001713 if (changes & BSS_CHANGED_BEACON &&
1714 iwl_mvm_mac_ctxt_beacon_changed(mvm, vif))
1715 IWL_WARN(mvm, "Failed updating beacon data\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001716}
1717
1718static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw,
1719 struct ieee80211_vif *vif,
1720 struct ieee80211_bss_conf *bss_conf,
1721 u32 changes)
1722{
1723 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1724
Eliad Peller576eeee2014-07-01 18:38:38 +03001725 /*
1726 * iwl_mvm_bss_info_changed_station() might call
1727 * iwl_mvm_protect_session(), which reads directly from
1728 * the device (the system time), so make sure it is available.
1729 */
1730 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_BSS_CHANGED))
1731 return;
1732
Johannes Berg8ca151b2013-01-24 14:25:36 +01001733 mutex_lock(&mvm->mutex);
1734
David Spinadel723f02e2014-04-27 09:54:54 +03001735 if (changes & BSS_CHANGED_IDLE && !bss_conf->idle)
David Spinadelfb98be52014-05-04 12:51:10 +03001736 iwl_mvm_scan_offload_stop(mvm, true);
David Spinadel723f02e2014-04-27 09:54:54 +03001737
Johannes Berg8ca151b2013-01-24 14:25:36 +01001738 switch (vif->type) {
1739 case NL80211_IFTYPE_STATION:
1740 iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes);
1741 break;
1742 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02001743 case NL80211_IFTYPE_ADHOC:
1744 iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001745 break;
1746 default:
1747 /* shouldn't happen */
1748 WARN_ON_ONCE(1);
1749 }
1750
1751 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03001752 iwl_mvm_unref(mvm, IWL_MVM_REF_BSS_CHANGED);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001753}
1754
Eliad Peller4660dfb2014-06-22 18:15:59 +03001755static int iwl_mvm_cancel_scan_wait_notif(struct iwl_mvm *mvm,
1756 enum iwl_scan_status scan_type)
1757{
1758 int ret;
1759 bool wait_for_handlers = false;
1760
1761 mutex_lock(&mvm->mutex);
1762
1763 if (mvm->scan_status != scan_type) {
1764 ret = 0;
1765 /* make sure there are no pending notifications */
1766 wait_for_handlers = true;
1767 goto out;
1768 }
1769
1770 switch (scan_type) {
1771 case IWL_MVM_SCAN_SCHED:
1772 ret = iwl_mvm_scan_offload_stop(mvm, true);
1773 break;
1774 case IWL_MVM_SCAN_OS:
1775 ret = iwl_mvm_cancel_scan(mvm);
1776 break;
1777 case IWL_MVM_SCAN_NONE:
1778 default:
1779 WARN_ON_ONCE(1);
1780 ret = -EINVAL;
1781 break;
1782 }
1783 if (ret)
1784 goto out;
1785
1786 wait_for_handlers = true;
1787out:
1788 mutex_unlock(&mvm->mutex);
1789
1790 /* make sure we consume the completion notification */
1791 if (wait_for_handlers)
1792 iwl_mvm_wait_for_async_handlers(mvm);
1793
1794 return ret;
1795}
Johannes Berg8ca151b2013-01-24 14:25:36 +01001796static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw,
1797 struct ieee80211_vif *vif,
David Spinadelc56ef672014-02-05 15:21:13 +02001798 struct ieee80211_scan_request *hw_req)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001799{
1800 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
David Spinadelc56ef672014-02-05 15:21:13 +02001801 struct cfg80211_scan_request *req = &hw_req->req;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001802 int ret;
1803
David Spinadel762533b2014-06-05 11:20:43 +03001804 if (req->n_channels == 0 ||
1805 req->n_channels > mvm->fw->ucode_capa.n_scan_channels)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001806 return -EINVAL;
1807
Eliad Peller4660dfb2014-06-22 18:15:59 +03001808 ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_SCHED);
1809 if (ret)
1810 return ret;
1811
Johannes Berg8ca151b2013-01-24 14:25:36 +01001812 mutex_lock(&mvm->mutex);
1813
Eliad Peller4660dfb2014-06-22 18:15:59 +03001814 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001815 ret = -EBUSY;
Arik Nemtsov519e2022013-10-17 17:51:35 +03001816 goto out;
1817 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001818
Arik Nemtsov519e2022013-10-17 17:51:35 +03001819 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
1820
David Spinadelfb98be52014-05-04 12:51:10 +03001821 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
1822 ret = iwl_mvm_unified_scan_lmac(mvm, vif, hw_req);
1823 else
1824 ret = iwl_mvm_scan_request(mvm, vif, req);
1825
Arik Nemtsov519e2022013-10-17 17:51:35 +03001826 if (ret)
1827 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1828out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001829 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001830 return ret;
1831}
1832
1833static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw,
1834 struct ieee80211_vif *vif)
1835{
1836 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1837
1838 mutex_lock(&mvm->mutex);
1839
1840 iwl_mvm_cancel_scan(mvm);
1841
1842 mutex_unlock(&mvm->mutex);
1843}
1844
1845static void
1846iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw,
Johannes Berg3e56ead2013-02-15 22:23:18 +01001847 struct ieee80211_sta *sta, u16 tids,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001848 int num_frames,
1849 enum ieee80211_frame_release_type reason,
1850 bool more_data)
1851{
1852 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001853
Johannes Berg3e56ead2013-02-15 22:23:18 +01001854 /* Called when we need to transmit (a) frame(s) from mac80211 */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001855
Johannes Berg3e56ead2013-02-15 22:23:18 +01001856 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
1857 tids, more_data, false);
1858}
1859
1860static void
1861iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw,
1862 struct ieee80211_sta *sta, u16 tids,
1863 int num_frames,
1864 enum ieee80211_frame_release_type reason,
1865 bool more_data)
1866{
1867 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1868
1869 /* Called when we need to transmit (a) frame(s) from agg queue */
1870
1871 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
1872 tids, more_data, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001873}
1874
1875static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
1876 struct ieee80211_vif *vif,
1877 enum sta_notify_cmd cmd,
1878 struct ieee80211_sta *sta)
1879{
1880 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg5b577a92013-11-14 18:20:04 +01001881 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg3e56ead2013-02-15 22:23:18 +01001882 int tid;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001883
1884 switch (cmd) {
1885 case STA_NOTIFY_SLEEP:
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001886 if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001887 ieee80211_sta_block_awake(hw, sta, true);
Johannes Berg3e56ead2013-02-15 22:23:18 +01001888 spin_lock_bh(&mvmsta->lock);
1889 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
1890 struct iwl_mvm_tid_data *tid_data;
1891
1892 tid_data = &mvmsta->tid_data[tid];
1893 if (tid_data->state != IWL_AGG_ON &&
1894 tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA)
1895 continue;
1896 if (iwl_mvm_tid_queued(tid_data) == 0)
1897 continue;
1898 ieee80211_sta_set_buffered(sta, tid, true);
1899 }
1900 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001901 /*
1902 * The fw updates the STA to be asleep. Tx packets on the Tx
1903 * queues to this station will not be transmitted. The fw will
1904 * send a Tx response with TX_STATUS_FAIL_DEST_PS.
1905 */
1906 break;
1907 case STA_NOTIFY_AWAKE:
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02001908 if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001909 break;
Johannes Berg9cc40712013-02-15 22:47:48 +01001910 iwl_mvm_sta_modify_ps_wake(mvm, sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001911 break;
1912 default:
1913 break;
1914 }
1915}
1916
Johannes Berg1ddbbb02013-12-04 22:39:17 +01001917static void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw,
1918 struct ieee80211_vif *vif,
1919 struct ieee80211_sta *sta)
1920{
1921 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1922 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
1923
1924 /*
1925 * This is called before mac80211 does RCU synchronisation,
1926 * so here we already invalidate our internal RCU-protected
1927 * station pointer. The rest of the code will thus no longer
1928 * be able to find the station this way, and we don't rely
1929 * on further RCU synchronisation after the sta_state()
1930 * callback deleted the station.
1931 */
1932 mutex_lock(&mvm->mutex);
1933 if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id]))
1934 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id],
1935 ERR_PTR(-ENOENT));
1936 mutex_unlock(&mvm->mutex);
1937}
1938
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001939int iwl_mvm_tdls_sta_count(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001940{
1941 struct ieee80211_sta *sta;
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001942 struct iwl_mvm_sta *mvmsta;
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001943 int count = 0;
1944 int i;
1945
1946 lockdep_assert_held(&mvm->mutex);
1947
1948 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
1949 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
1950 lockdep_is_held(&mvm->mutex));
1951 if (!sta || IS_ERR(sta) || !sta->tdls)
1952 continue;
1953
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001954 if (vif) {
1955 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1956 if (mvmsta->vif != vif)
1957 continue;
1958 }
1959
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001960 count++;
1961 }
1962
1963 return count;
1964}
1965
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001966static void iwl_mvm_recalc_tdls_state(struct iwl_mvm *mvm,
1967 struct ieee80211_vif *vif,
1968 bool sta_added)
1969{
1970 int tdls_sta_cnt = iwl_mvm_tdls_sta_count(mvm, vif);
1971
1972 /*
1973 * Disable ps when the first TDLS sta is added and re-enable it
1974 * when the last TDLS sta is removed
1975 */
1976 if ((tdls_sta_cnt == 1 && sta_added) ||
1977 (tdls_sta_cnt == 0 && !sta_added))
1978 iwl_mvm_power_update_mac(mvm);
1979}
1980
Johannes Berg8ca151b2013-01-24 14:25:36 +01001981static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
1982 struct ieee80211_vif *vif,
1983 struct ieee80211_sta *sta,
1984 enum ieee80211_sta_state old_state,
1985 enum ieee80211_sta_state new_state)
1986{
1987 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1988 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1989 int ret;
1990
1991 IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n",
1992 sta->addr, old_state, new_state);
1993
1994 /* this would be a mac80211 bug ... but don't crash */
1995 if (WARN_ON_ONCE(!mvmvif->phy_ctxt))
1996 return -EINVAL;
1997
1998 /* if a STA is being removed, reuse its ID */
1999 flush_work(&mvm->sta_drained_wk);
2000
2001 mutex_lock(&mvm->mutex);
2002 if (old_state == IEEE80211_STA_NOTEXIST &&
2003 new_state == IEEE80211_STA_NONE) {
Johannes Berg48bc1302013-07-04 15:55:29 +02002004 /*
2005 * Firmware bug - it'll crash if the beacon interval is less
2006 * than 16. We can't avoid connecting at all, so refuse the
2007 * station state change, this will cause mac80211 to abandon
2008 * attempts to connect to this AP, and eventually wpa_s will
2009 * blacklist the AP...
2010 */
2011 if (vif->type == NL80211_IFTYPE_STATION &&
2012 vif->bss_conf.beacon_int < 16) {
2013 IWL_ERR(mvm,
2014 "AP %pM beacon interval is %d, refusing due to firmware bug!\n",
2015 sta->addr, vif->bss_conf.beacon_int);
2016 ret = -EINVAL;
2017 goto out_unlock;
2018 }
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03002019
2020 if (sta->tdls &&
2021 (vif->p2p ||
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002022 iwl_mvm_tdls_sta_count(mvm, NULL) ==
2023 IWL_MVM_TDLS_STA_COUNT ||
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03002024 iwl_mvm_phy_ctx_count(mvm) > 1)) {
2025 IWL_DEBUG_MAC80211(mvm, "refusing TDLS sta\n");
2026 ret = -EBUSY;
2027 goto out_unlock;
2028 }
2029
Johannes Berg8ca151b2013-01-24 14:25:36 +01002030 ret = iwl_mvm_add_sta(mvm, vif, sta);
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002031 if (sta->tdls && ret == 0)
2032 iwl_mvm_recalc_tdls_state(mvm, vif, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002033 } else if (old_state == IEEE80211_STA_NONE &&
2034 new_state == IEEE80211_STA_AUTH) {
Haim Dreyfusse820c2d2014-04-06 11:19:09 +03002035 /*
2036 * EBS may be disabled due to previous failures reported by FW.
2037 * Reset EBS status here assuming environment has been changed.
2038 */
2039 mvm->last_ebs_successful = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002040 ret = 0;
2041 } else if (old_state == IEEE80211_STA_AUTH &&
2042 new_state == IEEE80211_STA_ASSOC) {
Johannes Berg7a453972013-02-12 13:10:44 +01002043 ret = iwl_mvm_update_sta(mvm, vif, sta);
2044 if (ret == 0)
2045 iwl_mvm_rs_rate_init(mvm, sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +02002046 mvmvif->phy_ctxt->channel->band,
2047 true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002048 } else if (old_state == IEEE80211_STA_ASSOC &&
2049 new_state == IEEE80211_STA_AUTHORIZED) {
Arik Nemtsovf59e0e3c2014-06-10 19:56:27 +03002050
2051 /* we don't support TDLS during DCM */
2052 if (iwl_mvm_phy_ctx_count(mvm) > 1)
2053 iwl_mvm_teardown_tdls_peers(mvm);
2054
Hila Gonen7df15b12012-12-12 11:16:19 +02002055 /* enable beacon filtering */
Avri Altmanfa7b2e72014-05-20 08:03:24 +03002056 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01002057 ret = 0;
2058 } else if (old_state == IEEE80211_STA_AUTHORIZED &&
2059 new_state == IEEE80211_STA_ASSOC) {
Hila Gonen7df15b12012-12-12 11:16:19 +02002060 /* disable beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03002061 WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01002062 ret = 0;
2063 } else if (old_state == IEEE80211_STA_ASSOC &&
2064 new_state == IEEE80211_STA_AUTH) {
2065 ret = 0;
2066 } else if (old_state == IEEE80211_STA_AUTH &&
2067 new_state == IEEE80211_STA_NONE) {
2068 ret = 0;
2069 } else if (old_state == IEEE80211_STA_NONE &&
2070 new_state == IEEE80211_STA_NOTEXIST) {
2071 ret = iwl_mvm_rm_sta(mvm, vif, sta);
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002072 if (sta->tdls)
2073 iwl_mvm_recalc_tdls_state(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002074 } else {
2075 ret = -EIO;
2076 }
Johannes Berg48bc1302013-07-04 15:55:29 +02002077 out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002078 mutex_unlock(&mvm->mutex);
2079
2080 return ret;
2081}
2082
2083static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2084{
2085 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2086
2087 mvm->rts_threshold = value;
2088
2089 return 0;
2090}
2091
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02002092static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw,
2093 struct ieee80211_vif *vif,
2094 struct ieee80211_sta *sta, u32 changed)
2095{
2096 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2097
2098 if (vif->type == NL80211_IFTYPE_STATION &&
2099 changed & IEEE80211_RC_NSS_CHANGED)
2100 iwl_mvm_sf_update(mvm, vif, false);
2101}
2102
Johannes Berg8ca151b2013-01-24 14:25:36 +01002103static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw,
2104 struct ieee80211_vif *vif, u16 ac,
2105 const struct ieee80211_tx_queue_params *params)
2106{
2107 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2108 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2109
2110 mvmvif->queue_params[ac] = *params;
2111
2112 /*
2113 * No need to update right away, we'll get BSS_CHANGED_QOS
2114 * The exception is P2P_DEVICE interface which needs immediate update.
2115 */
2116 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
2117 int ret;
2118
2119 mutex_lock(&mvm->mutex);
Luciano Coelhobca49d92014-05-13 17:33:38 +03002120 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002121 mutex_unlock(&mvm->mutex);
2122 return ret;
2123 }
2124 return 0;
2125}
2126
2127static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw,
2128 struct ieee80211_vif *vif)
2129{
2130 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2131 u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS,
2132 200 + vif->bss_conf.beacon_int);
2133 u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS,
2134 100 + vif->bss_conf.beacon_int);
2135
2136 if (WARN_ON_ONCE(vif->bss_conf.assoc))
2137 return;
2138
Eliad Peller576eeee2014-07-01 18:38:38 +03002139 /*
2140 * iwl_mvm_protect_session() reads directly from the device
2141 * (the system time), so make sure it is available.
2142 */
2143 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PREPARE_TX))
2144 return;
2145
Johannes Berg8ca151b2013-01-24 14:25:36 +01002146 mutex_lock(&mvm->mutex);
2147 /* Try really hard to protect the session and hear a beacon */
Johannes Berg016d27e2013-05-03 11:16:15 +02002148 iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002149 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002150
2151 iwl_mvm_unref(mvm, IWL_MVM_REF_PREPARE_TX);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002152}
2153
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002154static void iwl_mvm_mac_mgd_protect_tdls_discover(struct ieee80211_hw *hw,
2155 struct ieee80211_vif *vif)
2156{
2157 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2158 u32 duration = 2 * vif->bss_conf.dtim_period * vif->bss_conf.beacon_int;
2159
Eliad Peller576eeee2014-07-01 18:38:38 +03002160 /*
2161 * iwl_mvm_protect_session() reads directly from the device
2162 * (the system time), so make sure it is available.
2163 */
2164 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PROTECT_TDLS))
2165 return;
2166
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002167 mutex_lock(&mvm->mutex);
2168 /* Protect the session to hear the TDLS setup response on the channel */
2169 iwl_mvm_protect_session(mvm, vif, duration, duration, 100);
2170 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002171
2172 iwl_mvm_unref(mvm, IWL_MVM_REF_PROTECT_TDLS);
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002173}
2174
David Spinadel35a000b2013-08-28 09:29:43 +03002175static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw,
2176 struct ieee80211_vif *vif,
2177 struct cfg80211_sched_scan_request *req,
David Spinadel633e2712014-02-06 16:15:23 +02002178 struct ieee80211_scan_ies *ies)
David Spinadel35a000b2013-08-28 09:29:43 +03002179{
2180 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2181 int ret;
2182
Eliad Peller4660dfb2014-06-22 18:15:59 +03002183 ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_OS);
2184 if (ret)
2185 return ret;
2186
David Spinadel35a000b2013-08-28 09:29:43 +03002187 mutex_lock(&mvm->mutex);
2188
David Spinadelb538b8c2014-05-13 14:29:36 +03002189 if (!iwl_mvm_is_idle(mvm)) {
David Spinadelbd5e4742014-04-24 13:15:29 +03002190 ret = -EBUSY;
2191 goto out;
2192 }
2193
Eliad Peller4660dfb2014-06-22 18:15:59 +03002194 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
David Spinadel35a000b2013-08-28 09:29:43 +03002195 ret = -EBUSY;
2196 goto out;
2197 }
2198
2199 mvm->scan_status = IWL_MVM_SCAN_SCHED;
2200
David Spinadelfb98be52014-05-04 12:51:10 +03002201 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)) {
2202 ret = iwl_mvm_config_sched_scan(mvm, vif, req, ies);
2203 if (ret)
2204 goto err;
2205 }
David Spinadel35a000b2013-08-28 09:29:43 +03002206
2207 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
2208 if (ret)
2209 goto err;
2210
David Spinadelfb98be52014-05-04 12:51:10 +03002211 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
2212 ret = iwl_mvm_unified_sched_scan_lmac(mvm, vif, req, ies);
2213 else
2214 ret = iwl_mvm_sched_scan_start(mvm, req);
2215
David Spinadel35a000b2013-08-28 09:29:43 +03002216 if (!ret)
2217 goto out;
2218err:
2219 mvm->scan_status = IWL_MVM_SCAN_NONE;
2220out:
2221 mutex_unlock(&mvm->mutex);
2222 return ret;
2223}
2224
Johannes Berg37e33082014-02-17 10:48:17 +01002225static int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw,
2226 struct ieee80211_vif *vif)
David Spinadel35a000b2013-08-28 09:29:43 +03002227{
2228 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002229 int ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002230
2231 mutex_lock(&mvm->mutex);
David Spinadelfb98be52014-05-04 12:51:10 +03002232 ret = iwl_mvm_scan_offload_stop(mvm, false);
David Spinadel35a000b2013-08-28 09:29:43 +03002233 mutex_unlock(&mvm->mutex);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002234 iwl_mvm_wait_for_async_handlers(mvm);
Johannes Berg37e33082014-02-17 10:48:17 +01002235
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002236 return ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002237}
2238
Johannes Berg8ca151b2013-01-24 14:25:36 +01002239static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw,
2240 enum set_key_cmd cmd,
2241 struct ieee80211_vif *vif,
2242 struct ieee80211_sta *sta,
2243 struct ieee80211_key_conf *key)
2244{
2245 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2246 int ret;
2247
2248 if (iwlwifi_mod_params.sw_crypto) {
2249 IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n");
2250 return -EOPNOTSUPP;
2251 }
2252
2253 switch (key->cipher) {
2254 case WLAN_CIPHER_SUITE_TKIP:
2255 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
2256 /* fall-through */
2257 case WLAN_CIPHER_SUITE_CCMP:
2258 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2259 break;
2260 case WLAN_CIPHER_SUITE_AES_CMAC:
2261 WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE));
2262 break;
2263 case WLAN_CIPHER_SUITE_WEP40:
2264 case WLAN_CIPHER_SUITE_WEP104:
2265 /*
2266 * Support for TX only, at least for now, so accept
2267 * the key and do nothing else. Then mac80211 will
2268 * pass it for TX but we don't have to use it for RX.
2269 */
2270 return 0;
2271 default:
Max Stepanove36e5432013-08-27 19:56:13 +03002272 /* currently FW supports only one optional cipher scheme */
2273 if (hw->n_cipher_schemes &&
2274 hw->cipher_schemes->cipher == key->cipher)
2275 key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
2276 else
2277 return -EOPNOTSUPP;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002278 }
2279
2280 mutex_lock(&mvm->mutex);
2281
2282 switch (cmd) {
2283 case SET_KEY:
Johannes Berg5023d962013-07-31 14:07:43 +02002284 if ((vif->type == NL80211_IFTYPE_ADHOC ||
2285 vif->type == NL80211_IFTYPE_AP) && !sta) {
2286 /*
2287 * GTK on AP interface is a TX-only key, return 0;
2288 * on IBSS they're per-station and because we're lazy
2289 * we don't support them for RX, so do the same.
2290 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002291 ret = 0;
2292 key->hw_key_idx = STA_KEY_IDX_INVALID;
2293 break;
2294 }
2295
Johannes Berg8ca151b2013-01-24 14:25:36 +01002296 IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n");
2297 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false);
2298 if (ret) {
2299 IWL_WARN(mvm, "set key failed\n");
2300 /*
2301 * can't add key for RX, but we don't need it
2302 * in the device for TX so still return 0
2303 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002304 key->hw_key_idx = STA_KEY_IDX_INVALID;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002305 ret = 0;
2306 }
2307
2308 break;
2309 case DISABLE_KEY:
Johannes Berg6caffd42013-03-06 13:15:21 +01002310 if (key->hw_key_idx == STA_KEY_IDX_INVALID) {
2311 ret = 0;
2312 break;
2313 }
2314
Johannes Berg8ca151b2013-01-24 14:25:36 +01002315 IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n");
2316 ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key);
2317 break;
2318 default:
2319 ret = -EINVAL;
2320 }
2321
2322 mutex_unlock(&mvm->mutex);
2323 return ret;
2324}
2325
2326static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw,
2327 struct ieee80211_vif *vif,
2328 struct ieee80211_key_conf *keyconf,
2329 struct ieee80211_sta *sta,
2330 u32 iv32, u16 *phase1key)
2331{
2332 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2333
Johannes Berg5023d962013-07-31 14:07:43 +02002334 if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID)
2335 return;
2336
Johannes Berg8ca151b2013-01-24 14:25:36 +01002337 iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key);
2338}
2339
2340
Ariej Marjiehb1128892014-07-16 21:11:12 +03002341static bool iwl_mvm_rx_aux_roc(struct iwl_notif_wait_data *notif_wait,
2342 struct iwl_rx_packet *pkt, void *data)
2343{
2344 struct iwl_mvm *mvm =
2345 container_of(notif_wait, struct iwl_mvm, notif_wait);
2346 struct iwl_hs20_roc_res *resp;
2347 int resp_len = iwl_rx_packet_payload_len(pkt);
2348 struct iwl_mvm_time_event_data *te_data = data;
2349
2350 if (WARN_ON(pkt->hdr.cmd != HOT_SPOT_CMD))
2351 return true;
2352
2353 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
2354 IWL_ERR(mvm, "Invalid HOT_SPOT_CMD response\n");
2355 return true;
2356 }
2357
2358 resp = (void *)pkt->data;
2359
2360 IWL_DEBUG_TE(mvm,
2361 "Aux ROC: Recieved response from ucode: status=%d uid=%d\n",
2362 resp->status, resp->event_unique_id);
2363
2364 te_data->uid = le32_to_cpu(resp->event_unique_id);
2365 IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
2366 te_data->uid);
2367
2368 spin_lock_bh(&mvm->time_event_lock);
2369 list_add_tail(&te_data->list, &mvm->aux_roc_te_list);
2370 spin_unlock_bh(&mvm->time_event_lock);
2371
2372 return true;
2373}
2374
2375#define AUX_ROC_MAX_DELAY_ON_CHANNEL 5000
2376static int iwl_mvm_send_aux_roc_cmd(struct iwl_mvm *mvm,
2377 struct ieee80211_channel *channel,
2378 struct ieee80211_vif *vif,
2379 int duration)
2380{
2381 int res, time_reg = DEVICE_SYSTEM_TIME_REG;
2382 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2383 struct iwl_mvm_time_event_data *te_data = &mvmvif->hs_time_event_data;
2384 static const u8 time_event_response[] = { HOT_SPOT_CMD };
2385 struct iwl_notification_wait wait_time_event;
2386 struct iwl_hs20_roc_req aux_roc_req = {
2387 .action = cpu_to_le32(FW_CTXT_ACTION_ADD),
2388 .id_and_color =
2389 cpu_to_le32(FW_CMD_ID_AND_COLOR(MAC_INDEX_AUX, 0)),
2390 .sta_id_and_color = cpu_to_le32(mvm->aux_sta.sta_id),
2391 /* Set the channel info data */
2392 .channel_info.band = (channel->band == IEEE80211_BAND_2GHZ) ?
2393 PHY_BAND_24 : PHY_BAND_5,
2394 .channel_info.channel = channel->hw_value,
2395 .channel_info.width = PHY_VHT_CHANNEL_MODE20,
2396 /* Set the time and duration */
2397 .apply_time = cpu_to_le32(iwl_read_prph(mvm->trans, time_reg)),
2398 .apply_time_max_delay =
2399 cpu_to_le32(MSEC_TO_TU(AUX_ROC_MAX_DELAY_ON_CHANNEL)),
2400 .duration = cpu_to_le32(MSEC_TO_TU(duration)),
2401 };
2402
2403 /* Set the node address */
2404 memcpy(aux_roc_req.node_addr, vif->addr, ETH_ALEN);
2405
2406 te_data->vif = vif;
2407 te_data->duration = duration;
2408 te_data->id = HOT_SPOT_CMD;
2409
2410 lockdep_assert_held(&mvm->mutex);
2411
2412 spin_lock_bh(&mvm->time_event_lock);
2413 list_add_tail(&te_data->list, &mvm->time_event_list);
2414 spin_unlock_bh(&mvm->time_event_lock);
2415
2416 /*
2417 * Use a notification wait, which really just processes the
2418 * command response and doesn't wait for anything, in order
2419 * to be able to process the response and get the UID inside
2420 * the RX path. Using CMD_WANT_SKB doesn't work because it
2421 * stores the buffer and then wakes up this thread, by which
2422 * time another notification (that the time event started)
2423 * might already be processed unsuccessfully.
2424 */
2425 iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
2426 time_event_response,
2427 ARRAY_SIZE(time_event_response),
2428 iwl_mvm_rx_aux_roc, te_data);
2429
2430 res = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0, sizeof(aux_roc_req),
2431 &aux_roc_req);
2432
2433 if (res) {
2434 IWL_ERR(mvm, "Couldn't send HOT_SPOT_CMD: %d\n", res);
2435 iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
2436 goto out_clear_te;
2437 }
2438
2439 /* No need to wait for anything, so just pass 1 (0 isn't valid) */
2440 res = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
2441 /* should never fail */
2442 WARN_ON_ONCE(res);
2443
2444 if (res) {
2445 out_clear_te:
2446 spin_lock_bh(&mvm->time_event_lock);
2447 iwl_mvm_te_clear_data(mvm, te_data);
2448 spin_unlock_bh(&mvm->time_event_lock);
2449 }
2450
2451 return res;
2452}
2453
Johannes Berg8ca151b2013-01-24 14:25:36 +01002454static int iwl_mvm_roc(struct ieee80211_hw *hw,
2455 struct ieee80211_vif *vif,
2456 struct ieee80211_channel *channel,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002457 int duration,
2458 enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002459{
2460 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002461 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002462 struct cfg80211_chan_def chandef;
Ilan Peer31d385a2013-04-02 10:25:46 +03002463 struct iwl_mvm_phy_ctxt *phy_ctxt;
2464 int ret, i;
2465
2466 IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value,
2467 duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002468
Ariej Marjiehb1128892014-07-16 21:11:12 +03002469 switch (vif->type) {
2470 case NL80211_IFTYPE_STATION:
2471 /* Use aux roc framework (HS20) */
2472 ret = iwl_mvm_send_aux_roc_cmd(mvm, channel,
2473 vif, duration);
2474 return ret;
2475 case NL80211_IFTYPE_P2P_DEVICE:
2476 /* handle below */
2477 break;
2478 default:
2479 IWL_ERR(mvm, "vif isn't P2P_DEVICE: %d\n", vif->type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002480 return -EINVAL;
2481 }
2482
Johannes Berg8ca151b2013-01-24 14:25:36 +01002483 mutex_lock(&mvm->mutex);
2484
Ilan Peer31d385a2013-04-02 10:25:46 +03002485 for (i = 0; i < NUM_PHY_CTX; i++) {
2486 phy_ctxt = &mvm->phy_ctxts[i];
2487 if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt)
2488 continue;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002489
Ilan Peer31d385a2013-04-02 10:25:46 +03002490 if (phy_ctxt->ref && channel == phy_ctxt->channel) {
2491 /*
2492 * Unbind the P2P_DEVICE from the current PHY context,
2493 * and if the PHY context is not used remove it.
2494 */
2495 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2496 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2497 goto out_unlock;
2498
2499 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2500
2501 /* Bind the P2P_DEVICE to the current PHY Context */
2502 mvmvif->phy_ctxt = phy_ctxt;
2503
2504 ret = iwl_mvm_binding_add_vif(mvm, vif);
2505 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2506 goto out_unlock;
2507
2508 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2509 goto schedule_time_event;
2510 }
2511 }
2512
2513 /* Need to update the PHY context only if the ROC channel changed */
2514 if (channel == mvmvif->phy_ctxt->channel)
2515 goto schedule_time_event;
2516
2517 cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT);
2518
2519 /*
2520 * Change the PHY context configuration as it is currently referenced
2521 * only by the P2P Device MAC
2522 */
2523 if (mvmvif->phy_ctxt->ref == 1) {
2524 ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt,
2525 &chandef, 1, 1);
2526 if (ret)
2527 goto out_unlock;
2528 } else {
2529 /*
2530 * The PHY context is shared with other MACs. Need to remove the
2531 * P2P Device from the binding, allocate an new PHY context and
2532 * create a new binding
2533 */
2534 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2535 if (!phy_ctxt) {
2536 ret = -ENOSPC;
2537 goto out_unlock;
2538 }
2539
2540 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef,
2541 1, 1);
2542 if (ret) {
2543 IWL_ERR(mvm, "Failed to change PHY context\n");
2544 goto out_unlock;
2545 }
2546
2547 /* Unbind the P2P_DEVICE from the current PHY context */
2548 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2549 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2550 goto out_unlock;
2551
2552 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2553
2554 /* Bind the P2P_DEVICE to the new allocated PHY context */
2555 mvmvif->phy_ctxt = phy_ctxt;
2556
2557 ret = iwl_mvm_binding_add_vif(mvm, vif);
2558 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2559 goto out_unlock;
2560
2561 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2562 }
2563
2564schedule_time_event:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002565 /* Schedule the time events */
Ilan Peere635c792013-02-13 11:05:18 +02002566 ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002567
Ilan Peer31d385a2013-04-02 10:25:46 +03002568out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002569 mutex_unlock(&mvm->mutex);
2570 IWL_DEBUG_MAC80211(mvm, "leave\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01002571 return ret;
2572}
2573
2574static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw)
2575{
2576 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2577
2578 IWL_DEBUG_MAC80211(mvm, "enter\n");
2579
2580 mutex_lock(&mvm->mutex);
2581 iwl_mvm_stop_p2p_roc(mvm);
2582 mutex_unlock(&mvm->mutex);
2583
2584 IWL_DEBUG_MAC80211(mvm, "leave\n");
2585 return 0;
2586}
2587
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002588static int __iwl_mvm_add_chanctx(struct iwl_mvm *mvm,
2589 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002590{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002591 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2592 struct iwl_mvm_phy_ctxt *phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002593 int ret;
2594
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002595 lockdep_assert_held(&mvm->mutex);
2596
Ilan Peer53a9d612013-04-28 11:55:08 +03002597 IWL_DEBUG_MAC80211(mvm, "Add channel context\n");
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002598
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002599 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2600 if (!phy_ctxt) {
2601 ret = -ENOSPC;
2602 goto out;
2603 }
2604
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002605 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Ilan Peer53a9d612013-04-28 11:55:08 +03002606 ctx->rx_chains_static,
2607 ctx->rx_chains_dynamic);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002608 if (ret) {
2609 IWL_ERR(mvm, "Failed to add PHY context\n");
2610 goto out;
2611 }
2612
Ilan Peer53a9d612013-04-28 11:55:08 +03002613 iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002614 *phy_ctxt_id = phy_ctxt->id;
2615out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002616 return ret;
2617}
2618
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002619static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw,
2620 struct ieee80211_chanctx_conf *ctx)
2621{
2622 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2623 int ret;
2624
2625 mutex_lock(&mvm->mutex);
2626 ret = __iwl_mvm_add_chanctx(mvm, ctx);
2627 mutex_unlock(&mvm->mutex);
2628
2629 return ret;
2630}
2631
2632static void __iwl_mvm_remove_chanctx(struct iwl_mvm *mvm,
2633 struct ieee80211_chanctx_conf *ctx)
2634{
2635 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2636 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
2637
2638 lockdep_assert_held(&mvm->mutex);
2639
2640 iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt);
2641}
2642
Johannes Berg8ca151b2013-01-24 14:25:36 +01002643static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw,
2644 struct ieee80211_chanctx_conf *ctx)
2645{
2646 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002647
2648 mutex_lock(&mvm->mutex);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002649 __iwl_mvm_remove_chanctx(mvm, ctx);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002650 mutex_unlock(&mvm->mutex);
2651}
2652
2653static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw,
2654 struct ieee80211_chanctx_conf *ctx,
2655 u32 changed)
2656{
2657 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002658 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2659 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002660
Ilan Peer31d385a2013-04-02 10:25:46 +03002661 if (WARN_ONCE((phy_ctxt->ref > 1) &&
2662 (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH |
2663 IEEE80211_CHANCTX_CHANGE_RX_CHAINS |
Arik Nemtsov2dceeda2013-12-29 17:57:53 +02002664 IEEE80211_CHANCTX_CHANGE_RADAR |
2665 IEEE80211_CHANCTX_CHANGE_MIN_WIDTH)),
Ilan Peer31d385a2013-04-02 10:25:46 +03002666 "Cannot change PHY. Ref=%d, changed=0x%X\n",
2667 phy_ctxt->ref, changed))
2668 return;
2669
Johannes Berg8ca151b2013-01-24 14:25:36 +01002670 mutex_lock(&mvm->mutex);
Emmanuel Grumbach4d664492014-04-30 18:09:59 +03002671 iwl_mvm_bt_coex_vif_change(mvm);
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002672 iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002673 ctx->rx_chains_static,
2674 ctx->rx_chains_dynamic);
2675 mutex_unlock(&mvm->mutex);
2676}
2677
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002678static int __iwl_mvm_assign_vif_chanctx(struct iwl_mvm *mvm,
2679 struct ieee80211_vif *vif,
Luciano Coelhof0c97782014-03-05 15:41:48 +02002680 struct ieee80211_chanctx_conf *ctx,
2681 bool switching_chanctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002682{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002683 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2684 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002685 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2686 int ret;
2687
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002688 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002689
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002690 mvmvif->phy_ctxt = phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002691
2692 switch (vif->type) {
2693 case NL80211_IFTYPE_AP:
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002694 /* Unless it's a CSA flow we have nothing to do here */
2695 if (vif->csa_active) {
2696 mvmvif->ap_ibss_active = true;
2697 break;
2698 }
Johannes Berg5023d962013-07-31 14:07:43 +02002699 case NL80211_IFTYPE_ADHOC:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002700 /*
2701 * The AP binding flow is handled as part of the start_ap flow
Johannes Berg5023d962013-07-31 14:07:43 +02002702 * (in bss_info_changed), similarly for IBSS.
Johannes Berg8ca151b2013-01-24 14:25:36 +01002703 */
2704 ret = 0;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002705 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002706 case NL80211_IFTYPE_STATION:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002707 case NL80211_IFTYPE_MONITOR:
2708 break;
2709 default:
2710 ret = -EINVAL;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002711 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002712 }
2713
2714 ret = iwl_mvm_binding_add_vif(mvm, vif);
2715 if (ret)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002716 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002717
2718 /*
Alexander Bondar92d85562013-10-23 11:50:34 +02002719 * Power state must be updated before quotas,
2720 * otherwise fw will complain.
2721 */
Arik Nemtsov999609f2014-05-15 17:31:51 +03002722 iwl_mvm_power_update_mac(mvm);
Alexander Bondar92d85562013-10-23 11:50:34 +02002723
2724 /* Setting the quota at this stage is only required for monitor
Johannes Berg8ca151b2013-01-24 14:25:36 +01002725 * interfaces. For the other types, the bss_info changed flow
2726 * will handle quota settings.
2727 */
2728 if (vif->type == NL80211_IFTYPE_MONITOR) {
Ilan Peer1e1391c2013-03-13 14:52:04 +02002729 mvmvif->monitor_active = true;
Johannes Berg01662302014-06-06 15:18:45 +02002730 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002731 if (ret)
2732 goto out_remove_binding;
2733 }
2734
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002735 /* Handle binding during CSA */
Luciano Coelhof0c97782014-03-05 15:41:48 +02002736 if ((vif->type == NL80211_IFTYPE_AP) ||
2737 (switching_chanctx && (vif->type == NL80211_IFTYPE_STATION))) {
Johannes Berg01662302014-06-06 15:18:45 +02002738 iwl_mvm_update_quotas(mvm, NULL);
Luciano Coelhobca49d92014-05-13 17:33:38 +03002739 iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002740 }
2741
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002742 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002743
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002744out_remove_binding:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002745 iwl_mvm_binding_remove_vif(mvm, vif);
Arik Nemtsov999609f2014-05-15 17:31:51 +03002746 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002747out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002748 if (ret)
2749 mvmvif->phy_ctxt = NULL;
2750 return ret;
2751}
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002752static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw,
2753 struct ieee80211_vif *vif,
2754 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002755{
2756 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002757 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002758
2759 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002760 ret = __iwl_mvm_assign_vif_chanctx(mvm, vif, ctx, false);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002761 mutex_unlock(&mvm->mutex);
2762
2763 return ret;
2764}
2765
2766static void __iwl_mvm_unassign_vif_chanctx(struct iwl_mvm *mvm,
2767 struct ieee80211_vif *vif,
Luciano Coelhof0c97782014-03-05 15:41:48 +02002768 struct ieee80211_chanctx_conf *ctx,
2769 bool switching_chanctx)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002770{
2771 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002772 struct ieee80211_vif *disabled_vif = NULL;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002773
2774 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002775
2776 iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data);
2777
Johannes Berg8ca151b2013-01-24 14:25:36 +01002778 switch (vif->type) {
Johannes Berg5023d962013-07-31 14:07:43 +02002779 case NL80211_IFTYPE_ADHOC:
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002780 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002781 case NL80211_IFTYPE_MONITOR:
Ilan Peer1e1391c2013-03-13 14:52:04 +02002782 mvmvif->monitor_active = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002783 break;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002784 case NL80211_IFTYPE_AP:
2785 /* This part is triggered only during CSA */
2786 if (!vif->csa_active || !mvmvif->ap_ibss_active)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002787 goto out;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002788
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03002789 /* Set CS bit on all the stations */
2790 iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, true);
2791
2792 /* Save blocked iface, the timeout is set on the next beacon */
2793 rcu_assign_pointer(mvm->csa_tx_blocked_vif, vif);
2794
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002795 mvmvif->ap_ibss_active = false;
Luciano Coelhof0c97782014-03-05 15:41:48 +02002796 break;
2797 case NL80211_IFTYPE_STATION:
2798 if (!switching_chanctx)
2799 break;
2800
2801 disabled_vif = vif;
2802
2803 iwl_mvm_mac_ctxt_changed(mvm, vif, true);
2804 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002805 default:
2806 break;
2807 }
2808
Luciano Coelhof0c97782014-03-05 15:41:48 +02002809 iwl_mvm_update_quotas(mvm, disabled_vif);
Ilan Peer1e1391c2013-03-13 14:52:04 +02002810 iwl_mvm_binding_remove_vif(mvm, vif);
Alexander Bondar1c2abf72013-08-27 20:31:48 +03002811
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002812out:
Ilan Peera11e1442013-12-31 21:19:55 +02002813 mvmvif->phy_ctxt = NULL;
Arik Nemtsov999609f2014-05-15 17:31:51 +03002814 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002815}
2816
2817static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw,
2818 struct ieee80211_vif *vif,
2819 struct ieee80211_chanctx_conf *ctx)
2820{
2821 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2822
2823 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002824 __iwl_mvm_unassign_vif_chanctx(mvm, vif, ctx, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002825 mutex_unlock(&mvm->mutex);
2826}
2827
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002828static int iwl_mvm_switch_vif_chanctx(struct ieee80211_hw *hw,
2829 struct ieee80211_vif_chanctx_switch *vifs,
2830 int n_vifs,
2831 enum ieee80211_chanctx_switch_mode mode)
2832{
2833 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2834 int ret;
2835
2836 /* we only support SWAP_CONTEXTS and with a single-vif right now */
2837 if (mode != CHANCTX_SWMODE_SWAP_CONTEXTS || n_vifs > 1)
2838 return -EOPNOTSUPP;
2839
2840 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002841 __iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002842 __iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx);
2843
2844 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].new_ctx);
2845 if (ret) {
2846 IWL_ERR(mvm, "failed to add new_ctx during channel switch\n");
2847 goto out_reassign;
2848 }
2849
Luciano Coelhof0c97782014-03-05 15:41:48 +02002850 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx,
2851 true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002852 if (ret) {
2853 IWL_ERR(mvm,
2854 "failed to assign new_ctx during channel switch\n");
2855 goto out_remove;
2856 }
2857
Arik Nemtsovf6972672014-06-15 16:03:55 +03002858 /* we don't support TDLS during DCM - can be caused by channel switch */
2859 if (iwl_mvm_phy_ctx_count(mvm) > 1)
2860 iwl_mvm_teardown_tdls_peers(mvm);
2861
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002862 goto out;
2863
2864out_remove:
2865 __iwl_mvm_remove_chanctx(mvm, vifs[0].new_ctx);
2866
2867out_reassign:
2868 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx);
2869 if (ret) {
2870 IWL_ERR(mvm, "failed to add old_ctx back after failure.\n");
2871 goto out_restart;
2872 }
2873
Luciano Coelhof0c97782014-03-05 15:41:48 +02002874 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx,
2875 true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002876 if (ret) {
2877 IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n");
2878 goto out_restart;
2879 }
2880
2881 goto out;
2882
2883out_restart:
2884 /* things keep failing, better restart the hw */
2885 iwl_mvm_nic_restart(mvm, false);
2886
2887out:
2888 mutex_unlock(&mvm->mutex);
2889 return ret;
2890}
2891
Johannes Berg8ca151b2013-01-24 14:25:36 +01002892static int iwl_mvm_set_tim(struct ieee80211_hw *hw,
2893 struct ieee80211_sta *sta,
2894 bool set)
2895{
2896 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2897 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
2898
2899 if (!mvm_sta || !mvm_sta->vif) {
2900 IWL_ERR(mvm, "Station is not associated to a vif\n");
2901 return -EINVAL;
2902 }
2903
2904 return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif);
2905}
2906
David Spinadel507cadf2013-07-31 18:07:21 +03002907#ifdef CONFIG_NL80211_TESTMODE
2908static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = {
2909 [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 },
2910 [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 },
Johannes Bergf6c6ad42013-08-01 14:17:15 +02002911 [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 },
David Spinadel507cadf2013-07-31 18:07:21 +03002912};
2913
2914static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm,
2915 struct ieee80211_vif *vif,
2916 void *data, int len)
2917{
2918 struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1];
2919 int err;
2920 u32 noa_duration;
2921
2922 err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy);
2923 if (err)
2924 return err;
2925
2926 if (!tb[IWL_MVM_TM_ATTR_CMD])
2927 return -EINVAL;
2928
2929 switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) {
2930 case IWL_MVM_TM_CMD_SET_NOA:
2931 if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p ||
2932 !vif->bss_conf.enable_beacon ||
2933 !tb[IWL_MVM_TM_ATTR_NOA_DURATION])
2934 return -EINVAL;
2935
2936 noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]);
2937 if (noa_duration >= vif->bss_conf.beacon_int)
2938 return -EINVAL;
2939
2940 mvm->noa_duration = noa_duration;
2941 mvm->noa_vif = vif;
2942
Johannes Berg01662302014-06-06 15:18:45 +02002943 return iwl_mvm_update_quotas(mvm, NULL);
Johannes Bergf6c6ad42013-08-01 14:17:15 +02002944 case IWL_MVM_TM_CMD_SET_BEACON_FILTER:
2945 /* must be associated client vif - ignore authorized */
2946 if (!vif || vif->type != NL80211_IFTYPE_STATION ||
2947 !vif->bss_conf.assoc || !vif->bss_conf.dtim_period ||
2948 !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])
2949 return -EINVAL;
2950
2951 if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]))
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03002952 return iwl_mvm_enable_beacon_filter(mvm, vif, 0);
2953 return iwl_mvm_disable_beacon_filter(mvm, vif, 0);
David Spinadel507cadf2013-07-31 18:07:21 +03002954 }
2955
2956 return -EOPNOTSUPP;
2957}
2958
2959static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw,
2960 struct ieee80211_vif *vif,
2961 void *data, int len)
2962{
2963 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2964 int err;
2965
2966 mutex_lock(&mvm->mutex);
2967 err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len);
2968 mutex_unlock(&mvm->mutex);
2969
2970 return err;
2971}
2972#endif
2973
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002974static void iwl_mvm_channel_switch_beacon(struct ieee80211_hw *hw,
2975 struct ieee80211_vif *vif,
2976 struct cfg80211_chan_def *chandef)
2977{
2978 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002979 struct ieee80211_vif *csa_vif;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002980
2981 mutex_lock(&mvm->mutex);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002982
2983 csa_vif = rcu_dereference_protected(mvm->csa_vif,
2984 lockdep_is_held(&mvm->mutex));
2985 if (WARN(csa_vif && csa_vif->csa_active,
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002986 "Another CSA is already in progress"))
2987 goto out_unlock;
2988
2989 IWL_DEBUG_MAC80211(mvm, "CSA started to freq %d\n",
2990 chandef->center_freq1);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03002991 rcu_assign_pointer(mvm->csa_vif, vif);
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002992
2993out_unlock:
2994 mutex_unlock(&mvm->mutex);
2995}
2996
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02002997static void iwl_mvm_mac_flush(struct ieee80211_hw *hw,
2998 struct ieee80211_vif *vif, u32 queues, bool drop)
2999{
3000 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3001 struct iwl_mvm_vif *mvmvif;
3002 struct iwl_mvm_sta *mvmsta;
3003
3004 if (!vif || vif->type != NL80211_IFTYPE_STATION)
3005 return;
3006
3007 mutex_lock(&mvm->mutex);
3008 mvmvif = iwl_mvm_vif_from_mac80211(vif);
3009 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, mvmvif->ap_sta_id);
3010
3011 if (WARN_ON_ONCE(!mvmsta))
3012 goto done;
3013
3014 if (drop) {
3015 if (iwl_mvm_flush_tx_path(mvm, mvmsta->tfd_queue_msk, true))
3016 IWL_ERR(mvm, "flush request fail\n");
3017 } else {
3018 iwl_trans_wait_tx_queue_empty(mvm->trans,
3019 mvmsta->tfd_queue_msk);
3020 }
3021done:
3022 mutex_unlock(&mvm->mutex);
3023}
3024
Johannes Berge5209262014-01-20 23:38:59 +01003025const struct ieee80211_ops iwl_mvm_hw_ops = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01003026 .tx = iwl_mvm_mac_tx,
3027 .ampdu_action = iwl_mvm_mac_ampdu_action,
3028 .start = iwl_mvm_mac_start,
3029 .restart_complete = iwl_mvm_mac_restart_complete,
3030 .stop = iwl_mvm_mac_stop,
3031 .add_interface = iwl_mvm_mac_add_interface,
3032 .remove_interface = iwl_mvm_mac_remove_interface,
3033 .config = iwl_mvm_mac_config,
Eliad Pellere59647e2013-11-28 14:08:50 +02003034 .prepare_multicast = iwl_mvm_prepare_multicast,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003035 .configure_filter = iwl_mvm_configure_filter,
3036 .bss_info_changed = iwl_mvm_bss_info_changed,
3037 .hw_scan = iwl_mvm_mac_hw_scan,
3038 .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan,
Johannes Berg1ddbbb02013-12-04 22:39:17 +01003039 .sta_pre_rcu_remove = iwl_mvm_sta_pre_rcu_remove,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003040 .sta_state = iwl_mvm_mac_sta_state,
3041 .sta_notify = iwl_mvm_mac_sta_notify,
3042 .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames,
Johannes Berg3e56ead2013-02-15 22:23:18 +01003043 .release_buffered_frames = iwl_mvm_mac_release_buffered_frames,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003044 .set_rts_threshold = iwl_mvm_mac_set_rts_threshold,
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02003045 .sta_rc_update = iwl_mvm_sta_rc_update,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003046 .conf_tx = iwl_mvm_mac_conf_tx,
3047 .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx,
Arik Nemtsov07ecd892014-05-20 18:16:42 +03003048 .mgd_protect_tdls_discover = iwl_mvm_mac_mgd_protect_tdls_discover,
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003049 .flush = iwl_mvm_mac_flush,
David Spinadel35a000b2013-08-28 09:29:43 +03003050 .sched_scan_start = iwl_mvm_mac_sched_scan_start,
3051 .sched_scan_stop = iwl_mvm_mac_sched_scan_stop,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003052 .set_key = iwl_mvm_mac_set_key,
3053 .update_tkip_key = iwl_mvm_mac_update_tkip_key,
3054 .remain_on_channel = iwl_mvm_roc,
3055 .cancel_remain_on_channel = iwl_mvm_cancel_roc,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003056 .add_chanctx = iwl_mvm_add_chanctx,
3057 .remove_chanctx = iwl_mvm_remove_chanctx,
3058 .change_chanctx = iwl_mvm_change_chanctx,
3059 .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx,
3060 .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx,
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003061 .switch_vif_chanctx = iwl_mvm_switch_vif_chanctx,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003062
Johannes Berg5023d962013-07-31 14:07:43 +02003063 .start_ap = iwl_mvm_start_ap_ibss,
3064 .stop_ap = iwl_mvm_stop_ap_ibss,
3065 .join_ibss = iwl_mvm_start_ap_ibss,
3066 .leave_ibss = iwl_mvm_stop_ap_ibss,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003067
3068 .set_tim = iwl_mvm_set_tim,
3069
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003070 .channel_switch_beacon = iwl_mvm_channel_switch_beacon,
3071
David Spinadel507cadf2013-07-31 18:07:21 +03003072 CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd)
3073
Johannes Berg8ca151b2013-01-24 14:25:36 +01003074#ifdef CONFIG_PM_SLEEP
3075 /* look at d3.c */
3076 .suspend = iwl_mvm_suspend,
3077 .resume = iwl_mvm_resume,
3078 .set_wakeup = iwl_mvm_set_wakeup,
3079 .set_rekey_data = iwl_mvm_set_rekey_data,
3080#if IS_ENABLED(CONFIG_IPV6)
3081 .ipv6_addr_change = iwl_mvm_ipv6_addr_change,
3082#endif
3083 .set_default_unicast_key = iwl_mvm_set_default_unicast_key,
3084#endif
3085};