]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/wireless/iwlwifi/dvm/mac80211.c
mac80211: convert HW flags to unsigned long bitmap
[mirror_ubuntu-hirsute-kernel.git] / drivers / net / wireless / iwlwifi / dvm / mac80211.c
CommitLineData
7335613a
WYG
1/******************************************************************************
2 *
51368bf7 3 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
7335613a
WYG
4 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29#include <linux/kernel.h>
30#include <linux/module.h>
7335613a
WYG
31#include <linux/slab.h>
32#include <linux/dma-mapping.h>
33#include <linux/delay.h>
34#include <linux/sched.h>
35#include <linux/skbuff.h>
36#include <linux/netdevice.h>
7335613a
WYG
37#include <linux/etherdevice.h>
38#include <linux/if_arp.h>
39
53e1116e 40#include <net/ieee80211_radiotap.h>
7335613a
WYG
41#include <net/mac80211.h>
42
43#include <asm/div64.h>
44
7335613a 45#include "iwl-io.h"
7335613a 46#include "iwl-trans.h"
d0f76d68 47#include "iwl-op-mode.h"
65de7e84 48#include "iwl-modparams.h"
7335613a 49
1023fdc4
JB
50#include "dev.h"
51#include "calib.h"
52#include "agn.h"
53
7335613a
WYG
54/*****************************************************************************
55 *
56 * mac80211 entry point functions
57 *
58 *****************************************************************************/
59
60static const struct ieee80211_iface_limit iwlagn_sta_ap_limits[] = {
61 {
62 .max = 1,
63 .types = BIT(NL80211_IFTYPE_STATION),
64 },
65 {
66 .max = 1,
67 .types = BIT(NL80211_IFTYPE_AP),
68 },
69};
70
71static const struct ieee80211_iface_limit iwlagn_2sta_limits[] = {
72 {
73 .max = 2,
74 .types = BIT(NL80211_IFTYPE_STATION),
75 },
76};
77
7335613a
WYG
78static const struct ieee80211_iface_combination
79iwlagn_iface_combinations_dualmode[] = {
80 { .num_different_channels = 1,
81 .max_interfaces = 2,
82 .beacon_int_infra_match = true,
83 .limits = iwlagn_sta_ap_limits,
84 .n_limits = ARRAY_SIZE(iwlagn_sta_ap_limits),
85 },
86 { .num_different_channels = 1,
87 .max_interfaces = 2,
88 .limits = iwlagn_2sta_limits,
89 .n_limits = ARRAY_SIZE(iwlagn_2sta_limits),
90 },
91};
92
7335613a
WYG
93/*
94 * Not a mac80211 entry point function, but it fits in with all the
95 * other mac80211 functions grouped here.
96 */
97int iwlagn_mac_setup_register(struct iwl_priv *priv,
0692fe41 98 const struct iwl_ucode_capabilities *capa)
7335613a
WYG
99{
100 int ret;
101 struct ieee80211_hw *hw = priv->hw;
102 struct iwl_rxon_context *ctx;
103
104 hw->rate_control_algorithm = "iwl-agn-rs";
105
106 /* Tell mac80211 our characteristics */
30686bf7
JB
107 ieee80211_hw_set(hw, SIGNAL_DBM);
108 ieee80211_hw_set(hw, AMPDU_AGGREGATION);
109 ieee80211_hw_set(hw, NEED_DTIM_BEFORE_ASSOC);
110 ieee80211_hw_set(hw, SPECTRUM_MGMT);
111 ieee80211_hw_set(hw, REPORTS_TX_ACK_STATUS);
112 ieee80211_hw_set(hw, QUEUE_CONTROL);
113 ieee80211_hw_set(hw, SUPPORTS_PS);
114 ieee80211_hw_set(hw, SUPPORTS_DYNAMIC_PS);
115 ieee80211_hw_set(hw, SUPPORT_FAST_XMIT);
116 ieee80211_hw_set(hw, WANT_MONITOR_VIF);
1479177b
JB
117
118 hw->offchannel_tx_hw_queue = IWL_AUX_QUEUE;
53e1116e 119 hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FMT;
7335613a
WYG
120
121 /*
122 * Including the following line will crash some AP's. This
123 * workaround removes the stimulus which causes the crash until
124 * the AP software can be fixed.
125 hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
126 */
127
b7998c8b 128 if (priv->nvm_data->sku_cap_11n_enable)
0d8614b4
EP
129 hw->wiphy->features |= NL80211_FEATURE_DYNAMIC_SMPS |
130 NL80211_FEATURE_STATIC_SMPS;
7335613a 131
686681b0
JB
132 /*
133 * Enable 11w if advertised by firmware and software crypto
134 * is not enabled (as the firmware will interpret some mgmt
135 * packets, so enabling it with software crypto isn't safe)
136 */
137 if (priv->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP &&
138 !iwlwifi_mod_params.sw_crypto)
30686bf7 139 ieee80211_hw_set(hw, MFP_CAPABLE);
7335613a
WYG
140
141 hw->sta_data_size = sizeof(struct iwl_station_priv);
142 hw->vif_data_size = sizeof(struct iwl_vif_priv);
143
144 for_each_context(priv, ctx) {
145 hw->wiphy->interface_modes |= ctx->interface_modes;
146 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
147 }
148
149 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
150
da4f87f0 151 if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
7335613a
WYG
152 hw->wiphy->iface_combinations =
153 iwlagn_iface_combinations_dualmode;
154 hw->wiphy->n_iface_combinations =
155 ARRAY_SIZE(iwlagn_iface_combinations_dualmode);
156 }
157
a2f73b6c
LR
158 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
159 hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
160 REGULATORY_DISABLE_BEACON_HINTS;
7335613a 161
fcb6ff5e 162#ifdef CONFIG_PM_SLEEP
6dfa8d01 163 if (priv->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
ddaf5a5b
JB
164 priv->trans->ops->d3_suspend &&
165 priv->trans->ops->d3_resume &&
68e8dfda 166 device_can_wakeup(priv->trans->dev)) {
964dc9e2
JB
167 priv->wowlan_support.flags = WIPHY_WOWLAN_MAGIC_PKT |
168 WIPHY_WOWLAN_DISCONNECT |
169 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
170 WIPHY_WOWLAN_RFKILL_RELEASE;
65de7e84 171 if (!iwlwifi_mod_params.sw_crypto)
964dc9e2 172 priv->wowlan_support.flags |=
7335613a
WYG
173 WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
174 WIPHY_WOWLAN_GTK_REKEY_FAILURE;
175
964dc9e2
JB
176 priv->wowlan_support.n_patterns = IWLAGN_WOWLAN_MAX_PATTERNS;
177 priv->wowlan_support.pattern_min_len =
7335613a 178 IWLAGN_WOWLAN_MIN_PATTERN_LEN;
964dc9e2 179 priv->wowlan_support.pattern_max_len =
7335613a 180 IWLAGN_WOWLAN_MAX_PATTERN_LEN;
964dc9e2 181 hw->wiphy->wowlan = &priv->wowlan_support;
7335613a 182 }
fcb6ff5e 183#endif
7335613a 184
65de7e84 185 if (iwlwifi_mod_params.power_save)
7335613a
WYG
186 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
187 else
188 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
189
190 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
4f9bfbb1
DS
191 /* we create the 802.11 header and a max-length SSID element */
192 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 34;
7335613a 193
1479177b
JB
194 /*
195 * We don't use all queues: 4 and 9 are unused and any
196 * aggregation queue gets mapped down to the AC queue.
197 */
198 hw->queues = IWLAGN_FIRST_AMPDU_QUEUE;
7335613a
WYG
199
200 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
201
b7998c8b 202 if (priv->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels)
7335613a 203 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
b7998c8b
EL
204 &priv->nvm_data->bands[IEEE80211_BAND_2GHZ];
205 if (priv->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels)
7335613a 206 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
b7998c8b 207 &priv->nvm_data->bands[IEEE80211_BAND_5GHZ];
7335613a 208
68e8dfda 209 hw->wiphy->hw_version = priv->trans->hw_id;
0ba958eb 210
7335613a
WYG
211 iwl_leds_init(priv);
212
213 ret = ieee80211_register_hw(priv->hw);
214 if (ret) {
215 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
0e1fa7ef 216 iwl_leds_exit(priv);
7335613a
WYG
217 return ret;
218 }
219 priv->mac80211_registered = 1;
220
221 return 0;
222}
223
09af1403
DF
224void iwlagn_mac_unregister(struct iwl_priv *priv)
225{
226 if (!priv->mac80211_registered)
227 return;
228 iwl_leds_exit(priv);
229 ieee80211_unregister_hw(priv->hw);
230 priv->mac80211_registered = 0;
231}
232
7335613a
WYG
233static int __iwl_up(struct iwl_priv *priv)
234{
235 struct iwl_rxon_context *ctx;
236 int ret;
237
b1eea297 238 lockdep_assert_held(&priv->mutex);
7335613a 239
83626404 240 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
7335613a
WYG
241 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
242 return -EIO;
243 }
244
245 for_each_context(priv, ctx) {
246 ret = iwlagn_alloc_bcast_station(priv, ctx);
247 if (ret) {
248 iwl_dealloc_bcast_stations(priv);
249 return ret;
250 }
251 }
252
e1991885 253 ret = iwl_run_init_ucode(priv);
7335613a
WYG
254 if (ret) {
255 IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret);
256 goto error;
257 }
258
e1991885 259 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
7335613a
WYG
260 if (ret) {
261 IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret);
262 goto error;
263 }
264
265 ret = iwl_alive_start(priv);
266 if (ret)
267 goto error;
268 return 0;
269
270 error:
83626404 271 set_bit(STATUS_EXIT_PENDING, &priv->status);
78e5a464 272 iwl_down(priv);
83626404 273 clear_bit(STATUS_EXIT_PENDING, &priv->status);
7335613a
WYG
274
275 IWL_ERR(priv, "Unable to initialize device.\n");
276 return ret;
277}
278
279static int iwlagn_mac_start(struct ieee80211_hw *hw)
280{
d0f76d68 281 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a
WYG
282 int ret;
283
284 IWL_DEBUG_MAC80211(priv, "enter\n");
285
286 /* we should be verifying the device is ready to be opened */
b1eea297 287 mutex_lock(&priv->mutex);
7335613a 288 ret = __iwl_up(priv);
b1eea297 289 mutex_unlock(&priv->mutex);
7335613a
WYG
290 if (ret)
291 return ret;
292
293 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
294
295 /* Now we should be done, and the READY bit should be set. */
83626404 296 if (WARN_ON(!test_bit(STATUS_READY, &priv->status)))
7335613a
WYG
297 ret = -EIO;
298
299 iwlagn_led_enable(priv);
300
301 priv->is_open = 1;
302 IWL_DEBUG_MAC80211(priv, "leave\n");
303 return 0;
304}
305
aca86268 306static void iwlagn_mac_stop(struct ieee80211_hw *hw)
7335613a 307{
d0f76d68 308 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a
WYG
309
310 IWL_DEBUG_MAC80211(priv, "enter\n");
311
312 if (!priv->is_open)
313 return;
314
315 priv->is_open = 0;
316
b1eea297 317 mutex_lock(&priv->mutex);
7335613a 318 iwl_down(priv);
b1eea297 319 mutex_unlock(&priv->mutex);
78e5a464
EG
320
321 iwl_cancel_deferred_work(priv);
7335613a 322
1ee158d8 323 flush_workqueue(priv->workqueue);
7335613a 324
7335613a
WYG
325 IWL_DEBUG_MAC80211(priv, "leave\n");
326}
327
aca86268
JB
328static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
329 struct ieee80211_vif *vif,
330 struct cfg80211_gtk_rekey_data *data)
7335613a 331{
d0f76d68 332 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a 333
65de7e84 334 if (iwlwifi_mod_params.sw_crypto)
7335613a
WYG
335 return;
336
337 IWL_DEBUG_MAC80211(priv, "enter\n");
b1eea297 338 mutex_lock(&priv->mutex);
7335613a
WYG
339
340 if (priv->contexts[IWL_RXON_CTX_BSS].vif != vif)
341 goto out;
342
343 memcpy(priv->kek, data->kek, NL80211_KEK_LEN);
344 memcpy(priv->kck, data->kck, NL80211_KCK_LEN);
345 priv->replay_ctr =
346 cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr));
347 priv->have_rekey_data = true;
348
349 out:
b1eea297 350 mutex_unlock(&priv->mutex);
7335613a
WYG
351 IWL_DEBUG_MAC80211(priv, "leave\n");
352}
353
354#ifdef CONFIG_PM_SLEEP
7335613a 355
aca86268
JB
356static int iwlagn_mac_suspend(struct ieee80211_hw *hw,
357 struct cfg80211_wowlan *wowlan)
7335613a 358{
d0f76d68 359 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a 360 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
023ca58f 361 int ret;
7335613a
WYG
362
363 if (WARN_ON(!wowlan))
364 return -EINVAL;
365
366 IWL_DEBUG_MAC80211(priv, "enter\n");
b1eea297 367 mutex_lock(&priv->mutex);
7335613a
WYG
368
369 /* Don't attempt WoWLAN when not associated, tear down instead. */
370 if (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION ||
371 !iwl_is_associated_ctx(ctx)) {
372 ret = 1;
373 goto out;
374 }
375
ea886a60 376 ret = iwlagn_suspend(priv, wowlan);
7335613a
WYG
377 if (ret)
378 goto error;
379
8ade6285
JB
380 /* let the ucode operate on its own */
381 iwl_write32(priv->trans, CSR_UCODE_DRV_GP1_SET,
382 CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE);
383
debff618 384 iwl_trans_d3_suspend(priv->trans, false);
7335613a
WYG
385
386 goto out;
387
388 error:
15b86bff 389 priv->wowlan = false;
7335613a
WYG
390 iwlagn_prepare_restart(priv);
391 ieee80211_restart_hw(priv->hw);
392 out:
b1eea297 393 mutex_unlock(&priv->mutex);
7335613a
WYG
394 IWL_DEBUG_MAC80211(priv, "leave\n");
395
396 return ret;
397}
398
5718d27f
JB
399struct iwl_resume_data {
400 struct iwl_priv *priv;
401 struct iwlagn_wowlan_status *cmd;
402 bool valid;
403};
404
405static bool iwl_resume_status_fn(struct iwl_notif_wait_data *notif_wait,
406 struct iwl_rx_packet *pkt, void *data)
407{
408 struct iwl_resume_data *resume_data = data;
409 struct iwl_priv *priv = resume_data->priv;
5718d27f 410
65b30348 411 if (iwl_rx_packet_payload_len(pkt) != sizeof(*resume_data->cmd)) {
5718d27f
JB
412 IWL_ERR(priv, "rx wrong size data\n");
413 return true;
414 }
415 memcpy(resume_data->cmd, pkt->data, sizeof(*resume_data->cmd));
416 resume_data->valid = true;
417
418 return true;
419}
420
7335613a
WYG
421static int iwlagn_mac_resume(struct ieee80211_hw *hw)
422{
d0f76d68 423 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a
WYG
424 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
425 struct ieee80211_vif *vif;
5718d27f
JB
426 u32 base;
427 int ret;
428 enum iwl_d3_status d3_status;
429 struct error_table_start {
430 /* cf. struct iwl_error_event_table */
431 u32 valid;
432 u32 error_id;
433 } err_info;
434 struct iwl_notification_wait status_wait;
435 static const u8 status_cmd[] = {
436 REPLY_WOWLAN_GET_STATUS,
437 };
438 struct iwlagn_wowlan_status status_data = {};
439 struct iwl_resume_data resume_data = {
440 .priv = priv,
441 .cmd = &status_data,
442 .valid = false,
443 };
444 struct cfg80211_wowlan_wakeup wakeup = {
445 .pattern_idx = -1,
446 };
447#ifdef CONFIG_IWLWIFI_DEBUGFS
448 const struct fw_img *img;
449#endif
7335613a
WYG
450
451 IWL_DEBUG_MAC80211(priv, "enter\n");
b1eea297 452 mutex_lock(&priv->mutex);
7335613a 453
5718d27f
JB
454 /* we'll clear ctx->vif during iwlagn_prepare_restart() */
455 vif = ctx->vif;
456
debff618 457 ret = iwl_trans_d3_resume(priv->trans, &d3_status, false);
5718d27f
JB
458 if (ret)
459 goto out_unlock;
460
461 if (d3_status != IWL_D3_STATUS_ALIVE) {
462 IWL_INFO(priv, "Device was reset during suspend\n");
463 goto out_unlock;
464 }
7335613a 465
8ade6285
JB
466 /* uCode is no longer operating by itself */
467 iwl_write32(priv->trans, CSR_UCODE_DRV_GP1_CLR,
468 CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE);
469
2fdfc476 470 base = priv->device_pointers.error_event_table;
5718d27f
JB
471 if (!iwlagn_hw_valid_rtc_data_addr(base)) {
472 IWL_WARN(priv, "Invalid error table during resume!\n");
473 goto out_unlock;
474 }
475
476 iwl_trans_read_mem_bytes(priv->trans, base,
477 &err_info, sizeof(err_info));
478
479 if (err_info.valid) {
480 IWL_INFO(priv, "error table is valid (%d, 0x%x)\n",
481 err_info.valid, err_info.error_id);
482 if (err_info.error_id == RF_KILL_INDICATOR_FOR_WOWLAN) {
483 wakeup.rfkill_release = true;
484 ieee80211_report_wowlan_wakeup(vif, &wakeup,
485 GFP_KERNEL);
7335613a 486 }
5718d27f
JB
487 goto out_unlock;
488 }
7335613a
WYG
489
490#ifdef CONFIG_IWLWIFI_DEBUGFS
5718d27f
JB
491 img = &priv->fw->img[IWL_UCODE_WOWLAN];
492 if (!priv->wowlan_sram)
493 priv->wowlan_sram =
494 kzalloc(img->sec[IWL_UCODE_SECTION_DATA].len,
495 GFP_KERNEL);
496
497 if (priv->wowlan_sram)
498 iwl_trans_read_mem(priv->trans, 0x800000,
499 priv->wowlan_sram,
500 img->sec[IWL_UCODE_SECTION_DATA].len / 4);
7335613a 501#endif
7335613a 502
5718d27f
JB
503 /*
504 * This is very strange. The GET_STATUS command is sent but the device
505 * doesn't reply properly, it seems it doesn't close the RBD so one is
506 * always left open ... As a result, we need to send another command
507 * and have to reset the driver afterwards. As we need to switch to
508 * runtime firmware again that'll happen.
509 */
510
511 iwl_init_notification_wait(&priv->notif_wait, &status_wait, status_cmd,
512 ARRAY_SIZE(status_cmd), iwl_resume_status_fn,
513 &resume_data);
514
515 iwl_dvm_send_cmd_pdu(priv, REPLY_WOWLAN_GET_STATUS, CMD_ASYNC, 0, NULL);
516 iwl_dvm_send_cmd_pdu(priv, REPLY_ECHO, CMD_ASYNC, 0, NULL);
517 /* an RBD is left open in the firmware now! */
518
519 ret = iwl_wait_notification(&priv->notif_wait, &status_wait, HZ/5);
520 if (ret)
521 goto out_unlock;
522
523 if (resume_data.valid && priv->contexts[IWL_RXON_CTX_BSS].vif) {
524 u32 reasons = le32_to_cpu(status_data.wakeup_reason);
525 struct cfg80211_wowlan_wakeup *wakeup_report;
526
527 IWL_INFO(priv, "WoWLAN wakeup reason(s): 0x%.8x\n", reasons);
528
529 if (reasons) {
530 if (reasons & IWLAGN_WOWLAN_WAKEUP_MAGIC_PACKET)
531 wakeup.magic_pkt = true;
532 if (reasons & IWLAGN_WOWLAN_WAKEUP_PATTERN_MATCH)
533 wakeup.pattern_idx = status_data.pattern_number;
534 if (reasons & (IWLAGN_WOWLAN_WAKEUP_BEACON_MISS |
535 IWLAGN_WOWLAN_WAKEUP_LINK_CHANGE))
536 wakeup.disconnect = true;
537 if (reasons & IWLAGN_WOWLAN_WAKEUP_GTK_REKEY_FAIL)
538 wakeup.gtk_rekey_failure = true;
539 if (reasons & IWLAGN_WOWLAN_WAKEUP_EAP_IDENT_REQ)
540 wakeup.eap_identity_req = true;
541 if (reasons & IWLAGN_WOWLAN_WAKEUP_4WAY_HANDSHAKE)
542 wakeup.four_way_handshake = true;
543 wakeup_report = &wakeup;
544 } else {
545 wakeup_report = NULL;
546 }
547
548 ieee80211_report_wowlan_wakeup(vif, wakeup_report, GFP_KERNEL);
549 }
7335613a 550
15b86bff 551 priv->wowlan = false;
7335613a 552
7335613a
WYG
553 iwlagn_prepare_restart(priv);
554
555 memset((void *)&ctx->active, 0, sizeof(ctx->active));
556 iwl_connection_init_rx_config(priv, ctx);
557 iwlagn_set_rxon_chain(priv, ctx);
558
5718d27f 559 out_unlock:
b1eea297 560 mutex_unlock(&priv->mutex);
7335613a
WYG
561 IWL_DEBUG_MAC80211(priv, "leave\n");
562
563 ieee80211_resume_disconnect(vif);
564
565 return 1;
566}
567
76ed2edd
JB
568static void iwlagn_mac_set_wakeup(struct ieee80211_hw *hw, bool enabled)
569{
570 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
571
572 device_set_wakeup_enable(priv->trans->dev, enabled);
573}
7335613a
WYG
574#endif
575
36323f81
TH
576static void iwlagn_mac_tx(struct ieee80211_hw *hw,
577 struct ieee80211_tx_control *control,
578 struct sk_buff *skb)
7335613a 579{
d0f76d68 580 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a 581
36323f81 582 if (iwlagn_tx_skb(priv, control->sta, skb))
31df3bb7 583 ieee80211_free_txskb(hw, skb);
7335613a
WYG
584}
585
aca86268
JB
586static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
587 struct ieee80211_vif *vif,
588 struct ieee80211_key_conf *keyconf,
589 struct ieee80211_sta *sta,
590 u32 iv32, u16 *phase1key)
7335613a 591{
d0f76d68 592 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a
WYG
593
594 iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key);
595}
596
aca86268
JB
597static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
598 struct ieee80211_vif *vif,
599 struct ieee80211_sta *sta,
600 struct ieee80211_key_conf *key)
7335613a 601{
d0f76d68 602 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a
WYG
603 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
604 struct iwl_rxon_context *ctx = vif_priv->ctx;
605 int ret;
606 bool is_default_wep_key = false;
607
608 IWL_DEBUG_MAC80211(priv, "enter\n");
609
65de7e84 610 if (iwlwifi_mod_params.sw_crypto) {
7335613a
WYG
611 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
612 return -EOPNOTSUPP;
613 }
614
a7e12c8e
JB
615 switch (key->cipher) {
616 case WLAN_CIPHER_SUITE_TKIP:
617 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
618 /* fall through */
619 case WLAN_CIPHER_SUITE_CCMP:
620 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
621 break;
622 default:
623 break;
624 }
625
7335613a
WYG
626 /*
627 * We could program these keys into the hardware as well, but we
628 * don't expect much multicast traffic in IBSS and having keys
629 * for more stations is probably more useful.
630 *
631 * Mark key TX-only and return 0.
632 */
633 if (vif->type == NL80211_IFTYPE_ADHOC &&
634 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
635 key->hw_key_idx = WEP_INVALID_OFFSET;
636 return 0;
637 }
638
639 /* If they key was TX-only, accept deletion */
640 if (cmd == DISABLE_KEY && key->hw_key_idx == WEP_INVALID_OFFSET)
641 return 0;
642
b1eea297 643 mutex_lock(&priv->mutex);
7335613a
WYG
644 iwl_scan_cancel_timeout(priv, 100);
645
646 BUILD_BUG_ON(WEP_INVALID_OFFSET == IWLAGN_HW_KEY_DEFAULT);
647
648 /*
649 * If we are getting WEP group key and we didn't receive any key mapping
650 * so far, we are in legacy wep mode (group key only), otherwise we are
651 * in 1X mode.
652 * In legacy wep mode, we use another host command to the uCode.
653 */
654 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
655 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
656 if (cmd == SET_KEY)
657 is_default_wep_key = !ctx->key_mapping_keys;
658 else
659 is_default_wep_key =
660 key->hw_key_idx == IWLAGN_HW_KEY_DEFAULT;
661 }
662
663
664 switch (cmd) {
665 case SET_KEY:
666 if (is_default_wep_key) {
667 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
668 break;
669 }
670 ret = iwl_set_dynamic_key(priv, vif_priv->ctx, key, sta);
671 if (ret) {
672 /*
673 * can't add key for RX, but we don't need it
674 * in the device for TX so still return 0
675 */
676 ret = 0;
677 key->hw_key_idx = WEP_INVALID_OFFSET;
678 }
679
680 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
681 break;
682 case DISABLE_KEY:
683 if (is_default_wep_key)
684 ret = iwl_remove_default_wep_key(priv, ctx, key);
685 else
686 ret = iwl_remove_dynamic_key(priv, ctx, key, sta);
687
688 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
689 break;
690 default:
691 ret = -EINVAL;
692 }
693
b1eea297 694 mutex_unlock(&priv->mutex);
7335613a
WYG
695 IWL_DEBUG_MAC80211(priv, "leave\n");
696
697 return ret;
698}
699
205e2210
EG
700static inline bool iwl_enable_rx_ampdu(const struct iwl_cfg *cfg)
701{
702 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
703 return false;
704 return true;
705}
706
707static inline bool iwl_enable_tx_ampdu(const struct iwl_cfg *cfg)
708{
709 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
710 return false;
711 if (iwlwifi_mod_params.disable_11n & IWL_ENABLE_HT_TXAGG)
712 return true;
713
714 /* disabled by default */
715 return false;
716}
717
aca86268
JB
718static int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
719 struct ieee80211_vif *vif,
720 enum ieee80211_ampdu_mlme_action action,
721 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
722 u8 buf_size)
7335613a 723{
d0f76d68 724 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a
WYG
725 int ret = -EINVAL;
726 struct iwl_station_priv *sta_priv = (void *) sta->drv_priv;
7335613a
WYG
727
728 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
729 sta->addr, tid);
730
b7998c8b 731 if (!(priv->nvm_data->sku_cap_11n_enable))
7335613a
WYG
732 return -EACCES;
733
734 IWL_DEBUG_MAC80211(priv, "enter\n");
b1eea297 735 mutex_lock(&priv->mutex);
7335613a
WYG
736
737 switch (action) {
738 case IEEE80211_AMPDU_RX_START:
205e2210 739 if (!iwl_enable_rx_ampdu(priv->cfg))
7428994d 740 break;
7335613a
WYG
741 IWL_DEBUG_HT(priv, "start Rx\n");
742 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
743 break;
744 case IEEE80211_AMPDU_RX_STOP:
745 IWL_DEBUG_HT(priv, "stop Rx\n");
746 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
7335613a
WYG
747 break;
748 case IEEE80211_AMPDU_TX_START:
4beaf6c2 749 if (!priv->trans->ops->txq_enable)
9eae88fa 750 break;
205e2210 751 if (!iwl_enable_tx_ampdu(priv->cfg))
7428994d 752 break;
7335613a
WYG
753 IWL_DEBUG_HT(priv, "start Tx\n");
754 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
755 break;
18b559d5
JB
756 case IEEE80211_AMPDU_TX_STOP_FLUSH:
757 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
2d055afd
EG
758 IWL_DEBUG_HT(priv, "Flush Tx\n");
759 ret = iwlagn_tx_agg_flush(priv, vif, sta, tid);
760 break;
761 case IEEE80211_AMPDU_TX_STOP_CONT:
7335613a
WYG
762 IWL_DEBUG_HT(priv, "stop Tx\n");
763 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
764 if ((ret == 0) && (priv->agg_tids_count > 0)) {
765 priv->agg_tids_count--;
766 IWL_DEBUG_HT(priv, "priv->agg_tids_count = %u\n",
767 priv->agg_tids_count);
768 }
b9ad70da 769 if (!priv->agg_tids_count &&
9e295116 770 priv->hw_params.use_rts_for_aggregation) {
7335613a
WYG
771 /*
772 * switch off RTS/CTS if it was previously enabled
773 */
774 sta_priv->lq_sta.lq.general_params.flags &=
775 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
776 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
777 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
778 }
779 break;
780 case IEEE80211_AMPDU_TX_OPERATIONAL:
822e8b2a 781 ret = iwlagn_tx_agg_oper(priv, vif, sta, tid, buf_size);
7335613a
WYG
782 break;
783 }
b1eea297 784 mutex_unlock(&priv->mutex);
7335613a
WYG
785 IWL_DEBUG_MAC80211(priv, "leave\n");
786 return ret;
787}
788
789static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
790 struct ieee80211_vif *vif,
791 struct ieee80211_sta *sta)
792{
d0f76d68 793 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a
WYG
794 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
795 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
796 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
fb5fe5b9 797 int ret;
7335613a
WYG
798 u8 sta_id;
799
7335613a
WYG
800 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
801 sta->addr);
802 sta_priv->sta_id = IWL_INVALID_STATION;
803
804 atomic_set(&sta_priv->pending_frames, 0);
805 if (vif->type == NL80211_IFTYPE_AP)
806 sta_priv->client = true;
807
808 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
809 is_ap, sta, &sta_id);
810 if (ret) {
811 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
812 sta->addr, ret);
813 /* Should we return success if return code is EEXIST ? */
fb5fe5b9 814 return ret;
7335613a
WYG
815 }
816
817 sta_priv->sta_id = sta_id;
818
fb5fe5b9
JB
819 return 0;
820}
821
822static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
823 struct ieee80211_vif *vif,
824 struct ieee80211_sta *sta)
825{
826 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
827 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
828 int ret;
829
97420515
JB
830 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n", sta->addr);
831
832 if (vif->type == NL80211_IFTYPE_STATION) {
833 /*
834 * Station will be removed from device when the RXON
835 * is set to unassociated -- just deactivate it here
836 * to avoid re-programming it.
837 */
838 ret = 0;
839 iwl_deactivate_station(priv, sta_priv->sta_id, sta->addr);
840 } else {
841 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
842 if (ret)
843 IWL_DEBUG_QUIET_RFKILL(priv,
844 "Error removing station %pM\n", sta->addr);
845 }
fb5fe5b9
JB
846 return ret;
847}
848
aca86268
JB
849static int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
850 struct ieee80211_vif *vif,
851 struct ieee80211_sta *sta,
852 enum ieee80211_sta_state old_state,
853 enum ieee80211_sta_state new_state)
fb5fe5b9
JB
854{
855 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
ab0bd5b3 856 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
fb5fe5b9 857 enum {
ab0bd5b3 858 NONE, ADD, REMOVE, HT_RATE_INIT, ADD_RATE_INIT,
fb5fe5b9
JB
859 } op = NONE;
860 int ret;
861
862 IWL_DEBUG_MAC80211(priv, "station %pM state change %d->%d\n",
863 sta->addr, old_state, new_state);
864
b1eea297 865 mutex_lock(&priv->mutex);
fb5fe5b9
JB
866 if (vif->type == NL80211_IFTYPE_STATION) {
867 if (old_state == IEEE80211_STA_NOTEXIST &&
868 new_state == IEEE80211_STA_NONE)
869 op = ADD;
870 else if (old_state == IEEE80211_STA_NONE &&
871 new_state == IEEE80211_STA_NOTEXIST)
872 op = REMOVE;
873 else if (old_state == IEEE80211_STA_AUTH &&
874 new_state == IEEE80211_STA_ASSOC)
ab0bd5b3 875 op = HT_RATE_INIT;
fb5fe5b9
JB
876 } else {
877 if (old_state == IEEE80211_STA_AUTH &&
878 new_state == IEEE80211_STA_ASSOC)
879 op = ADD_RATE_INIT;
880 else if (old_state == IEEE80211_STA_ASSOC &&
881 new_state == IEEE80211_STA_AUTH)
882 op = REMOVE;
883 }
884
885 switch (op) {
886 case ADD:
887 ret = iwlagn_mac_sta_add(hw, vif, sta);
eac9ac6d
JB
888 if (ret)
889 break;
890 /*
891 * Clear the in-progress flag, the AP station entry was added
892 * but we'll initialize LQ only when we've associated (which
893 * would also clear the in-progress flag). This is necessary
894 * in case we never initialize LQ because association fails.
895 */
896 spin_lock_bh(&priv->sta_lock);
897 priv->stations[iwl_sta_id(sta)].used &=
898 ~IWL_STA_UCODE_INPROGRESS;
899 spin_unlock_bh(&priv->sta_lock);
fb5fe5b9
JB
900 break;
901 case REMOVE:
902 ret = iwlagn_mac_sta_remove(hw, vif, sta);
903 break;
904 case ADD_RATE_INIT:
905 ret = iwlagn_mac_sta_add(hw, vif, sta);
906 if (ret)
907 break;
fb5fe5b9
JB
908 /* Initialize rate scaling */
909 IWL_DEBUG_INFO(priv,
910 "Initializing rate scaling for station %pM\n",
911 sta->addr);
912 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
913 ret = 0;
914 break;
ab0bd5b3
JB
915 case HT_RATE_INIT:
916 /* Initialize rate scaling */
917 ret = iwl_sta_update_ht(priv, vif_priv->ctx, sta);
918 if (ret)
919 break;
920 IWL_DEBUG_INFO(priv,
921 "Initializing rate scaling for station %pM\n",
922 sta->addr);
923 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
924 ret = 0;
925 break;
fb5fe5b9
JB
926 default:
927 ret = 0;
928 break;
929 }
930
931 /*
932 * mac80211 might WARN if we fail, but due the way we
933 * (badly) handle hard rfkill, we might fail here
934 */
83626404 935 if (iwl_is_rfkill(priv))
fb5fe5b9
JB
936 ret = 0;
937
b1eea297 938 mutex_unlock(&priv->mutex);
7335613a
WYG
939 IWL_DEBUG_MAC80211(priv, "leave\n");
940
941 return ret;
942}
943
aca86268 944static void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
0f791eb4 945 struct ieee80211_vif *vif,
aca86268 946 struct ieee80211_channel_switch *ch_switch)
7335613a 947{
d0f76d68 948 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a 949 struct ieee80211_conf *conf = &hw->conf;
85220d71 950 struct ieee80211_channel *channel = ch_switch->chandef.chan;
7335613a
WYG
951 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
952 /*
953 * MULTI-FIXME
954 * When we add support for multiple interfaces, we need to
955 * revisit this. The channel switch command in the device
956 * only affects the BSS context, but what does that really
957 * mean? And what if we get a CSA on the second interface?
958 * This needs a lot of work.
959 */
960 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
961 u16 ch;
962
963 IWL_DEBUG_MAC80211(priv, "enter\n");
964
b1eea297 965 mutex_lock(&priv->mutex);
7335613a 966
83626404 967 if (iwl_is_rfkill(priv))
7335613a
WYG
968 goto out;
969
83626404
DF
970 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
971 test_bit(STATUS_SCANNING, &priv->status) ||
972 test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
7335613a
WYG
973 goto out;
974
975 if (!iwl_is_associated_ctx(ctx))
976 goto out;
977
e9676695 978 if (!priv->lib->set_channel_switch)
7335613a
WYG
979 goto out;
980
981 ch = channel->hw_value;
982 if (le16_to_cpu(ctx->active.channel) == ch)
983 goto out;
984
7335613a
WYG
985 priv->current_ht_config.smps = conf->smps_mode;
986
987 /* Configure HT40 channels */
85220d71
JB
988 switch (cfg80211_get_chandef_type(&ch_switch->chandef)) {
989 case NL80211_CHAN_NO_HT:
990 case NL80211_CHAN_HT20:
7335613a 991 ctx->ht.is_40mhz = false;
85220d71
JB
992 ctx->ht.extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
993 break;
994 case NL80211_CHAN_HT40MINUS:
995 ctx->ht.extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
996 ctx->ht.is_40mhz = true;
997 break;
998 case NL80211_CHAN_HT40PLUS:
999 ctx->ht.extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
1000 ctx->ht.is_40mhz = true;
1001 break;
1002 }
7335613a
WYG
1003
1004 if ((le16_to_cpu(ctx->staging.channel) != ch))
1005 ctx->staging.flags = 0;
1006
1007 iwl_set_rxon_channel(priv, channel, ctx);
1008 iwl_set_rxon_ht(priv, ht_conf);
1009 iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif);
1010
7335613a
WYG
1011 /*
1012 * at this point, staging_rxon has the
1013 * configuration for channel switch
1014 */
83626404 1015 set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
7335613a 1016 priv->switch_channel = cpu_to_le16(ch);
e9676695 1017 if (priv->lib->set_channel_switch(priv, ch_switch)) {
83626404 1018 clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
7335613a
WYG
1019 priv->switch_channel = 0;
1020 ieee80211_chswitch_done(ctx->vif, false);
1021 }
1022
1023out:
b1eea297 1024 mutex_unlock(&priv->mutex);
7335613a
WYG
1025 IWL_DEBUG_MAC80211(priv, "leave\n");
1026}
1027
bedec3a6
MV
1028void iwl_chswitch_done(struct iwl_priv *priv, bool is_success)
1029{
1030 /*
1031 * MULTI-FIXME
1032 * See iwlagn_mac_channel_switch.
1033 */
1034 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1035
1036 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1037 return;
1038
9186a1fd
SG
1039 if (!test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
1040 return;
1041
1042 if (ctx->vif)
bedec3a6
MV
1043 ieee80211_chswitch_done(ctx->vif, is_success);
1044}
1045
aca86268
JB
1046static void iwlagn_configure_filter(struct ieee80211_hw *hw,
1047 unsigned int changed_flags,
1048 unsigned int *total_flags,
1049 u64 multicast)
7335613a 1050{
d0f76d68 1051 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a
WYG
1052 __le32 filter_or = 0, filter_nand = 0;
1053 struct iwl_rxon_context *ctx;
1054
1055#define CHK(test, flag) do { \
1056 if (*total_flags & (test)) \
1057 filter_or |= (flag); \
1058 else \
1059 filter_nand |= (flag); \
1060 } while (0)
1061
1062 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
1063 changed_flags, *total_flags);
1064
df140465 1065 CHK(FIF_OTHER_BSS, RXON_FILTER_PROMISC_MSK);
7335613a
WYG
1066 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
1067 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
1068 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
1069
1070#undef CHK
1071
b1eea297 1072 mutex_lock(&priv->mutex);
7335613a
WYG
1073
1074 for_each_context(priv, ctx) {
1075 ctx->staging.filter_flags &= ~filter_nand;
1076 ctx->staging.filter_flags |= filter_or;
1077
1078 /*
1079 * Not committing directly because hardware can perform a scan,
1080 * but we'll eventually commit the filter flags change anyway.
1081 */
1082 }
1083
b1eea297 1084 mutex_unlock(&priv->mutex);
7335613a
WYG
1085
1086 /*
1087 * Receiving all multicast frames is always enabled by the
1088 * default flags setup in iwl_connection_init_rx_config()
1089 * since we currently do not support programming multicast
1090 * filters into the device.
1091 */
df140465 1092 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI |
7335613a
WYG
1093 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
1094}
1095
77be2c54
EG
1096static void iwlagn_mac_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1097 u32 queues, bool drop)
7335613a 1098{
d0f76d68 1099 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
a0855054 1100 u32 scd_queues;
7335613a 1101
b1eea297 1102 mutex_lock(&priv->mutex);
7335613a
WYG
1103 IWL_DEBUG_MAC80211(priv, "enter\n");
1104
83626404 1105 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
7335613a
WYG
1106 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
1107 goto done;
1108 }
83626404 1109 if (iwl_is_rfkill(priv)) {
7335613a
WYG
1110 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
1111 goto done;
1112 }
1113
a0855054
EG
1114 scd_queues = BIT(priv->cfg->base_params->num_of_queues) - 1;
1115 scd_queues &= ~(BIT(IWL_IPAN_CMD_QUEUE_NUM) |
1116 BIT(IWL_DEFAULT_CMD_QUEUE_NUM));
1117
a3a0a599
EG
1118 if (drop) {
1119 IWL_DEBUG_TX_QUEUES(priv, "Flushing SCD queues: 0x%x\n",
1120 scd_queues);
1121 if (iwlagn_txfifo_flush(priv, scd_queues)) {
1122 IWL_ERR(priv, "flush request fail\n");
1123 goto done;
1124 }
7335613a 1125 }
a3a0a599 1126
a0855054 1127 IWL_DEBUG_TX_QUEUES(priv, "wait transmit/flush all frames\n");
a3a0a599 1128 iwl_trans_wait_tx_queue_empty(priv->trans, scd_queues);
7335613a 1129done:
b1eea297 1130 mutex_unlock(&priv->mutex);
7335613a
WYG
1131 IWL_DEBUG_MAC80211(priv, "leave\n");
1132}
1133
a8182929
EG
1134static void iwlagn_mac_event_callback(struct ieee80211_hw *hw,
1135 struct ieee80211_vif *vif,
1136 const struct ieee80211_event *event)
7335613a 1137{
d0f76d68 1138 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a 1139
a8182929
EG
1140 if (event->type != RSSI_EVENT)
1141 return;
1142
7335613a 1143 IWL_DEBUG_MAC80211(priv, "enter\n");
7335613a 1144
0d8877a1
JB
1145 if (priv->lib->bt_params &&
1146 priv->lib->bt_params->advanced_bt_coexist) {
a8182929 1147 if (event->u.rssi.data == RSSI_EVENT_LOW)
7335613a 1148 priv->bt_enable_pspoll = true;
a8182929 1149 else if (event->u.rssi.data == RSSI_EVENT_HIGH)
7335613a
WYG
1150 priv->bt_enable_pspoll = false;
1151
6e70d560 1152 queue_work(priv->workqueue, &priv->bt_runtime_config);
7335613a
WYG
1153 } else {
1154 IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled,"
1155 "ignoring RSSI callback\n");
1156 }
1157
7335613a
WYG
1158 IWL_DEBUG_MAC80211(priv, "leave\n");
1159}
1160
aca86268
JB
1161static int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
1162 struct ieee80211_sta *sta, bool set)
7335613a 1163{
d0f76d68 1164 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
7335613a 1165
1ee158d8 1166 queue_work(priv->workqueue, &priv->beacon_update);
7335613a
WYG
1167
1168 return 0;
1169}
1170
aca86268
JB
1171static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
1172 struct ieee80211_vif *vif, u16 queue,
1173 const struct ieee80211_tx_queue_params *params)
0b7a4c78 1174{
d0f76d68 1175 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
0b7a4c78
WYG
1176 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1177 struct iwl_rxon_context *ctx = vif_priv->ctx;
0b7a4c78
WYG
1178 int q;
1179
1180 if (WARN_ON(!ctx))
1181 return -EINVAL;
1182
1183 IWL_DEBUG_MAC80211(priv, "enter\n");
1184
83626404 1185 if (!iwl_is_ready_rf(priv)) {
0b7a4c78
WYG
1186 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
1187 return -EIO;
1188 }
1189
1190 if (queue >= AC_NUM) {
1191 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
1192 return 0;
1193 }
1194
1195 q = AC_NUM - 1 - queue;
1196
b1eea297 1197 mutex_lock(&priv->mutex);
0b7a4c78
WYG
1198
1199 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1200 cpu_to_le16(params->cw_min);
1201 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1202 cpu_to_le16(params->cw_max);
1203 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1204 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1205 cpu_to_le16((params->txop * 32));
1206
1207 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1208
b1eea297 1209 mutex_unlock(&priv->mutex);
0b7a4c78
WYG
1210
1211 IWL_DEBUG_MAC80211(priv, "leave\n");
1212 return 0;
1213}
1214
aca86268 1215static int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
0b7a4c78 1216{
d0f76d68 1217 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
0b7a4c78
WYG
1218
1219 return priv->ibss_manager == IWL_IBSS_MANAGER;
1220}
1221
1222static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
1223{
1224 iwl_connection_init_rx_config(priv, ctx);
1225
1226 iwlagn_set_rxon_chain(priv, ctx);
1227
1228 return iwlagn_commit_rxon(priv, ctx);
1229}
1230
aca86268
JB
1231static int iwl_setup_interface(struct iwl_priv *priv,
1232 struct iwl_rxon_context *ctx)
0b7a4c78
WYG
1233{
1234 struct ieee80211_vif *vif = ctx->vif;
1479177b 1235 int err, ac;
0b7a4c78 1236
b1eea297 1237 lockdep_assert_held(&priv->mutex);
0b7a4c78
WYG
1238
1239 /*
1240 * This variable will be correct only when there's just
1241 * a single context, but all code using it is for hardware
1242 * that supports only one context.
1243 */
1244 priv->iw_mode = vif->type;
1245
1246 ctx->is_active = true;
1247
1248 err = iwl_set_mode(priv, ctx);
1249 if (err) {
1250 if (!ctx->always_active)
1251 ctx->is_active = false;
1252 return err;
1253 }
1254
0d8877a1 1255 if (priv->lib->bt_params && priv->lib->bt_params->advanced_bt_coexist &&
0b7a4c78
WYG
1256 vif->type == NL80211_IFTYPE_ADHOC) {
1257 /*
1258 * pretend to have high BT traffic as long as we
1259 * are operating in IBSS mode, as this will cause
1260 * the rate scaling etc. to behave as intended.
1261 */
1262 priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
1263 }
1264
1479177b
JB
1265 /* set up queue mappings */
1266 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1267 vif->hw_queue[ac] = ctx->ac_to_queue[ac];
1268
1269 if (vif->type == NL80211_IFTYPE_AP)
1270 vif->cab_queue = ctx->mcast_queue;
1271 else
1272 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1273
0b7a4c78
WYG
1274 return 0;
1275}
1276
1277static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
1479177b 1278 struct ieee80211_vif *vif)
0b7a4c78 1279{
d0f76d68 1280 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
0b7a4c78
WYG
1281 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1282 struct iwl_rxon_context *tmp, *ctx = NULL;
1283 int err;
1284 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif);
8db4c7e2 1285 bool reset = false;
0b7a4c78
WYG
1286
1287 IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
1288 viftype, vif->addr);
1289
b1eea297 1290 mutex_lock(&priv->mutex);
0b7a4c78 1291
83626404 1292 if (!iwl_is_ready_rf(priv)) {
0b7a4c78
WYG
1293 IWL_WARN(priv, "Try to add interface when device not ready\n");
1294 err = -EINVAL;
1295 goto out;
1296 }
1297
1298 for_each_context(priv, tmp) {
1299 u32 possible_modes =
1300 tmp->interface_modes | tmp->exclusive_interface_modes;
1301
1302 if (tmp->vif) {
8db4c7e2
SG
1303 /* On reset we need to add the same interface again */
1304 if (tmp->vif == vif) {
1305 reset = true;
1306 ctx = tmp;
1307 break;
1308 }
1309
0b7a4c78
WYG
1310 /* check if this busy context is exclusive */
1311 if (tmp->exclusive_interface_modes &
1312 BIT(tmp->vif->type)) {
1313 err = -EINVAL;
1314 goto out;
1315 }
1316 continue;
1317 }
1318
1319 if (!(possible_modes & BIT(viftype)))
1320 continue;
1321
1322 /* have maybe usable context w/o interface */
1323 ctx = tmp;
1324 break;
1325 }
1326
1327 if (!ctx) {
1328 err = -EOPNOTSUPP;
1329 goto out;
1330 }
1331
1332 vif_priv->ctx = ctx;
1333 ctx->vif = vif;
1334
04baaa27
JB
1335 /*
1336 * In SNIFFER device type, the firmware reports the FCS to
1337 * the host, rather than snipping it off. Unfortunately,
1338 * mac80211 doesn't (yet) provide a per-packet flag for
1339 * this, so that we have to set the hardware flag based
1340 * on the interfaces added. As the monitor interface can
1341 * only be present by itself, and will be removed before
1342 * other interfaces are added, this is safe.
1343 */
1344 if (vif->type == NL80211_IFTYPE_MONITOR)
30686bf7 1345 ieee80211_hw_set(priv->hw, RX_INCLUDES_FCS);
04baaa27 1346 else
30686bf7 1347 __clear_bit(IEEE80211_HW_RX_INCLUDES_FCS, priv->hw->flags);
04baaa27 1348
0b7a4c78 1349 err = iwl_setup_interface(priv, ctx);
8db4c7e2 1350 if (!err || reset)
0b7a4c78
WYG
1351 goto out;
1352
1353 ctx->vif = NULL;
1354 priv->iw_mode = NL80211_IFTYPE_STATION;
1355 out:
b1eea297 1356 mutex_unlock(&priv->mutex);
0b7a4c78
WYG
1357
1358 IWL_DEBUG_MAC80211(priv, "leave\n");
1359 return err;
1360}
1361
aca86268
JB
1362static void iwl_teardown_interface(struct iwl_priv *priv,
1363 struct ieee80211_vif *vif,
1364 bool mode_change)
0b7a4c78
WYG
1365{
1366 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1367
b1eea297 1368 lockdep_assert_held(&priv->mutex);
0b7a4c78
WYG
1369
1370 if (priv->scan_vif == vif) {
1371 iwl_scan_cancel_timeout(priv, 200);
1372 iwl_force_scan_end(priv);
1373 }
1374
1375 if (!mode_change) {
1376 iwl_set_mode(priv, ctx);
1377 if (!ctx->always_active)
1378 ctx->is_active = false;
1379 }
1380
1381 /*
1382 * When removing the IBSS interface, overwrite the
1383 * BT traffic load with the stored one from the last
1384 * notification, if any. If this is a device that
1385 * doesn't implement this, this has no effect since
1386 * both values are the same and zero.
1387 */
1388 if (vif->type == NL80211_IFTYPE_ADHOC)
1389 priv->bt_traffic_load = priv->last_bt_traffic_load;
1390}
1391
1392static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw,
1393 struct ieee80211_vif *vif)
1394{
d0f76d68 1395 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
0b7a4c78
WYG
1396 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1397
1398 IWL_DEBUG_MAC80211(priv, "enter\n");
1399
b1eea297 1400 mutex_lock(&priv->mutex);
0b7a4c78
WYG
1401
1402 if (WARN_ON(ctx->vif != vif)) {
1403 struct iwl_rxon_context *tmp;
1404 IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
1405 for_each_context(priv, tmp)
1406 IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
1407 tmp->ctxid, tmp, tmp->vif);
1408 }
1409 ctx->vif = NULL;
1410
1411 iwl_teardown_interface(priv, vif, false);
1412
b1eea297 1413 mutex_unlock(&priv->mutex);
0b7a4c78
WYG
1414
1415 IWL_DEBUG_MAC80211(priv, "leave\n");
1416
1417}
1418
1419static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
e75dac92
JB
1420 struct ieee80211_vif *vif,
1421 enum nl80211_iftype newtype, bool newp2p)
0b7a4c78 1422{
d0f76d68 1423 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
e75dac92 1424 struct iwl_rxon_context *ctx, *tmp;
0b7a4c78
WYG
1425 enum nl80211_iftype newviftype = newtype;
1426 u32 interface_modes;
1427 int err;
1428
1429 IWL_DEBUG_MAC80211(priv, "enter\n");
1430
1431 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1432
b1eea297 1433 mutex_lock(&priv->mutex);
0b7a4c78 1434
e75dac92
JB
1435 ctx = iwl_rxon_ctx_from_vif(vif);
1436
1437 /*
1438 * To simplify this code, only support changes on the
1439 * BSS context. The PAN context is usually reassigned
1440 * by creating/removing P2P interfaces anyway.
1441 */
1442 if (ctx->ctxid != IWL_RXON_CTX_BSS) {
1443 err = -EBUSY;
1444 goto out;
1445 }
1446
83626404 1447 if (!ctx->vif || !iwl_is_ready_rf(priv)) {
0b7a4c78
WYG
1448 /*
1449 * Huh? But wait ... this can maybe happen when
1450 * we're in the middle of a firmware restart!
1451 */
1452 err = -EBUSY;
1453 goto out;
1454 }
1455
e75dac92 1456 /* Check if the switch is supported in the same context */
0b7a4c78 1457 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
0b7a4c78
WYG
1458 if (!(interface_modes & BIT(newtype))) {
1459 err = -EBUSY;
1460 goto out;
1461 }
1462
0b7a4c78
WYG
1463 if (ctx->exclusive_interface_modes & BIT(newtype)) {
1464 for_each_context(priv, tmp) {
1465 if (ctx == tmp)
1466 continue;
1467
e75dac92 1468 if (!tmp->is_active)
0b7a4c78
WYG
1469 continue;
1470
1471 /*
1472 * The current mode switch would be exclusive, but
1473 * another context is active ... refuse the switch.
1474 */
1475 err = -EBUSY;
1476 goto out;
1477 }
1478 }
1479
1480 /* success */
1481 iwl_teardown_interface(priv, vif, true);
1482 vif->type = newviftype;
1483 vif->p2p = newp2p;
1484 err = iwl_setup_interface(priv, ctx);
1485 WARN_ON(err);
1486 /*
1487 * We've switched internally, but submitting to the
1488 * device may have failed for some reason. Mask this
1489 * error, because otherwise mac80211 will not switch
1490 * (and set the interface type back) and we'll be
1491 * out of sync with it.
1492 */
1493 err = 0;
1494
1495 out:
b1eea297 1496 mutex_unlock(&priv->mutex);
0b7a4c78
WYG
1497 IWL_DEBUG_MAC80211(priv, "leave\n");
1498
1499 return err;
1500}
1501
aca86268
JB
1502static int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
1503 struct ieee80211_vif *vif,
c56ef672 1504 struct ieee80211_scan_request *hw_req)
ba4c5319 1505{
d0f76d68 1506 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
c56ef672 1507 struct cfg80211_scan_request *req = &hw_req->req;
ba4c5319
WYG
1508 int ret;
1509
1510 IWL_DEBUG_MAC80211(priv, "enter\n");
1511
1512 if (req->n_channels == 0)
1513 return -EINVAL;
1514
b1eea297 1515 mutex_lock(&priv->mutex);
ba4c5319
WYG
1516
1517 /*
1518 * If an internal scan is in progress, just set
1519 * up the scan_request as per above.
1520 */
1521 if (priv->scan_type != IWL_SCAN_NORMAL) {
1522 IWL_DEBUG_SCAN(priv,
1523 "SCAN request during internal scan - defer\n");
1524 priv->scan_request = req;
1525 priv->scan_vif = vif;
1526 ret = 0;
1527 } else {
1528 priv->scan_request = req;
1529 priv->scan_vif = vif;
1530 /*
1531 * mac80211 will only ask for one band at a time
1532 * so using channels[0] here is ok
1533 */
1534 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
1535 req->channels[0]->band);
1536 if (ret) {
1537 priv->scan_request = NULL;
1538 priv->scan_vif = NULL;
1539 }
1540 }
1541
1542 IWL_DEBUG_MAC80211(priv, "leave\n");
1543
b1eea297 1544 mutex_unlock(&priv->mutex);
ba4c5319
WYG
1545
1546 return ret;
1547}
1548
76b29331
WYG
1549static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
1550{
9451ca1a
JB
1551 struct iwl_addsta_cmd cmd = {
1552 .mode = STA_CONTROL_MODIFY_MSK,
1553 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1554 .sta.sta_id = sta_id,
1555 };
76b29331 1556
9451ca1a 1557 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
76b29331
WYG
1558}
1559
aca86268
JB
1560static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
1561 struct ieee80211_vif *vif,
1562 enum sta_notify_cmd cmd,
1563 struct ieee80211_sta *sta)
76b29331 1564{
d0f76d68 1565 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
76b29331
WYG
1566 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1567 int sta_id;
1568
1569 IWL_DEBUG_MAC80211(priv, "enter\n");
1570
1571 switch (cmd) {
1572 case STA_NOTIFY_SLEEP:
1573 WARN_ON(!sta_priv->client);
1574 sta_priv->asleep = true;
1575 if (atomic_read(&sta_priv->pending_frames) > 0)
1576 ieee80211_sta_block_awake(hw, sta, true);
1577 break;
1578 case STA_NOTIFY_AWAKE:
1579 WARN_ON(!sta_priv->client);
1580 if (!sta_priv->asleep)
1581 break;
1582 sta_priv->asleep = false;
1583 sta_id = iwl_sta_id(sta);
1584 if (sta_id != IWL_INVALID_STATION)
1585 iwl_sta_modify_ps_wake(priv, sta_id);
1586 break;
1587 default:
1588 break;
1589 }
1590 IWL_DEBUG_MAC80211(priv, "leave\n");
1591}
1592
e5209263 1593const struct ieee80211_ops iwlagn_hw_ops = {
7335613a
WYG
1594 .tx = iwlagn_mac_tx,
1595 .start = iwlagn_mac_start,
1596 .stop = iwlagn_mac_stop,
1597#ifdef CONFIG_PM_SLEEP
1598 .suspend = iwlagn_mac_suspend,
1599 .resume = iwlagn_mac_resume,
76ed2edd 1600 .set_wakeup = iwlagn_mac_set_wakeup,
7335613a
WYG
1601#endif
1602 .add_interface = iwlagn_mac_add_interface,
1603 .remove_interface = iwlagn_mac_remove_interface,
1604 .change_interface = iwlagn_mac_change_interface,
1605 .config = iwlagn_mac_config,
1606 .configure_filter = iwlagn_configure_filter,
1607 .set_key = iwlagn_mac_set_key,
1608 .update_tkip_key = iwlagn_mac_update_tkip_key,
1609 .set_rekey_data = iwlagn_mac_set_rekey_data,
1610 .conf_tx = iwlagn_mac_conf_tx,
1611 .bss_info_changed = iwlagn_bss_info_changed,
1612 .ampdu_action = iwlagn_mac_ampdu_action,
1613 .hw_scan = iwlagn_mac_hw_scan,
1614 .sta_notify = iwlagn_mac_sta_notify,
fb5fe5b9 1615 .sta_state = iwlagn_mac_sta_state,
7335613a
WYG
1616 .channel_switch = iwlagn_mac_channel_switch,
1617 .flush = iwlagn_mac_flush,
1618 .tx_last_beacon = iwlagn_mac_tx_last_beacon,
a8182929 1619 .event_callback = iwlagn_mac_event_callback,
7335613a
WYG
1620 .set_tim = iwlagn_mac_set_tim,
1621};
1622
1623/* This function both allocates and initializes hw and priv. */
1624struct ieee80211_hw *iwl_alloc_all(void)
1625{
1626 struct iwl_priv *priv;
d0f76d68 1627 struct iwl_op_mode *op_mode;
7335613a
WYG
1628 /* mac80211 allocates memory for this device instance, including
1629 * space for this driver's private structure */
1630 struct ieee80211_hw *hw;
1631
d0f76d68
EG
1632 hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) +
1633 sizeof(struct iwl_op_mode), &iwlagn_hw_ops);
7335613a
WYG
1634 if (!hw)
1635 goto out;
1636
d0f76d68
EG
1637 op_mode = hw->priv;
1638 priv = IWL_OP_MODE_GET_DVM(op_mode);
7335613a
WYG
1639 priv->hw = hw;
1640
1641out:
1642 return hw;
1643}