blob: 24cc569573397716f793aee38977fc0d7e809eb1 [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);
214 WARN_ON(test_and_set_bit(ref_type, mvm->ref_bitmap));
215 iwl_trans_ref(mvm->trans);
216}
217
218void iwl_mvm_unref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
219{
Eliad Peller7bb426e2014-02-24 12:54:37 +0200220 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200221 return;
222
223 IWL_DEBUG_RPM(mvm, "Leave mvm reference - type %d\n", ref_type);
224 WARN_ON(!test_and_clear_bit(ref_type, mvm->ref_bitmap));
225 iwl_trans_unref(mvm->trans);
226}
227
228static void
229iwl_mvm_unref_all_except(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref)
230{
231 int i;
232
Eliad Peller7bb426e2014-02-24 12:54:37 +0200233 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200234 return;
235
236 for_each_set_bit(i, mvm->ref_bitmap, IWL_MVM_REF_COUNT) {
237 if (ref == i)
238 continue;
239
240 IWL_DEBUG_RPM(mvm, "Cleanup: remove mvm ref type %d\n", i);
241 clear_bit(i, mvm->ref_bitmap);
242 iwl_trans_unref(mvm->trans);
243 }
244}
245
Gregory Greenmand40fc482014-06-25 14:08:50 +0200246static int iwl_mvm_ref_sync(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
247{
248 iwl_mvm_ref(mvm, ref_type);
249
250 if (!wait_event_timeout(mvm->d0i3_exit_waitq,
251 !test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status),
252 HZ)) {
253 WARN_ON_ONCE(1);
254 iwl_mvm_unref(mvm, ref_type);
255 return -EIO;
256 }
257
258 return 0;
259}
260
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200261static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm)
262{
263 int i;
264
265 memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts));
266 for (i = 0; i < NUM_PHY_CTX; i++) {
267 mvm->phy_ctxts[i].id = i;
268 mvm->phy_ctxts[i].ref = 0;
269 }
270}
271
David Spinadel20f1a5d2013-08-21 09:14:27 +0300272static int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
273{
274 /* we create the 802.11 header and SSID element */
275 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID)
276 return mvm->fw->ucode_capa.max_probe_length - 24 - 2;
277 return mvm->fw->ucode_capa.max_probe_length - 24 - 34;
278}
279
Johannes Berg8ca151b2013-01-24 14:25:36 +0100280int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
281{
282 struct ieee80211_hw *hw = mvm->hw;
Ilan Peer831e85f2013-02-07 17:09:09 +0200283 int num_mac, ret, i;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100284
285 /* Tell mac80211 our characteristics */
286 hw->flags = IEEE80211_HW_SIGNAL_DBM |
287 IEEE80211_HW_SPECTRUM_MGMT |
288 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
289 IEEE80211_HW_QUEUE_CONTROL |
290 IEEE80211_HW_WANT_MONITOR_VIF |
Johannes Berg8ca151b2013-01-24 14:25:36 +0100291 IEEE80211_HW_SUPPORTS_PS |
292 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
Johannes Bergd2931bb2013-02-05 18:10:04 +0100293 IEEE80211_HW_AMPDU_AGGREGATION |
Hila Gonend64048e2013-03-13 18:00:03 +0200294 IEEE80211_HW_TIMING_BEACON_ONLY |
Emmanuel Grumbach147fc9b2013-07-28 11:00:52 +0300295 IEEE80211_HW_CONNECTION_MONITOR |
296 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
Alexander Bondare8e626a2013-10-16 00:21:34 +0200297 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100298
Eytan Lifshitz19e737c2013-09-09 13:30:15 +0200299 hw->queues = mvm->first_agg_queue;
Ilan Peer398e8c62013-03-13 15:20:35 +0200300 hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE;
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200301 hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FEC |
302 IEEE80211_RADIOTAP_MCS_HAVE_STBC;
303 hw->radiotap_vht_details |= IEEE80211_RADIOTAP_VHT_KNOWN_STBC;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100304 hw->rate_control_algorithm = "iwl-mvm-rs";
305
306 /*
307 * Enable 11w if advertised by firmware and software crypto
308 * is not enabled (as the firmware will interpret some mgmt
309 * packets, so enabling it with software crypto isn't safe)
310 */
311 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP &&
312 !iwlwifi_mod_params.sw_crypto)
313 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
314
Matt Chen1504f482014-04-24 18:43:18 +0800315 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT &&
316 IWL_UCODE_API(mvm->fw->ucode_ver) >= 9 &&
317 !iwlwifi_mod_params.uapsd_disable) {
318 hw->flags |= IEEE80211_HW_SUPPORTS_UAPSD;
319 hw->uapsd_queues = IWL_UAPSD_AC_INFO;
320 hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP;
321 }
Alexander Bondare8e626a2013-10-16 00:21:34 +0200322
Arik Nemtsova42c9fc2014-05-08 16:17:31 +0300323 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT &&
324 !iwlwifi_mod_params.uapsd_disable) {
325 hw->flags |= IEEE80211_HW_SUPPORTS_UAPSD;
326 hw->uapsd_queues = IWL_UAPSD_AC_INFO;
327 hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP;
328 }
329
David Spinadelfb98be52014-05-04 12:51:10 +0300330 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
331 hw->flags |= IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS;
332
Johannes Berg8ca151b2013-01-24 14:25:36 +0100333 hw->sta_data_size = sizeof(struct iwl_mvm_sta);
334 hw->vif_data_size = sizeof(struct iwl_mvm_vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200335 hw->chanctx_data_size = sizeof(u16);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100336
337 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +0200338 BIT(NL80211_IFTYPE_P2P_CLIENT) |
339 BIT(NL80211_IFTYPE_AP) |
340 BIT(NL80211_IFTYPE_P2P_GO) |
Emmanuel Grumbachc13b1722014-03-27 19:12:12 +0200341 BIT(NL80211_IFTYPE_P2P_DEVICE) |
342 BIT(NL80211_IFTYPE_ADHOC);
Johannes Berg5023d962013-07-31 14:07:43 +0200343
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +0100344 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
345 hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
346 REGULATORY_DISABLE_BEACON_HINTS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100347
Johannes Berg3e56ead2013-02-15 22:23:18 +0100348 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_GO_UAPSD)
349 hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
350
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +0200351 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_CSA_FLOW)
352 hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH;
353
Johannes Berg8ca151b2013-01-24 14:25:36 +0100354 hw->wiphy->iface_combinations = iwl_mvm_iface_combinations;
355 hw->wiphy->n_iface_combinations =
356 ARRAY_SIZE(iwl_mvm_iface_combinations);
357
Ilan Peerc451e6d2013-02-20 08:41:54 +0200358 hw->wiphy->max_remain_on_channel_duration = 10000;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100359 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
360
361 /* Extract MAC address */
362 memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN);
363 hw->wiphy->addresses = mvm->addresses;
364 hw->wiphy->n_addresses = 1;
Ilan Peer831e85f2013-02-07 17:09:09 +0200365
366 /* Extract additional MAC addresses if available */
367 num_mac = (mvm->nvm_data->n_hw_addrs > 1) ?
368 min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1;
369
370 for (i = 1; i < num_mac; i++) {
371 memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100372 ETH_ALEN);
Ilan Peer831e85f2013-02-07 17:09:09 +0200373 mvm->addresses[i].addr[5]++;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100374 hw->wiphy->n_addresses++;
375 }
376
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200377 iwl_mvm_reset_phy_ctxts(mvm);
378
David Spinadel20f1a5d2013-08-21 09:14:27 +0300379 hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm);
380
Johannes Berg8ca151b2013-01-24 14:25:36 +0100381 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
382
383 if (mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels)
384 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
385 &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
386 if (mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels)
387 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
388 &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
389
390 hw->wiphy->hw_version = mvm->trans->hw_id;
391
Alexander Bondarade50652013-04-03 16:28:47 +0300392 if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100393 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
394 else
395 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
396
Emmanuel Grumbach536a3ee2014-03-30 09:11:44 +0300397 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
398 hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX;
399 hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES;
400 /* we create the 802.11 header and zero length SSID IE. */
401 hw->wiphy->max_sched_scan_ie_len = SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2;
David Spinadel35a000b2013-08-28 09:29:43 +0300402
Johannes Berg8ca151b2013-01-24 14:25:36 +0100403 hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN |
Johannes Bergab480032014-06-04 10:13:50 +0200404 NL80211_FEATURE_LOW_PRIORITY_SCAN |
Alexander Bondar8a110d92014-03-12 17:31:19 +0200405 NL80211_FEATURE_P2P_GO_OPPPS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100406
407 mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
408
Max Stepanove36e5432013-08-27 19:56:13 +0300409 /* currently FW API supports only one optional cipher scheme */
Johannes Berg9ddca862014-01-06 09:29:40 +0100410 if (mvm->fw->cs[0].cipher) {
Max Stepanove36e5432013-08-27 19:56:13 +0300411 mvm->hw->n_cipher_schemes = 1;
Johannes Berg9ddca862014-01-06 09:29:40 +0100412 mvm->hw->cipher_schemes = &mvm->fw->cs[0];
Max Stepanove36e5432013-08-27 19:56:13 +0300413 }
414
Johannes Berg8ca151b2013-01-24 14:25:36 +0100415#ifdef CONFIG_PM_SLEEP
Eliad Pellerd15a7472014-03-27 18:53:12 +0200416 if (iwl_mvm_is_d0i3_supported(mvm) &&
417 device_can_wakeup(mvm->trans->dev)) {
418 mvm->wowlan.flags = WIPHY_WOWLAN_ANY;
419 hw->wiphy->wowlan = &mvm->wowlan;
420 } else if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100421 mvm->trans->ops->d3_suspend &&
422 mvm->trans->ops->d3_resume &&
423 device_can_wakeup(mvm->trans->dev)) {
Johannes Berg964dc9e2013-06-03 17:25:34 +0200424 mvm->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
425 WIPHY_WOWLAN_DISCONNECT |
426 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
427 WIPHY_WOWLAN_RFKILL_RELEASE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100428 if (!iwlwifi_mod_params.sw_crypto)
Johannes Berg964dc9e2013-06-03 17:25:34 +0200429 mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
430 WIPHY_WOWLAN_GTK_REKEY_FAILURE |
431 WIPHY_WOWLAN_4WAY_HANDSHAKE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100432
Johannes Berg964dc9e2013-06-03 17:25:34 +0200433 mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS;
434 mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN;
435 mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN;
436 mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support;
437 hw->wiphy->wowlan = &mvm->wowlan;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100438 }
439#endif
440
Eliad Peller77736922014-01-14 12:35:49 +0200441#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
442 /* assign default bcast filtering configuration */
443 mvm->bcast_filters = iwl_mvm_default_bcast_filters;
444#endif
445
Johannes Berg8ca151b2013-01-24 14:25:36 +0100446 ret = iwl_mvm_leds_init(mvm);
447 if (ret)
448 return ret;
449
Emmanuel Grumbachb7327d82013-06-24 15:44:03 +0300450 ret = ieee80211_register_hw(mvm->hw);
451 if (ret)
452 iwl_mvm_leds_exit(mvm);
453
454 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100455}
456
Arik Nemtsovb2492502014-03-13 12:21:50 +0200457static bool iwl_mvm_defer_tx(struct iwl_mvm *mvm,
458 struct ieee80211_sta *sta,
459 struct sk_buff *skb)
460{
461 struct iwl_mvm_sta *mvmsta;
462 bool defer = false;
463
464 /*
465 * double check the IN_D0I3 flag both before and after
466 * taking the spinlock, in order to prevent taking
467 * the spinlock when not needed.
468 */
469 if (likely(!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)))
470 return false;
471
472 spin_lock(&mvm->d0i3_tx_lock);
473 /*
474 * testing the flag again ensures the skb dequeue
475 * loop (on d0i3 exit) hasn't run yet.
476 */
477 if (!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status))
478 goto out;
479
480 mvmsta = iwl_mvm_sta_from_mac80211(sta);
481 if (mvmsta->sta_id == IWL_MVM_STATION_COUNT ||
482 mvmsta->sta_id != mvm->d0i3_ap_sta_id)
483 goto out;
484
485 __skb_queue_tail(&mvm->d0i3_tx, skb);
486 ieee80211_stop_queues(mvm->hw);
487
488 /* trigger wakeup */
489 iwl_mvm_ref(mvm, IWL_MVM_REF_TX);
490 iwl_mvm_unref(mvm, IWL_MVM_REF_TX);
491
492 defer = true;
493out:
494 spin_unlock(&mvm->d0i3_tx_lock);
495 return defer;
496}
497
Johannes Berg8ca151b2013-01-24 14:25:36 +0100498static void iwl_mvm_mac_tx(struct ieee80211_hw *hw,
499 struct ieee80211_tx_control *control,
500 struct sk_buff *skb)
501{
502 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg3e56ead2013-02-15 22:23:18 +0100503 struct ieee80211_sta *sta = control->sta;
504 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
505 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100506
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300507 if (iwl_mvm_is_radio_killed(mvm)) {
508 IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100509 goto drop;
510 }
511
Ilan Peer398e8c62013-03-13 15:20:35 +0200512 if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100513 !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status))
514 goto drop;
515
Johannes Berg3e56ead2013-02-15 22:23:18 +0100516 /* treat non-bufferable MMPDUs as broadcast if sta is sleeping */
517 if (unlikely(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER &&
518 ieee80211_is_mgmt(hdr->frame_control) &&
519 !ieee80211_is_deauth(hdr->frame_control) &&
520 !ieee80211_is_disassoc(hdr->frame_control) &&
521 !ieee80211_is_action(hdr->frame_control)))
522 sta = NULL;
523
524 if (sta) {
Arik Nemtsovb2492502014-03-13 12:21:50 +0200525 if (iwl_mvm_defer_tx(mvm, sta, skb))
526 return;
Johannes Berg3e56ead2013-02-15 22:23:18 +0100527 if (iwl_mvm_tx_skb(mvm, skb, sta))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100528 goto drop;
529 return;
530 }
531
532 if (iwl_mvm_tx_skb_non_sta(mvm, skb))
533 goto drop;
534 return;
535 drop:
536 ieee80211_free_txskb(hw, skb);
537}
538
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200539static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg)
540{
541 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
542 return false;
543 return true;
544}
545
546static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg)
547{
548 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
549 return false;
550 if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG)
551 return true;
552
553 /* enabled by default */
554 return true;
555}
556
Johannes Berg8ca151b2013-01-24 14:25:36 +0100557static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw,
558 struct ieee80211_vif *vif,
559 enum ieee80211_ampdu_mlme_action action,
560 struct ieee80211_sta *sta, u16 tid,
561 u16 *ssn, u8 buf_size)
562{
563 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
564 int ret;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200565 bool tx_agg_ref = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100566
567 IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n",
568 sta->addr, tid, action);
569
570 if (!(mvm->nvm_data->sku_cap_11n_enable))
571 return -EACCES;
572
Arik Nemtsovb2492502014-03-13 12:21:50 +0200573 /* return from D0i3 before starting a new Tx aggregation */
Eliad Peller9256c202014-04-22 13:33:29 +0300574 switch (action) {
575 case IEEE80211_AMPDU_TX_START:
576 case IEEE80211_AMPDU_TX_STOP_CONT:
577 case IEEE80211_AMPDU_TX_STOP_FLUSH:
578 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
579 case IEEE80211_AMPDU_TX_OPERATIONAL:
Arik Nemtsovb2492502014-03-13 12:21:50 +0200580 /*
Eliad Peller9256c202014-04-22 13:33:29 +0300581 * for tx start, wait synchronously until D0i3 exit to
582 * get the correct sequence number for the tid.
583 * additionally, some other ampdu actions use direct
584 * target access, which is not handled automatically
585 * by the trans layer (unlike commands), so wait for
586 * d0i3 exit in these cases as well.
Arik Nemtsovb2492502014-03-13 12:21:50 +0200587 */
Gregory Greenmand40fc482014-06-25 14:08:50 +0200588 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_TX_AGG);
589 if (ret)
590 return ret;
591
592 tx_agg_ref = true;
Eliad Peller9256c202014-04-22 13:33:29 +0300593 break;
594 default:
595 break;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200596 }
597
Johannes Berg8ca151b2013-01-24 14:25:36 +0100598 mutex_lock(&mvm->mutex);
599
600 switch (action) {
601 case IEEE80211_AMPDU_RX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200602 if (!iwl_enable_rx_ampdu(mvm->cfg)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100603 ret = -EINVAL;
604 break;
605 }
606 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true);
607 break;
608 case IEEE80211_AMPDU_RX_STOP:
609 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false);
610 break;
611 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200612 if (!iwl_enable_tx_ampdu(mvm->cfg)) {
Emmanuel Grumbach5d158ef2013-02-19 14:39:58 +0200613 ret = -EINVAL;
614 break;
615 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100616 ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn);
617 break;
618 case IEEE80211_AMPDU_TX_STOP_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200619 ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid);
620 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100621 case IEEE80211_AMPDU_TX_STOP_FLUSH:
622 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200623 ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100624 break;
625 case IEEE80211_AMPDU_TX_OPERATIONAL:
626 ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size);
627 break;
628 default:
629 WARN_ON_ONCE(1);
630 ret = -EINVAL;
631 break;
632 }
633 mutex_unlock(&mvm->mutex);
634
Arik Nemtsovb2492502014-03-13 12:21:50 +0200635 /*
636 * If the tid is marked as started, we won't use it for offloaded
637 * traffic on the next D0i3 entry. It's safe to unref.
638 */
639 if (tx_agg_ref)
640 iwl_mvm_unref(mvm, IWL_MVM_REF_TX_AGG);
641
Johannes Berg8ca151b2013-01-24 14:25:36 +0100642 return ret;
643}
644
645static void iwl_mvm_cleanup_iterator(void *data, u8 *mac,
646 struct ieee80211_vif *vif)
647{
648 struct iwl_mvm *mvm = data;
649 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
650
651 mvmvif->uploaded = false;
652 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
653
654 /* does this make sense at all? */
655 mvmvif->color++;
656
657 spin_lock_bh(&mvm->time_event_lock);
658 iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data);
659 spin_unlock_bh(&mvm->time_event_lock);
660
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200661 mvmvif->phy_ctxt = NULL;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100662}
663
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300664#ifdef CONFIG_IWLWIFI_DEBUGFS
665static void iwl_mvm_fw_error_dump(struct iwl_mvm *mvm)
666{
667 struct iwl_fw_error_dump_file *dump_file;
668 struct iwl_fw_error_dump_data *dump_data;
669 struct iwl_fw_error_dump_info *dump_info;
670 const struct fw_img *img;
671 u32 sram_len, sram_ofs;
672 u32 file_len, rxf_len;
673 unsigned long flags;
674 u32 trans_len;
675 int reg_val;
676
677 lockdep_assert_held(&mvm->mutex);
678
679 if (mvm->fw_error_dump)
680 return;
681
682 img = &mvm->fw->img[mvm->cur_ucode];
683 sram_ofs = img->sec[IWL_UCODE_SECTION_DATA].offset;
684 sram_len = img->sec[IWL_UCODE_SECTION_DATA].len;
685
686 /* reading buffer size */
687 reg_val = iwl_trans_read_prph(mvm->trans, RXF_SIZE_ADDR);
688 rxf_len = (reg_val & RXF_SIZE_BYTE_CNT_MSK) >> RXF_SIZE_BYTE_CND_POS;
689
690 /* the register holds the value divided by 128 */
691 rxf_len = rxf_len << 7;
692
693 file_len = sizeof(*dump_file) +
694 sizeof(*dump_data) * 3 +
695 sram_len +
696 rxf_len +
697 sizeof(*dump_info);
698
699 trans_len = iwl_trans_dump_data(mvm->trans, NULL, 0);
700 if (trans_len)
701 file_len += trans_len;
702
Emmanuel Grumbach5bfe6f52014-06-25 16:21:43 +0300703 dump_file = vzalloc(file_len);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300704 if (!dump_file)
705 return;
706
707 mvm->fw_error_dump = dump_file;
708
709 dump_file->barker = cpu_to_le32(IWL_FW_ERROR_DUMP_BARKER);
710 dump_file->file_len = cpu_to_le32(file_len);
711 dump_data = (void *)dump_file->data;
712
713 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_DEV_FW_INFO);
714 dump_data->len = cpu_to_le32(sizeof(*dump_info));
715 dump_info = (void *) dump_data->data;
716 dump_info->device_family =
717 mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000 ?
718 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_7) :
719 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_8);
720 memcpy(dump_info->fw_human_readable, mvm->fw->human_readable,
721 sizeof(dump_info->fw_human_readable));
722 strncpy(dump_info->dev_human_readable, mvm->cfg->name,
723 sizeof(dump_info->dev_human_readable));
724 strncpy(dump_info->bus_human_readable, mvm->dev->bus->name,
725 sizeof(dump_info->bus_human_readable));
726
727 dump_data = iwl_fw_error_next_data(dump_data);
728 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RXF);
729 dump_data->len = cpu_to_le32(rxf_len);
730
731 if (iwl_trans_grab_nic_access(mvm->trans, false, &flags)) {
732 u32 *rxf = (void *)dump_data->data;
733 int i;
734
735 for (i = 0; i < (rxf_len / sizeof(u32)); i++) {
736 iwl_trans_write_prph(mvm->trans,
737 RXF_LD_FENCE_OFFSET_ADDR,
738 i * sizeof(u32));
739 rxf[i] = iwl_trans_read_prph(mvm->trans,
740 RXF_FIFO_RD_FENCE_ADDR);
741 }
742 iwl_trans_release_nic_access(mvm->trans, &flags);
743 }
744
745 dump_data = iwl_fw_error_next_data(dump_data);
746 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_SRAM);
747 dump_data->len = cpu_to_le32(sram_len);
748 iwl_trans_read_mem_bytes(mvm->trans, sram_ofs, dump_data->data,
749 sram_len);
750
751 if (trans_len) {
752 void *buf = iwl_fw_error_next_data(dump_data);
753 u32 real_trans_len = iwl_trans_dump_data(mvm->trans, buf,
754 trans_len);
755 dump_data = (void *)((u8 *)buf + real_trans_len);
756 dump_file->file_len =
757 cpu_to_le32(file_len - trans_len + real_trans_len);
758 }
759}
760#endif
761
Johannes Berg8ca151b2013-01-24 14:25:36 +0100762static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm)
763{
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200764#ifdef CONFIG_IWLWIFI_DEBUGFS
765 static char *env[] = { "DRIVER=iwlwifi", "EVENT=error_dump", NULL };
766
767 iwl_mvm_fw_error_dump(mvm);
768
769 /* notify the userspace about the error we had */
770 kobject_uevent_env(&mvm->hw->wiphy->dev.kobj, KOBJ_CHANGE, env);
771#endif
772
Johannes Berg8ca151b2013-01-24 14:25:36 +0100773 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100774
775 mvm->scan_status = IWL_MVM_SCAN_NONE;
776
777 /* just in case one was running */
778 ieee80211_remain_on_channel_expired(mvm->hw);
779
780 ieee80211_iterate_active_interfaces_atomic(
781 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
782 iwl_mvm_cleanup_iterator, mvm);
783
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200784 mvm->p2p_device_vif = NULL;
Eliad Peller37577fe2013-12-05 17:19:39 +0200785 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200786
787 iwl_mvm_reset_phy_ctxts(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100788 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
789 memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained));
790
791 ieee80211_wake_queues(mvm->hw);
792
Eliad Peller7498cf42014-01-16 17:10:44 +0200793 /* cleanup all stale references (scan, roc), but keep the
794 * ucode_down ref until reconfig is complete */
795 iwl_mvm_unref_all_except(mvm, IWL_MVM_REF_UCODE_DOWN);
796
Johannes Berg8ca151b2013-01-24 14:25:36 +0100797 mvm->vif_count = 0;
Emmanuel Grumbach113a0442013-07-02 14:16:38 +0300798 mvm->rx_ba_sessions = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100799}
800
801static int iwl_mvm_mac_start(struct ieee80211_hw *hw)
802{
803 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
804 int ret;
805
806 mutex_lock(&mvm->mutex);
807
808 /* Clean up some internal and mac80211 state on restart */
809 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
810 iwl_mvm_restart_cleanup(mvm);
811
812 ret = iwl_mvm_up(mvm);
Johannes Bergc47af222014-04-30 16:34:45 +0200813
814 if (ret && test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
815 /* Something went wrong - we need to finish some cleanup
816 * that normally iwl_mvm_mac_restart_complete() below
817 * would do.
818 */
819 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
820 iwl_mvm_d0i3_enable_tx(mvm, NULL);
821 }
822
Johannes Berg8ca151b2013-01-24 14:25:36 +0100823 mutex_unlock(&mvm->mutex);
824
825 return ret;
826}
827
828static void iwl_mvm_mac_restart_complete(struct ieee80211_hw *hw)
829{
830 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
831 int ret;
832
833 mutex_lock(&mvm->mutex);
834
835 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
Arik Nemtsovb2492502014-03-13 12:21:50 +0200836 iwl_mvm_d0i3_enable_tx(mvm, NULL);
Johannes Berg01662302014-06-06 15:18:45 +0200837 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100838 if (ret)
839 IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n",
840 ret);
841
Eliad Peller7498cf42014-01-16 17:10:44 +0200842 /* allow transport/FW low power modes */
843 iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN);
844
Johannes Berg8ca151b2013-01-24 14:25:36 +0100845 mutex_unlock(&mvm->mutex);
846}
847
848static void iwl_mvm_mac_stop(struct ieee80211_hw *hw)
849{
850 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
851
Eliad Peller37577fe2013-12-05 17:19:39 +0200852 flush_work(&mvm->d0i3_exit_work);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100853 flush_work(&mvm->async_handlers_wk);
854
855 mutex_lock(&mvm->mutex);
Eliad Peller7498cf42014-01-16 17:10:44 +0200856
857 /* disallow low power states when the FW is down */
858 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
859
Johannes Berg8ca151b2013-01-24 14:25:36 +0100860 /* async_handlers_wk is now blocked */
861
862 /*
863 * The work item could be running or queued if the
864 * ROC time event stops just as we get here.
865 */
866 cancel_work_sync(&mvm->roc_done_wk);
867
868 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100869
870 iwl_mvm_async_handlers_purge(mvm);
871 /* async_handlers_list is empty and will stay empty: HW is stopped */
872
873 /* the fw is stopped, the aux sta is dead: clean up driver state */
874 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
875
876 mutex_unlock(&mvm->mutex);
877
878 /*
879 * The worker might have been waiting for the mutex, let it run and
880 * discover that its list is now empty.
881 */
882 cancel_work_sync(&mvm->async_handlers_wk);
883}
884
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200885static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm)
886{
887 u16 i;
888
889 lockdep_assert_held(&mvm->mutex);
890
891 for (i = 0; i < NUM_PHY_CTX; i++)
892 if (!mvm->phy_ctxts[i].ref)
893 return &mvm->phy_ctxts[i];
894
895 IWL_ERR(mvm, "No available PHY context\n");
896 return NULL;
897}
898
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200899static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
900 s8 tx_power)
901{
902 /* FW is in charge of regulatory enforcement */
903 struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = {
904 .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id,
905 .pwr_restriction = cpu_to_le16(tx_power),
906 };
907
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300908 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0,
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200909 sizeof(reduce_txpwr_cmd),
910 &reduce_txpwr_cmd);
911}
912
Johannes Berg8ca151b2013-01-24 14:25:36 +0100913static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
914 struct ieee80211_vif *vif)
915{
916 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
917 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
918 int ret;
919
920 /*
Gregory Greenmand40fc482014-06-25 14:08:50 +0200921 * make sure D0i3 exit is completed, otherwise a target access
922 * during tx queue configuration could be done when still in
923 * D0i3 state.
924 */
925 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_ADD_IF);
926 if (ret)
927 return ret;
928
929 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100930 * Not much to do here. The stack will not allow interface
931 * types or combinations that we didn't advertise, so we
932 * don't really have to check the types.
933 */
934
935 mutex_lock(&mvm->mutex);
936
Eliad Pellere89044d2013-07-16 17:33:26 +0300937 /* Allocate resources for the MAC context, and add it to the fw */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100938 ret = iwl_mvm_mac_ctxt_init(mvm, vif);
939 if (ret)
940 goto out_unlock;
941
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300942 /* Counting number of interfaces is needed for legacy PM */
Ilan Peerea183d02013-07-23 14:41:53 +0300943 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
944 mvm->vif_count++;
Ilan Peerea183d02013-07-23 14:41:53 +0300945
946 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100947 * The AP binding flow can be done only after the beacon
948 * template is configured (which happens only in the mac80211
949 * start_ap() flow), and adding the broadcast station can happen
950 * only after the binding.
951 * In addition, since modifying the MAC before adding a bcast
952 * station is not allowed by the FW, delay the adding of MAC context to
953 * the point where we can also add the bcast station.
954 * In short: there's not much we can do at this point, other than
955 * allocating resources :)
956 */
Johannes Berg5023d962013-07-31 14:07:43 +0200957 if (vif->type == NL80211_IFTYPE_AP ||
958 vif->type == NL80211_IFTYPE_ADHOC) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100959 u32 qmask = iwl_mvm_mac_get_queues_mask(mvm, vif);
960 ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta,
Eliad Pellerb92e6612014-01-23 17:58:23 +0200961 qmask,
962 ieee80211_vif_type_p2p(vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100963 if (ret) {
964 IWL_ERR(mvm, "Failed to allocate bcast sta\n");
965 goto out_release;
966 }
967
Emmanuel Grumbach77740cb2013-06-26 23:51:41 +0300968 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100969 goto out_unlock;
970 }
971
Johannes Berg8ca151b2013-01-24 14:25:36 +0100972 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
973 if (ret)
974 goto out_release;
975
Arik Nemtsov999609f2014-05-15 17:31:51 +0300976 ret = iwl_mvm_power_update_mac(mvm);
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200977 if (ret)
978 goto out_release;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100979
Hila Gonen7df15b12012-12-12 11:16:19 +0200980 /* beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300981 ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0);
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300982 if (ret)
983 goto out_remove_mac;
984
Hila Gonen7df15b12012-12-12 11:16:19 +0200985 if (!mvm->bf_allowed_vif &&
Emmanuel Grumbach73e5f2c2014-03-30 08:57:30 +0300986 vif->type == NL80211_IFTYPE_STATION && !vif->p2p) {
Hila Gonen7df15b12012-12-12 11:16:19 +0200987 mvm->bf_allowed_vif = mvmvif;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +0300988 vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
989 IEEE80211_VIF_SUPPORTS_CQM_RSSI;
Hila Gonen7df15b12012-12-12 11:16:19 +0200990 }
991
Johannes Berg8ca151b2013-01-24 14:25:36 +0100992 /*
993 * P2P_DEVICE interface does not have a channel context assigned to it,
994 * so a dedicated PHY context is allocated to it and the corresponding
995 * MAC context is bound to it at this stage.
996 */
997 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100998
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200999 mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1000 if (!mvmvif->phy_ctxt) {
1001 ret = -ENOSPC;
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001002 goto out_free_bf;
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001003 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001004
Ilan Peer53a9d612013-04-28 11:55:08 +03001005 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001006 ret = iwl_mvm_binding_add_vif(mvm, vif);
1007 if (ret)
Ilan Peer53a9d612013-04-28 11:55:08 +03001008 goto out_unref_phy;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001009
1010 ret = iwl_mvm_add_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
1011 if (ret)
1012 goto out_unbind;
1013
1014 /* Save a pointer to p2p device vif, so it can later be used to
1015 * update the p2p device MAC when a GO is started/stopped */
1016 mvm->p2p_device_vif = vif;
1017 }
1018
Johannes Berg63494372013-03-26 10:47:53 +01001019 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001020 goto out_unlock;
1021
1022 out_unbind:
1023 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peer53a9d612013-04-28 11:55:08 +03001024 out_unref_phy:
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001025 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001026 out_free_bf:
1027 if (mvm->bf_allowed_vif == mvmvif) {
1028 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001029 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1030 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001031 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001032 out_remove_mac:
1033 mvmvif->phy_ctxt = NULL;
1034 iwl_mvm_mac_ctxt_remove(mvm, vif);
1035 out_release:
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001036 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
1037 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001038
Johannes Berg8ca151b2013-01-24 14:25:36 +01001039 iwl_mvm_mac_ctxt_release(mvm, vif);
1040 out_unlock:
1041 mutex_unlock(&mvm->mutex);
1042
Gregory Greenmand40fc482014-06-25 14:08:50 +02001043 iwl_mvm_unref(mvm, IWL_MVM_REF_ADD_IF);
1044
Johannes Berg8ca151b2013-01-24 14:25:36 +01001045 return ret;
1046}
1047
Johannes Berg38a12b52013-02-22 14:07:56 +01001048static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm,
1049 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001050{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001051 u32 tfd_msk = 0, ac;
1052
1053 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1054 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
1055 tfd_msk |= BIT(vif->hw_queue[ac]);
1056
1057 if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE)
1058 tfd_msk |= BIT(vif->cab_queue);
1059
1060 if (tfd_msk) {
1061 mutex_lock(&mvm->mutex);
1062 iwl_mvm_flush_tx_path(mvm, tfd_msk, true);
1063 mutex_unlock(&mvm->mutex);
1064 }
1065
1066 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1067 /*
1068 * Flush the ROC worker which will flush the OFFCHANNEL queue.
1069 * We assume here that all the packets sent to the OFFCHANNEL
1070 * queue are sent in ROC session.
1071 */
1072 flush_work(&mvm->roc_done_wk);
1073 } else {
1074 /*
1075 * By now, all the AC queues are empty. The AGG queues are
1076 * empty too. We already got all the Tx responses for all the
1077 * packets in the queues. The drain work can have been
Emmanuel Grumbach0742a752013-06-10 14:10:33 +03001078 * triggered. Flush it.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001079 */
1080 flush_work(&mvm->sta_drained_wk);
1081 }
Johannes Berg38a12b52013-02-22 14:07:56 +01001082}
1083
1084static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw,
1085 struct ieee80211_vif *vif)
1086{
1087 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1088 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1089
1090 iwl_mvm_prepare_mac_removal(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001091
1092 mutex_lock(&mvm->mutex);
1093
Hila Gonen7df15b12012-12-12 11:16:19 +02001094 if (mvm->bf_allowed_vif == mvmvif) {
1095 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001096 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1097 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Hila Gonen7df15b12012-12-12 11:16:19 +02001098 }
1099
Johannes Berg63494372013-03-26 10:47:53 +01001100 iwl_mvm_vif_dbgfs_clean(mvm, vif);
1101
Johannes Berg8ca151b2013-01-24 14:25:36 +01001102 /*
1103 * For AP/GO interface, the tear down of the resources allocated to the
Johannes Berg38a12b52013-02-22 14:07:56 +01001104 * interface is be handled as part of the stop_ap flow.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001105 */
Johannes Berg5023d962013-07-31 14:07:43 +02001106 if (vif->type == NL80211_IFTYPE_AP ||
1107 vif->type == NL80211_IFTYPE_ADHOC) {
David Spinadel507cadf2013-07-31 18:07:21 +03001108#ifdef CONFIG_NL80211_TESTMODE
1109 if (vif == mvm->noa_vif) {
1110 mvm->noa_vif = NULL;
1111 mvm->noa_duration = 0;
1112 }
1113#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +01001114 iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta);
1115 goto out_release;
1116 }
1117
1118 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1119 mvm->p2p_device_vif = NULL;
1120 iwl_mvm_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1121 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001122 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001123 mvmvif->phy_ctxt = NULL;
1124 }
1125
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001126 if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001127 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001128
Arik Nemtsov999609f2014-05-15 17:31:51 +03001129 iwl_mvm_power_update_mac(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001130 iwl_mvm_mac_ctxt_remove(mvm, vif);
1131
1132out_release:
1133 iwl_mvm_mac_ctxt_release(mvm, vif);
1134 mutex_unlock(&mvm->mutex);
1135}
1136
1137static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed)
1138{
1139 return 0;
1140}
1141
Eliad Pellere59647e2013-11-28 14:08:50 +02001142struct iwl_mvm_mc_iter_data {
1143 struct iwl_mvm *mvm;
1144 int port_id;
1145};
1146
1147static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac,
1148 struct ieee80211_vif *vif)
1149{
1150 struct iwl_mvm_mc_iter_data *data = _data;
1151 struct iwl_mvm *mvm = data->mvm;
1152 struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd;
1153 int ret, len;
1154
1155 /* if we don't have free ports, mcast frames will be dropped */
1156 if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM))
1157 return;
1158
1159 if (vif->type != NL80211_IFTYPE_STATION ||
1160 !vif->bss_conf.assoc)
1161 return;
1162
1163 cmd->port_id = data->port_id++;
1164 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
1165 len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4);
1166
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001167 ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_ASYNC, len, cmd);
Eliad Pellere59647e2013-11-28 14:08:50 +02001168 if (ret)
1169 IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret);
1170}
1171
1172static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm)
1173{
1174 struct iwl_mvm_mc_iter_data iter_data = {
1175 .mvm = mvm,
1176 };
1177
1178 lockdep_assert_held(&mvm->mutex);
1179
1180 if (WARN_ON_ONCE(!mvm->mcast_filter_cmd))
1181 return;
1182
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001183 ieee80211_iterate_active_interfaces_atomic(
Eliad Pellere59647e2013-11-28 14:08:50 +02001184 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1185 iwl_mvm_mc_iface_iterator, &iter_data);
1186}
1187
1188static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw,
1189 struct netdev_hw_addr_list *mc_list)
1190{
1191 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1192 struct iwl_mcast_filter_cmd *cmd;
1193 struct netdev_hw_addr *addr;
1194 int addr_count = netdev_hw_addr_list_count(mc_list);
1195 bool pass_all = false;
1196 int len;
1197
1198 if (addr_count > MAX_MCAST_FILTERING_ADDRESSES) {
1199 pass_all = true;
1200 addr_count = 0;
1201 }
1202
1203 len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4);
1204 cmd = kzalloc(len, GFP_ATOMIC);
1205 if (!cmd)
1206 return 0;
1207
1208 if (pass_all) {
1209 cmd->pass_all = 1;
1210 return (u64)(unsigned long)cmd;
1211 }
1212
1213 netdev_hw_addr_list_for_each(addr, mc_list) {
1214 IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n",
1215 cmd->count, addr->addr);
1216 memcpy(&cmd->addr_list[cmd->count * ETH_ALEN],
1217 addr->addr, ETH_ALEN);
1218 cmd->count++;
1219 }
1220
1221 return (u64)(unsigned long)cmd;
1222}
1223
Johannes Berg8ca151b2013-01-24 14:25:36 +01001224static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
1225 unsigned int changed_flags,
1226 unsigned int *total_flags,
1227 u64 multicast)
1228{
Eliad Pellere59647e2013-11-28 14:08:50 +02001229 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1230 struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast;
1231
1232 mutex_lock(&mvm->mutex);
1233
1234 /* replace previous configuration */
1235 kfree(mvm->mcast_filter_cmd);
1236 mvm->mcast_filter_cmd = cmd;
1237
1238 if (!cmd)
1239 goto out;
1240
1241 iwl_mvm_recalc_multicast(mvm);
1242out:
1243 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001244 *total_flags = 0;
1245}
1246
Eliad Pellerc87163b2014-01-08 10:11:11 +02001247#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1248struct iwl_bcast_iter_data {
1249 struct iwl_mvm *mvm;
1250 struct iwl_bcast_filter_cmd *cmd;
1251 u8 current_filter;
1252};
1253
1254static void
1255iwl_mvm_set_bcast_filter(struct ieee80211_vif *vif,
1256 const struct iwl_fw_bcast_filter *in_filter,
1257 struct iwl_fw_bcast_filter *out_filter)
1258{
1259 struct iwl_fw_bcast_filter_attr *attr;
1260 int i;
1261
1262 memcpy(out_filter, in_filter, sizeof(*out_filter));
1263
1264 for (i = 0; i < ARRAY_SIZE(out_filter->attrs); i++) {
1265 attr = &out_filter->attrs[i];
1266
1267 if (!attr->mask)
1268 break;
1269
Eliad Peller2ee8f022014-01-13 19:07:09 +02001270 switch (attr->reserved1) {
1271 case cpu_to_le16(BC_FILTER_MAGIC_IP):
1272 if (vif->bss_conf.arp_addr_cnt != 1) {
1273 attr->mask = 0;
1274 continue;
1275 }
1276
1277 attr->val = vif->bss_conf.arp_addr_list[0];
1278 break;
1279 case cpu_to_le16(BC_FILTER_MAGIC_MAC):
1280 attr->val = *(__be32 *)&vif->addr[2];
1281 break;
1282 default:
1283 break;
1284 }
1285 attr->reserved1 = 0;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001286 out_filter->num_attrs++;
1287 }
1288}
1289
1290static void iwl_mvm_bcast_filter_iterator(void *_data, u8 *mac,
1291 struct ieee80211_vif *vif)
1292{
1293 struct iwl_bcast_iter_data *data = _data;
1294 struct iwl_mvm *mvm = data->mvm;
1295 struct iwl_bcast_filter_cmd *cmd = data->cmd;
1296 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1297 struct iwl_fw_bcast_mac *bcast_mac;
1298 int i;
1299
1300 if (WARN_ON(mvmvif->id >= ARRAY_SIZE(cmd->macs)))
1301 return;
1302
1303 bcast_mac = &cmd->macs[mvmvif->id];
1304
Ilan Peere48393e2014-05-22 11:19:02 +03001305 /*
1306 * enable filtering only for associated stations, but not for P2P
1307 * Clients
1308 */
1309 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p ||
1310 !vif->bss_conf.assoc)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001311 return;
1312
1313 bcast_mac->default_discard = 1;
1314
1315 /* copy all configured filters */
1316 for (i = 0; mvm->bcast_filters[i].attrs[0].mask; i++) {
1317 /*
1318 * Make sure we don't exceed our filters limit.
1319 * if there is still a valid filter to be configured,
1320 * be on the safe side and just allow bcast for this mac.
1321 */
1322 if (WARN_ON_ONCE(data->current_filter >=
1323 ARRAY_SIZE(cmd->filters))) {
1324 bcast_mac->default_discard = 0;
1325 bcast_mac->attached_filters = 0;
1326 break;
1327 }
1328
1329 iwl_mvm_set_bcast_filter(vif,
1330 &mvm->bcast_filters[i],
1331 &cmd->filters[data->current_filter]);
1332
1333 /* skip current filter if it contains no attributes */
1334 if (!cmd->filters[data->current_filter].num_attrs)
1335 continue;
1336
1337 /* attach the filter to current mac */
1338 bcast_mac->attached_filters |=
1339 cpu_to_le16(BIT(data->current_filter));
1340
1341 data->current_filter++;
1342 }
1343}
1344
Eliad Pellerde06a592014-01-08 10:11:12 +02001345bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm,
1346 struct iwl_bcast_filter_cmd *cmd)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001347{
Eliad Pellerc87163b2014-01-08 10:11:11 +02001348 struct iwl_bcast_iter_data iter_data = {
1349 .mvm = mvm,
Eliad Pellerde06a592014-01-08 10:11:12 +02001350 .cmd = cmd,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001351 };
1352
Eliad Pellerde06a592014-01-08 10:11:12 +02001353 memset(cmd, 0, sizeof(*cmd));
1354 cmd->max_bcast_filters = ARRAY_SIZE(cmd->filters);
1355 cmd->max_macs = ARRAY_SIZE(cmd->macs);
1356
1357#ifdef CONFIG_IWLWIFI_DEBUGFS
1358 /* use debugfs filters/macs if override is configured */
1359 if (mvm->dbgfs_bcast_filtering.override) {
1360 memcpy(cmd->filters, &mvm->dbgfs_bcast_filtering.cmd.filters,
1361 sizeof(cmd->filters));
1362 memcpy(cmd->macs, &mvm->dbgfs_bcast_filtering.cmd.macs,
1363 sizeof(cmd->macs));
1364 return true;
1365 }
1366#endif
Eliad Pellerc87163b2014-01-08 10:11:11 +02001367
1368 /* if no filters are configured, do nothing */
1369 if (!mvm->bcast_filters)
Eliad Pellerde06a592014-01-08 10:11:12 +02001370 return false;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001371
1372 /* configure and attach these filters for each associated sta vif */
1373 ieee80211_iterate_active_interfaces(
1374 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1375 iwl_mvm_bcast_filter_iterator, &iter_data);
1376
Eliad Pellerde06a592014-01-08 10:11:12 +02001377 return true;
1378}
1379static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1380 struct ieee80211_vif *vif)
1381{
1382 struct iwl_bcast_filter_cmd cmd;
1383
1384 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING))
1385 return 0;
1386
1387 if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
1388 return 0;
1389
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001390 return iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001391 sizeof(cmd), &cmd);
1392}
1393#else
1394static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1395 struct ieee80211_vif *vif)
1396{
1397 return 0;
1398}
1399#endif
1400
Johannes Berg8ca151b2013-01-24 14:25:36 +01001401static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
1402 struct ieee80211_vif *vif,
1403 struct ieee80211_bss_conf *bss_conf,
1404 u32 changes)
1405{
1406 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1407 int ret;
1408
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001409 /*
1410 * Re-calculate the tsf id, as the master-slave relations depend on the
1411 * beacon interval, which was not known when the station interface was
1412 * added.
1413 */
1414 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc)
1415 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1416
Luciano Coelhobca49d92014-05-13 17:33:38 +03001417 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001418 if (ret)
1419 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
1420
1421 if (changes & BSS_CHANGED_ASSOC) {
1422 if (bss_conf->assoc) {
1423 /* add quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001424 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001425 if (ret) {
1426 IWL_ERR(mvm, "failed to update quotas\n");
1427 return;
1428 }
Johannes Berg016d27e2013-05-03 11:16:15 +02001429
1430 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
1431 &mvm->status)) {
1432 /*
1433 * If we're restarting then the firmware will
1434 * obviously have lost synchronisation with
1435 * the AP. It will attempt to synchronise by
1436 * itself, but we can make it more reliable by
1437 * scheduling a session protection time event.
1438 *
1439 * The firmware needs to receive a beacon to
1440 * catch up with synchronisation, use 110% of
1441 * the beacon interval.
1442 *
1443 * Set a large maximum delay to allow for more
1444 * than a single interface.
1445 */
1446 u32 dur = (11 * vif->bss_conf.beacon_int) / 10;
1447 iwl_mvm_protect_session(mvm, vif, dur, dur,
1448 5 * dur);
1449 }
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001450
1451 iwl_mvm_sf_update(mvm, vif, false);
Alexander Bondar175a70b2013-04-14 20:59:37 +03001452 iwl_mvm_power_vif_assoc(mvm, vif);
Eliad Peller29a90a42013-11-05 14:06:29 +02001453 if (vif->p2p)
1454 iwl_mvm_ref(mvm, IWL_MVM_REF_P2P_CLIENT);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001455 } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001456 /*
1457 * If update fails - SF might be running in associated
1458 * mode while disassociated - which is forbidden.
1459 */
1460 WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false),
1461 "Failed to update SF upon disassociation\n");
1462
Johannes Berg8ca151b2013-01-24 14:25:36 +01001463 /* remove AP station now that the MAC is unassoc */
1464 ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id);
1465 if (ret)
1466 IWL_ERR(mvm, "failed to remove AP station\n");
Eliad Peller37577fe2013-12-05 17:19:39 +02001467
1468 if (mvm->d0i3_ap_sta_id == mvmvif->ap_sta_id)
1469 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001470 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
1471 /* remove quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001472 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001473 if (ret)
1474 IWL_ERR(mvm, "failed to update quotas\n");
Eliad Peller29a90a42013-11-05 14:06:29 +02001475
1476 if (vif->p2p)
1477 iwl_mvm_unref(mvm, IWL_MVM_REF_P2P_CLIENT);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001478 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001479
Eliad Pellere59647e2013-11-28 14:08:50 +02001480 iwl_mvm_recalc_multicast(mvm);
Eliad Pellerc87163b2014-01-08 10:11:11 +02001481 iwl_mvm_configure_bcast_filter(mvm, vif);
Eliad Pellere59647e2013-11-28 14:08:50 +02001482
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001483 /* reset rssi values */
1484 mvmvif->bf_data.ave_beacon_signal = 0;
1485
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001486 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachf94045e2014-01-06 13:38:55 +02001487 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT,
1488 IEEE80211_SMPS_AUTOMATIC);
Alexander Bondar989c6502013-05-16 17:34:17 +03001489 } else if (changes & BSS_CHANGED_BEACON_INFO) {
Johannes Berg210a5442013-01-24 23:48:23 +01001490 /*
1491 * We received a beacon _after_ association so
1492 * remove the session protection.
1493 */
1494 iwl_mvm_remove_time_event(mvm, mvmvif,
1495 &mvmvif->time_event_data);
Johannes Berg0229cda2014-03-19 18:36:39 +01001496 iwl_mvm_sf_update(mvm, vif, false);
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001497 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
Alexander Bondar51498cf62013-09-02 17:10:14 +03001498 } else if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS |
1499 BSS_CHANGED_QOS)) {
Arik Nemtsov999609f2014-05-15 17:31:51 +03001500 ret = iwl_mvm_power_update_mac(mvm);
Alexander Bondar4bf881f2013-05-29 10:19:50 +03001501 if (ret)
1502 IWL_ERR(mvm, "failed to update power mode\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001503 }
Matti Gottlieb88f2fd72013-07-09 15:25:46 +03001504 if (changes & BSS_CHANGED_TXPOWER) {
1505 IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
1506 bss_conf->txpower);
1507 iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
1508 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001509
1510 if (changes & BSS_CHANGED_CQM) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001511 IWL_DEBUG_MAC80211(mvm, "cqm info_changed\n");
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001512 /* reset cqm events tracking */
1513 mvmvif->bf_data.last_cqm_event = 0;
Avri Altmanfa7b2e72014-05-20 08:03:24 +03001514 if (mvmvif->bf_data.bf_enabled) {
1515 ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0);
1516 if (ret)
1517 IWL_ERR(mvm,
1518 "failed to update CQM thresholds\n");
1519 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001520 }
Eliad Peller2ee8f022014-01-13 19:07:09 +02001521
1522 if (changes & BSS_CHANGED_ARP_FILTER) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001523 IWL_DEBUG_MAC80211(mvm, "arp filter changed\n");
Eliad Peller2ee8f022014-01-13 19:07:09 +02001524 iwl_mvm_configure_bcast_filter(mvm, vif);
1525 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001526}
1527
Johannes Berg5023d962013-07-31 14:07:43 +02001528static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
1529 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001530{
1531 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1532 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1533 int ret;
1534
1535 mutex_lock(&mvm->mutex);
1536
1537 /* Send the beacon template */
1538 ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif);
1539 if (ret)
1540 goto out_unlock;
1541
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001542 /*
1543 * Re-calculate the tsf id, as the master-slave relations depend on the
1544 * beacon interval, which was not known when the AP interface was added.
1545 */
1546 if (vif->type == NL80211_IFTYPE_AP)
1547 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1548
Johannes Berg8ca151b2013-01-24 14:25:36 +01001549 /* Add the mac context */
1550 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
1551 if (ret)
1552 goto out_unlock;
1553
1554 /* Perform the binding */
1555 ret = iwl_mvm_binding_add_vif(mvm, vif);
1556 if (ret)
1557 goto out_remove;
1558
Johannes Berg8ca151b2013-01-24 14:25:36 +01001559 /* Send the bcast station. At this stage the TBTT and DTIM time events
1560 * are added and applied to the scheduler */
1561 ret = iwl_mvm_send_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
1562 if (ret)
1563 goto out_unbind;
1564
Ilan Peer5691e212013-12-31 21:05:50 +02001565 /* must be set before quota calculations */
1566 mvmvif->ap_ibss_active = true;
1567
Ilan Peera11e1442013-12-31 21:19:55 +02001568 /* power updated needs to be done before quotas */
Arik Nemtsov999609f2014-05-15 17:31:51 +03001569 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001570
Johannes Berg01662302014-06-06 15:18:45 +02001571 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001572 if (ret)
Ilan Peera11e1442013-12-31 21:19:55 +02001573 goto out_quota_failed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001574
Johannes Berg5023d962013-07-31 14:07:43 +02001575 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001576 if (vif->p2p && mvm->p2p_device_vif)
Luciano Coelhobca49d92014-05-13 17:33:38 +03001577 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001578
Eliad Peller29a90a42013-11-05 14:06:29 +02001579 iwl_mvm_ref(mvm, IWL_MVM_REF_AP_IBSS);
1580
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001581 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001582
Johannes Berg8ca151b2013-01-24 14:25:36 +01001583 mutex_unlock(&mvm->mutex);
1584 return 0;
1585
Ilan Peera11e1442013-12-31 21:19:55 +02001586out_quota_failed:
Arik Nemtsov999609f2014-05-15 17:31:51 +03001587 iwl_mvm_power_update_mac(mvm);
Ilan Peer5691e212013-12-31 21:05:50 +02001588 mvmvif->ap_ibss_active = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001589 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1590out_unbind:
1591 iwl_mvm_binding_remove_vif(mvm, vif);
1592out_remove:
1593 iwl_mvm_mac_ctxt_remove(mvm, vif);
1594out_unlock:
1595 mutex_unlock(&mvm->mutex);
1596 return ret;
1597}
1598
Johannes Berg5023d962013-07-31 14:07:43 +02001599static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
1600 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001601{
1602 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1603 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1604
Johannes Berg38a12b52013-02-22 14:07:56 +01001605 iwl_mvm_prepare_mac_removal(mvm, vif);
1606
Johannes Berg8ca151b2013-01-24 14:25:36 +01001607 mutex_lock(&mvm->mutex);
1608
Johannes Berg5023d962013-07-31 14:07:43 +02001609 mvmvif->ap_ibss_active = false;
David Spinadel1c87bba2014-02-27 16:41:52 +02001610 mvm->ap_last_beacon_gp2 = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001611
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001612 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001613
Eliad Peller29a90a42013-11-05 14:06:29 +02001614 iwl_mvm_unref(mvm, IWL_MVM_REF_AP_IBSS);
1615
Johannes Berg5023d962013-07-31 14:07:43 +02001616 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001617 if (vif->p2p && mvm->p2p_device_vif)
Luciano Coelhobca49d92014-05-13 17:33:38 +03001618 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001619
Johannes Berg01662302014-06-06 15:18:45 +02001620 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001621 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1622 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peera11e1442013-12-31 21:19:55 +02001623
Arik Nemtsov999609f2014-05-15 17:31:51 +03001624 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001625
Johannes Berg8ca151b2013-01-24 14:25:36 +01001626 iwl_mvm_mac_ctxt_remove(mvm, vif);
1627
1628 mutex_unlock(&mvm->mutex);
1629}
1630
Johannes Berg5023d962013-07-31 14:07:43 +02001631static void
1632iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm,
1633 struct ieee80211_vif *vif,
1634 struct ieee80211_bss_conf *bss_conf,
1635 u32 changes)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001636{
Ilan Peerbe2056f2013-12-04 16:47:14 +02001637 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Avri Altman8a5e3662013-11-12 19:16:03 +02001638
Ilan Peerbe2056f2013-12-04 16:47:14 +02001639 /* Changes will be applied when the AP/IBSS is started */
1640 if (!mvmvif->ap_ibss_active)
1641 return;
1642
Johannes Berg863230da2013-12-04 17:08:40 +01001643 if (changes & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT |
1644 BSS_CHANGED_BANDWIDTH) &&
Luciano Coelhobca49d92014-05-13 17:33:38 +03001645 iwl_mvm_mac_ctxt_changed(mvm, vif, false))
Johannes Berg863230da2013-12-04 17:08:40 +01001646 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
Avri Altman8a5e3662013-11-12 19:16:03 +02001647
Johannes Berg8ca151b2013-01-24 14:25:36 +01001648 /* Need to send a new beacon template to the FW */
Johannes Berg863230da2013-12-04 17:08:40 +01001649 if (changes & BSS_CHANGED_BEACON &&
1650 iwl_mvm_mac_ctxt_beacon_changed(mvm, vif))
1651 IWL_WARN(mvm, "Failed updating beacon data\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001652}
1653
1654static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw,
1655 struct ieee80211_vif *vif,
1656 struct ieee80211_bss_conf *bss_conf,
1657 u32 changes)
1658{
1659 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1660
1661 mutex_lock(&mvm->mutex);
1662
David Spinadel723f02e2014-04-27 09:54:54 +03001663 if (changes & BSS_CHANGED_IDLE && !bss_conf->idle)
David Spinadelfb98be52014-05-04 12:51:10 +03001664 iwl_mvm_scan_offload_stop(mvm, true);
David Spinadel723f02e2014-04-27 09:54:54 +03001665
Johannes Berg8ca151b2013-01-24 14:25:36 +01001666 switch (vif->type) {
1667 case NL80211_IFTYPE_STATION:
1668 iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes);
1669 break;
1670 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02001671 case NL80211_IFTYPE_ADHOC:
1672 iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001673 break;
1674 default:
1675 /* shouldn't happen */
1676 WARN_ON_ONCE(1);
1677 }
1678
1679 mutex_unlock(&mvm->mutex);
1680}
1681
1682static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw,
1683 struct ieee80211_vif *vif,
David Spinadelc56ef672014-02-05 15:21:13 +02001684 struct ieee80211_scan_request *hw_req)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001685{
1686 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
David Spinadelc56ef672014-02-05 15:21:13 +02001687 struct cfg80211_scan_request *req = &hw_req->req;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001688 int ret;
1689
David Spinadel762533b2014-06-05 11:20:43 +03001690 if (req->n_channels == 0 ||
1691 req->n_channels > mvm->fw->ucode_capa.n_scan_channels)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001692 return -EINVAL;
1693
1694 mutex_lock(&mvm->mutex);
1695
Johannes Berga6623e82014-01-27 15:40:53 +01001696 switch (mvm->scan_status) {
1697 case IWL_MVM_SCAN_SCHED:
David Spinadelfb98be52014-05-04 12:51:10 +03001698 ret = iwl_mvm_scan_offload_stop(mvm, true);
Johannes Berga6623e82014-01-27 15:40:53 +01001699 if (ret) {
1700 ret = -EBUSY;
1701 goto out;
1702 }
Johannes Berga6623e82014-01-27 15:40:53 +01001703 break;
1704 case IWL_MVM_SCAN_NONE:
1705 break;
1706 default:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001707 ret = -EBUSY;
Arik Nemtsov519e2022013-10-17 17:51:35 +03001708 goto out;
1709 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001710
Arik Nemtsov519e2022013-10-17 17:51:35 +03001711 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
1712
David Spinadelfb98be52014-05-04 12:51:10 +03001713 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
1714 ret = iwl_mvm_unified_scan_lmac(mvm, vif, hw_req);
1715 else
1716 ret = iwl_mvm_scan_request(mvm, vif, req);
1717
Arik Nemtsov519e2022013-10-17 17:51:35 +03001718 if (ret)
1719 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1720out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001721 mutex_unlock(&mvm->mutex);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02001722 /* make sure to flush the Rx handler before the next scan arrives */
1723 iwl_mvm_wait_for_async_handlers(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001724 return ret;
1725}
1726
1727static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw,
1728 struct ieee80211_vif *vif)
1729{
1730 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1731
1732 mutex_lock(&mvm->mutex);
1733
1734 iwl_mvm_cancel_scan(mvm);
1735
1736 mutex_unlock(&mvm->mutex);
1737}
1738
1739static void
1740iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw,
Johannes Berg3e56ead2013-02-15 22:23:18 +01001741 struct ieee80211_sta *sta, u16 tids,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001742 int num_frames,
1743 enum ieee80211_frame_release_type reason,
1744 bool more_data)
1745{
1746 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001747
Johannes Berg3e56ead2013-02-15 22:23:18 +01001748 /* Called when we need to transmit (a) frame(s) from mac80211 */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001749
Johannes Berg3e56ead2013-02-15 22:23:18 +01001750 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
1751 tids, more_data, false);
1752}
1753
1754static void
1755iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw,
1756 struct ieee80211_sta *sta, u16 tids,
1757 int num_frames,
1758 enum ieee80211_frame_release_type reason,
1759 bool more_data)
1760{
1761 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1762
1763 /* Called when we need to transmit (a) frame(s) from agg queue */
1764
1765 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
1766 tids, more_data, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001767}
1768
1769static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
1770 struct ieee80211_vif *vif,
1771 enum sta_notify_cmd cmd,
1772 struct ieee80211_sta *sta)
1773{
1774 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg5b577a92013-11-14 18:20:04 +01001775 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg3e56ead2013-02-15 22:23:18 +01001776 int tid;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001777
1778 switch (cmd) {
1779 case STA_NOTIFY_SLEEP:
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001780 if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001781 ieee80211_sta_block_awake(hw, sta, true);
Johannes Berg3e56ead2013-02-15 22:23:18 +01001782 spin_lock_bh(&mvmsta->lock);
1783 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
1784 struct iwl_mvm_tid_data *tid_data;
1785
1786 tid_data = &mvmsta->tid_data[tid];
1787 if (tid_data->state != IWL_AGG_ON &&
1788 tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA)
1789 continue;
1790 if (iwl_mvm_tid_queued(tid_data) == 0)
1791 continue;
1792 ieee80211_sta_set_buffered(sta, tid, true);
1793 }
1794 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001795 /*
1796 * The fw updates the STA to be asleep. Tx packets on the Tx
1797 * queues to this station will not be transmitted. The fw will
1798 * send a Tx response with TX_STATUS_FAIL_DEST_PS.
1799 */
1800 break;
1801 case STA_NOTIFY_AWAKE:
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02001802 if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001803 break;
Johannes Berg9cc40712013-02-15 22:47:48 +01001804 iwl_mvm_sta_modify_ps_wake(mvm, sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001805 break;
1806 default:
1807 break;
1808 }
1809}
1810
Johannes Berg1ddbbb02013-12-04 22:39:17 +01001811static void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw,
1812 struct ieee80211_vif *vif,
1813 struct ieee80211_sta *sta)
1814{
1815 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1816 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
1817
1818 /*
1819 * This is called before mac80211 does RCU synchronisation,
1820 * so here we already invalidate our internal RCU-protected
1821 * station pointer. The rest of the code will thus no longer
1822 * be able to find the station this way, and we don't rely
1823 * on further RCU synchronisation after the sta_state()
1824 * callback deleted the station.
1825 */
1826 mutex_lock(&mvm->mutex);
1827 if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id]))
1828 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id],
1829 ERR_PTR(-ENOENT));
1830 mutex_unlock(&mvm->mutex);
1831}
1832
Johannes Berg8ca151b2013-01-24 14:25:36 +01001833static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
1834 struct ieee80211_vif *vif,
1835 struct ieee80211_sta *sta,
1836 enum ieee80211_sta_state old_state,
1837 enum ieee80211_sta_state new_state)
1838{
1839 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1840 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1841 int ret;
1842
1843 IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n",
1844 sta->addr, old_state, new_state);
1845
1846 /* this would be a mac80211 bug ... but don't crash */
1847 if (WARN_ON_ONCE(!mvmvif->phy_ctxt))
1848 return -EINVAL;
1849
1850 /* if a STA is being removed, reuse its ID */
1851 flush_work(&mvm->sta_drained_wk);
1852
1853 mutex_lock(&mvm->mutex);
1854 if (old_state == IEEE80211_STA_NOTEXIST &&
1855 new_state == IEEE80211_STA_NONE) {
Johannes Berg48bc1302013-07-04 15:55:29 +02001856 /*
1857 * Firmware bug - it'll crash if the beacon interval is less
1858 * than 16. We can't avoid connecting at all, so refuse the
1859 * station state change, this will cause mac80211 to abandon
1860 * attempts to connect to this AP, and eventually wpa_s will
1861 * blacklist the AP...
1862 */
1863 if (vif->type == NL80211_IFTYPE_STATION &&
1864 vif->bss_conf.beacon_int < 16) {
1865 IWL_ERR(mvm,
1866 "AP %pM beacon interval is %d, refusing due to firmware bug!\n",
1867 sta->addr, vif->bss_conf.beacon_int);
1868 ret = -EINVAL;
1869 goto out_unlock;
1870 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001871 ret = iwl_mvm_add_sta(mvm, vif, sta);
1872 } else if (old_state == IEEE80211_STA_NONE &&
1873 new_state == IEEE80211_STA_AUTH) {
Haim Dreyfusse820c2d2014-04-06 11:19:09 +03001874 /*
1875 * EBS may be disabled due to previous failures reported by FW.
1876 * Reset EBS status here assuming environment has been changed.
1877 */
1878 mvm->last_ebs_successful = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001879 ret = 0;
1880 } else if (old_state == IEEE80211_STA_AUTH &&
1881 new_state == IEEE80211_STA_ASSOC) {
Johannes Berg7a453972013-02-12 13:10:44 +01001882 ret = iwl_mvm_update_sta(mvm, vif, sta);
1883 if (ret == 0)
1884 iwl_mvm_rs_rate_init(mvm, sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +02001885 mvmvif->phy_ctxt->channel->band,
1886 true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001887 } else if (old_state == IEEE80211_STA_ASSOC &&
1888 new_state == IEEE80211_STA_AUTHORIZED) {
Hila Gonen7df15b12012-12-12 11:16:19 +02001889 /* enable beacon filtering */
Avri Altmanfa7b2e72014-05-20 08:03:24 +03001890 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001891 ret = 0;
1892 } else if (old_state == IEEE80211_STA_AUTHORIZED &&
1893 new_state == IEEE80211_STA_ASSOC) {
Hila Gonen7df15b12012-12-12 11:16:19 +02001894 /* disable beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001895 WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001896 ret = 0;
1897 } else if (old_state == IEEE80211_STA_ASSOC &&
1898 new_state == IEEE80211_STA_AUTH) {
1899 ret = 0;
1900 } else if (old_state == IEEE80211_STA_AUTH &&
1901 new_state == IEEE80211_STA_NONE) {
1902 ret = 0;
1903 } else if (old_state == IEEE80211_STA_NONE &&
1904 new_state == IEEE80211_STA_NOTEXIST) {
1905 ret = iwl_mvm_rm_sta(mvm, vif, sta);
1906 } else {
1907 ret = -EIO;
1908 }
Johannes Berg48bc1302013-07-04 15:55:29 +02001909 out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001910 mutex_unlock(&mvm->mutex);
1911
1912 return ret;
1913}
1914
1915static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
1916{
1917 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1918
1919 mvm->rts_threshold = value;
1920
1921 return 0;
1922}
1923
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001924static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw,
1925 struct ieee80211_vif *vif,
1926 struct ieee80211_sta *sta, u32 changed)
1927{
1928 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1929
1930 if (vif->type == NL80211_IFTYPE_STATION &&
1931 changed & IEEE80211_RC_NSS_CHANGED)
1932 iwl_mvm_sf_update(mvm, vif, false);
1933}
1934
Johannes Berg8ca151b2013-01-24 14:25:36 +01001935static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw,
1936 struct ieee80211_vif *vif, u16 ac,
1937 const struct ieee80211_tx_queue_params *params)
1938{
1939 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1940 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1941
1942 mvmvif->queue_params[ac] = *params;
1943
1944 /*
1945 * No need to update right away, we'll get BSS_CHANGED_QOS
1946 * The exception is P2P_DEVICE interface which needs immediate update.
1947 */
1948 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1949 int ret;
1950
1951 mutex_lock(&mvm->mutex);
Luciano Coelhobca49d92014-05-13 17:33:38 +03001952 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001953 mutex_unlock(&mvm->mutex);
1954 return ret;
1955 }
1956 return 0;
1957}
1958
1959static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw,
1960 struct ieee80211_vif *vif)
1961{
1962 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1963 u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS,
1964 200 + vif->bss_conf.beacon_int);
1965 u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS,
1966 100 + vif->bss_conf.beacon_int);
1967
1968 if (WARN_ON_ONCE(vif->bss_conf.assoc))
1969 return;
1970
1971 mutex_lock(&mvm->mutex);
1972 /* Try really hard to protect the session and hear a beacon */
Johannes Berg016d27e2013-05-03 11:16:15 +02001973 iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001974 mutex_unlock(&mvm->mutex);
1975}
1976
David Spinadel35a000b2013-08-28 09:29:43 +03001977static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw,
1978 struct ieee80211_vif *vif,
1979 struct cfg80211_sched_scan_request *req,
David Spinadel633e2712014-02-06 16:15:23 +02001980 struct ieee80211_scan_ies *ies)
David Spinadel35a000b2013-08-28 09:29:43 +03001981{
1982 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1983 int ret;
1984
1985 mutex_lock(&mvm->mutex);
1986
David Spinadelb538b8c2014-05-13 14:29:36 +03001987 if (!iwl_mvm_is_idle(mvm)) {
David Spinadelbd5e4742014-04-24 13:15:29 +03001988 ret = -EBUSY;
1989 goto out;
1990 }
1991
Arik Nemtsov91b80252014-02-10 12:49:39 +02001992 switch (mvm->scan_status) {
1993 case IWL_MVM_SCAN_OS:
1994 IWL_DEBUG_SCAN(mvm, "Stopping previous scan for sched_scan\n");
1995 ret = iwl_mvm_cancel_scan(mvm);
1996 if (ret) {
1997 ret = -EBUSY;
1998 goto out;
1999 }
2000
2001 /*
2002 * iwl_mvm_rx_scan_complete() will be called soon but will
2003 * not reset the scan status as it won't be IWL_MVM_SCAN_OS
2004 * any more since we queue the next scan immediately (below).
2005 * We make sure it is called before the next scan starts by
2006 * flushing the async-handlers work.
2007 */
2008 break;
2009 case IWL_MVM_SCAN_NONE:
2010 break;
2011 default:
David Spinadel35a000b2013-08-28 09:29:43 +03002012 ret = -EBUSY;
2013 goto out;
2014 }
2015
2016 mvm->scan_status = IWL_MVM_SCAN_SCHED;
2017
David Spinadelfb98be52014-05-04 12:51:10 +03002018 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)) {
2019 ret = iwl_mvm_config_sched_scan(mvm, vif, req, ies);
2020 if (ret)
2021 goto err;
2022 }
David Spinadel35a000b2013-08-28 09:29:43 +03002023
2024 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
2025 if (ret)
2026 goto err;
2027
David Spinadelfb98be52014-05-04 12:51:10 +03002028 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
2029 ret = iwl_mvm_unified_sched_scan_lmac(mvm, vif, req, ies);
2030 else
2031 ret = iwl_mvm_sched_scan_start(mvm, req);
2032
David Spinadel35a000b2013-08-28 09:29:43 +03002033 if (!ret)
2034 goto out;
2035err:
2036 mvm->scan_status = IWL_MVM_SCAN_NONE;
2037out:
2038 mutex_unlock(&mvm->mutex);
Arik Nemtsov91b80252014-02-10 12:49:39 +02002039 /* make sure to flush the Rx handler before the next scan arrives */
2040 iwl_mvm_wait_for_async_handlers(mvm);
David Spinadel35a000b2013-08-28 09:29:43 +03002041 return ret;
2042}
2043
Johannes Berg37e33082014-02-17 10:48:17 +01002044static int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw,
2045 struct ieee80211_vif *vif)
David Spinadel35a000b2013-08-28 09:29:43 +03002046{
2047 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002048 int ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002049
2050 mutex_lock(&mvm->mutex);
David Spinadelfb98be52014-05-04 12:51:10 +03002051 ret = iwl_mvm_scan_offload_stop(mvm, false);
David Spinadel35a000b2013-08-28 09:29:43 +03002052 mutex_unlock(&mvm->mutex);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002053 iwl_mvm_wait_for_async_handlers(mvm);
Johannes Berg37e33082014-02-17 10:48:17 +01002054
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002055 return ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002056}
2057
Johannes Berg8ca151b2013-01-24 14:25:36 +01002058static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw,
2059 enum set_key_cmd cmd,
2060 struct ieee80211_vif *vif,
2061 struct ieee80211_sta *sta,
2062 struct ieee80211_key_conf *key)
2063{
2064 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2065 int ret;
2066
2067 if (iwlwifi_mod_params.sw_crypto) {
2068 IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n");
2069 return -EOPNOTSUPP;
2070 }
2071
2072 switch (key->cipher) {
2073 case WLAN_CIPHER_SUITE_TKIP:
2074 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
2075 /* fall-through */
2076 case WLAN_CIPHER_SUITE_CCMP:
2077 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2078 break;
2079 case WLAN_CIPHER_SUITE_AES_CMAC:
2080 WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE));
2081 break;
2082 case WLAN_CIPHER_SUITE_WEP40:
2083 case WLAN_CIPHER_SUITE_WEP104:
2084 /*
2085 * Support for TX only, at least for now, so accept
2086 * the key and do nothing else. Then mac80211 will
2087 * pass it for TX but we don't have to use it for RX.
2088 */
2089 return 0;
2090 default:
Max Stepanove36e5432013-08-27 19:56:13 +03002091 /* currently FW supports only one optional cipher scheme */
2092 if (hw->n_cipher_schemes &&
2093 hw->cipher_schemes->cipher == key->cipher)
2094 key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
2095 else
2096 return -EOPNOTSUPP;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002097 }
2098
2099 mutex_lock(&mvm->mutex);
2100
2101 switch (cmd) {
2102 case SET_KEY:
Johannes Berg5023d962013-07-31 14:07:43 +02002103 if ((vif->type == NL80211_IFTYPE_ADHOC ||
2104 vif->type == NL80211_IFTYPE_AP) && !sta) {
2105 /*
2106 * GTK on AP interface is a TX-only key, return 0;
2107 * on IBSS they're per-station and because we're lazy
2108 * we don't support them for RX, so do the same.
2109 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002110 ret = 0;
2111 key->hw_key_idx = STA_KEY_IDX_INVALID;
2112 break;
2113 }
2114
Johannes Berg8ca151b2013-01-24 14:25:36 +01002115 IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n");
2116 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false);
2117 if (ret) {
2118 IWL_WARN(mvm, "set key failed\n");
2119 /*
2120 * can't add key for RX, but we don't need it
2121 * in the device for TX so still return 0
2122 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002123 key->hw_key_idx = STA_KEY_IDX_INVALID;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002124 ret = 0;
2125 }
2126
2127 break;
2128 case DISABLE_KEY:
Johannes Berg6caffd42013-03-06 13:15:21 +01002129 if (key->hw_key_idx == STA_KEY_IDX_INVALID) {
2130 ret = 0;
2131 break;
2132 }
2133
Johannes Berg8ca151b2013-01-24 14:25:36 +01002134 IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n");
2135 ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key);
2136 break;
2137 default:
2138 ret = -EINVAL;
2139 }
2140
2141 mutex_unlock(&mvm->mutex);
2142 return ret;
2143}
2144
2145static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw,
2146 struct ieee80211_vif *vif,
2147 struct ieee80211_key_conf *keyconf,
2148 struct ieee80211_sta *sta,
2149 u32 iv32, u16 *phase1key)
2150{
2151 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2152
Johannes Berg5023d962013-07-31 14:07:43 +02002153 if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID)
2154 return;
2155
Johannes Berg8ca151b2013-01-24 14:25:36 +01002156 iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key);
2157}
2158
2159
2160static int iwl_mvm_roc(struct ieee80211_hw *hw,
2161 struct ieee80211_vif *vif,
2162 struct ieee80211_channel *channel,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002163 int duration,
2164 enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002165{
2166 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002167 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002168 struct cfg80211_chan_def chandef;
Ilan Peer31d385a2013-04-02 10:25:46 +03002169 struct iwl_mvm_phy_ctxt *phy_ctxt;
2170 int ret, i;
2171
2172 IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value,
2173 duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002174
2175 if (vif->type != NL80211_IFTYPE_P2P_DEVICE) {
2176 IWL_ERR(mvm, "vif isn't a P2P_DEVICE: %d\n", vif->type);
2177 return -EINVAL;
2178 }
2179
Johannes Berg8ca151b2013-01-24 14:25:36 +01002180 mutex_lock(&mvm->mutex);
2181
Ilan Peer31d385a2013-04-02 10:25:46 +03002182 for (i = 0; i < NUM_PHY_CTX; i++) {
2183 phy_ctxt = &mvm->phy_ctxts[i];
2184 if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt)
2185 continue;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002186
Ilan Peer31d385a2013-04-02 10:25:46 +03002187 if (phy_ctxt->ref && channel == phy_ctxt->channel) {
2188 /*
2189 * Unbind the P2P_DEVICE from the current PHY context,
2190 * and if the PHY context is not used remove it.
2191 */
2192 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2193 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2194 goto out_unlock;
2195
2196 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2197
2198 /* Bind the P2P_DEVICE to the current PHY Context */
2199 mvmvif->phy_ctxt = phy_ctxt;
2200
2201 ret = iwl_mvm_binding_add_vif(mvm, vif);
2202 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2203 goto out_unlock;
2204
2205 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2206 goto schedule_time_event;
2207 }
2208 }
2209
2210 /* Need to update the PHY context only if the ROC channel changed */
2211 if (channel == mvmvif->phy_ctxt->channel)
2212 goto schedule_time_event;
2213
2214 cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT);
2215
2216 /*
2217 * Change the PHY context configuration as it is currently referenced
2218 * only by the P2P Device MAC
2219 */
2220 if (mvmvif->phy_ctxt->ref == 1) {
2221 ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt,
2222 &chandef, 1, 1);
2223 if (ret)
2224 goto out_unlock;
2225 } else {
2226 /*
2227 * The PHY context is shared with other MACs. Need to remove the
2228 * P2P Device from the binding, allocate an new PHY context and
2229 * create a new binding
2230 */
2231 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2232 if (!phy_ctxt) {
2233 ret = -ENOSPC;
2234 goto out_unlock;
2235 }
2236
2237 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef,
2238 1, 1);
2239 if (ret) {
2240 IWL_ERR(mvm, "Failed to change PHY context\n");
2241 goto out_unlock;
2242 }
2243
2244 /* Unbind the P2P_DEVICE from the current PHY context */
2245 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2246 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2247 goto out_unlock;
2248
2249 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2250
2251 /* Bind the P2P_DEVICE to the new allocated PHY context */
2252 mvmvif->phy_ctxt = phy_ctxt;
2253
2254 ret = iwl_mvm_binding_add_vif(mvm, vif);
2255 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2256 goto out_unlock;
2257
2258 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2259 }
2260
2261schedule_time_event:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002262 /* Schedule the time events */
Ilan Peere635c792013-02-13 11:05:18 +02002263 ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002264
Ilan Peer31d385a2013-04-02 10:25:46 +03002265out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002266 mutex_unlock(&mvm->mutex);
2267 IWL_DEBUG_MAC80211(mvm, "leave\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01002268 return ret;
2269}
2270
2271static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw)
2272{
2273 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2274
2275 IWL_DEBUG_MAC80211(mvm, "enter\n");
2276
2277 mutex_lock(&mvm->mutex);
2278 iwl_mvm_stop_p2p_roc(mvm);
2279 mutex_unlock(&mvm->mutex);
2280
2281 IWL_DEBUG_MAC80211(mvm, "leave\n");
2282 return 0;
2283}
2284
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002285static int __iwl_mvm_add_chanctx(struct iwl_mvm *mvm,
2286 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002287{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002288 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2289 struct iwl_mvm_phy_ctxt *phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002290 int ret;
2291
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002292 lockdep_assert_held(&mvm->mutex);
2293
Ilan Peer53a9d612013-04-28 11:55:08 +03002294 IWL_DEBUG_MAC80211(mvm, "Add channel context\n");
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002295
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002296 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2297 if (!phy_ctxt) {
2298 ret = -ENOSPC;
2299 goto out;
2300 }
2301
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002302 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Ilan Peer53a9d612013-04-28 11:55:08 +03002303 ctx->rx_chains_static,
2304 ctx->rx_chains_dynamic);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002305 if (ret) {
2306 IWL_ERR(mvm, "Failed to add PHY context\n");
2307 goto out;
2308 }
2309
Ilan Peer53a9d612013-04-28 11:55:08 +03002310 iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002311 *phy_ctxt_id = phy_ctxt->id;
2312out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002313 return ret;
2314}
2315
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002316static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw,
2317 struct ieee80211_chanctx_conf *ctx)
2318{
2319 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2320 int ret;
2321
2322 mutex_lock(&mvm->mutex);
2323 ret = __iwl_mvm_add_chanctx(mvm, ctx);
2324 mutex_unlock(&mvm->mutex);
2325
2326 return ret;
2327}
2328
2329static void __iwl_mvm_remove_chanctx(struct iwl_mvm *mvm,
2330 struct ieee80211_chanctx_conf *ctx)
2331{
2332 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2333 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
2334
2335 lockdep_assert_held(&mvm->mutex);
2336
2337 iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt);
2338}
2339
Johannes Berg8ca151b2013-01-24 14:25:36 +01002340static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw,
2341 struct ieee80211_chanctx_conf *ctx)
2342{
2343 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002344
2345 mutex_lock(&mvm->mutex);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002346 __iwl_mvm_remove_chanctx(mvm, ctx);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002347 mutex_unlock(&mvm->mutex);
2348}
2349
2350static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw,
2351 struct ieee80211_chanctx_conf *ctx,
2352 u32 changed)
2353{
2354 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002355 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2356 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002357
Ilan Peer31d385a2013-04-02 10:25:46 +03002358 if (WARN_ONCE((phy_ctxt->ref > 1) &&
2359 (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH |
2360 IEEE80211_CHANCTX_CHANGE_RX_CHAINS |
Arik Nemtsov2dceeda2013-12-29 17:57:53 +02002361 IEEE80211_CHANCTX_CHANGE_RADAR |
2362 IEEE80211_CHANCTX_CHANGE_MIN_WIDTH)),
Ilan Peer31d385a2013-04-02 10:25:46 +03002363 "Cannot change PHY. Ref=%d, changed=0x%X\n",
2364 phy_ctxt->ref, changed))
2365 return;
2366
Johannes Berg8ca151b2013-01-24 14:25:36 +01002367 mutex_lock(&mvm->mutex);
Emmanuel Grumbach4d664492014-04-30 18:09:59 +03002368 iwl_mvm_bt_coex_vif_change(mvm);
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002369 iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002370 ctx->rx_chains_static,
2371 ctx->rx_chains_dynamic);
2372 mutex_unlock(&mvm->mutex);
2373}
2374
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002375static int __iwl_mvm_assign_vif_chanctx(struct iwl_mvm *mvm,
2376 struct ieee80211_vif *vif,
2377 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002378{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002379 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2380 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002381 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2382 int ret;
2383
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002384 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002385
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002386 mvmvif->phy_ctxt = phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002387
2388 switch (vif->type) {
2389 case NL80211_IFTYPE_AP:
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002390 /* Unless it's a CSA flow we have nothing to do here */
2391 if (vif->csa_active) {
2392 mvmvif->ap_ibss_active = true;
2393 break;
2394 }
Johannes Berg5023d962013-07-31 14:07:43 +02002395 case NL80211_IFTYPE_ADHOC:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002396 /*
2397 * The AP binding flow is handled as part of the start_ap flow
Johannes Berg5023d962013-07-31 14:07:43 +02002398 * (in bss_info_changed), similarly for IBSS.
Johannes Berg8ca151b2013-01-24 14:25:36 +01002399 */
2400 ret = 0;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002401 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002402 case NL80211_IFTYPE_STATION:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002403 case NL80211_IFTYPE_MONITOR:
2404 break;
2405 default:
2406 ret = -EINVAL;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002407 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002408 }
2409
2410 ret = iwl_mvm_binding_add_vif(mvm, vif);
2411 if (ret)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002412 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002413
2414 /*
Alexander Bondar92d85562013-10-23 11:50:34 +02002415 * Power state must be updated before quotas,
2416 * otherwise fw will complain.
2417 */
Arik Nemtsov999609f2014-05-15 17:31:51 +03002418 iwl_mvm_power_update_mac(mvm);
Alexander Bondar92d85562013-10-23 11:50:34 +02002419
2420 /* Setting the quota at this stage is only required for monitor
Johannes Berg8ca151b2013-01-24 14:25:36 +01002421 * interfaces. For the other types, the bss_info changed flow
2422 * will handle quota settings.
2423 */
2424 if (vif->type == NL80211_IFTYPE_MONITOR) {
Ilan Peer1e1391c2013-03-13 14:52:04 +02002425 mvmvif->monitor_active = true;
Johannes Berg01662302014-06-06 15:18:45 +02002426 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002427 if (ret)
2428 goto out_remove_binding;
2429 }
2430
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002431 /* Handle binding during CSA */
2432 if (vif->type == NL80211_IFTYPE_AP) {
Johannes Berg01662302014-06-06 15:18:45 +02002433 iwl_mvm_update_quotas(mvm, NULL);
Luciano Coelhobca49d92014-05-13 17:33:38 +03002434 iwl_mvm_mac_ctxt_changed(mvm, vif, false);
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002435 }
2436
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002437 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002438
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002439out_remove_binding:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002440 iwl_mvm_binding_remove_vif(mvm, vif);
Arik Nemtsov999609f2014-05-15 17:31:51 +03002441 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002442out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002443 if (ret)
2444 mvmvif->phy_ctxt = NULL;
2445 return ret;
2446}
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002447static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw,
2448 struct ieee80211_vif *vif,
2449 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002450{
2451 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002452 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002453
2454 mutex_lock(&mvm->mutex);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002455 ret = __iwl_mvm_assign_vif_chanctx(mvm, vif, ctx);
2456 mutex_unlock(&mvm->mutex);
2457
2458 return ret;
2459}
2460
2461static void __iwl_mvm_unassign_vif_chanctx(struct iwl_mvm *mvm,
2462 struct ieee80211_vif *vif,
2463 struct ieee80211_chanctx_conf *ctx)
2464{
2465 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2466
2467 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002468
2469 iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data);
2470
Johannes Berg8ca151b2013-01-24 14:25:36 +01002471 switch (vif->type) {
Johannes Berg5023d962013-07-31 14:07:43 +02002472 case NL80211_IFTYPE_ADHOC:
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002473 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002474 case NL80211_IFTYPE_MONITOR:
Ilan Peer1e1391c2013-03-13 14:52:04 +02002475 mvmvif->monitor_active = false;
Johannes Berg01662302014-06-06 15:18:45 +02002476 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002477 break;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002478 case NL80211_IFTYPE_AP:
2479 /* This part is triggered only during CSA */
2480 if (!vif->csa_active || !mvmvif->ap_ibss_active)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002481 goto out;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002482
2483 mvmvif->ap_ibss_active = false;
Johannes Berg01662302014-06-06 15:18:45 +02002484 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002485 default:
2486 break;
2487 }
2488
Ilan Peer1e1391c2013-03-13 14:52:04 +02002489 iwl_mvm_binding_remove_vif(mvm, vif);
Alexander Bondar1c2abf72013-08-27 20:31:48 +03002490
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002491out:
Ilan Peera11e1442013-12-31 21:19:55 +02002492 mvmvif->phy_ctxt = NULL;
Arik Nemtsov999609f2014-05-15 17:31:51 +03002493 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002494}
2495
2496static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw,
2497 struct ieee80211_vif *vif,
2498 struct ieee80211_chanctx_conf *ctx)
2499{
2500 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2501
2502 mutex_lock(&mvm->mutex);
2503 __iwl_mvm_unassign_vif_chanctx(mvm, vif, ctx);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002504 mutex_unlock(&mvm->mutex);
2505}
2506
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002507static int iwl_mvm_switch_vif_chanctx(struct ieee80211_hw *hw,
2508 struct ieee80211_vif_chanctx_switch *vifs,
2509 int n_vifs,
2510 enum ieee80211_chanctx_switch_mode mode)
2511{
2512 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2513 int ret;
2514
2515 /* we only support SWAP_CONTEXTS and with a single-vif right now */
2516 if (mode != CHANCTX_SWMODE_SWAP_CONTEXTS || n_vifs > 1)
2517 return -EOPNOTSUPP;
2518
2519 mutex_lock(&mvm->mutex);
2520 __iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx);
2521 __iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx);
2522
2523 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].new_ctx);
2524 if (ret) {
2525 IWL_ERR(mvm, "failed to add new_ctx during channel switch\n");
2526 goto out_reassign;
2527 }
2528
2529 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx);
2530 if (ret) {
2531 IWL_ERR(mvm,
2532 "failed to assign new_ctx during channel switch\n");
2533 goto out_remove;
2534 }
2535
2536 goto out;
2537
2538out_remove:
2539 __iwl_mvm_remove_chanctx(mvm, vifs[0].new_ctx);
2540
2541out_reassign:
2542 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx);
2543 if (ret) {
2544 IWL_ERR(mvm, "failed to add old_ctx back after failure.\n");
2545 goto out_restart;
2546 }
2547
2548 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx);
2549 if (ret) {
2550 IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n");
2551 goto out_restart;
2552 }
2553
2554 goto out;
2555
2556out_restart:
2557 /* things keep failing, better restart the hw */
2558 iwl_mvm_nic_restart(mvm, false);
2559
2560out:
2561 mutex_unlock(&mvm->mutex);
2562 return ret;
2563}
2564
Johannes Berg8ca151b2013-01-24 14:25:36 +01002565static int iwl_mvm_set_tim(struct ieee80211_hw *hw,
2566 struct ieee80211_sta *sta,
2567 bool set)
2568{
2569 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2570 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
2571
2572 if (!mvm_sta || !mvm_sta->vif) {
2573 IWL_ERR(mvm, "Station is not associated to a vif\n");
2574 return -EINVAL;
2575 }
2576
2577 return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif);
2578}
2579
David Spinadel507cadf2013-07-31 18:07:21 +03002580#ifdef CONFIG_NL80211_TESTMODE
2581static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = {
2582 [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 },
2583 [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 },
Johannes Bergf6c6ad422013-08-01 14:17:15 +02002584 [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 },
David Spinadel507cadf2013-07-31 18:07:21 +03002585};
2586
2587static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm,
2588 struct ieee80211_vif *vif,
2589 void *data, int len)
2590{
2591 struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1];
2592 int err;
2593 u32 noa_duration;
2594
2595 err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy);
2596 if (err)
2597 return err;
2598
2599 if (!tb[IWL_MVM_TM_ATTR_CMD])
2600 return -EINVAL;
2601
2602 switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) {
2603 case IWL_MVM_TM_CMD_SET_NOA:
2604 if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p ||
2605 !vif->bss_conf.enable_beacon ||
2606 !tb[IWL_MVM_TM_ATTR_NOA_DURATION])
2607 return -EINVAL;
2608
2609 noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]);
2610 if (noa_duration >= vif->bss_conf.beacon_int)
2611 return -EINVAL;
2612
2613 mvm->noa_duration = noa_duration;
2614 mvm->noa_vif = vif;
2615
Johannes Berg01662302014-06-06 15:18:45 +02002616 return iwl_mvm_update_quotas(mvm, NULL);
Johannes Bergf6c6ad422013-08-01 14:17:15 +02002617 case IWL_MVM_TM_CMD_SET_BEACON_FILTER:
2618 /* must be associated client vif - ignore authorized */
2619 if (!vif || vif->type != NL80211_IFTYPE_STATION ||
2620 !vif->bss_conf.assoc || !vif->bss_conf.dtim_period ||
2621 !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])
2622 return -EINVAL;
2623
2624 if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]))
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03002625 return iwl_mvm_enable_beacon_filter(mvm, vif, 0);
2626 return iwl_mvm_disable_beacon_filter(mvm, vif, 0);
David Spinadel507cadf2013-07-31 18:07:21 +03002627 }
2628
2629 return -EOPNOTSUPP;
2630}
2631
2632static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw,
2633 struct ieee80211_vif *vif,
2634 void *data, int len)
2635{
2636 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2637 int err;
2638
2639 mutex_lock(&mvm->mutex);
2640 err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len);
2641 mutex_unlock(&mvm->mutex);
2642
2643 return err;
2644}
2645#endif
2646
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002647static void iwl_mvm_channel_switch_beacon(struct ieee80211_hw *hw,
2648 struct ieee80211_vif *vif,
2649 struct cfg80211_chan_def *chandef)
2650{
2651 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2652
2653 mutex_lock(&mvm->mutex);
2654 if (WARN(mvm->csa_vif && mvm->csa_vif->csa_active,
2655 "Another CSA is already in progress"))
2656 goto out_unlock;
2657
2658 IWL_DEBUG_MAC80211(mvm, "CSA started to freq %d\n",
2659 chandef->center_freq1);
2660 mvm->csa_vif = vif;
2661
2662out_unlock:
2663 mutex_unlock(&mvm->mutex);
2664}
2665
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02002666static void iwl_mvm_mac_flush(struct ieee80211_hw *hw,
2667 struct ieee80211_vif *vif, u32 queues, bool drop)
2668{
2669 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2670 struct iwl_mvm_vif *mvmvif;
2671 struct iwl_mvm_sta *mvmsta;
2672
2673 if (!vif || vif->type != NL80211_IFTYPE_STATION)
2674 return;
2675
2676 mutex_lock(&mvm->mutex);
2677 mvmvif = iwl_mvm_vif_from_mac80211(vif);
2678 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, mvmvif->ap_sta_id);
2679
2680 if (WARN_ON_ONCE(!mvmsta))
2681 goto done;
2682
2683 if (drop) {
2684 if (iwl_mvm_flush_tx_path(mvm, mvmsta->tfd_queue_msk, true))
2685 IWL_ERR(mvm, "flush request fail\n");
2686 } else {
2687 iwl_trans_wait_tx_queue_empty(mvm->trans,
2688 mvmsta->tfd_queue_msk);
2689 }
2690done:
2691 mutex_unlock(&mvm->mutex);
2692}
2693
Johannes Berge5209262014-01-20 23:38:59 +01002694const struct ieee80211_ops iwl_mvm_hw_ops = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01002695 .tx = iwl_mvm_mac_tx,
2696 .ampdu_action = iwl_mvm_mac_ampdu_action,
2697 .start = iwl_mvm_mac_start,
2698 .restart_complete = iwl_mvm_mac_restart_complete,
2699 .stop = iwl_mvm_mac_stop,
2700 .add_interface = iwl_mvm_mac_add_interface,
2701 .remove_interface = iwl_mvm_mac_remove_interface,
2702 .config = iwl_mvm_mac_config,
Eliad Pellere59647e2013-11-28 14:08:50 +02002703 .prepare_multicast = iwl_mvm_prepare_multicast,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002704 .configure_filter = iwl_mvm_configure_filter,
2705 .bss_info_changed = iwl_mvm_bss_info_changed,
2706 .hw_scan = iwl_mvm_mac_hw_scan,
2707 .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan,
Johannes Berg1ddbbb02013-12-04 22:39:17 +01002708 .sta_pre_rcu_remove = iwl_mvm_sta_pre_rcu_remove,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002709 .sta_state = iwl_mvm_mac_sta_state,
2710 .sta_notify = iwl_mvm_mac_sta_notify,
2711 .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames,
Johannes Berg3e56ead2013-02-15 22:23:18 +01002712 .release_buffered_frames = iwl_mvm_mac_release_buffered_frames,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002713 .set_rts_threshold = iwl_mvm_mac_set_rts_threshold,
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02002714 .sta_rc_update = iwl_mvm_sta_rc_update,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002715 .conf_tx = iwl_mvm_mac_conf_tx,
2716 .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx,
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02002717 .flush = iwl_mvm_mac_flush,
David Spinadel35a000b2013-08-28 09:29:43 +03002718 .sched_scan_start = iwl_mvm_mac_sched_scan_start,
2719 .sched_scan_stop = iwl_mvm_mac_sched_scan_stop,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002720 .set_key = iwl_mvm_mac_set_key,
2721 .update_tkip_key = iwl_mvm_mac_update_tkip_key,
2722 .remain_on_channel = iwl_mvm_roc,
2723 .cancel_remain_on_channel = iwl_mvm_cancel_roc,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002724 .add_chanctx = iwl_mvm_add_chanctx,
2725 .remove_chanctx = iwl_mvm_remove_chanctx,
2726 .change_chanctx = iwl_mvm_change_chanctx,
2727 .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx,
2728 .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx,
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002729 .switch_vif_chanctx = iwl_mvm_switch_vif_chanctx,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002730
Johannes Berg5023d962013-07-31 14:07:43 +02002731 .start_ap = iwl_mvm_start_ap_ibss,
2732 .stop_ap = iwl_mvm_stop_ap_ibss,
2733 .join_ibss = iwl_mvm_start_ap_ibss,
2734 .leave_ibss = iwl_mvm_stop_ap_ibss,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002735
2736 .set_tim = iwl_mvm_set_tim,
2737
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002738 .channel_switch_beacon = iwl_mvm_channel_switch_beacon,
2739
David Spinadel507cadf2013-07-31 18:07:21 +03002740 CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd)
2741
Johannes Berg8ca151b2013-01-24 14:25:36 +01002742#ifdef CONFIG_PM_SLEEP
2743 /* look at d3.c */
2744 .suspend = iwl_mvm_suspend,
2745 .resume = iwl_mvm_resume,
2746 .set_wakeup = iwl_mvm_set_wakeup,
2747 .set_rekey_data = iwl_mvm_set_rekey_data,
2748#if IS_ENABLED(CONFIG_IPV6)
2749 .ipv6_addr_change = iwl_mvm_ipv6_addr_change,
2750#endif
2751 .set_default_unicast_key = iwl_mvm_set_default_unicast_key,
2752#endif
2753};