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