blob: ea79f1ac3ecce9859ec898d516f78861f4eb37b7 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020035 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
64 *****************************************************************************/
65#include <linux/kernel.h>
66#include <linux/slab.h>
67#include <linux/skbuff.h>
68#include <linux/netdevice.h>
69#include <linux/etherdevice.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010070#include <linux/ip.h>
Eliad Peller2ee8f022014-01-13 19:07:09 +020071#include <linux/if_arp.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010072#include <net/mac80211.h>
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +020073#include <net/ieee80211_radiotap.h>
Johannes Bergf0c26462013-01-22 20:41:58 +010074#include <net/tcp.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010075
76#include "iwl-op-mode.h"
77#include "iwl-io.h"
78#include "mvm.h"
79#include "sta.h"
80#include "time-event.h"
81#include "iwl-eeprom-parse.h"
82#include "fw-api-scan.h"
83#include "iwl-phy-db.h"
David Spinadel507cadf2013-07-31 18:07:21 +030084#include "testmode.h"
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +030085#include "iwl-fw-error-dump.h"
86#include "iwl-prph.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010087
88static const struct ieee80211_iface_limit iwl_mvm_limits[] = {
89 {
90 .max = 1,
Ilan Peer8eb38712013-06-01 20:17:18 +030091 .types = BIT(NL80211_IFTYPE_STATION),
Johannes Berg8ca151b2013-01-24 14:25:36 +010092 },
Johannes Berg3c15a0f2013-05-31 10:17:19 +020093 {
94 .max = 1,
Ilan Peer8eb38712013-06-01 20:17:18 +030095 .types = BIT(NL80211_IFTYPE_AP) |
96 BIT(NL80211_IFTYPE_P2P_CLIENT) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +020097 BIT(NL80211_IFTYPE_P2P_GO),
98 },
99 {
100 .max = 1,
101 .types = BIT(NL80211_IFTYPE_P2P_DEVICE),
102 },
Johannes Berg8ca151b2013-01-24 14:25:36 +0100103};
104
105static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = {
106 {
107 .num_different_channels = 1,
108 .max_interfaces = 3,
109 .limits = iwl_mvm_limits,
110 .n_limits = ARRAY_SIZE(iwl_mvm_limits),
111 },
112};
113
Johannes Bergf0c26462013-01-22 20:41:58 +0100114#ifdef CONFIG_PM_SLEEP
115static const struct nl80211_wowlan_tcp_data_token_feature
116iwl_mvm_wowlan_tcp_token_feature = {
117 .min_len = 0,
118 .max_len = 255,
119 .bufsize = IWL_WOWLAN_REMOTE_WAKE_MAX_TOKENS,
120};
121
122static const struct wiphy_wowlan_tcp_support iwl_mvm_wowlan_tcp_support = {
123 .tok = &iwl_mvm_wowlan_tcp_token_feature,
124 .data_payload_max = IWL_WOWLAN_TCP_MAX_PACKET_LEN -
125 sizeof(struct ethhdr) -
126 sizeof(struct iphdr) -
127 sizeof(struct tcphdr),
128 .data_interval_max = 65535, /* __le16 in API */
129 .wake_payload_max = IWL_WOWLAN_REMOTE_WAKE_MAX_PACKET_LEN -
130 sizeof(struct ethhdr) -
131 sizeof(struct iphdr) -
132 sizeof(struct tcphdr),
133 .seq = true,
134};
135#endif
136
Eliad Peller77736922014-01-14 12:35:49 +0200137#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
Eliad Peller2ee8f022014-01-13 19:07:09 +0200138/*
139 * Use the reserved field to indicate magic values.
140 * these values will only be used internally by the driver,
141 * and won't make it to the fw (reserved will be 0).
142 * BC_FILTER_MAGIC_IP - configure the val of this attribute to
143 * be the vif's ip address. in case there is not a single
144 * ip address (0, or more than 1), this attribute will
145 * be skipped.
146 * BC_FILTER_MAGIC_MAC - set the val of this attribute to
147 * the LSB bytes of the vif's mac address
148 */
149enum {
150 BC_FILTER_MAGIC_NONE = 0,
151 BC_FILTER_MAGIC_IP,
152 BC_FILTER_MAGIC_MAC,
153};
154
Eliad Peller77736922014-01-14 12:35:49 +0200155static const struct iwl_fw_bcast_filter iwl_mvm_default_bcast_filters[] = {
156 {
157 /* arp */
158 .discard = 0,
159 .frame_type = BCAST_FILTER_FRAME_TYPE_ALL,
160 .attrs = {
161 {
162 /* frame type - arp, hw type - ethernet */
163 .offset_type =
164 BCAST_FILTER_OFFSET_PAYLOAD_START,
165 .offset = sizeof(rfc1042_header),
166 .val = cpu_to_be32(0x08060001),
167 .mask = cpu_to_be32(0xffffffff),
168 },
Eliad Peller2ee8f022014-01-13 19:07:09 +0200169 {
170 /* arp dest ip */
171 .offset_type =
172 BCAST_FILTER_OFFSET_PAYLOAD_START,
173 .offset = sizeof(rfc1042_header) + 2 +
174 sizeof(struct arphdr) +
175 ETH_ALEN + sizeof(__be32) +
176 ETH_ALEN,
177 .mask = cpu_to_be32(0xffffffff),
178 /* mark it as special field */
179 .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_IP),
180 },
181 },
182 },
183 {
184 /* dhcp offer bcast */
185 .discard = 0,
186 .frame_type = BCAST_FILTER_FRAME_TYPE_IPV4,
187 .attrs = {
188 {
189 /* udp dest port - 68 (bootp client)*/
190 .offset_type = BCAST_FILTER_OFFSET_IP_END,
191 .offset = offsetof(struct udphdr, dest),
192 .val = cpu_to_be32(0x00440000),
193 .mask = cpu_to_be32(0xffff0000),
194 },
195 {
196 /* dhcp - lsb bytes of client hw address */
197 .offset_type = BCAST_FILTER_OFFSET_IP_END,
198 .offset = 38,
199 .mask = cpu_to_be32(0xffffffff),
200 /* mark it as special field */
201 .reserved1 = cpu_to_le16(BC_FILTER_MAGIC_MAC),
202 },
Eliad Peller77736922014-01-14 12:35:49 +0200203 },
204 },
205 /* last filter must be empty */
206 {},
207};
208#endif
209
Eliad Peller7498cf42014-01-16 17:10:44 +0200210void iwl_mvm_ref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
211{
Eliad Peller7bb426e2014-02-24 12:54:37 +0200212 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200213 return;
214
215 IWL_DEBUG_RPM(mvm, "Take mvm reference - type %d\n", ref_type);
Eliad Peller576eeee2014-07-01 18:38:38 +0300216 spin_lock_bh(&mvm->refs_lock);
217 mvm->refs[ref_type]++;
218 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200219 iwl_trans_ref(mvm->trans);
220}
221
222void iwl_mvm_unref(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
223{
Eliad Peller7bb426e2014-02-24 12:54:37 +0200224 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200225 return;
226
227 IWL_DEBUG_RPM(mvm, "Leave mvm reference - type %d\n", ref_type);
Eliad Peller576eeee2014-07-01 18:38:38 +0300228 spin_lock_bh(&mvm->refs_lock);
229 WARN_ON(!mvm->refs[ref_type]--);
230 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200231 iwl_trans_unref(mvm->trans);
232}
233
Eliad Peller576eeee2014-07-01 18:38:38 +0300234static void iwl_mvm_unref_all_except(struct iwl_mvm *mvm,
235 enum iwl_mvm_ref_type except_ref)
Eliad Peller7498cf42014-01-16 17:10:44 +0200236{
Eliad Peller576eeee2014-07-01 18:38:38 +0300237 int i, j;
Eliad Peller7498cf42014-01-16 17:10:44 +0200238
Eliad Peller7bb426e2014-02-24 12:54:37 +0200239 if (!iwl_mvm_is_d0i3_supported(mvm))
Eliad Peller7498cf42014-01-16 17:10:44 +0200240 return;
241
Eliad Peller576eeee2014-07-01 18:38:38 +0300242 spin_lock_bh(&mvm->refs_lock);
243 for (i = 0; i < IWL_MVM_REF_COUNT; i++) {
244 if (except_ref == i || !mvm->refs[i])
Eliad Peller7498cf42014-01-16 17:10:44 +0200245 continue;
246
Eliad Peller576eeee2014-07-01 18:38:38 +0300247 IWL_DEBUG_RPM(mvm, "Cleanup: remove mvm ref type %d (%d)\n",
248 i, mvm->refs[i]);
249 for (j = 0; j < mvm->refs[i]; j++)
250 iwl_trans_unref(mvm->trans);
251 mvm->refs[i] = 0;
Eliad Peller7498cf42014-01-16 17:10:44 +0200252 }
Eliad Peller576eeee2014-07-01 18:38:38 +0300253 spin_unlock_bh(&mvm->refs_lock);
Eliad Peller7498cf42014-01-16 17:10:44 +0200254}
255
Eliad Peller576eeee2014-07-01 18:38:38 +0300256int iwl_mvm_ref_sync(struct iwl_mvm *mvm, enum iwl_mvm_ref_type ref_type)
Gregory Greenmand40fc482014-06-25 14:08:50 +0200257{
258 iwl_mvm_ref(mvm, ref_type);
259
260 if (!wait_event_timeout(mvm->d0i3_exit_waitq,
261 !test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status),
262 HZ)) {
263 WARN_ON_ONCE(1);
264 iwl_mvm_unref(mvm, ref_type);
265 return -EIO;
266 }
267
268 return 0;
269}
270
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200271static void iwl_mvm_reset_phy_ctxts(struct iwl_mvm *mvm)
272{
273 int i;
274
275 memset(mvm->phy_ctxts, 0, sizeof(mvm->phy_ctxts));
276 for (i = 0; i < NUM_PHY_CTX; i++) {
277 mvm->phy_ctxts[i].id = i;
278 mvm->phy_ctxts[i].ref = 0;
279 }
280}
281
David Spinadel20f1a5d2013-08-21 09:14:27 +0300282static int iwl_mvm_max_scan_ie_len(struct iwl_mvm *mvm)
283{
284 /* we create the 802.11 header and SSID element */
285 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID)
286 return mvm->fw->ucode_capa.max_probe_length - 24 - 2;
287 return mvm->fw->ucode_capa.max_probe_length - 24 - 34;
288}
289
Johannes Berg8ca151b2013-01-24 14:25:36 +0100290int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
291{
292 struct ieee80211_hw *hw = mvm->hw;
Ilan Peer831e85f2013-02-07 17:09:09 +0200293 int num_mac, ret, i;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100294
295 /* Tell mac80211 our characteristics */
296 hw->flags = IEEE80211_HW_SIGNAL_DBM |
297 IEEE80211_HW_SPECTRUM_MGMT |
298 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
299 IEEE80211_HW_QUEUE_CONTROL |
300 IEEE80211_HW_WANT_MONITOR_VIF |
Johannes Berg8ca151b2013-01-24 14:25:36 +0100301 IEEE80211_HW_SUPPORTS_PS |
302 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
Johannes Bergd2931bb2013-02-05 18:10:04 +0100303 IEEE80211_HW_AMPDU_AGGREGATION |
Hila Gonend64048e2013-03-13 18:00:03 +0200304 IEEE80211_HW_TIMING_BEACON_ONLY |
Emmanuel Grumbach147fc9b2013-07-28 11:00:52 +0300305 IEEE80211_HW_CONNECTION_MONITOR |
Luciano Coelhof0c97782014-03-05 15:41:48 +0200306 IEEE80211_HW_CHANCTX_STA_CSA |
Emmanuel Grumbach147fc9b2013-07-28 11:00:52 +0300307 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
Alexander Bondare8e626a2013-10-16 00:21:34 +0200308 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100309
Eytan Lifshitz19e737c2013-09-09 13:30:15 +0200310 hw->queues = mvm->first_agg_queue;
Ilan Peer398e8c62013-03-13 15:20:35 +0200311 hw->offchannel_tx_hw_queue = IWL_MVM_OFFCHANNEL_QUEUE;
Emmanuel Grumbach7b1dd042014-02-04 15:32:43 +0200312 hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FEC |
313 IEEE80211_RADIOTAP_MCS_HAVE_STBC;
314 hw->radiotap_vht_details |= IEEE80211_RADIOTAP_VHT_KNOWN_STBC;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100315 hw->rate_control_algorithm = "iwl-mvm-rs";
316
317 /*
318 * Enable 11w if advertised by firmware and software crypto
319 * is not enabled (as the firmware will interpret some mgmt
320 * packets, so enabling it with software crypto isn't safe)
321 */
322 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP &&
323 !iwlwifi_mod_params.sw_crypto)
324 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
325
Matt Chen1504f482014-04-24 18:43:18 +0800326 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT &&
327 IWL_UCODE_API(mvm->fw->ucode_ver) >= 9 &&
328 !iwlwifi_mod_params.uapsd_disable) {
329 hw->flags |= IEEE80211_HW_SUPPORTS_UAPSD;
330 hw->uapsd_queues = IWL_UAPSD_AC_INFO;
331 hw->uapsd_max_sp_len = IWL_UAPSD_MAX_SP;
332 }
Alexander Bondare8e626a2013-10-16 00:21:34 +0200333
David Spinadelfb98be52014-05-04 12:51:10 +0300334 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
335 hw->flags |= IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS;
336
Johannes Berg8ca151b2013-01-24 14:25:36 +0100337 hw->sta_data_size = sizeof(struct iwl_mvm_sta);
338 hw->vif_data_size = sizeof(struct iwl_mvm_vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200339 hw->chanctx_data_size = sizeof(u16);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100340
341 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
Johannes Berg3c15a0f2013-05-31 10:17:19 +0200342 BIT(NL80211_IFTYPE_P2P_CLIENT) |
343 BIT(NL80211_IFTYPE_AP) |
344 BIT(NL80211_IFTYPE_P2P_GO) |
Emmanuel Grumbachc13b1722014-03-27 19:12:12 +0200345 BIT(NL80211_IFTYPE_P2P_DEVICE) |
346 BIT(NL80211_IFTYPE_ADHOC);
Johannes Berg5023d962013-07-31 14:07:43 +0200347
Luis R. Rodrigueza2f73b62013-11-11 22:15:29 +0100348 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
349 hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
350 REGULATORY_DISABLE_BEACON_HINTS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100351
Johannes Berg3e56ead2013-02-15 22:23:18 +0100352 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_GO_UAPSD)
353 hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
354
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +0200355 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_CSA_FLOW)
356 hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH;
357
Johannes Berg8ca151b2013-01-24 14:25:36 +0100358 hw->wiphy->iface_combinations = iwl_mvm_iface_combinations;
359 hw->wiphy->n_iface_combinations =
360 ARRAY_SIZE(iwl_mvm_iface_combinations);
361
Ilan Peerc451e6d2013-02-20 08:41:54 +0200362 hw->wiphy->max_remain_on_channel_duration = 10000;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100363 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
364
365 /* Extract MAC address */
366 memcpy(mvm->addresses[0].addr, mvm->nvm_data->hw_addr, ETH_ALEN);
367 hw->wiphy->addresses = mvm->addresses;
368 hw->wiphy->n_addresses = 1;
Ilan Peer831e85f2013-02-07 17:09:09 +0200369
370 /* Extract additional MAC addresses if available */
371 num_mac = (mvm->nvm_data->n_hw_addrs > 1) ?
372 min(IWL_MVM_MAX_ADDRESSES, mvm->nvm_data->n_hw_addrs) : 1;
373
374 for (i = 1; i < num_mac; i++) {
375 memcpy(mvm->addresses[i].addr, mvm->addresses[i-1].addr,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100376 ETH_ALEN);
Ilan Peer831e85f2013-02-07 17:09:09 +0200377 mvm->addresses[i].addr[5]++;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100378 hw->wiphy->n_addresses++;
379 }
380
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200381 iwl_mvm_reset_phy_ctxts(mvm);
382
David Spinadel20f1a5d2013-08-21 09:14:27 +0300383 hw->wiphy->max_scan_ie_len = iwl_mvm_max_scan_ie_len(mvm);
384
Johannes Berg8ca151b2013-01-24 14:25:36 +0100385 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
386
387 if (mvm->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels)
388 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
389 &mvm->nvm_data->bands[IEEE80211_BAND_2GHZ];
390 if (mvm->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels)
391 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
392 &mvm->nvm_data->bands[IEEE80211_BAND_5GHZ];
393
394 hw->wiphy->hw_version = mvm->trans->hw_id;
395
Alexander Bondarade50652013-04-03 16:28:47 +0300396 if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100397 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
398 else
399 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
400
Emmanuel Grumbach77b2f282014-08-14 19:32:16 +0300401 /* TODO: enable that only for firmwares that don't crash */
402 /* hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN; */
Emmanuel Grumbach536a3ee2014-03-30 09:11:44 +0300403 hw->wiphy->max_sched_scan_ssids = PROBE_OPTION_MAX;
404 hw->wiphy->max_match_sets = IWL_SCAN_MAX_PROFILES;
405 /* we create the 802.11 header and zero length SSID IE. */
406 hw->wiphy->max_sched_scan_ie_len = SCAN_OFFLOAD_PROBE_REQ_SIZE - 24 - 2;
David Spinadel35a000b2013-08-28 09:29:43 +0300407
Johannes Berg8ca151b2013-01-24 14:25:36 +0100408 hw->wiphy->features |= NL80211_FEATURE_P2P_GO_CTWIN |
Johannes Bergab480032014-06-04 10:13:50 +0200409 NL80211_FEATURE_LOW_PRIORITY_SCAN |
Alexander Bondar8a110d92014-03-12 17:31:19 +0200410 NL80211_FEATURE_P2P_GO_OPPPS;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100411
412 mvm->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
413
Max Stepanove36e5432013-08-27 19:56:13 +0300414 /* currently FW API supports only one optional cipher scheme */
Johannes Berg9ddca862014-01-06 09:29:40 +0100415 if (mvm->fw->cs[0].cipher) {
Max Stepanove36e5432013-08-27 19:56:13 +0300416 mvm->hw->n_cipher_schemes = 1;
Johannes Berg9ddca862014-01-06 09:29:40 +0100417 mvm->hw->cipher_schemes = &mvm->fw->cs[0];
Max Stepanove36e5432013-08-27 19:56:13 +0300418 }
419
Johannes Berg8ca151b2013-01-24 14:25:36 +0100420#ifdef CONFIG_PM_SLEEP
Eliad Pellerd15a7472014-03-27 18:53:12 +0200421 if (iwl_mvm_is_d0i3_supported(mvm) &&
422 device_can_wakeup(mvm->trans->dev)) {
423 mvm->wowlan.flags = WIPHY_WOWLAN_ANY;
424 hw->wiphy->wowlan = &mvm->wowlan;
425 } else if (mvm->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100426 mvm->trans->ops->d3_suspend &&
427 mvm->trans->ops->d3_resume &&
428 device_can_wakeup(mvm->trans->dev)) {
Johannes Berg964dc9e2013-06-03 17:25:34 +0200429 mvm->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
430 WIPHY_WOWLAN_DISCONNECT |
431 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
432 WIPHY_WOWLAN_RFKILL_RELEASE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100433 if (!iwlwifi_mod_params.sw_crypto)
Johannes Berg964dc9e2013-06-03 17:25:34 +0200434 mvm->wowlan.flags |= WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
435 WIPHY_WOWLAN_GTK_REKEY_FAILURE |
436 WIPHY_WOWLAN_4WAY_HANDSHAKE;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100437
Johannes Berg964dc9e2013-06-03 17:25:34 +0200438 mvm->wowlan.n_patterns = IWL_WOWLAN_MAX_PATTERNS;
439 mvm->wowlan.pattern_min_len = IWL_WOWLAN_MIN_PATTERN_LEN;
440 mvm->wowlan.pattern_max_len = IWL_WOWLAN_MAX_PATTERN_LEN;
441 mvm->wowlan.tcp = &iwl_mvm_wowlan_tcp_support;
442 hw->wiphy->wowlan = &mvm->wowlan;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100443 }
444#endif
445
Eliad Peller77736922014-01-14 12:35:49 +0200446#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
447 /* assign default bcast filtering configuration */
448 mvm->bcast_filters = iwl_mvm_default_bcast_filters;
449#endif
450
Johannes Berg8ca151b2013-01-24 14:25:36 +0100451 ret = iwl_mvm_leds_init(mvm);
452 if (ret)
453 return ret;
454
Emmanuel Grumbachb7327d82013-06-24 15:44:03 +0300455 ret = ieee80211_register_hw(mvm->hw);
456 if (ret)
457 iwl_mvm_leds_exit(mvm);
458
459 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100460}
461
Arik Nemtsovb2492502014-03-13 12:21:50 +0200462static bool iwl_mvm_defer_tx(struct iwl_mvm *mvm,
463 struct ieee80211_sta *sta,
464 struct sk_buff *skb)
465{
466 struct iwl_mvm_sta *mvmsta;
467 bool defer = false;
468
469 /*
470 * double check the IN_D0I3 flag both before and after
471 * taking the spinlock, in order to prevent taking
472 * the spinlock when not needed.
473 */
474 if (likely(!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status)))
475 return false;
476
477 spin_lock(&mvm->d0i3_tx_lock);
478 /*
479 * testing the flag again ensures the skb dequeue
480 * loop (on d0i3 exit) hasn't run yet.
481 */
482 if (!test_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status))
483 goto out;
484
485 mvmsta = iwl_mvm_sta_from_mac80211(sta);
486 if (mvmsta->sta_id == IWL_MVM_STATION_COUNT ||
487 mvmsta->sta_id != mvm->d0i3_ap_sta_id)
488 goto out;
489
490 __skb_queue_tail(&mvm->d0i3_tx, skb);
491 ieee80211_stop_queues(mvm->hw);
492
493 /* trigger wakeup */
494 iwl_mvm_ref(mvm, IWL_MVM_REF_TX);
495 iwl_mvm_unref(mvm, IWL_MVM_REF_TX);
496
497 defer = true;
498out:
499 spin_unlock(&mvm->d0i3_tx_lock);
500 return defer;
501}
502
Johannes Berg8ca151b2013-01-24 14:25:36 +0100503static void iwl_mvm_mac_tx(struct ieee80211_hw *hw,
504 struct ieee80211_tx_control *control,
505 struct sk_buff *skb)
506{
507 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg3e56ead2013-02-15 22:23:18 +0100508 struct ieee80211_sta *sta = control->sta;
509 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
510 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100511
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300512 if (iwl_mvm_is_radio_killed(mvm)) {
513 IWL_DEBUG_DROP(mvm, "Dropping - RF/CT KILL\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +0100514 goto drop;
515 }
516
Ilan Peer398e8c62013-03-13 15:20:35 +0200517 if (IEEE80211_SKB_CB(skb)->hw_queue == IWL_MVM_OFFCHANNEL_QUEUE &&
Johannes Berg8ca151b2013-01-24 14:25:36 +0100518 !test_bit(IWL_MVM_STATUS_ROC_RUNNING, &mvm->status))
519 goto drop;
520
Johannes Berg3e56ead2013-02-15 22:23:18 +0100521 /* treat non-bufferable MMPDUs as broadcast if sta is sleeping */
522 if (unlikely(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER &&
523 ieee80211_is_mgmt(hdr->frame_control) &&
524 !ieee80211_is_deauth(hdr->frame_control) &&
525 !ieee80211_is_disassoc(hdr->frame_control) &&
526 !ieee80211_is_action(hdr->frame_control)))
527 sta = NULL;
528
529 if (sta) {
Arik Nemtsovb2492502014-03-13 12:21:50 +0200530 if (iwl_mvm_defer_tx(mvm, sta, skb))
531 return;
Johannes Berg3e56ead2013-02-15 22:23:18 +0100532 if (iwl_mvm_tx_skb(mvm, skb, sta))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100533 goto drop;
534 return;
535 }
536
537 if (iwl_mvm_tx_skb_non_sta(mvm, skb))
538 goto drop;
539 return;
540 drop:
541 ieee80211_free_txskb(hw, skb);
542}
543
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200544static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg)
545{
546 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
547 return false;
548 return true;
549}
550
551static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg)
552{
553 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
554 return false;
555 if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG)
556 return true;
557
558 /* enabled by default */
559 return true;
560}
561
Johannes Berg8ca151b2013-01-24 14:25:36 +0100562static int iwl_mvm_mac_ampdu_action(struct ieee80211_hw *hw,
563 struct ieee80211_vif *vif,
564 enum ieee80211_ampdu_mlme_action action,
565 struct ieee80211_sta *sta, u16 tid,
566 u16 *ssn, u8 buf_size)
567{
568 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
569 int ret;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200570 bool tx_agg_ref = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100571
572 IWL_DEBUG_HT(mvm, "A-MPDU action on addr %pM tid %d: action %d\n",
573 sta->addr, tid, action);
574
575 if (!(mvm->nvm_data->sku_cap_11n_enable))
576 return -EACCES;
577
Arik Nemtsovb2492502014-03-13 12:21:50 +0200578 /* return from D0i3 before starting a new Tx aggregation */
Eliad Peller9256c202014-04-22 13:33:29 +0300579 switch (action) {
580 case IEEE80211_AMPDU_TX_START:
581 case IEEE80211_AMPDU_TX_STOP_CONT:
582 case IEEE80211_AMPDU_TX_STOP_FLUSH:
583 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
584 case IEEE80211_AMPDU_TX_OPERATIONAL:
Arik Nemtsovb2492502014-03-13 12:21:50 +0200585 /*
Eliad Peller9256c202014-04-22 13:33:29 +0300586 * for tx start, wait synchronously until D0i3 exit to
587 * get the correct sequence number for the tid.
588 * additionally, some other ampdu actions use direct
589 * target access, which is not handled automatically
590 * by the trans layer (unlike commands), so wait for
591 * d0i3 exit in these cases as well.
Arik Nemtsovb2492502014-03-13 12:21:50 +0200592 */
Gregory Greenmand40fc482014-06-25 14:08:50 +0200593 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_TX_AGG);
594 if (ret)
595 return ret;
596
597 tx_agg_ref = true;
Eliad Peller9256c202014-04-22 13:33:29 +0300598 break;
599 default:
600 break;
Arik Nemtsovb2492502014-03-13 12:21:50 +0200601 }
602
Johannes Berg8ca151b2013-01-24 14:25:36 +0100603 mutex_lock(&mvm->mutex);
604
605 switch (action) {
606 case IEEE80211_AMPDU_RX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200607 if (!iwl_enable_rx_ampdu(mvm->cfg)) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100608 ret = -EINVAL;
609 break;
610 }
611 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, *ssn, true);
612 break;
613 case IEEE80211_AMPDU_RX_STOP:
614 ret = iwl_mvm_sta_rx_agg(mvm, sta, tid, 0, false);
615 break;
616 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach205e2212014-02-12 15:15:05 +0200617 if (!iwl_enable_tx_ampdu(mvm->cfg)) {
Emmanuel Grumbach5d158ef2013-02-19 14:39:58 +0200618 ret = -EINVAL;
619 break;
620 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100621 ret = iwl_mvm_sta_tx_agg_start(mvm, vif, sta, tid, ssn);
622 break;
623 case IEEE80211_AMPDU_TX_STOP_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200624 ret = iwl_mvm_sta_tx_agg_stop(mvm, vif, sta, tid);
625 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100626 case IEEE80211_AMPDU_TX_STOP_FLUSH:
627 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200628 ret = iwl_mvm_sta_tx_agg_flush(mvm, vif, sta, tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100629 break;
630 case IEEE80211_AMPDU_TX_OPERATIONAL:
631 ret = iwl_mvm_sta_tx_agg_oper(mvm, vif, sta, tid, buf_size);
632 break;
633 default:
634 WARN_ON_ONCE(1);
635 ret = -EINVAL;
636 break;
637 }
638 mutex_unlock(&mvm->mutex);
639
Arik Nemtsovb2492502014-03-13 12:21:50 +0200640 /*
641 * If the tid is marked as started, we won't use it for offloaded
642 * traffic on the next D0i3 entry. It's safe to unref.
643 */
644 if (tx_agg_ref)
645 iwl_mvm_unref(mvm, IWL_MVM_REF_TX_AGG);
646
Johannes Berg8ca151b2013-01-24 14:25:36 +0100647 return ret;
648}
649
650static void iwl_mvm_cleanup_iterator(void *data, u8 *mac,
651 struct ieee80211_vif *vif)
652{
653 struct iwl_mvm *mvm = data;
654 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
655
656 mvmvif->uploaded = false;
657 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
658
659 /* does this make sense at all? */
660 mvmvif->color++;
661
662 spin_lock_bh(&mvm->time_event_lock);
663 iwl_mvm_te_clear_data(mvm, &mvmvif->time_event_data);
664 spin_unlock_bh(&mvm->time_event_lock);
665
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200666 mvmvif->phy_ctxt = NULL;
Emmanuel Grumbach8a275ba2014-07-13 09:12:11 +0300667 memset(&mvmvif->bf_data, 0, sizeof(mvmvif->bf_data));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100668}
669
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300670#ifdef CONFIG_IWLWIFI_DEBUGFS
671static void iwl_mvm_fw_error_dump(struct iwl_mvm *mvm)
672{
673 struct iwl_fw_error_dump_file *dump_file;
674 struct iwl_fw_error_dump_data *dump_data;
675 struct iwl_fw_error_dump_info *dump_info;
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300676 struct iwl_mvm_dump_ptrs *fw_error_dump;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300677 const struct fw_img *img;
678 u32 sram_len, sram_ofs;
679 u32 file_len, rxf_len;
680 unsigned long flags;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300681 int reg_val;
682
683 lockdep_assert_held(&mvm->mutex);
684
685 if (mvm->fw_error_dump)
686 return;
687
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300688 fw_error_dump = kzalloc(sizeof(*mvm->fw_error_dump), GFP_KERNEL);
689 if (!fw_error_dump)
690 return;
691
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300692 img = &mvm->fw->img[mvm->cur_ucode];
693 sram_ofs = img->sec[IWL_UCODE_SECTION_DATA].offset;
694 sram_len = img->sec[IWL_UCODE_SECTION_DATA].len;
695
696 /* reading buffer size */
697 reg_val = iwl_trans_read_prph(mvm->trans, RXF_SIZE_ADDR);
698 rxf_len = (reg_val & RXF_SIZE_BYTE_CNT_MSK) >> RXF_SIZE_BYTE_CND_POS;
699
700 /* the register holds the value divided by 128 */
701 rxf_len = rxf_len << 7;
702
703 file_len = sizeof(*dump_file) +
704 sizeof(*dump_data) * 3 +
705 sram_len +
706 rxf_len +
707 sizeof(*dump_info);
708
Emmanuel Grumbach5bfe6f52014-06-25 16:21:43 +0300709 dump_file = vzalloc(file_len);
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300710 if (!dump_file) {
711 kfree(fw_error_dump);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300712 return;
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300713 }
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300714
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300715 fw_error_dump->op_mode_ptr = dump_file;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300716
717 dump_file->barker = cpu_to_le32(IWL_FW_ERROR_DUMP_BARKER);
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300718 dump_data = (void *)dump_file->data;
719
720 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_DEV_FW_INFO);
721 dump_data->len = cpu_to_le32(sizeof(*dump_info));
722 dump_info = (void *) dump_data->data;
723 dump_info->device_family =
724 mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000 ?
725 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_7) :
726 cpu_to_le32(IWL_FW_ERROR_DUMP_FAMILY_8);
727 memcpy(dump_info->fw_human_readable, mvm->fw->human_readable,
728 sizeof(dump_info->fw_human_readable));
729 strncpy(dump_info->dev_human_readable, mvm->cfg->name,
730 sizeof(dump_info->dev_human_readable));
731 strncpy(dump_info->bus_human_readable, mvm->dev->bus->name,
732 sizeof(dump_info->bus_human_readable));
733
734 dump_data = iwl_fw_error_next_data(dump_data);
735 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_RXF);
736 dump_data->len = cpu_to_le32(rxf_len);
737
738 if (iwl_trans_grab_nic_access(mvm->trans, false, &flags)) {
739 u32 *rxf = (void *)dump_data->data;
740 int i;
741
742 for (i = 0; i < (rxf_len / sizeof(u32)); i++) {
743 iwl_trans_write_prph(mvm->trans,
744 RXF_LD_FENCE_OFFSET_ADDR,
745 i * sizeof(u32));
746 rxf[i] = iwl_trans_read_prph(mvm->trans,
747 RXF_FIFO_RD_FENCE_ADDR);
748 }
749 iwl_trans_release_nic_access(mvm->trans, &flags);
750 }
751
752 dump_data = iwl_fw_error_next_data(dump_data);
753 dump_data->type = cpu_to_le32(IWL_FW_ERROR_DUMP_SRAM);
754 dump_data->len = cpu_to_le32(sram_len);
755 iwl_trans_read_mem_bytes(mvm->trans, sram_ofs, dump_data->data,
756 sram_len);
757
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300758 fw_error_dump->trans_ptr = iwl_trans_dump_data(mvm->trans);
759 fw_error_dump->op_mode_len = file_len;
760 if (fw_error_dump->trans_ptr)
761 file_len += fw_error_dump->trans_ptr->len;
762 dump_file->file_len = cpu_to_le32(file_len);
763 mvm->fw_error_dump = fw_error_dump;
Emmanuel Grumbach655e6d62014-06-25 14:08:58 +0300764}
765#endif
766
Johannes Berg8ca151b2013-01-24 14:25:36 +0100767static void iwl_mvm_restart_cleanup(struct iwl_mvm *mvm)
768{
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200769#ifdef CONFIG_IWLWIFI_DEBUGFS
770 static char *env[] = { "DRIVER=iwlwifi", "EVENT=error_dump", NULL };
771
772 iwl_mvm_fw_error_dump(mvm);
773
774 /* notify the userspace about the error we had */
775 kobject_uevent_env(&mvm->hw->wiphy->dev.kobj, KOBJ_CHANGE, env);
776#endif
777
Johannes Berg8ca151b2013-01-24 14:25:36 +0100778 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100779
780 mvm->scan_status = IWL_MVM_SCAN_NONE;
Luciano Coelhob1873302014-08-08 17:12:07 +0300781 mvm->ps_disabled = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100782
783 /* just in case one was running */
784 ieee80211_remain_on_channel_expired(mvm->hw);
785
786 ieee80211_iterate_active_interfaces_atomic(
787 mvm->hw, IEEE80211_IFACE_ITER_RESUME_ALL,
788 iwl_mvm_cleanup_iterator, mvm);
789
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200790 mvm->p2p_device_vif = NULL;
Eliad Peller37577fe2013-12-05 17:19:39 +0200791 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200792
793 iwl_mvm_reset_phy_ctxts(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100794 memset(mvm->fw_key_table, 0, sizeof(mvm->fw_key_table));
795 memset(mvm->sta_drained, 0, sizeof(mvm->sta_drained));
Emmanuel Grumbach8a275ba2014-07-13 09:12:11 +0300796 memset(&mvm->last_bt_notif, 0, sizeof(mvm->last_bt_notif));
797 memset(&mvm->last_bt_notif_old, 0, sizeof(mvm->last_bt_notif_old));
798 memset(&mvm->last_bt_ci_cmd, 0, sizeof(mvm->last_bt_ci_cmd));
799 memset(&mvm->last_bt_ci_cmd_old, 0, sizeof(mvm->last_bt_ci_cmd_old));
800 memset(&mvm->bt_ack_kill_msk, 0, sizeof(mvm->bt_ack_kill_msk));
801 memset(&mvm->bt_cts_kill_msk, 0, sizeof(mvm->bt_cts_kill_msk));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100802
803 ieee80211_wake_queues(mvm->hw);
804
Eliad Peller7498cf42014-01-16 17:10:44 +0200805 /* cleanup all stale references (scan, roc), but keep the
806 * ucode_down ref until reconfig is complete */
807 iwl_mvm_unref_all_except(mvm, IWL_MVM_REF_UCODE_DOWN);
808
Eliad Peller228670b2014-08-10 17:00:15 +0300809 /* clear any stale d0i3 state */
810 clear_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status);
811
Johannes Berg8ca151b2013-01-24 14:25:36 +0100812 mvm->vif_count = 0;
Emmanuel Grumbach113a0442013-07-02 14:16:38 +0300813 mvm->rx_ba_sessions = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100814}
815
816static int iwl_mvm_mac_start(struct ieee80211_hw *hw)
817{
818 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
819 int ret;
820
821 mutex_lock(&mvm->mutex);
822
823 /* Clean up some internal and mac80211 state on restart */
824 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
825 iwl_mvm_restart_cleanup(mvm);
826
827 ret = iwl_mvm_up(mvm);
Johannes Bergc47af222014-04-30 16:34:45 +0200828
829 if (ret && test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
830 /* Something went wrong - we need to finish some cleanup
831 * that normally iwl_mvm_mac_restart_complete() below
832 * would do.
833 */
834 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
835 iwl_mvm_d0i3_enable_tx(mvm, NULL);
836 }
837
Johannes Berg8ca151b2013-01-24 14:25:36 +0100838 mutex_unlock(&mvm->mutex);
839
840 return ret;
841}
842
843static void iwl_mvm_mac_restart_complete(struct ieee80211_hw *hw)
844{
845 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
846 int ret;
847
848 mutex_lock(&mvm->mutex);
849
850 clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
Arik Nemtsovb2492502014-03-13 12:21:50 +0200851 iwl_mvm_d0i3_enable_tx(mvm, NULL);
Johannes Berg01662302014-06-06 15:18:45 +0200852 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100853 if (ret)
854 IWL_ERR(mvm, "Failed to update quotas after restart (%d)\n",
855 ret);
856
Eliad Peller7498cf42014-01-16 17:10:44 +0200857 /* allow transport/FW low power modes */
858 iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN);
859
Johannes Berg8ca151b2013-01-24 14:25:36 +0100860 mutex_unlock(&mvm->mutex);
861}
862
863static void iwl_mvm_mac_stop(struct ieee80211_hw *hw)
864{
865 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
866
Eliad Peller37577fe2013-12-05 17:19:39 +0200867 flush_work(&mvm->d0i3_exit_work);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100868 flush_work(&mvm->async_handlers_wk);
869
870 mutex_lock(&mvm->mutex);
Eliad Peller7498cf42014-01-16 17:10:44 +0200871
872 /* disallow low power states when the FW is down */
873 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
874
Johannes Berg8ca151b2013-01-24 14:25:36 +0100875 /* async_handlers_wk is now blocked */
876
877 /*
878 * The work item could be running or queued if the
879 * ROC time event stops just as we get here.
880 */
881 cancel_work_sync(&mvm->roc_done_wk);
882
883 iwl_trans_stop_device(mvm->trans);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100884
885 iwl_mvm_async_handlers_purge(mvm);
886 /* async_handlers_list is empty and will stay empty: HW is stopped */
887
888 /* the fw is stopped, the aux sta is dead: clean up driver state */
889 iwl_mvm_dealloc_int_sta(mvm, &mvm->aux_sta);
890
891 mutex_unlock(&mvm->mutex);
892
893 /*
894 * The worker might have been waiting for the mutex, let it run and
895 * discover that its list is now empty.
896 */
897 cancel_work_sync(&mvm->async_handlers_wk);
898}
899
Ilan Peerfe0f2de2013-03-21 10:23:52 +0200900static struct iwl_mvm_phy_ctxt *iwl_mvm_get_free_phy_ctxt(struct iwl_mvm *mvm)
901{
902 u16 i;
903
904 lockdep_assert_held(&mvm->mutex);
905
906 for (i = 0; i < NUM_PHY_CTX; i++)
907 if (!mvm->phy_ctxts[i].ref)
908 return &mvm->phy_ctxts[i];
909
910 IWL_ERR(mvm, "No available PHY context\n");
911 return NULL;
912}
913
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200914static int iwl_mvm_set_tx_power(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
915 s8 tx_power)
916{
917 /* FW is in charge of regulatory enforcement */
918 struct iwl_reduce_tx_power_cmd reduce_txpwr_cmd = {
919 .mac_context_id = iwl_mvm_vif_from_mac80211(vif)->id,
920 .pwr_restriction = cpu_to_le16(tx_power),
921 };
922
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300923 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0,
Emmanuel Grumbachee9c6cb2013-12-04 13:53:39 +0200924 sizeof(reduce_txpwr_cmd),
925 &reduce_txpwr_cmd);
926}
927
Johannes Berg8ca151b2013-01-24 14:25:36 +0100928static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
929 struct ieee80211_vif *vif)
930{
931 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
932 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
933 int ret;
934
935 /*
Gregory Greenmand40fc482014-06-25 14:08:50 +0200936 * make sure D0i3 exit is completed, otherwise a target access
937 * during tx queue configuration could be done when still in
938 * D0i3 state.
939 */
940 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_ADD_IF);
941 if (ret)
942 return ret;
943
944 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100945 * Not much to do here. The stack will not allow interface
946 * types or combinations that we didn't advertise, so we
947 * don't really have to check the types.
948 */
949
950 mutex_lock(&mvm->mutex);
951
Eliad Pellere89044d2013-07-16 17:33:26 +0300952 /* Allocate resources for the MAC context, and add it to the fw */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100953 ret = iwl_mvm_mac_ctxt_init(mvm, vif);
954 if (ret)
955 goto out_unlock;
956
Alexander Bondar1c2abf72013-08-27 20:31:48 +0300957 /* Counting number of interfaces is needed for legacy PM */
Ilan Peerea183d02013-07-23 14:41:53 +0300958 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
959 mvm->vif_count++;
Ilan Peerea183d02013-07-23 14:41:53 +0300960
961 /*
Johannes Berg8ca151b2013-01-24 14:25:36 +0100962 * The AP binding flow can be done only after the beacon
963 * template is configured (which happens only in the mac80211
964 * start_ap() flow), and adding the broadcast station can happen
965 * only after the binding.
966 * In addition, since modifying the MAC before adding a bcast
967 * station is not allowed by the FW, delay the adding of MAC context to
968 * the point where we can also add the bcast station.
969 * In short: there's not much we can do at this point, other than
970 * allocating resources :)
971 */
Johannes Berg5023d962013-07-31 14:07:43 +0200972 if (vif->type == NL80211_IFTYPE_AP ||
973 vif->type == NL80211_IFTYPE_ADHOC) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100974 u32 qmask = iwl_mvm_mac_get_queues_mask(mvm, vif);
975 ret = iwl_mvm_allocate_int_sta(mvm, &mvmvif->bcast_sta,
Eliad Pellerb92e6612014-01-23 17:58:23 +0200976 qmask,
977 ieee80211_vif_type_p2p(vif));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100978 if (ret) {
979 IWL_ERR(mvm, "Failed to allocate bcast sta\n");
980 goto out_release;
981 }
982
Emmanuel Grumbach77740cb2013-06-26 23:51:41 +0300983 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100984 goto out_unlock;
985 }
986
Johannes Berg8ca151b2013-01-24 14:25:36 +0100987 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
988 if (ret)
989 goto out_release;
990
Arik Nemtsov999609f2014-05-15 17:31:51 +0300991 ret = iwl_mvm_power_update_mac(mvm);
Emmanuel Grumbache5e7aa82014-01-27 16:57:33 +0200992 if (ret)
993 goto out_release;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100994
Hila Gonen7df15b12012-12-12 11:16:19 +0200995 /* beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300996 ret = iwl_mvm_disable_beacon_filter(mvm, vif, 0);
Eliad Pellerbd3351b2013-07-16 17:50:17 +0300997 if (ret)
998 goto out_remove_mac;
999
Hila Gonen7df15b12012-12-12 11:16:19 +02001000 if (!mvm->bf_allowed_vif &&
Emmanuel Grumbach73e5f2c2014-03-30 08:57:30 +03001001 vif->type == NL80211_IFTYPE_STATION && !vif->p2p) {
Hila Gonen7df15b12012-12-12 11:16:19 +02001002 mvm->bf_allowed_vif = mvmvif;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001003 vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER |
1004 IEEE80211_VIF_SUPPORTS_CQM_RSSI;
Hila Gonen7df15b12012-12-12 11:16:19 +02001005 }
1006
Johannes Berg8ca151b2013-01-24 14:25:36 +01001007 /*
1008 * P2P_DEVICE interface does not have a channel context assigned to it,
1009 * so a dedicated PHY context is allocated to it and the corresponding
1010 * MAC context is bound to it at this stage.
1011 */
1012 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001013
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001014 mvmvif->phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
1015 if (!mvmvif->phy_ctxt) {
1016 ret = -ENOSPC;
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001017 goto out_free_bf;
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001018 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001019
Ilan Peer53a9d612013-04-28 11:55:08 +03001020 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001021 ret = iwl_mvm_binding_add_vif(mvm, vif);
1022 if (ret)
Ilan Peer53a9d612013-04-28 11:55:08 +03001023 goto out_unref_phy;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001024
1025 ret = iwl_mvm_add_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
1026 if (ret)
1027 goto out_unbind;
1028
1029 /* Save a pointer to p2p device vif, so it can later be used to
1030 * update the p2p device MAC when a GO is started/stopped */
1031 mvm->p2p_device_vif = vif;
1032 }
1033
Johannes Berg63494372013-03-26 10:47:53 +01001034 iwl_mvm_vif_dbgfs_register(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001035 goto out_unlock;
1036
1037 out_unbind:
1038 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peer53a9d612013-04-28 11:55:08 +03001039 out_unref_phy:
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001040 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001041 out_free_bf:
1042 if (mvm->bf_allowed_vif == mvmvif) {
1043 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001044 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1045 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Eliad Pellerbd3351b2013-07-16 17:50:17 +03001046 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001047 out_remove_mac:
1048 mvmvif->phy_ctxt = NULL;
1049 iwl_mvm_mac_ctxt_remove(mvm, vif);
1050 out_release:
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001051 if (vif->type != NL80211_IFTYPE_P2P_DEVICE)
1052 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001053
Johannes Berg8ca151b2013-01-24 14:25:36 +01001054 iwl_mvm_mac_ctxt_release(mvm, vif);
1055 out_unlock:
1056 mutex_unlock(&mvm->mutex);
1057
Gregory Greenmand40fc482014-06-25 14:08:50 +02001058 iwl_mvm_unref(mvm, IWL_MVM_REF_ADD_IF);
1059
Johannes Berg8ca151b2013-01-24 14:25:36 +01001060 return ret;
1061}
1062
Johannes Berg38a12b52013-02-22 14:07:56 +01001063static void iwl_mvm_prepare_mac_removal(struct iwl_mvm *mvm,
1064 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001065{
Johannes Berg8ca151b2013-01-24 14:25:36 +01001066 u32 tfd_msk = 0, ac;
1067
1068 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1069 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE)
1070 tfd_msk |= BIT(vif->hw_queue[ac]);
1071
1072 if (vif->cab_queue != IEEE80211_INVAL_HW_QUEUE)
1073 tfd_msk |= BIT(vif->cab_queue);
1074
1075 if (tfd_msk) {
1076 mutex_lock(&mvm->mutex);
1077 iwl_mvm_flush_tx_path(mvm, tfd_msk, true);
1078 mutex_unlock(&mvm->mutex);
1079 }
1080
1081 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1082 /*
1083 * Flush the ROC worker which will flush the OFFCHANNEL queue.
1084 * We assume here that all the packets sent to the OFFCHANNEL
1085 * queue are sent in ROC session.
1086 */
1087 flush_work(&mvm->roc_done_wk);
1088 } else {
1089 /*
1090 * By now, all the AC queues are empty. The AGG queues are
1091 * empty too. We already got all the Tx responses for all the
1092 * packets in the queues. The drain work can have been
Emmanuel Grumbach0742a752013-06-10 14:10:33 +03001093 * triggered. Flush it.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001094 */
1095 flush_work(&mvm->sta_drained_wk);
1096 }
Johannes Berg38a12b52013-02-22 14:07:56 +01001097}
1098
1099static void iwl_mvm_mac_remove_interface(struct ieee80211_hw *hw,
1100 struct ieee80211_vif *vif)
1101{
1102 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1103 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1104
1105 iwl_mvm_prepare_mac_removal(mvm, vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001106
1107 mutex_lock(&mvm->mutex);
1108
Hila Gonen7df15b12012-12-12 11:16:19 +02001109 if (mvm->bf_allowed_vif == mvmvif) {
1110 mvm->bf_allowed_vif = NULL;
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001111 vif->driver_flags &= ~(IEEE80211_VIF_BEACON_FILTER |
1112 IEEE80211_VIF_SUPPORTS_CQM_RSSI);
Hila Gonen7df15b12012-12-12 11:16:19 +02001113 }
1114
Johannes Berg63494372013-03-26 10:47:53 +01001115 iwl_mvm_vif_dbgfs_clean(mvm, vif);
1116
Johannes Berg8ca151b2013-01-24 14:25:36 +01001117 /*
1118 * For AP/GO interface, the tear down of the resources allocated to the
Johannes Berg38a12b52013-02-22 14:07:56 +01001119 * interface is be handled as part of the stop_ap flow.
Johannes Berg8ca151b2013-01-24 14:25:36 +01001120 */
Johannes Berg5023d962013-07-31 14:07:43 +02001121 if (vif->type == NL80211_IFTYPE_AP ||
1122 vif->type == NL80211_IFTYPE_ADHOC) {
David Spinadel507cadf2013-07-31 18:07:21 +03001123#ifdef CONFIG_NL80211_TESTMODE
1124 if (vif == mvm->noa_vif) {
1125 mvm->noa_vif = NULL;
1126 mvm->noa_duration = 0;
1127 }
1128#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +01001129 iwl_mvm_dealloc_int_sta(mvm, &mvmvif->bcast_sta);
1130 goto out_release;
1131 }
1132
1133 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
1134 mvm->p2p_device_vif = NULL;
1135 iwl_mvm_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1136 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02001137 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001138 mvmvif->phy_ctxt = NULL;
1139 }
1140
Alexander Bondar5ee2b212013-03-05 10:16:40 +02001141 if (mvm->vif_count && vif->type != NL80211_IFTYPE_P2P_DEVICE)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001142 mvm->vif_count--;
Alexander Bondar1c2abf72013-08-27 20:31:48 +03001143
Arik Nemtsov999609f2014-05-15 17:31:51 +03001144 iwl_mvm_power_update_mac(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001145 iwl_mvm_mac_ctxt_remove(mvm, vif);
1146
1147out_release:
1148 iwl_mvm_mac_ctxt_release(mvm, vif);
1149 mutex_unlock(&mvm->mutex);
1150}
1151
1152static int iwl_mvm_mac_config(struct ieee80211_hw *hw, u32 changed)
1153{
1154 return 0;
1155}
1156
Eliad Pellere59647e2013-11-28 14:08:50 +02001157struct iwl_mvm_mc_iter_data {
1158 struct iwl_mvm *mvm;
1159 int port_id;
1160};
1161
1162static void iwl_mvm_mc_iface_iterator(void *_data, u8 *mac,
1163 struct ieee80211_vif *vif)
1164{
1165 struct iwl_mvm_mc_iter_data *data = _data;
1166 struct iwl_mvm *mvm = data->mvm;
1167 struct iwl_mcast_filter_cmd *cmd = mvm->mcast_filter_cmd;
1168 int ret, len;
1169
1170 /* if we don't have free ports, mcast frames will be dropped */
1171 if (WARN_ON_ONCE(data->port_id >= MAX_PORT_ID_NUM))
1172 return;
1173
1174 if (vif->type != NL80211_IFTYPE_STATION ||
1175 !vif->bss_conf.assoc)
1176 return;
1177
1178 cmd->port_id = data->port_id++;
1179 memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN);
1180 len = roundup(sizeof(*cmd) + cmd->count * ETH_ALEN, 4);
1181
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001182 ret = iwl_mvm_send_cmd_pdu(mvm, MCAST_FILTER_CMD, CMD_ASYNC, len, cmd);
Eliad Pellere59647e2013-11-28 14:08:50 +02001183 if (ret)
1184 IWL_ERR(mvm, "mcast filter cmd error. ret=%d\n", ret);
1185}
1186
1187static void iwl_mvm_recalc_multicast(struct iwl_mvm *mvm)
1188{
1189 struct iwl_mvm_mc_iter_data iter_data = {
1190 .mvm = mvm,
1191 };
1192
1193 lockdep_assert_held(&mvm->mutex);
1194
1195 if (WARN_ON_ONCE(!mvm->mcast_filter_cmd))
1196 return;
1197
Emmanuel Grumbach1c4abec2014-05-08 09:48:10 +03001198 ieee80211_iterate_active_interfaces_atomic(
Eliad Pellere59647e2013-11-28 14:08:50 +02001199 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1200 iwl_mvm_mc_iface_iterator, &iter_data);
1201}
1202
1203static u64 iwl_mvm_prepare_multicast(struct ieee80211_hw *hw,
1204 struct netdev_hw_addr_list *mc_list)
1205{
1206 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1207 struct iwl_mcast_filter_cmd *cmd;
1208 struct netdev_hw_addr *addr;
1209 int addr_count = netdev_hw_addr_list_count(mc_list);
1210 bool pass_all = false;
1211 int len;
1212
1213 if (addr_count > MAX_MCAST_FILTERING_ADDRESSES) {
1214 pass_all = true;
1215 addr_count = 0;
1216 }
1217
1218 len = roundup(sizeof(*cmd) + addr_count * ETH_ALEN, 4);
1219 cmd = kzalloc(len, GFP_ATOMIC);
1220 if (!cmd)
1221 return 0;
1222
1223 if (pass_all) {
1224 cmd->pass_all = 1;
1225 return (u64)(unsigned long)cmd;
1226 }
1227
1228 netdev_hw_addr_list_for_each(addr, mc_list) {
1229 IWL_DEBUG_MAC80211(mvm, "mcast addr (%d): %pM\n",
1230 cmd->count, addr->addr);
1231 memcpy(&cmd->addr_list[cmd->count * ETH_ALEN],
1232 addr->addr, ETH_ALEN);
1233 cmd->count++;
1234 }
1235
1236 return (u64)(unsigned long)cmd;
1237}
1238
Johannes Berg8ca151b2013-01-24 14:25:36 +01001239static void iwl_mvm_configure_filter(struct ieee80211_hw *hw,
1240 unsigned int changed_flags,
1241 unsigned int *total_flags,
1242 u64 multicast)
1243{
Eliad Pellere59647e2013-11-28 14:08:50 +02001244 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1245 struct iwl_mcast_filter_cmd *cmd = (void *)(unsigned long)multicast;
1246
1247 mutex_lock(&mvm->mutex);
1248
1249 /* replace previous configuration */
1250 kfree(mvm->mcast_filter_cmd);
1251 mvm->mcast_filter_cmd = cmd;
1252
1253 if (!cmd)
1254 goto out;
1255
1256 iwl_mvm_recalc_multicast(mvm);
1257out:
1258 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001259 *total_flags = 0;
1260}
1261
Eliad Pellerc87163b2014-01-08 10:11:11 +02001262#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1263struct iwl_bcast_iter_data {
1264 struct iwl_mvm *mvm;
1265 struct iwl_bcast_filter_cmd *cmd;
1266 u8 current_filter;
1267};
1268
1269static void
1270iwl_mvm_set_bcast_filter(struct ieee80211_vif *vif,
1271 const struct iwl_fw_bcast_filter *in_filter,
1272 struct iwl_fw_bcast_filter *out_filter)
1273{
1274 struct iwl_fw_bcast_filter_attr *attr;
1275 int i;
1276
1277 memcpy(out_filter, in_filter, sizeof(*out_filter));
1278
1279 for (i = 0; i < ARRAY_SIZE(out_filter->attrs); i++) {
1280 attr = &out_filter->attrs[i];
1281
1282 if (!attr->mask)
1283 break;
1284
Eliad Peller2ee8f022014-01-13 19:07:09 +02001285 switch (attr->reserved1) {
1286 case cpu_to_le16(BC_FILTER_MAGIC_IP):
1287 if (vif->bss_conf.arp_addr_cnt != 1) {
1288 attr->mask = 0;
1289 continue;
1290 }
1291
1292 attr->val = vif->bss_conf.arp_addr_list[0];
1293 break;
1294 case cpu_to_le16(BC_FILTER_MAGIC_MAC):
1295 attr->val = *(__be32 *)&vif->addr[2];
1296 break;
1297 default:
1298 break;
1299 }
1300 attr->reserved1 = 0;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001301 out_filter->num_attrs++;
1302 }
1303}
1304
1305static void iwl_mvm_bcast_filter_iterator(void *_data, u8 *mac,
1306 struct ieee80211_vif *vif)
1307{
1308 struct iwl_bcast_iter_data *data = _data;
1309 struct iwl_mvm *mvm = data->mvm;
1310 struct iwl_bcast_filter_cmd *cmd = data->cmd;
1311 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1312 struct iwl_fw_bcast_mac *bcast_mac;
1313 int i;
1314
1315 if (WARN_ON(mvmvif->id >= ARRAY_SIZE(cmd->macs)))
1316 return;
1317
1318 bcast_mac = &cmd->macs[mvmvif->id];
1319
Ilan Peere48393e2014-05-22 11:19:02 +03001320 /*
1321 * enable filtering only for associated stations, but not for P2P
1322 * Clients
1323 */
1324 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p ||
1325 !vif->bss_conf.assoc)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001326 return;
1327
1328 bcast_mac->default_discard = 1;
1329
1330 /* copy all configured filters */
1331 for (i = 0; mvm->bcast_filters[i].attrs[0].mask; i++) {
1332 /*
1333 * Make sure we don't exceed our filters limit.
1334 * if there is still a valid filter to be configured,
1335 * be on the safe side and just allow bcast for this mac.
1336 */
1337 if (WARN_ON_ONCE(data->current_filter >=
1338 ARRAY_SIZE(cmd->filters))) {
1339 bcast_mac->default_discard = 0;
1340 bcast_mac->attached_filters = 0;
1341 break;
1342 }
1343
1344 iwl_mvm_set_bcast_filter(vif,
1345 &mvm->bcast_filters[i],
1346 &cmd->filters[data->current_filter]);
1347
1348 /* skip current filter if it contains no attributes */
1349 if (!cmd->filters[data->current_filter].num_attrs)
1350 continue;
1351
1352 /* attach the filter to current mac */
1353 bcast_mac->attached_filters |=
1354 cpu_to_le16(BIT(data->current_filter));
1355
1356 data->current_filter++;
1357 }
1358}
1359
Eliad Pellerde06a592014-01-08 10:11:12 +02001360bool iwl_mvm_bcast_filter_build_cmd(struct iwl_mvm *mvm,
1361 struct iwl_bcast_filter_cmd *cmd)
Eliad Pellerc87163b2014-01-08 10:11:11 +02001362{
Eliad Pellerc87163b2014-01-08 10:11:11 +02001363 struct iwl_bcast_iter_data iter_data = {
1364 .mvm = mvm,
Eliad Pellerde06a592014-01-08 10:11:12 +02001365 .cmd = cmd,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001366 };
1367
Eliad Pellerde06a592014-01-08 10:11:12 +02001368 memset(cmd, 0, sizeof(*cmd));
1369 cmd->max_bcast_filters = ARRAY_SIZE(cmd->filters);
1370 cmd->max_macs = ARRAY_SIZE(cmd->macs);
1371
1372#ifdef CONFIG_IWLWIFI_DEBUGFS
1373 /* use debugfs filters/macs if override is configured */
1374 if (mvm->dbgfs_bcast_filtering.override) {
1375 memcpy(cmd->filters, &mvm->dbgfs_bcast_filtering.cmd.filters,
1376 sizeof(cmd->filters));
1377 memcpy(cmd->macs, &mvm->dbgfs_bcast_filtering.cmd.macs,
1378 sizeof(cmd->macs));
1379 return true;
1380 }
1381#endif
Eliad Pellerc87163b2014-01-08 10:11:11 +02001382
1383 /* if no filters are configured, do nothing */
1384 if (!mvm->bcast_filters)
Eliad Pellerde06a592014-01-08 10:11:12 +02001385 return false;
Eliad Pellerc87163b2014-01-08 10:11:11 +02001386
1387 /* configure and attach these filters for each associated sta vif */
1388 ieee80211_iterate_active_interfaces(
1389 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
1390 iwl_mvm_bcast_filter_iterator, &iter_data);
1391
Eliad Pellerde06a592014-01-08 10:11:12 +02001392 return true;
1393}
1394static int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1395 struct ieee80211_vif *vif)
1396{
1397 struct iwl_bcast_filter_cmd cmd;
1398
1399 if (!(mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING))
1400 return 0;
1401
1402 if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
1403 return 0;
1404
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001405 return iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0,
Eliad Pellerc87163b2014-01-08 10:11:11 +02001406 sizeof(cmd), &cmd);
1407}
1408#else
1409static inline int iwl_mvm_configure_bcast_filter(struct iwl_mvm *mvm,
1410 struct ieee80211_vif *vif)
1411{
1412 return 0;
1413}
1414#endif
1415
Arik Nemtsovf6972672014-06-15 16:03:55 +03001416static void iwl_mvm_teardown_tdls_peers(struct iwl_mvm *mvm)
1417{
1418 struct ieee80211_sta *sta;
1419 struct iwl_mvm_sta *mvmsta;
1420 int i;
1421
1422 lockdep_assert_held(&mvm->mutex);
1423
1424 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
1425 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
1426 lockdep_is_held(&mvm->mutex));
1427 if (!sta || IS_ERR(sta) || !sta->tdls)
1428 continue;
1429
1430 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1431 ieee80211_tdls_oper_request(mvmsta->vif, sta->addr,
1432 NL80211_TDLS_TEARDOWN,
1433 WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED,
1434 GFP_KERNEL);
1435 }
1436}
1437
Johannes Berg8ca151b2013-01-24 14:25:36 +01001438static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
1439 struct ieee80211_vif *vif,
1440 struct ieee80211_bss_conf *bss_conf,
1441 u32 changes)
1442{
1443 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1444 int ret;
1445
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001446 /*
1447 * Re-calculate the tsf id, as the master-slave relations depend on the
1448 * beacon interval, which was not known when the station interface was
1449 * added.
1450 */
1451 if (changes & BSS_CHANGED_ASSOC && bss_conf->assoc)
1452 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1453
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001454 /*
1455 * If we're not associated yet, take the (new) BSSID before associating
1456 * so the firmware knows. If we're already associated, then use the old
1457 * BSSID here, and we'll send a cleared one later in the CHANGED_ASSOC
1458 * branch for disassociation below.
1459 */
1460 if (changes & BSS_CHANGED_BSSID && !mvmvif->associated)
1461 memcpy(mvmvif->bssid, bss_conf->bssid, ETH_ALEN);
1462
1463 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, mvmvif->bssid);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001464 if (ret)
1465 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
1466
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001467 /* after sending it once, adopt mac80211 data */
1468 memcpy(mvmvif->bssid, bss_conf->bssid, ETH_ALEN);
1469 mvmvif->associated = bss_conf->assoc;
1470
Johannes Berg8ca151b2013-01-24 14:25:36 +01001471 if (changes & BSS_CHANGED_ASSOC) {
1472 if (bss_conf->assoc) {
1473 /* add quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001474 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001475 if (ret) {
1476 IWL_ERR(mvm, "failed to update quotas\n");
1477 return;
1478 }
Johannes Berg016d27e2013-05-03 11:16:15 +02001479
1480 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART,
1481 &mvm->status)) {
1482 /*
1483 * If we're restarting then the firmware will
1484 * obviously have lost synchronisation with
1485 * the AP. It will attempt to synchronise by
1486 * itself, but we can make it more reliable by
1487 * scheduling a session protection time event.
1488 *
1489 * The firmware needs to receive a beacon to
1490 * catch up with synchronisation, use 110% of
1491 * the beacon interval.
1492 *
1493 * Set a large maximum delay to allow for more
1494 * than a single interface.
1495 */
1496 u32 dur = (11 * vif->bss_conf.beacon_int) / 10;
1497 iwl_mvm_protect_session(mvm, vif, dur, dur,
Liad Kaufmand20d37b2014-07-06 17:14:39 +03001498 5 * dur, false);
Johannes Berg016d27e2013-05-03 11:16:15 +02001499 }
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001500
1501 iwl_mvm_sf_update(mvm, vif, false);
Alexander Bondar175a70b2013-04-14 20:59:37 +03001502 iwl_mvm_power_vif_assoc(mvm, vif);
Emmanuel Grumbach697162a2014-07-30 15:56:42 +03001503 if (vif->p2p) {
Eliad Peller29a90a42013-11-05 14:06:29 +02001504 iwl_mvm_ref(mvm, IWL_MVM_REF_P2P_CLIENT);
Emmanuel Grumbach697162a2014-07-30 15:56:42 +03001505 iwl_mvm_update_smps(mvm, vif,
1506 IWL_MVM_SMPS_REQ_PROT,
1507 IEEE80211_SMPS_DYNAMIC);
1508 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001509 } else if (mvmvif->ap_sta_id != IWL_MVM_STATION_COUNT) {
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001510 /*
1511 * If update fails - SF might be running in associated
1512 * mode while disassociated - which is forbidden.
1513 */
1514 WARN_ONCE(iwl_mvm_sf_update(mvm, vif, false),
1515 "Failed to update SF upon disassociation\n");
1516
Johannes Berg8ca151b2013-01-24 14:25:36 +01001517 /* remove AP station now that the MAC is unassoc */
1518 ret = iwl_mvm_rm_sta_id(mvm, vif, mvmvif->ap_sta_id);
1519 if (ret)
1520 IWL_ERR(mvm, "failed to remove AP station\n");
Eliad Peller37577fe2013-12-05 17:19:39 +02001521
1522 if (mvm->d0i3_ap_sta_id == mvmvif->ap_sta_id)
1523 mvm->d0i3_ap_sta_id = IWL_MVM_STATION_COUNT;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001524 mvmvif->ap_sta_id = IWL_MVM_STATION_COUNT;
1525 /* remove quota for this interface */
Johannes Berg01662302014-06-06 15:18:45 +02001526 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001527 if (ret)
1528 IWL_ERR(mvm, "failed to update quotas\n");
Eliad Peller29a90a42013-11-05 14:06:29 +02001529
1530 if (vif->p2p)
1531 iwl_mvm_unref(mvm, IWL_MVM_REF_P2P_CLIENT);
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001532
1533 /* this will take the cleared BSSID from bss_conf */
1534 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
1535 if (ret)
1536 IWL_ERR(mvm,
1537 "failed to update MAC %pM (clear after unassoc)\n",
1538 vif->addr);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001539 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001540
Eliad Pellere59647e2013-11-28 14:08:50 +02001541 iwl_mvm_recalc_multicast(mvm);
Eliad Pellerc87163b2014-01-08 10:11:11 +02001542 iwl_mvm_configure_bcast_filter(mvm, vif);
Eliad Pellere59647e2013-11-28 14:08:50 +02001543
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001544 /* reset rssi values */
1545 mvmvif->bf_data.ave_beacon_signal = 0;
1546
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001547 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachf94045e2014-01-06 13:38:55 +02001548 iwl_mvm_update_smps(mvm, vif, IWL_MVM_SMPS_REQ_TT,
1549 IEEE80211_SMPS_AUTOMATIC);
Alexander Bondar989c6502013-05-16 17:34:17 +03001550 } else if (changes & BSS_CHANGED_BEACON_INFO) {
Johannes Berg210a5442013-01-24 23:48:23 +01001551 /*
1552 * We received a beacon _after_ association so
1553 * remove the session protection.
1554 */
1555 iwl_mvm_remove_time_event(mvm, mvmvif,
1556 &mvmvif->time_event_data);
Alexander Bondar51498cf62013-09-02 17:10:14 +03001557 } else if (changes & (BSS_CHANGED_PS | BSS_CHANGED_P2P_PS |
1558 BSS_CHANGED_QOS)) {
Arik Nemtsov999609f2014-05-15 17:31:51 +03001559 ret = iwl_mvm_power_update_mac(mvm);
Alexander Bondar4bf881f2013-05-29 10:19:50 +03001560 if (ret)
1561 IWL_ERR(mvm, "failed to update power mode\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001562 }
Eran Hararycc87d322014-07-15 14:04:23 +03001563
1564 if (changes & BSS_CHANGED_BEACON_INFO) {
1565 iwl_mvm_sf_update(mvm, vif, false);
1566 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
1567 }
1568
Matti Gottlieb88f2fd72013-07-09 15:25:46 +03001569 if (changes & BSS_CHANGED_TXPOWER) {
1570 IWL_DEBUG_CALIB(mvm, "Changing TX Power to %d\n",
1571 bss_conf->txpower);
1572 iwl_mvm_set_tx_power(mvm, vif, bss_conf->txpower);
1573 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001574
1575 if (changes & BSS_CHANGED_CQM) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001576 IWL_DEBUG_MAC80211(mvm, "cqm info_changed\n");
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001577 /* reset cqm events tracking */
1578 mvmvif->bf_data.last_cqm_event = 0;
Avri Altmanfa7b2e72014-05-20 08:03:24 +03001579 if (mvmvif->bf_data.bf_enabled) {
1580 ret = iwl_mvm_enable_beacon_filter(mvm, vif, 0);
1581 if (ret)
1582 IWL_ERR(mvm,
1583 "failed to update CQM thresholds\n");
1584 }
Andrei Otcheretianskia20fd392013-07-21 17:23:59 +03001585 }
Eliad Peller2ee8f022014-01-13 19:07:09 +02001586
1587 if (changes & BSS_CHANGED_ARP_FILTER) {
Johannes Berg3c6acb62014-05-07 11:47:53 +02001588 IWL_DEBUG_MAC80211(mvm, "arp filter changed\n");
Eliad Peller2ee8f022014-01-13 19:07:09 +02001589 iwl_mvm_configure_bcast_filter(mvm, vif);
1590 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001591}
1592
Johannes Berg5023d962013-07-31 14:07:43 +02001593static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
1594 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001595{
1596 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1597 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1598 int ret;
1599
Eliad Peller576eeee2014-07-01 18:38:38 +03001600 /*
1601 * iwl_mvm_mac_ctxt_add() might read directly from the device
1602 * (the system time), so make sure it is available.
1603 */
1604 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_START_AP);
1605 if (ret)
1606 return ret;
1607
Johannes Berg8ca151b2013-01-24 14:25:36 +01001608 mutex_lock(&mvm->mutex);
1609
1610 /* Send the beacon template */
1611 ret = iwl_mvm_mac_ctxt_beacon_changed(mvm, vif);
1612 if (ret)
1613 goto out_unlock;
1614
Ilan Peer6e97b0d2013-12-23 22:18:02 +02001615 /*
1616 * Re-calculate the tsf id, as the master-slave relations depend on the
1617 * beacon interval, which was not known when the AP interface was added.
1618 */
1619 if (vif->type == NL80211_IFTYPE_AP)
1620 iwl_mvm_mac_ctxt_recalc_tsf_id(mvm, vif);
1621
Johannes Berg8ca151b2013-01-24 14:25:36 +01001622 /* Add the mac context */
1623 ret = iwl_mvm_mac_ctxt_add(mvm, vif);
1624 if (ret)
1625 goto out_unlock;
1626
1627 /* Perform the binding */
1628 ret = iwl_mvm_binding_add_vif(mvm, vif);
1629 if (ret)
1630 goto out_remove;
1631
Johannes Berg8ca151b2013-01-24 14:25:36 +01001632 /* Send the bcast station. At this stage the TBTT and DTIM time events
1633 * are added and applied to the scheduler */
1634 ret = iwl_mvm_send_bcast_sta(mvm, vif, &mvmvif->bcast_sta);
1635 if (ret)
1636 goto out_unbind;
1637
Ilan Peer5691e212013-12-31 21:05:50 +02001638 /* must be set before quota calculations */
1639 mvmvif->ap_ibss_active = true;
1640
Ilan Peera11e1442013-12-31 21:19:55 +02001641 /* power updated needs to be done before quotas */
Arik Nemtsov999609f2014-05-15 17:31:51 +03001642 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001643
Johannes Berg01662302014-06-06 15:18:45 +02001644 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001645 if (ret)
Ilan Peera11e1442013-12-31 21:19:55 +02001646 goto out_quota_failed;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001647
Johannes Berg5023d962013-07-31 14:07:43 +02001648 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001649 if (vif->p2p && mvm->p2p_device_vif)
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001650 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001651
Eliad Peller29a90a42013-11-05 14:06:29 +02001652 iwl_mvm_ref(mvm, IWL_MVM_REF_AP_IBSS);
1653
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001654 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001655
Arik Nemtsovf6972672014-06-15 16:03:55 +03001656 /* we don't support TDLS during DCM */
1657 if (iwl_mvm_phy_ctx_count(mvm) > 1)
1658 iwl_mvm_teardown_tdls_peers(mvm);
1659
Johannes Berg8ca151b2013-01-24 14:25:36 +01001660 mutex_unlock(&mvm->mutex);
1661 return 0;
1662
Ilan Peera11e1442013-12-31 21:19:55 +02001663out_quota_failed:
Arik Nemtsov999609f2014-05-15 17:31:51 +03001664 iwl_mvm_power_update_mac(mvm);
Ilan Peer5691e212013-12-31 21:05:50 +02001665 mvmvif->ap_ibss_active = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001666 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1667out_unbind:
1668 iwl_mvm_binding_remove_vif(mvm, vif);
1669out_remove:
1670 iwl_mvm_mac_ctxt_remove(mvm, vif);
1671out_unlock:
1672 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03001673 iwl_mvm_unref(mvm, IWL_MVM_REF_START_AP);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001674 return ret;
1675}
1676
Johannes Berg5023d962013-07-31 14:07:43 +02001677static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
1678 struct ieee80211_vif *vif)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001679{
1680 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1681 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1682
Johannes Berg38a12b52013-02-22 14:07:56 +01001683 iwl_mvm_prepare_mac_removal(mvm, vif);
1684
Johannes Berg8ca151b2013-01-24 14:25:36 +01001685 mutex_lock(&mvm->mutex);
1686
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001687 /* Handle AP stop while in CSA */
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001688 if (rcu_access_pointer(mvm->csa_vif) == vif) {
1689 iwl_mvm_remove_time_event(mvm, mvmvif,
1690 &mvmvif->time_event_data);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001691 RCU_INIT_POINTER(mvm->csa_vif, NULL);
Andrei Otcheretianski7f0a7c62014-05-04 11:48:12 +03001692 }
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03001693
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03001694 if (rcu_access_pointer(mvm->csa_tx_blocked_vif) == vif) {
1695 RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
1696 mvm->csa_tx_block_bcn_timeout = 0;
1697 }
1698
Johannes Berg5023d962013-07-31 14:07:43 +02001699 mvmvif->ap_ibss_active = false;
David Spinadel1c87bba2014-02-27 16:41:52 +02001700 mvm->ap_last_beacon_gp2 = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001701
Emmanuel Grumbach8e484f02013-10-02 15:02:25 +03001702 iwl_mvm_bt_coex_vif_change(mvm);
Emmanuel Grumbachdac94da2013-06-18 07:35:27 +03001703
Eliad Peller29a90a42013-11-05 14:06:29 +02001704 iwl_mvm_unref(mvm, IWL_MVM_REF_AP_IBSS);
1705
Johannes Berg5023d962013-07-31 14:07:43 +02001706 /* Need to update the P2P Device MAC (only GO, IBSS is single vif) */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001707 if (vif->p2p && mvm->p2p_device_vif)
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001708 iwl_mvm_mac_ctxt_changed(mvm, mvm->p2p_device_vif, false, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001709
Johannes Berg01662302014-06-06 15:18:45 +02001710 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001711 iwl_mvm_send_rm_bcast_sta(mvm, &mvmvif->bcast_sta);
1712 iwl_mvm_binding_remove_vif(mvm, vif);
Ilan Peera11e1442013-12-31 21:19:55 +02001713
Arik Nemtsov999609f2014-05-15 17:31:51 +03001714 iwl_mvm_power_update_mac(mvm);
Ilan Peera11e1442013-12-31 21:19:55 +02001715
Johannes Berg8ca151b2013-01-24 14:25:36 +01001716 iwl_mvm_mac_ctxt_remove(mvm, vif);
1717
1718 mutex_unlock(&mvm->mutex);
1719}
1720
Johannes Berg5023d962013-07-31 14:07:43 +02001721static void
1722iwl_mvm_bss_info_changed_ap_ibss(struct iwl_mvm *mvm,
1723 struct ieee80211_vif *vif,
1724 struct ieee80211_bss_conf *bss_conf,
1725 u32 changes)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001726{
Ilan Peerbe2056f2013-12-04 16:47:14 +02001727 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Avri Altman8a5e3662013-11-12 19:16:03 +02001728
Ilan Peerbe2056f2013-12-04 16:47:14 +02001729 /* Changes will be applied when the AP/IBSS is started */
1730 if (!mvmvif->ap_ibss_active)
1731 return;
1732
Johannes Berg863230da2013-12-04 17:08:40 +01001733 if (changes & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT |
1734 BSS_CHANGED_BANDWIDTH) &&
Johannes Berg3dfd3a92014-08-11 21:37:30 +02001735 iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL))
Johannes Berg863230da2013-12-04 17:08:40 +01001736 IWL_ERR(mvm, "failed to update MAC %pM\n", vif->addr);
Avri Altman8a5e3662013-11-12 19:16:03 +02001737
Johannes Berg8ca151b2013-01-24 14:25:36 +01001738 /* Need to send a new beacon template to the FW */
Johannes Berg863230da2013-12-04 17:08:40 +01001739 if (changes & BSS_CHANGED_BEACON &&
1740 iwl_mvm_mac_ctxt_beacon_changed(mvm, vif))
1741 IWL_WARN(mvm, "Failed updating beacon data\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001742}
1743
1744static void iwl_mvm_bss_info_changed(struct ieee80211_hw *hw,
1745 struct ieee80211_vif *vif,
1746 struct ieee80211_bss_conf *bss_conf,
1747 u32 changes)
1748{
1749 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1750
Eliad Peller576eeee2014-07-01 18:38:38 +03001751 /*
1752 * iwl_mvm_bss_info_changed_station() might call
1753 * iwl_mvm_protect_session(), which reads directly from
1754 * the device (the system time), so make sure it is available.
1755 */
1756 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_BSS_CHANGED))
1757 return;
1758
Johannes Berg8ca151b2013-01-24 14:25:36 +01001759 mutex_lock(&mvm->mutex);
1760
David Spinadel723f02e2014-04-27 09:54:54 +03001761 if (changes & BSS_CHANGED_IDLE && !bss_conf->idle)
David Spinadelfb98be52014-05-04 12:51:10 +03001762 iwl_mvm_scan_offload_stop(mvm, true);
David Spinadel723f02e2014-04-27 09:54:54 +03001763
Johannes Berg8ca151b2013-01-24 14:25:36 +01001764 switch (vif->type) {
1765 case NL80211_IFTYPE_STATION:
1766 iwl_mvm_bss_info_changed_station(mvm, vif, bss_conf, changes);
1767 break;
1768 case NL80211_IFTYPE_AP:
Johannes Berg5023d962013-07-31 14:07:43 +02001769 case NL80211_IFTYPE_ADHOC:
1770 iwl_mvm_bss_info_changed_ap_ibss(mvm, vif, bss_conf, changes);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001771 break;
1772 default:
1773 /* shouldn't happen */
1774 WARN_ON_ONCE(1);
1775 }
1776
1777 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03001778 iwl_mvm_unref(mvm, IWL_MVM_REF_BSS_CHANGED);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001779}
1780
Eliad Peller4660dfb2014-06-22 18:15:59 +03001781static int iwl_mvm_cancel_scan_wait_notif(struct iwl_mvm *mvm,
1782 enum iwl_scan_status scan_type)
1783{
1784 int ret;
1785 bool wait_for_handlers = false;
1786
1787 mutex_lock(&mvm->mutex);
1788
1789 if (mvm->scan_status != scan_type) {
1790 ret = 0;
1791 /* make sure there are no pending notifications */
1792 wait_for_handlers = true;
1793 goto out;
1794 }
1795
1796 switch (scan_type) {
1797 case IWL_MVM_SCAN_SCHED:
1798 ret = iwl_mvm_scan_offload_stop(mvm, true);
1799 break;
1800 case IWL_MVM_SCAN_OS:
1801 ret = iwl_mvm_cancel_scan(mvm);
1802 break;
1803 case IWL_MVM_SCAN_NONE:
1804 default:
1805 WARN_ON_ONCE(1);
1806 ret = -EINVAL;
1807 break;
1808 }
1809 if (ret)
1810 goto out;
1811
1812 wait_for_handlers = true;
1813out:
1814 mutex_unlock(&mvm->mutex);
1815
1816 /* make sure we consume the completion notification */
1817 if (wait_for_handlers)
1818 iwl_mvm_wait_for_async_handlers(mvm);
1819
1820 return ret;
1821}
Johannes Berg8ca151b2013-01-24 14:25:36 +01001822static int iwl_mvm_mac_hw_scan(struct ieee80211_hw *hw,
1823 struct ieee80211_vif *vif,
David Spinadelc56ef672014-02-05 15:21:13 +02001824 struct ieee80211_scan_request *hw_req)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001825{
1826 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
David Spinadelc56ef672014-02-05 15:21:13 +02001827 struct cfg80211_scan_request *req = &hw_req->req;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001828 int ret;
1829
David Spinadel762533b2014-06-05 11:20:43 +03001830 if (req->n_channels == 0 ||
1831 req->n_channels > mvm->fw->ucode_capa.n_scan_channels)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001832 return -EINVAL;
1833
Eliad Peller4660dfb2014-06-22 18:15:59 +03001834 ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_SCHED);
1835 if (ret)
1836 return ret;
1837
Johannes Berg8ca151b2013-01-24 14:25:36 +01001838 mutex_lock(&mvm->mutex);
1839
Eliad Peller4660dfb2014-06-22 18:15:59 +03001840 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
Johannes Berg8ca151b2013-01-24 14:25:36 +01001841 ret = -EBUSY;
Arik Nemtsov519e2022013-10-17 17:51:35 +03001842 goto out;
1843 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001844
Arik Nemtsov519e2022013-10-17 17:51:35 +03001845 iwl_mvm_ref(mvm, IWL_MVM_REF_SCAN);
1846
David Spinadelfb98be52014-05-04 12:51:10 +03001847 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
1848 ret = iwl_mvm_unified_scan_lmac(mvm, vif, hw_req);
1849 else
1850 ret = iwl_mvm_scan_request(mvm, vif, req);
1851
Arik Nemtsov519e2022013-10-17 17:51:35 +03001852 if (ret)
1853 iwl_mvm_unref(mvm, IWL_MVM_REF_SCAN);
1854out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001855 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001856 return ret;
1857}
1858
1859static void iwl_mvm_mac_cancel_hw_scan(struct ieee80211_hw *hw,
1860 struct ieee80211_vif *vif)
1861{
1862 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1863
1864 mutex_lock(&mvm->mutex);
1865
1866 iwl_mvm_cancel_scan(mvm);
1867
1868 mutex_unlock(&mvm->mutex);
1869}
1870
1871static void
1872iwl_mvm_mac_allow_buffered_frames(struct ieee80211_hw *hw,
Johannes Berg3e56ead2013-02-15 22:23:18 +01001873 struct ieee80211_sta *sta, u16 tids,
Johannes Berg8ca151b2013-01-24 14:25:36 +01001874 int num_frames,
1875 enum ieee80211_frame_release_type reason,
1876 bool more_data)
1877{
1878 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001879
Johannes Berg3e56ead2013-02-15 22:23:18 +01001880 /* Called when we need to transmit (a) frame(s) from mac80211 */
Johannes Berg8ca151b2013-01-24 14:25:36 +01001881
Johannes Berg3e56ead2013-02-15 22:23:18 +01001882 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
1883 tids, more_data, false);
1884}
1885
1886static void
1887iwl_mvm_mac_release_buffered_frames(struct ieee80211_hw *hw,
1888 struct ieee80211_sta *sta, u16 tids,
1889 int num_frames,
1890 enum ieee80211_frame_release_type reason,
1891 bool more_data)
1892{
1893 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1894
1895 /* Called when we need to transmit (a) frame(s) from agg queue */
1896
1897 iwl_mvm_sta_modify_sleep_tx_count(mvm, sta, reason, num_frames,
1898 tids, more_data, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001899}
1900
1901static void iwl_mvm_mac_sta_notify(struct ieee80211_hw *hw,
1902 struct ieee80211_vif *vif,
1903 enum sta_notify_cmd cmd,
1904 struct ieee80211_sta *sta)
1905{
1906 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg5b577a92013-11-14 18:20:04 +01001907 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Johannes Berg3e56ead2013-02-15 22:23:18 +01001908 int tid;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001909
1910 switch (cmd) {
1911 case STA_NOTIFY_SLEEP:
Emmanuel Grumbache3d4bc82013-05-07 14:08:24 +03001912 if (atomic_read(&mvm->pending_frames[mvmsta->sta_id]) > 0)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001913 ieee80211_sta_block_awake(hw, sta, true);
Johannes Berg3e56ead2013-02-15 22:23:18 +01001914 spin_lock_bh(&mvmsta->lock);
1915 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
1916 struct iwl_mvm_tid_data *tid_data;
1917
1918 tid_data = &mvmsta->tid_data[tid];
1919 if (tid_data->state != IWL_AGG_ON &&
1920 tid_data->state != IWL_EMPTYING_HW_QUEUE_DELBA)
1921 continue;
1922 if (iwl_mvm_tid_queued(tid_data) == 0)
1923 continue;
1924 ieee80211_sta_set_buffered(sta, tid, true);
1925 }
1926 spin_unlock_bh(&mvmsta->lock);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001927 /*
1928 * The fw updates the STA to be asleep. Tx packets on the Tx
1929 * queues to this station will not be transmitted. The fw will
1930 * send a Tx response with TX_STATUS_FAIL_DEST_PS.
1931 */
1932 break;
1933 case STA_NOTIFY_AWAKE:
Emmanuel Grumbach881acd82013-03-19 16:16:00 +02001934 if (WARN_ON(mvmsta->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +01001935 break;
Johannes Berg9cc40712013-02-15 22:47:48 +01001936 iwl_mvm_sta_modify_ps_wake(mvm, sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001937 break;
1938 default:
1939 break;
1940 }
1941}
1942
Johannes Berg1ddbbb02013-12-04 22:39:17 +01001943static void iwl_mvm_sta_pre_rcu_remove(struct ieee80211_hw *hw,
1944 struct ieee80211_vif *vif,
1945 struct ieee80211_sta *sta)
1946{
1947 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
1948 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
1949
1950 /*
1951 * This is called before mac80211 does RCU synchronisation,
1952 * so here we already invalidate our internal RCU-protected
1953 * station pointer. The rest of the code will thus no longer
1954 * be able to find the station this way, and we don't rely
1955 * on further RCU synchronisation after the sta_state()
1956 * callback deleted the station.
1957 */
1958 mutex_lock(&mvm->mutex);
1959 if (sta == rcu_access_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id]))
1960 rcu_assign_pointer(mvm->fw_id_to_mac_id[mvm_sta->sta_id],
1961 ERR_PTR(-ENOENT));
1962 mutex_unlock(&mvm->mutex);
1963}
1964
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001965int iwl_mvm_tdls_sta_count(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001966{
1967 struct ieee80211_sta *sta;
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001968 struct iwl_mvm_sta *mvmsta;
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001969 int count = 0;
1970 int i;
1971
1972 lockdep_assert_held(&mvm->mutex);
1973
1974 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
1975 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
1976 lockdep_is_held(&mvm->mutex));
1977 if (!sta || IS_ERR(sta) || !sta->tdls)
1978 continue;
1979
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001980 if (vif) {
1981 mvmsta = iwl_mvm_sta_from_mac80211(sta);
1982 if (mvmsta->vif != vif)
1983 continue;
1984 }
1985
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03001986 count++;
1987 }
1988
1989 return count;
1990}
1991
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03001992static void iwl_mvm_recalc_tdls_state(struct iwl_mvm *mvm,
1993 struct ieee80211_vif *vif,
1994 bool sta_added)
1995{
1996 int tdls_sta_cnt = iwl_mvm_tdls_sta_count(mvm, vif);
1997
1998 /*
1999 * Disable ps when the first TDLS sta is added and re-enable it
2000 * when the last TDLS sta is removed
2001 */
2002 if ((tdls_sta_cnt == 1 && sta_added) ||
2003 (tdls_sta_cnt == 0 && !sta_added))
2004 iwl_mvm_power_update_mac(mvm);
2005}
2006
Johannes Berg8ca151b2013-01-24 14:25:36 +01002007static int iwl_mvm_mac_sta_state(struct ieee80211_hw *hw,
2008 struct ieee80211_vif *vif,
2009 struct ieee80211_sta *sta,
2010 enum ieee80211_sta_state old_state,
2011 enum ieee80211_sta_state new_state)
2012{
2013 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2014 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2015 int ret;
2016
2017 IWL_DEBUG_MAC80211(mvm, "station %pM state change %d->%d\n",
2018 sta->addr, old_state, new_state);
2019
2020 /* this would be a mac80211 bug ... but don't crash */
2021 if (WARN_ON_ONCE(!mvmvif->phy_ctxt))
2022 return -EINVAL;
2023
2024 /* if a STA is being removed, reuse its ID */
2025 flush_work(&mvm->sta_drained_wk);
2026
2027 mutex_lock(&mvm->mutex);
2028 if (old_state == IEEE80211_STA_NOTEXIST &&
2029 new_state == IEEE80211_STA_NONE) {
Johannes Berg48bc1302013-07-04 15:55:29 +02002030 /*
2031 * Firmware bug - it'll crash if the beacon interval is less
2032 * than 16. We can't avoid connecting at all, so refuse the
2033 * station state change, this will cause mac80211 to abandon
2034 * attempts to connect to this AP, and eventually wpa_s will
2035 * blacklist the AP...
2036 */
2037 if (vif->type == NL80211_IFTYPE_STATION &&
2038 vif->bss_conf.beacon_int < 16) {
2039 IWL_ERR(mvm,
2040 "AP %pM beacon interval is %d, refusing due to firmware bug!\n",
2041 sta->addr, vif->bss_conf.beacon_int);
2042 ret = -EINVAL;
2043 goto out_unlock;
2044 }
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03002045
2046 if (sta->tdls &&
2047 (vif->p2p ||
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002048 iwl_mvm_tdls_sta_count(mvm, NULL) ==
2049 IWL_MVM_TDLS_STA_COUNT ||
Arik Nemtsovcf7b4912014-05-15 11:44:40 +03002050 iwl_mvm_phy_ctx_count(mvm) > 1)) {
2051 IWL_DEBUG_MAC80211(mvm, "refusing TDLS sta\n");
2052 ret = -EBUSY;
2053 goto out_unlock;
2054 }
2055
Johannes Berg8ca151b2013-01-24 14:25:36 +01002056 ret = iwl_mvm_add_sta(mvm, vif, sta);
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002057 if (sta->tdls && ret == 0)
2058 iwl_mvm_recalc_tdls_state(mvm, vif, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002059 } else if (old_state == IEEE80211_STA_NONE &&
2060 new_state == IEEE80211_STA_AUTH) {
Haim Dreyfusse820c2d2014-04-06 11:19:09 +03002061 /*
2062 * EBS may be disabled due to previous failures reported by FW.
2063 * Reset EBS status here assuming environment has been changed.
2064 */
2065 mvm->last_ebs_successful = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002066 ret = 0;
2067 } else if (old_state == IEEE80211_STA_AUTH &&
2068 new_state == IEEE80211_STA_ASSOC) {
Johannes Berg7a453972013-02-12 13:10:44 +01002069 ret = iwl_mvm_update_sta(mvm, vif, sta);
2070 if (ret == 0)
2071 iwl_mvm_rs_rate_init(mvm, sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +02002072 mvmvif->phy_ctxt->channel->band,
2073 true);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002074 } else if (old_state == IEEE80211_STA_ASSOC &&
2075 new_state == IEEE80211_STA_AUTHORIZED) {
Arik Nemtsovf59e0e3c2014-06-10 19:56:27 +03002076
2077 /* we don't support TDLS during DCM */
2078 if (iwl_mvm_phy_ctx_count(mvm) > 1)
2079 iwl_mvm_teardown_tdls_peers(mvm);
2080
Hila Gonen7df15b12012-12-12 11:16:19 +02002081 /* enable beacon filtering */
Avri Altmanfa7b2e72014-05-20 08:03:24 +03002082 WARN_ON(iwl_mvm_enable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01002083 ret = 0;
2084 } else if (old_state == IEEE80211_STA_AUTHORIZED &&
2085 new_state == IEEE80211_STA_ASSOC) {
Hila Gonen7df15b12012-12-12 11:16:19 +02002086 /* disable beacon filtering */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03002087 WARN_ON(iwl_mvm_disable_beacon_filter(mvm, vif, 0));
Johannes Berg8ca151b2013-01-24 14:25:36 +01002088 ret = 0;
2089 } else if (old_state == IEEE80211_STA_ASSOC &&
2090 new_state == IEEE80211_STA_AUTH) {
2091 ret = 0;
2092 } else if (old_state == IEEE80211_STA_AUTH &&
2093 new_state == IEEE80211_STA_NONE) {
2094 ret = 0;
2095 } else if (old_state == IEEE80211_STA_NONE &&
2096 new_state == IEEE80211_STA_NOTEXIST) {
2097 ret = iwl_mvm_rm_sta(mvm, vif, sta);
Arik Nemtsovfa3d07e2014-05-15 18:59:32 +03002098 if (sta->tdls)
2099 iwl_mvm_recalc_tdls_state(mvm, vif, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002100 } else {
2101 ret = -EIO;
2102 }
Johannes Berg48bc1302013-07-04 15:55:29 +02002103 out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002104 mutex_unlock(&mvm->mutex);
2105
2106 return ret;
2107}
2108
2109static int iwl_mvm_mac_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2110{
2111 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2112
2113 mvm->rts_threshold = value;
2114
2115 return 0;
2116}
2117
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02002118static void iwl_mvm_sta_rc_update(struct ieee80211_hw *hw,
2119 struct ieee80211_vif *vif,
2120 struct ieee80211_sta *sta, u32 changed)
2121{
2122 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2123
2124 if (vif->type == NL80211_IFTYPE_STATION &&
2125 changed & IEEE80211_RC_NSS_CHANGED)
2126 iwl_mvm_sf_update(mvm, vif, false);
2127}
2128
Johannes Berg8ca151b2013-01-24 14:25:36 +01002129static int iwl_mvm_mac_conf_tx(struct ieee80211_hw *hw,
2130 struct ieee80211_vif *vif, u16 ac,
2131 const struct ieee80211_tx_queue_params *params)
2132{
2133 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2134 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2135
2136 mvmvif->queue_params[ac] = *params;
2137
2138 /*
2139 * No need to update right away, we'll get BSS_CHANGED_QOS
2140 * The exception is P2P_DEVICE interface which needs immediate update.
2141 */
2142 if (vif->type == NL80211_IFTYPE_P2P_DEVICE) {
2143 int ret;
2144
2145 mutex_lock(&mvm->mutex);
Johannes Berg3dfd3a92014-08-11 21:37:30 +02002146 ret = iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002147 mutex_unlock(&mvm->mutex);
2148 return ret;
2149 }
2150 return 0;
2151}
2152
2153static void iwl_mvm_mac_mgd_prepare_tx(struct ieee80211_hw *hw,
2154 struct ieee80211_vif *vif)
2155{
2156 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2157 u32 duration = min(IWL_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS,
2158 200 + vif->bss_conf.beacon_int);
2159 u32 min_duration = min(IWL_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS,
2160 100 + vif->bss_conf.beacon_int);
2161
2162 if (WARN_ON_ONCE(vif->bss_conf.assoc))
2163 return;
2164
Eliad Peller576eeee2014-07-01 18:38:38 +03002165 /*
2166 * iwl_mvm_protect_session() reads directly from the device
2167 * (the system time), so make sure it is available.
2168 */
2169 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PREPARE_TX))
2170 return;
2171
Johannes Berg8ca151b2013-01-24 14:25:36 +01002172 mutex_lock(&mvm->mutex);
2173 /* Try really hard to protect the session and hear a beacon */
Liad Kaufmand20d37b2014-07-06 17:14:39 +03002174 iwl_mvm_protect_session(mvm, vif, duration, min_duration, 500, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002175 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002176
2177 iwl_mvm_unref(mvm, IWL_MVM_REF_PREPARE_TX);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002178}
2179
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002180static void iwl_mvm_mac_mgd_protect_tdls_discover(struct ieee80211_hw *hw,
2181 struct ieee80211_vif *vif)
2182{
2183 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2184 u32 duration = 2 * vif->bss_conf.dtim_period * vif->bss_conf.beacon_int;
2185
Eliad Peller576eeee2014-07-01 18:38:38 +03002186 /*
2187 * iwl_mvm_protect_session() reads directly from the device
2188 * (the system time), so make sure it is available.
2189 */
2190 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PROTECT_TDLS))
2191 return;
2192
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002193 mutex_lock(&mvm->mutex);
2194 /* Protect the session to hear the TDLS setup response on the channel */
Liad Kaufmand20d37b2014-07-06 17:14:39 +03002195 iwl_mvm_protect_session(mvm, vif, duration, duration, 100, true);
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002196 mutex_unlock(&mvm->mutex);
Eliad Peller576eeee2014-07-01 18:38:38 +03002197
2198 iwl_mvm_unref(mvm, IWL_MVM_REF_PROTECT_TDLS);
Arik Nemtsov07ecd892014-05-20 18:16:42 +03002199}
2200
David Spinadel35a000b2013-08-28 09:29:43 +03002201static int iwl_mvm_mac_sched_scan_start(struct ieee80211_hw *hw,
2202 struct ieee80211_vif *vif,
2203 struct cfg80211_sched_scan_request *req,
David Spinadel633e2712014-02-06 16:15:23 +02002204 struct ieee80211_scan_ies *ies)
David Spinadel35a000b2013-08-28 09:29:43 +03002205{
2206 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2207 int ret;
2208
Eliad Peller4660dfb2014-06-22 18:15:59 +03002209 ret = iwl_mvm_cancel_scan_wait_notif(mvm, IWL_MVM_SCAN_OS);
2210 if (ret)
2211 return ret;
2212
David Spinadel35a000b2013-08-28 09:29:43 +03002213 mutex_lock(&mvm->mutex);
2214
David Spinadelb538b8c2014-05-13 14:29:36 +03002215 if (!iwl_mvm_is_idle(mvm)) {
David Spinadelbd5e4742014-04-24 13:15:29 +03002216 ret = -EBUSY;
2217 goto out;
2218 }
2219
Eliad Peller4660dfb2014-06-22 18:15:59 +03002220 if (mvm->scan_status != IWL_MVM_SCAN_NONE) {
David Spinadel35a000b2013-08-28 09:29:43 +03002221 ret = -EBUSY;
2222 goto out;
2223 }
2224
2225 mvm->scan_status = IWL_MVM_SCAN_SCHED;
2226
David Spinadelfb98be52014-05-04 12:51:10 +03002227 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)) {
2228 ret = iwl_mvm_config_sched_scan(mvm, vif, req, ies);
2229 if (ret)
2230 goto err;
2231 }
David Spinadel35a000b2013-08-28 09:29:43 +03002232
2233 ret = iwl_mvm_config_sched_scan_profiles(mvm, req);
2234 if (ret)
2235 goto err;
2236
David Spinadelfb98be52014-05-04 12:51:10 +03002237 if (mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_LMAC_SCAN)
2238 ret = iwl_mvm_unified_sched_scan_lmac(mvm, vif, req, ies);
2239 else
2240 ret = iwl_mvm_sched_scan_start(mvm, req);
2241
David Spinadel35a000b2013-08-28 09:29:43 +03002242 if (!ret)
2243 goto out;
2244err:
2245 mvm->scan_status = IWL_MVM_SCAN_NONE;
2246out:
2247 mutex_unlock(&mvm->mutex);
2248 return ret;
2249}
2250
Johannes Berg37e33082014-02-17 10:48:17 +01002251static int iwl_mvm_mac_sched_scan_stop(struct ieee80211_hw *hw,
2252 struct ieee80211_vif *vif)
David Spinadel35a000b2013-08-28 09:29:43 +03002253{
2254 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002255 int ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002256
2257 mutex_lock(&mvm->mutex);
David Spinadelfb98be52014-05-04 12:51:10 +03002258 ret = iwl_mvm_scan_offload_stop(mvm, false);
David Spinadel35a000b2013-08-28 09:29:43 +03002259 mutex_unlock(&mvm->mutex);
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002260 iwl_mvm_wait_for_async_handlers(mvm);
Johannes Berg37e33082014-02-17 10:48:17 +01002261
Arik Nemtsov33ea27f2014-02-10 15:34:29 +02002262 return ret;
David Spinadel35a000b2013-08-28 09:29:43 +03002263}
2264
Johannes Berg8ca151b2013-01-24 14:25:36 +01002265static int iwl_mvm_mac_set_key(struct ieee80211_hw *hw,
2266 enum set_key_cmd cmd,
2267 struct ieee80211_vif *vif,
2268 struct ieee80211_sta *sta,
2269 struct ieee80211_key_conf *key)
2270{
2271 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2272 int ret;
2273
2274 if (iwlwifi_mod_params.sw_crypto) {
2275 IWL_DEBUG_MAC80211(mvm, "leave - hwcrypto disabled\n");
2276 return -EOPNOTSUPP;
2277 }
2278
2279 switch (key->cipher) {
2280 case WLAN_CIPHER_SUITE_TKIP:
2281 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
2282 /* fall-through */
2283 case WLAN_CIPHER_SUITE_CCMP:
2284 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
2285 break;
2286 case WLAN_CIPHER_SUITE_AES_CMAC:
2287 WARN_ON_ONCE(!(hw->flags & IEEE80211_HW_MFP_CAPABLE));
2288 break;
2289 case WLAN_CIPHER_SUITE_WEP40:
2290 case WLAN_CIPHER_SUITE_WEP104:
2291 /*
2292 * Support for TX only, at least for now, so accept
2293 * the key and do nothing else. Then mac80211 will
2294 * pass it for TX but we don't have to use it for RX.
2295 */
2296 return 0;
2297 default:
Max Stepanove36e5432013-08-27 19:56:13 +03002298 /* currently FW supports only one optional cipher scheme */
2299 if (hw->n_cipher_schemes &&
2300 hw->cipher_schemes->cipher == key->cipher)
2301 key->flags |= IEEE80211_KEY_FLAG_PUT_IV_SPACE;
2302 else
2303 return -EOPNOTSUPP;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002304 }
2305
2306 mutex_lock(&mvm->mutex);
2307
2308 switch (cmd) {
2309 case SET_KEY:
Johannes Berg5023d962013-07-31 14:07:43 +02002310 if ((vif->type == NL80211_IFTYPE_ADHOC ||
2311 vif->type == NL80211_IFTYPE_AP) && !sta) {
2312 /*
2313 * GTK on AP interface is a TX-only key, return 0;
2314 * on IBSS they're per-station and because we're lazy
2315 * we don't support them for RX, so do the same.
2316 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002317 ret = 0;
2318 key->hw_key_idx = STA_KEY_IDX_INVALID;
2319 break;
2320 }
2321
Johannes Berg8ca151b2013-01-24 14:25:36 +01002322 IWL_DEBUG_MAC80211(mvm, "set hwcrypto key\n");
2323 ret = iwl_mvm_set_sta_key(mvm, vif, sta, key, false);
2324 if (ret) {
2325 IWL_WARN(mvm, "set key failed\n");
2326 /*
2327 * can't add key for RX, but we don't need it
2328 * in the device for TX so still return 0
2329 */
Johannes Berg6caffd42013-03-06 13:15:21 +01002330 key->hw_key_idx = STA_KEY_IDX_INVALID;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002331 ret = 0;
2332 }
2333
2334 break;
2335 case DISABLE_KEY:
Johannes Berg6caffd42013-03-06 13:15:21 +01002336 if (key->hw_key_idx == STA_KEY_IDX_INVALID) {
2337 ret = 0;
2338 break;
2339 }
2340
Johannes Berg8ca151b2013-01-24 14:25:36 +01002341 IWL_DEBUG_MAC80211(mvm, "disable hwcrypto key\n");
2342 ret = iwl_mvm_remove_sta_key(mvm, vif, sta, key);
2343 break;
2344 default:
2345 ret = -EINVAL;
2346 }
2347
2348 mutex_unlock(&mvm->mutex);
2349 return ret;
2350}
2351
2352static void iwl_mvm_mac_update_tkip_key(struct ieee80211_hw *hw,
2353 struct ieee80211_vif *vif,
2354 struct ieee80211_key_conf *keyconf,
2355 struct ieee80211_sta *sta,
2356 u32 iv32, u16 *phase1key)
2357{
2358 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2359
Johannes Berg5023d962013-07-31 14:07:43 +02002360 if (keyconf->hw_key_idx == STA_KEY_IDX_INVALID)
2361 return;
2362
Johannes Berg8ca151b2013-01-24 14:25:36 +01002363 iwl_mvm_update_tkip_key(mvm, vif, keyconf, sta, iv32, phase1key);
2364}
2365
2366
Ariej Marjiehb1128892014-07-16 21:11:12 +03002367static bool iwl_mvm_rx_aux_roc(struct iwl_notif_wait_data *notif_wait,
2368 struct iwl_rx_packet *pkt, void *data)
2369{
2370 struct iwl_mvm *mvm =
2371 container_of(notif_wait, struct iwl_mvm, notif_wait);
2372 struct iwl_hs20_roc_res *resp;
2373 int resp_len = iwl_rx_packet_payload_len(pkt);
2374 struct iwl_mvm_time_event_data *te_data = data;
2375
2376 if (WARN_ON(pkt->hdr.cmd != HOT_SPOT_CMD))
2377 return true;
2378
2379 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
2380 IWL_ERR(mvm, "Invalid HOT_SPOT_CMD response\n");
2381 return true;
2382 }
2383
2384 resp = (void *)pkt->data;
2385
2386 IWL_DEBUG_TE(mvm,
2387 "Aux ROC: Recieved response from ucode: status=%d uid=%d\n",
2388 resp->status, resp->event_unique_id);
2389
2390 te_data->uid = le32_to_cpu(resp->event_unique_id);
2391 IWL_DEBUG_TE(mvm, "TIME_EVENT_CMD response - UID = 0x%x\n",
2392 te_data->uid);
2393
2394 spin_lock_bh(&mvm->time_event_lock);
2395 list_add_tail(&te_data->list, &mvm->aux_roc_te_list);
2396 spin_unlock_bh(&mvm->time_event_lock);
2397
2398 return true;
2399}
2400
2401#define AUX_ROC_MAX_DELAY_ON_CHANNEL 5000
2402static int iwl_mvm_send_aux_roc_cmd(struct iwl_mvm *mvm,
2403 struct ieee80211_channel *channel,
2404 struct ieee80211_vif *vif,
2405 int duration)
2406{
2407 int res, time_reg = DEVICE_SYSTEM_TIME_REG;
2408 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2409 struct iwl_mvm_time_event_data *te_data = &mvmvif->hs_time_event_data;
2410 static const u8 time_event_response[] = { HOT_SPOT_CMD };
2411 struct iwl_notification_wait wait_time_event;
2412 struct iwl_hs20_roc_req aux_roc_req = {
2413 .action = cpu_to_le32(FW_CTXT_ACTION_ADD),
2414 .id_and_color =
2415 cpu_to_le32(FW_CMD_ID_AND_COLOR(MAC_INDEX_AUX, 0)),
2416 .sta_id_and_color = cpu_to_le32(mvm->aux_sta.sta_id),
2417 /* Set the channel info data */
2418 .channel_info.band = (channel->band == IEEE80211_BAND_2GHZ) ?
2419 PHY_BAND_24 : PHY_BAND_5,
2420 .channel_info.channel = channel->hw_value,
2421 .channel_info.width = PHY_VHT_CHANNEL_MODE20,
2422 /* Set the time and duration */
2423 .apply_time = cpu_to_le32(iwl_read_prph(mvm->trans, time_reg)),
2424 .apply_time_max_delay =
2425 cpu_to_le32(MSEC_TO_TU(AUX_ROC_MAX_DELAY_ON_CHANNEL)),
2426 .duration = cpu_to_le32(MSEC_TO_TU(duration)),
2427 };
2428
2429 /* Set the node address */
2430 memcpy(aux_roc_req.node_addr, vif->addr, ETH_ALEN);
2431
2432 te_data->vif = vif;
2433 te_data->duration = duration;
2434 te_data->id = HOT_SPOT_CMD;
2435
2436 lockdep_assert_held(&mvm->mutex);
2437
2438 spin_lock_bh(&mvm->time_event_lock);
2439 list_add_tail(&te_data->list, &mvm->time_event_list);
2440 spin_unlock_bh(&mvm->time_event_lock);
2441
2442 /*
2443 * Use a notification wait, which really just processes the
2444 * command response and doesn't wait for anything, in order
2445 * to be able to process the response and get the UID inside
2446 * the RX path. Using CMD_WANT_SKB doesn't work because it
2447 * stores the buffer and then wakes up this thread, by which
2448 * time another notification (that the time event started)
2449 * might already be processed unsuccessfully.
2450 */
2451 iwl_init_notification_wait(&mvm->notif_wait, &wait_time_event,
2452 time_event_response,
2453 ARRAY_SIZE(time_event_response),
2454 iwl_mvm_rx_aux_roc, te_data);
2455
2456 res = iwl_mvm_send_cmd_pdu(mvm, HOT_SPOT_CMD, 0, sizeof(aux_roc_req),
2457 &aux_roc_req);
2458
2459 if (res) {
2460 IWL_ERR(mvm, "Couldn't send HOT_SPOT_CMD: %d\n", res);
2461 iwl_remove_notification(&mvm->notif_wait, &wait_time_event);
2462 goto out_clear_te;
2463 }
2464
2465 /* No need to wait for anything, so just pass 1 (0 isn't valid) */
2466 res = iwl_wait_notification(&mvm->notif_wait, &wait_time_event, 1);
2467 /* should never fail */
2468 WARN_ON_ONCE(res);
2469
2470 if (res) {
2471 out_clear_te:
2472 spin_lock_bh(&mvm->time_event_lock);
2473 iwl_mvm_te_clear_data(mvm, te_data);
2474 spin_unlock_bh(&mvm->time_event_lock);
2475 }
2476
2477 return res;
2478}
2479
Johannes Berg8ca151b2013-01-24 14:25:36 +01002480static int iwl_mvm_roc(struct ieee80211_hw *hw,
2481 struct ieee80211_vif *vif,
2482 struct ieee80211_channel *channel,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002483 int duration,
2484 enum ieee80211_roc_type type)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002485{
2486 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002487 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002488 struct cfg80211_chan_def chandef;
Ilan Peer31d385a2013-04-02 10:25:46 +03002489 struct iwl_mvm_phy_ctxt *phy_ctxt;
2490 int ret, i;
2491
2492 IWL_DEBUG_MAC80211(mvm, "enter (%d, %d, %d)\n", channel->hw_value,
2493 duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002494
Ariej Marjiehb1128892014-07-16 21:11:12 +03002495 switch (vif->type) {
2496 case NL80211_IFTYPE_STATION:
2497 /* Use aux roc framework (HS20) */
2498 ret = iwl_mvm_send_aux_roc_cmd(mvm, channel,
2499 vif, duration);
2500 return ret;
2501 case NL80211_IFTYPE_P2P_DEVICE:
2502 /* handle below */
2503 break;
2504 default:
2505 IWL_ERR(mvm, "vif isn't P2P_DEVICE: %d\n", vif->type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002506 return -EINVAL;
2507 }
2508
Johannes Berg8ca151b2013-01-24 14:25:36 +01002509 mutex_lock(&mvm->mutex);
2510
Ilan Peer31d385a2013-04-02 10:25:46 +03002511 for (i = 0; i < NUM_PHY_CTX; i++) {
2512 phy_ctxt = &mvm->phy_ctxts[i];
2513 if (phy_ctxt->ref == 0 || mvmvif->phy_ctxt == phy_ctxt)
2514 continue;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002515
Ilan Peer31d385a2013-04-02 10:25:46 +03002516 if (phy_ctxt->ref && channel == phy_ctxt->channel) {
2517 /*
2518 * Unbind the P2P_DEVICE from the current PHY context,
2519 * and if the PHY context is not used remove it.
2520 */
2521 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2522 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2523 goto out_unlock;
2524
2525 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2526
2527 /* Bind the P2P_DEVICE to the current PHY Context */
2528 mvmvif->phy_ctxt = phy_ctxt;
2529
2530 ret = iwl_mvm_binding_add_vif(mvm, vif);
2531 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2532 goto out_unlock;
2533
2534 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2535 goto schedule_time_event;
2536 }
2537 }
2538
2539 /* Need to update the PHY context only if the ROC channel changed */
2540 if (channel == mvmvif->phy_ctxt->channel)
2541 goto schedule_time_event;
2542
2543 cfg80211_chandef_create(&chandef, channel, NL80211_CHAN_NO_HT);
2544
2545 /*
2546 * Change the PHY context configuration as it is currently referenced
2547 * only by the P2P Device MAC
2548 */
2549 if (mvmvif->phy_ctxt->ref == 1) {
2550 ret = iwl_mvm_phy_ctxt_changed(mvm, mvmvif->phy_ctxt,
2551 &chandef, 1, 1);
2552 if (ret)
2553 goto out_unlock;
2554 } else {
2555 /*
2556 * The PHY context is shared with other MACs. Need to remove the
2557 * P2P Device from the binding, allocate an new PHY context and
2558 * create a new binding
2559 */
2560 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2561 if (!phy_ctxt) {
2562 ret = -ENOSPC;
2563 goto out_unlock;
2564 }
2565
2566 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &chandef,
2567 1, 1);
2568 if (ret) {
2569 IWL_ERR(mvm, "Failed to change PHY context\n");
2570 goto out_unlock;
2571 }
2572
2573 /* Unbind the P2P_DEVICE from the current PHY context */
2574 ret = iwl_mvm_binding_remove_vif(mvm, vif);
2575 if (WARN(ret, "Failed unbinding P2P_DEVICE\n"))
2576 goto out_unlock;
2577
2578 iwl_mvm_phy_ctxt_unref(mvm, mvmvif->phy_ctxt);
2579
2580 /* Bind the P2P_DEVICE to the new allocated PHY context */
2581 mvmvif->phy_ctxt = phy_ctxt;
2582
2583 ret = iwl_mvm_binding_add_vif(mvm, vif);
2584 if (WARN(ret, "Failed binding P2P_DEVICE\n"))
2585 goto out_unlock;
2586
2587 iwl_mvm_phy_ctxt_ref(mvm, mvmvif->phy_ctxt);
2588 }
2589
2590schedule_time_event:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002591 /* Schedule the time events */
Ilan Peere635c792013-02-13 11:05:18 +02002592 ret = iwl_mvm_start_p2p_roc(mvm, vif, duration, type);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002593
Ilan Peer31d385a2013-04-02 10:25:46 +03002594out_unlock:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002595 mutex_unlock(&mvm->mutex);
2596 IWL_DEBUG_MAC80211(mvm, "leave\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01002597 return ret;
2598}
2599
2600static int iwl_mvm_cancel_roc(struct ieee80211_hw *hw)
2601{
2602 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2603
2604 IWL_DEBUG_MAC80211(mvm, "enter\n");
2605
2606 mutex_lock(&mvm->mutex);
2607 iwl_mvm_stop_p2p_roc(mvm);
2608 mutex_unlock(&mvm->mutex);
2609
2610 IWL_DEBUG_MAC80211(mvm, "leave\n");
2611 return 0;
2612}
2613
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002614static int __iwl_mvm_add_chanctx(struct iwl_mvm *mvm,
2615 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002616{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002617 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2618 struct iwl_mvm_phy_ctxt *phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002619 int ret;
2620
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002621 lockdep_assert_held(&mvm->mutex);
2622
Ilan Peer53a9d612013-04-28 11:55:08 +03002623 IWL_DEBUG_MAC80211(mvm, "Add channel context\n");
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002624
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002625 phy_ctxt = iwl_mvm_get_free_phy_ctxt(mvm);
2626 if (!phy_ctxt) {
2627 ret = -ENOSPC;
2628 goto out;
2629 }
2630
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002631 ret = iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Ilan Peer53a9d612013-04-28 11:55:08 +03002632 ctx->rx_chains_static,
2633 ctx->rx_chains_dynamic);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002634 if (ret) {
2635 IWL_ERR(mvm, "Failed to add PHY context\n");
2636 goto out;
2637 }
2638
Ilan Peer53a9d612013-04-28 11:55:08 +03002639 iwl_mvm_phy_ctxt_ref(mvm, phy_ctxt);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002640 *phy_ctxt_id = phy_ctxt->id;
2641out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002642 return ret;
2643}
2644
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002645static int iwl_mvm_add_chanctx(struct ieee80211_hw *hw,
2646 struct ieee80211_chanctx_conf *ctx)
2647{
2648 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2649 int ret;
2650
2651 mutex_lock(&mvm->mutex);
2652 ret = __iwl_mvm_add_chanctx(mvm, ctx);
2653 mutex_unlock(&mvm->mutex);
2654
2655 return ret;
2656}
2657
2658static void __iwl_mvm_remove_chanctx(struct iwl_mvm *mvm,
2659 struct ieee80211_chanctx_conf *ctx)
2660{
2661 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2662 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
2663
2664 lockdep_assert_held(&mvm->mutex);
2665
2666 iwl_mvm_phy_ctxt_unref(mvm, phy_ctxt);
2667}
2668
Johannes Berg8ca151b2013-01-24 14:25:36 +01002669static void iwl_mvm_remove_chanctx(struct ieee80211_hw *hw,
2670 struct ieee80211_chanctx_conf *ctx)
2671{
2672 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002673
2674 mutex_lock(&mvm->mutex);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002675 __iwl_mvm_remove_chanctx(mvm, ctx);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002676 mutex_unlock(&mvm->mutex);
2677}
2678
2679static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw,
2680 struct ieee80211_chanctx_conf *ctx,
2681 u32 changed)
2682{
2683 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002684 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2685 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002686
Ilan Peer31d385a2013-04-02 10:25:46 +03002687 if (WARN_ONCE((phy_ctxt->ref > 1) &&
2688 (changed & ~(IEEE80211_CHANCTX_CHANGE_WIDTH |
2689 IEEE80211_CHANCTX_CHANGE_RX_CHAINS |
Arik Nemtsov2dceeda2013-12-29 17:57:53 +02002690 IEEE80211_CHANCTX_CHANGE_RADAR |
2691 IEEE80211_CHANCTX_CHANGE_MIN_WIDTH)),
Ilan Peer31d385a2013-04-02 10:25:46 +03002692 "Cannot change PHY. Ref=%d, changed=0x%X\n",
2693 phy_ctxt->ref, changed))
2694 return;
2695
Johannes Berg8ca151b2013-01-24 14:25:36 +01002696 mutex_lock(&mvm->mutex);
Emmanuel Grumbach4d664492014-04-30 18:09:59 +03002697 iwl_mvm_bt_coex_vif_change(mvm);
Eliad Pellerdcbc3e12013-10-31 14:31:25 +02002698 iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def,
Johannes Berg8ca151b2013-01-24 14:25:36 +01002699 ctx->rx_chains_static,
2700 ctx->rx_chains_dynamic);
2701 mutex_unlock(&mvm->mutex);
2702}
2703
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002704static int __iwl_mvm_assign_vif_chanctx(struct iwl_mvm *mvm,
2705 struct ieee80211_vif *vif,
Luciano Coelhof0c97782014-03-05 15:41:48 +02002706 struct ieee80211_chanctx_conf *ctx,
2707 bool switching_chanctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002708{
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002709 u16 *phy_ctxt_id = (u16 *)ctx->drv_priv;
2710 struct iwl_mvm_phy_ctxt *phy_ctxt = &mvm->phy_ctxts[*phy_ctxt_id];
Johannes Berg8ca151b2013-01-24 14:25:36 +01002711 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
2712 int ret;
2713
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002714 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002715
Ilan Peerfe0f2de2013-03-21 10:23:52 +02002716 mvmvif->phy_ctxt = phy_ctxt;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002717
2718 switch (vif->type) {
2719 case NL80211_IFTYPE_AP:
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002720 /* Unless it's a CSA flow we have nothing to do here */
2721 if (vif->csa_active) {
2722 mvmvif->ap_ibss_active = true;
2723 break;
2724 }
Johannes Berg5023d962013-07-31 14:07:43 +02002725 case NL80211_IFTYPE_ADHOC:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002726 /*
2727 * The AP binding flow is handled as part of the start_ap flow
Johannes Berg5023d962013-07-31 14:07:43 +02002728 * (in bss_info_changed), similarly for IBSS.
Johannes Berg8ca151b2013-01-24 14:25:36 +01002729 */
2730 ret = 0;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002731 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002732 case NL80211_IFTYPE_STATION:
Luciano Coelho2533edc2014-08-08 19:50:46 +03002733 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002734 case NL80211_IFTYPE_MONITOR:
Luciano Coelho2533edc2014-08-08 19:50:46 +03002735 /* always disable PS when a monitor interface is active */
2736 mvmvif->ps_disabled = true;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002737 break;
2738 default:
2739 ret = -EINVAL;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002740 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002741 }
2742
2743 ret = iwl_mvm_binding_add_vif(mvm, vif);
2744 if (ret)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002745 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002746
2747 /*
Alexander Bondar92d85562013-10-23 11:50:34 +02002748 * Power state must be updated before quotas,
2749 * otherwise fw will complain.
2750 */
Arik Nemtsov999609f2014-05-15 17:31:51 +03002751 iwl_mvm_power_update_mac(mvm);
Alexander Bondar92d85562013-10-23 11:50:34 +02002752
2753 /* Setting the quota at this stage is only required for monitor
Johannes Berg8ca151b2013-01-24 14:25:36 +01002754 * interfaces. For the other types, the bss_info changed flow
2755 * will handle quota settings.
2756 */
2757 if (vif->type == NL80211_IFTYPE_MONITOR) {
Ilan Peer1e1391c2013-03-13 14:52:04 +02002758 mvmvif->monitor_active = true;
Johannes Berg01662302014-06-06 15:18:45 +02002759 ret = iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002760 if (ret)
2761 goto out_remove_binding;
2762 }
2763
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002764 /* Handle binding during CSA */
Luciano Coelhof0c97782014-03-05 15:41:48 +02002765 if ((vif->type == NL80211_IFTYPE_AP) ||
2766 (switching_chanctx && (vif->type == NL80211_IFTYPE_STATION))) {
Johannes Berg01662302014-06-06 15:18:45 +02002767 iwl_mvm_update_quotas(mvm, NULL);
Johannes Berg3dfd3a92014-08-11 21:37:30 +02002768 iwl_mvm_mac_ctxt_changed(mvm, vif, false, NULL);
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002769 }
2770
Luciano Coelho0ce04ce2014-05-08 16:03:39 +03002771 if (vif->csa_active && vif->type == NL80211_IFTYPE_STATION) {
2772 struct iwl_mvm_sta *mvmsta;
2773
2774 mvmsta = iwl_mvm_sta_from_staid_protected(mvm,
2775 mvmvif->ap_sta_id);
2776
2777 if (WARN_ON(!mvmsta))
2778 goto out;
2779
2780 /* TODO: only re-enable after the first beacon */
2781 iwl_mvm_sta_modify_disable_tx(mvm, mvmsta, false);
2782 }
2783
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002784 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002785
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002786out_remove_binding:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002787 iwl_mvm_binding_remove_vif(mvm, vif);
Arik Nemtsov999609f2014-05-15 17:31:51 +03002788 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002789out:
Johannes Berg8ca151b2013-01-24 14:25:36 +01002790 if (ret)
2791 mvmvif->phy_ctxt = NULL;
2792 return ret;
2793}
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002794static int iwl_mvm_assign_vif_chanctx(struct ieee80211_hw *hw,
2795 struct ieee80211_vif *vif,
2796 struct ieee80211_chanctx_conf *ctx)
Johannes Berg8ca151b2013-01-24 14:25:36 +01002797{
2798 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002799 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002800
2801 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002802 ret = __iwl_mvm_assign_vif_chanctx(mvm, vif, ctx, false);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002803 mutex_unlock(&mvm->mutex);
2804
2805 return ret;
2806}
2807
2808static void __iwl_mvm_unassign_vif_chanctx(struct iwl_mvm *mvm,
2809 struct ieee80211_vif *vif,
Luciano Coelhof0c97782014-03-05 15:41:48 +02002810 struct ieee80211_chanctx_conf *ctx,
2811 bool switching_chanctx)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002812{
2813 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002814 struct ieee80211_vif *disabled_vif = NULL;
Luciano Coelho0ce04ce2014-05-08 16:03:39 +03002815 struct iwl_mvm_sta *mvmsta;
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002816
2817 lockdep_assert_held(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002818
2819 iwl_mvm_remove_time_event(mvm, mvmvif, &mvmvif->time_event_data);
2820
Johannes Berg8ca151b2013-01-24 14:25:36 +01002821 switch (vif->type) {
Johannes Berg5023d962013-07-31 14:07:43 +02002822 case NL80211_IFTYPE_ADHOC:
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002823 goto out;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002824 case NL80211_IFTYPE_MONITOR:
Ilan Peer1e1391c2013-03-13 14:52:04 +02002825 mvmvif->monitor_active = false;
Luciano Coelho2533edc2014-08-08 19:50:46 +03002826 mvmvif->ps_disabled = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002827 break;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002828 case NL80211_IFTYPE_AP:
2829 /* This part is triggered only during CSA */
2830 if (!vif->csa_active || !mvmvif->ap_ibss_active)
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002831 goto out;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002832
Andrei Otcheretianski003e52362014-05-25 17:24:22 +03002833 /* Set CS bit on all the stations */
2834 iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, true);
2835
2836 /* Save blocked iface, the timeout is set on the next beacon */
2837 rcu_assign_pointer(mvm->csa_tx_blocked_vif, vif);
2838
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02002839 mvmvif->ap_ibss_active = false;
Luciano Coelhof0c97782014-03-05 15:41:48 +02002840 break;
2841 case NL80211_IFTYPE_STATION:
2842 if (!switching_chanctx)
2843 break;
2844
2845 disabled_vif = vif;
2846
Luciano Coelho0ce04ce2014-05-08 16:03:39 +03002847 mvmsta = iwl_mvm_sta_from_staid_protected(mvm,
2848 mvmvif->ap_sta_id);
2849
2850 if (!WARN_ON(!mvmsta))
2851 iwl_mvm_sta_modify_disable_tx(mvm, mvmsta, true);
2852
Johannes Berg3dfd3a92014-08-11 21:37:30 +02002853 iwl_mvm_mac_ctxt_changed(mvm, vif, true, NULL);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002854 break;
Johannes Berg8ca151b2013-01-24 14:25:36 +01002855 default:
2856 break;
2857 }
2858
Luciano Coelhof0c97782014-03-05 15:41:48 +02002859 iwl_mvm_update_quotas(mvm, disabled_vif);
Ilan Peer1e1391c2013-03-13 14:52:04 +02002860 iwl_mvm_binding_remove_vif(mvm, vif);
Alexander Bondar1c2abf72013-08-27 20:31:48 +03002861
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002862out:
Ilan Peera11e1442013-12-31 21:19:55 +02002863 mvmvif->phy_ctxt = NULL;
Arik Nemtsov999609f2014-05-15 17:31:51 +03002864 iwl_mvm_power_update_mac(mvm);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002865}
2866
2867static void iwl_mvm_unassign_vif_chanctx(struct ieee80211_hw *hw,
2868 struct ieee80211_vif *vif,
2869 struct ieee80211_chanctx_conf *ctx)
2870{
2871 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2872
2873 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002874 __iwl_mvm_unassign_vif_chanctx(mvm, vif, ctx, false);
Johannes Berg8ca151b2013-01-24 14:25:36 +01002875 mutex_unlock(&mvm->mutex);
2876}
2877
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002878static int iwl_mvm_switch_vif_chanctx(struct ieee80211_hw *hw,
2879 struct ieee80211_vif_chanctx_switch *vifs,
2880 int n_vifs,
2881 enum ieee80211_chanctx_switch_mode mode)
2882{
2883 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2884 int ret;
2885
2886 /* we only support SWAP_CONTEXTS and with a single-vif right now */
2887 if (mode != CHANCTX_SWMODE_SWAP_CONTEXTS || n_vifs > 1)
2888 return -EOPNOTSUPP;
2889
2890 mutex_lock(&mvm->mutex);
Luciano Coelhof0c97782014-03-05 15:41:48 +02002891 __iwl_mvm_unassign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx, true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002892 __iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx);
2893
2894 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].new_ctx);
2895 if (ret) {
2896 IWL_ERR(mvm, "failed to add new_ctx during channel switch\n");
2897 goto out_reassign;
2898 }
2899
Luciano Coelhof0c97782014-03-05 15:41:48 +02002900 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].new_ctx,
2901 true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002902 if (ret) {
2903 IWL_ERR(mvm,
2904 "failed to assign new_ctx during channel switch\n");
2905 goto out_remove;
2906 }
2907
Arik Nemtsovf6972672014-06-15 16:03:55 +03002908 /* we don't support TDLS during DCM - can be caused by channel switch */
2909 if (iwl_mvm_phy_ctx_count(mvm) > 1)
2910 iwl_mvm_teardown_tdls_peers(mvm);
2911
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002912 goto out;
2913
2914out_remove:
2915 __iwl_mvm_remove_chanctx(mvm, vifs[0].new_ctx);
2916
2917out_reassign:
2918 ret = __iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx);
2919 if (ret) {
2920 IWL_ERR(mvm, "failed to add old_ctx back after failure.\n");
2921 goto out_restart;
2922 }
2923
Luciano Coelhof0c97782014-03-05 15:41:48 +02002924 ret = __iwl_mvm_assign_vif_chanctx(mvm, vifs[0].vif, vifs[0].old_ctx,
2925 true);
Luciano Coelhob08c1d92014-05-20 23:31:05 +03002926 if (ret) {
2927 IWL_ERR(mvm, "failed to reassign old_ctx after failure.\n");
2928 goto out_restart;
2929 }
2930
2931 goto out;
2932
2933out_restart:
2934 /* things keep failing, better restart the hw */
2935 iwl_mvm_nic_restart(mvm, false);
2936
2937out:
2938 mutex_unlock(&mvm->mutex);
2939 return ret;
2940}
2941
Johannes Berg8ca151b2013-01-24 14:25:36 +01002942static int iwl_mvm_set_tim(struct ieee80211_hw *hw,
2943 struct ieee80211_sta *sta,
2944 bool set)
2945{
2946 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
2947 struct iwl_mvm_sta *mvm_sta = (void *)sta->drv_priv;
2948
2949 if (!mvm_sta || !mvm_sta->vif) {
2950 IWL_ERR(mvm, "Station is not associated to a vif\n");
2951 return -EINVAL;
2952 }
2953
2954 return iwl_mvm_mac_ctxt_beacon_changed(mvm, mvm_sta->vif);
2955}
2956
David Spinadel507cadf2013-07-31 18:07:21 +03002957#ifdef CONFIG_NL80211_TESTMODE
2958static const struct nla_policy iwl_mvm_tm_policy[IWL_MVM_TM_ATTR_MAX + 1] = {
2959 [IWL_MVM_TM_ATTR_CMD] = { .type = NLA_U32 },
2960 [IWL_MVM_TM_ATTR_NOA_DURATION] = { .type = NLA_U32 },
Johannes Bergf6c6ad422013-08-01 14:17:15 +02002961 [IWL_MVM_TM_ATTR_BEACON_FILTER_STATE] = { .type = NLA_U32 },
David Spinadel507cadf2013-07-31 18:07:21 +03002962};
2963
2964static int __iwl_mvm_mac_testmode_cmd(struct iwl_mvm *mvm,
2965 struct ieee80211_vif *vif,
2966 void *data, int len)
2967{
2968 struct nlattr *tb[IWL_MVM_TM_ATTR_MAX + 1];
2969 int err;
2970 u32 noa_duration;
2971
2972 err = nla_parse(tb, IWL_MVM_TM_ATTR_MAX, data, len, iwl_mvm_tm_policy);
2973 if (err)
2974 return err;
2975
2976 if (!tb[IWL_MVM_TM_ATTR_CMD])
2977 return -EINVAL;
2978
2979 switch (nla_get_u32(tb[IWL_MVM_TM_ATTR_CMD])) {
2980 case IWL_MVM_TM_CMD_SET_NOA:
2981 if (!vif || vif->type != NL80211_IFTYPE_AP || !vif->p2p ||
2982 !vif->bss_conf.enable_beacon ||
2983 !tb[IWL_MVM_TM_ATTR_NOA_DURATION])
2984 return -EINVAL;
2985
2986 noa_duration = nla_get_u32(tb[IWL_MVM_TM_ATTR_NOA_DURATION]);
2987 if (noa_duration >= vif->bss_conf.beacon_int)
2988 return -EINVAL;
2989
2990 mvm->noa_duration = noa_duration;
2991 mvm->noa_vif = vif;
2992
Johannes Berg01662302014-06-06 15:18:45 +02002993 return iwl_mvm_update_quotas(mvm, NULL);
Johannes Bergf6c6ad422013-08-01 14:17:15 +02002994 case IWL_MVM_TM_CMD_SET_BEACON_FILTER:
2995 /* must be associated client vif - ignore authorized */
2996 if (!vif || vif->type != NL80211_IFTYPE_STATION ||
2997 !vif->bss_conf.assoc || !vif->bss_conf.dtim_period ||
2998 !tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE])
2999 return -EINVAL;
3000
3001 if (nla_get_u32(tb[IWL_MVM_TM_ATTR_BEACON_FILTER_STATE]))
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03003002 return iwl_mvm_enable_beacon_filter(mvm, vif, 0);
3003 return iwl_mvm_disable_beacon_filter(mvm, vif, 0);
David Spinadel507cadf2013-07-31 18:07:21 +03003004 }
3005
3006 return -EOPNOTSUPP;
3007}
3008
3009static int iwl_mvm_mac_testmode_cmd(struct ieee80211_hw *hw,
3010 struct ieee80211_vif *vif,
3011 void *data, int len)
3012{
3013 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3014 int err;
3015
3016 mutex_lock(&mvm->mutex);
3017 err = __iwl_mvm_mac_testmode_cmd(mvm, vif, data, len);
3018 mutex_unlock(&mvm->mutex);
3019
3020 return err;
3021}
3022#endif
3023
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003024static void iwl_mvm_channel_switch_beacon(struct ieee80211_hw *hw,
3025 struct ieee80211_vif *vif,
3026 struct cfg80211_chan_def *chandef)
3027{
3028 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03003029 struct ieee80211_vif *csa_vif;
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003030
3031 mutex_lock(&mvm->mutex);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03003032
3033 csa_vif = rcu_dereference_protected(mvm->csa_vif,
3034 lockdep_is_held(&mvm->mutex));
3035 if (WARN(csa_vif && csa_vif->csa_active,
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003036 "Another CSA is already in progress"))
3037 goto out_unlock;
3038
3039 IWL_DEBUG_MAC80211(mvm, "CSA started to freq %d\n",
3040 chandef->center_freq1);
Andrei Otcheretianski664322f2014-06-05 16:40:36 +03003041 rcu_assign_pointer(mvm->csa_vif, vif);
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003042
3043out_unlock:
3044 mutex_unlock(&mvm->mutex);
3045}
3046
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003047static void iwl_mvm_mac_flush(struct ieee80211_hw *hw,
3048 struct ieee80211_vif *vif, u32 queues, bool drop)
3049{
3050 struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
3051 struct iwl_mvm_vif *mvmvif;
3052 struct iwl_mvm_sta *mvmsta;
3053
3054 if (!vif || vif->type != NL80211_IFTYPE_STATION)
3055 return;
3056
3057 mutex_lock(&mvm->mutex);
3058 mvmvif = iwl_mvm_vif_from_mac80211(vif);
3059 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, mvmvif->ap_sta_id);
3060
3061 if (WARN_ON_ONCE(!mvmsta))
3062 goto done;
3063
3064 if (drop) {
3065 if (iwl_mvm_flush_tx_path(mvm, mvmsta->tfd_queue_msk, true))
3066 IWL_ERR(mvm, "flush request fail\n");
3067 } else {
3068 iwl_trans_wait_tx_queue_empty(mvm->trans,
3069 mvmsta->tfd_queue_msk);
3070 }
3071done:
3072 mutex_unlock(&mvm->mutex);
3073}
3074
Johannes Berge5209262014-01-20 23:38:59 +01003075const struct ieee80211_ops iwl_mvm_hw_ops = {
Johannes Berg8ca151b2013-01-24 14:25:36 +01003076 .tx = iwl_mvm_mac_tx,
3077 .ampdu_action = iwl_mvm_mac_ampdu_action,
3078 .start = iwl_mvm_mac_start,
3079 .restart_complete = iwl_mvm_mac_restart_complete,
3080 .stop = iwl_mvm_mac_stop,
3081 .add_interface = iwl_mvm_mac_add_interface,
3082 .remove_interface = iwl_mvm_mac_remove_interface,
3083 .config = iwl_mvm_mac_config,
Eliad Pellere59647e2013-11-28 14:08:50 +02003084 .prepare_multicast = iwl_mvm_prepare_multicast,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003085 .configure_filter = iwl_mvm_configure_filter,
3086 .bss_info_changed = iwl_mvm_bss_info_changed,
3087 .hw_scan = iwl_mvm_mac_hw_scan,
3088 .cancel_hw_scan = iwl_mvm_mac_cancel_hw_scan,
Johannes Berg1ddbbb02013-12-04 22:39:17 +01003089 .sta_pre_rcu_remove = iwl_mvm_sta_pre_rcu_remove,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003090 .sta_state = iwl_mvm_mac_sta_state,
3091 .sta_notify = iwl_mvm_mac_sta_notify,
3092 .allow_buffered_frames = iwl_mvm_mac_allow_buffered_frames,
Johannes Berg3e56ead2013-02-15 22:23:18 +01003093 .release_buffered_frames = iwl_mvm_mac_release_buffered_frames,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003094 .set_rts_threshold = iwl_mvm_mac_set_rts_threshold,
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02003095 .sta_rc_update = iwl_mvm_sta_rc_update,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003096 .conf_tx = iwl_mvm_mac_conf_tx,
3097 .mgd_prepare_tx = iwl_mvm_mac_mgd_prepare_tx,
Arik Nemtsov07ecd892014-05-20 18:16:42 +03003098 .mgd_protect_tdls_discover = iwl_mvm_mac_mgd_protect_tdls_discover,
Emmanuel Grumbachc5b0e7c2014-03-24 12:08:53 +02003099 .flush = iwl_mvm_mac_flush,
David Spinadel35a000b2013-08-28 09:29:43 +03003100 .sched_scan_start = iwl_mvm_mac_sched_scan_start,
3101 .sched_scan_stop = iwl_mvm_mac_sched_scan_stop,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003102 .set_key = iwl_mvm_mac_set_key,
3103 .update_tkip_key = iwl_mvm_mac_update_tkip_key,
3104 .remain_on_channel = iwl_mvm_roc,
3105 .cancel_remain_on_channel = iwl_mvm_cancel_roc,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003106 .add_chanctx = iwl_mvm_add_chanctx,
3107 .remove_chanctx = iwl_mvm_remove_chanctx,
3108 .change_chanctx = iwl_mvm_change_chanctx,
3109 .assign_vif_chanctx = iwl_mvm_assign_vif_chanctx,
3110 .unassign_vif_chanctx = iwl_mvm_unassign_vif_chanctx,
Luciano Coelhob08c1d92014-05-20 23:31:05 +03003111 .switch_vif_chanctx = iwl_mvm_switch_vif_chanctx,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003112
Johannes Berg5023d962013-07-31 14:07:43 +02003113 .start_ap = iwl_mvm_start_ap_ibss,
3114 .stop_ap = iwl_mvm_stop_ap_ibss,
3115 .join_ibss = iwl_mvm_start_ap_ibss,
3116 .leave_ibss = iwl_mvm_stop_ap_ibss,
Johannes Berg8ca151b2013-01-24 14:25:36 +01003117
3118 .set_tim = iwl_mvm_set_tim,
3119
Andrei Otcheretianskibd3398e2013-10-22 05:01:12 +02003120 .channel_switch_beacon = iwl_mvm_channel_switch_beacon,
3121
David Spinadel507cadf2013-07-31 18:07:21 +03003122 CFG80211_TESTMODE_CMD(iwl_mvm_mac_testmode_cmd)
3123
Johannes Berg8ca151b2013-01-24 14:25:36 +01003124#ifdef CONFIG_PM_SLEEP
3125 /* look at d3.c */
3126 .suspend = iwl_mvm_suspend,
3127 .resume = iwl_mvm_resume,
3128 .set_wakeup = iwl_mvm_set_wakeup,
3129 .set_rekey_data = iwl_mvm_set_rekey_data,
3130#if IS_ENABLED(CONFIG_IPV6)
3131 .ipv6_addr_change = iwl_mvm_ipv6_addr_change,
3132#endif
3133 .set_default_unicast_key = iwl_mvm_set_default_unicast_key,
3134#endif
3135};