blob: b309ede4f0727cfc56ce849f64779c3d9d6cff0f [file] [log] [blame]
Wey-Yi Guy73356132011-11-10 06:55:11 -08001/******************************************************************************
2 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08003 * Copyright(c) 2003 - 2012 Intel Corporation. All rights reserved.
Wey-Yi Guy73356132011-11-10 06:55:11 -08004 *
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>
Wey-Yi Guy73356132011-11-10 06:55:11 -080038#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"
47#include "iwl-core.h"
48#include "iwl-io.h"
49#include "iwl-agn-calib.h"
50#include "iwl-agn.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080051#include "iwl-trans.h"
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +020052#include "iwl-op-mode.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080053
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,
Johannes Berg0692fe42012-03-06 13:30:37 -0800136 const struct iwl_ucode_capabilities *capa)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800137{
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 |
149 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
150
151 /*
152 * Including the following line will crash some AP's. This
153 * workaround removes the stimulus which causes the crash until
154 * the AP software can be fixed.
155 hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
156 */
157
158 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
Johannes Berge5610382012-03-15 13:26:51 -0700159 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
160 IEEE80211_HW_SCAN_WHILE_IDLE;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800161
Johannes Berg9e295112012-04-09 17:46:55 -0700162 if (priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800163 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
164 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
165
David Spinadel18c57d32012-03-07 09:52:31 -0800166#ifndef CONFIG_IWLWIFI_EXPERIMENTAL_MFP
167 /* enable 11w if the uCode advertise */
Wey-Yi Guy73356132011-11-10 06:55:11 -0800168 if (capa->flags & IWL_UCODE_TLV_FLAGS_MFP)
David Spinadel18c57d32012-03-07 09:52:31 -0800169#endif /* !CONFIG_IWLWIFI_EXPERIMENTAL_MFP */
Wey-Yi Guy73356132011-11-10 06:55:11 -0800170 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
171
172 hw->sta_data_size = sizeof(struct iwl_station_priv);
173 hw->vif_data_size = sizeof(struct iwl_vif_priv);
174
175 for_each_context(priv, ctx) {
176 hw->wiphy->interface_modes |= ctx->interface_modes;
177 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
178 }
179
180 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
181
182 if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)) {
183 hw->wiphy->iface_combinations = iwlagn_iface_combinations_p2p;
184 hw->wiphy->n_iface_combinations =
185 ARRAY_SIZE(iwlagn_iface_combinations_p2p);
186 } else if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
187 hw->wiphy->iface_combinations =
188 iwlagn_iface_combinations_dualmode;
189 hw->wiphy->n_iface_combinations =
190 ARRAY_SIZE(iwlagn_iface_combinations_dualmode);
191 }
192
193 hw->wiphy->max_remain_on_channel_duration = 1000;
194
195 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
196 WIPHY_FLAG_DISABLE_BEACON_HINTS |
197 WIPHY_FLAG_IBSS_RSN;
198
David Spinadel6dfa8d02012-03-10 13:00:14 -0800199 if (priv->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700200 priv->trans->ops->wowlan_suspend &&
201 device_can_wakeup(priv->trans->dev)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800202 hw->wiphy->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
203 WIPHY_WOWLAN_DISCONNECT |
204 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
205 WIPHY_WOWLAN_RFKILL_RELEASE;
206 if (!iwlagn_mod_params.sw_crypto)
207 hw->wiphy->wowlan.flags |=
208 WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
209 WIPHY_WOWLAN_GTK_REKEY_FAILURE;
210
211 hw->wiphy->wowlan.n_patterns = IWLAGN_WOWLAN_MAX_PATTERNS;
212 hw->wiphy->wowlan.pattern_min_len =
213 IWLAGN_WOWLAN_MIN_PATTERN_LEN;
214 hw->wiphy->wowlan.pattern_max_len =
215 IWLAGN_WOWLAN_MAX_PATTERN_LEN;
216 }
217
218 if (iwlagn_mod_params.power_save)
219 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
220 else
221 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
222
223 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
224 /* we create the 802.11 header and a zero-length SSID element */
225 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
226
227 /* Default value; 4 EDCA QOS priorities */
228 hw->queues = 4;
229
230 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
231
232 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
233 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
234 &priv->bands[IEEE80211_BAND_2GHZ];
235 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
236 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
237 &priv->bands[IEEE80211_BAND_5GHZ];
238
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700239 hw->wiphy->hw_version = priv->trans->hw_id;
Wey-Yi Guy0ba958e2011-12-10 11:33:52 -0800240
Wey-Yi Guy73356132011-11-10 06:55:11 -0800241 iwl_leds_init(priv);
242
243 ret = ieee80211_register_hw(priv->hw);
244 if (ret) {
245 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
246 return ret;
247 }
248 priv->mac80211_registered = 1;
249
250 return 0;
251}
252
Don Fry09af1402011-12-09 10:07:38 -0800253void iwlagn_mac_unregister(struct iwl_priv *priv)
254{
255 if (!priv->mac80211_registered)
256 return;
257 iwl_leds_exit(priv);
258 ieee80211_unregister_hw(priv->hw);
259 priv->mac80211_registered = 0;
260}
261
Wey-Yi Guy73356132011-11-10 06:55:11 -0800262static int __iwl_up(struct iwl_priv *priv)
263{
264 struct iwl_rxon_context *ctx;
265 int ret;
266
Johannes Bergb1eea292012-03-06 13:30:42 -0800267 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800268
Don Fry83626402012-03-07 09:52:37 -0800269 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800270 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
271 return -EIO;
272 }
273
274 for_each_context(priv, ctx) {
275 ret = iwlagn_alloc_bcast_station(priv, ctx);
276 if (ret) {
277 iwl_dealloc_bcast_stations(priv);
278 return ret;
279 }
280 }
281
Johannes Berge1991882012-03-06 13:30:36 -0800282 ret = iwl_run_init_ucode(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800283 if (ret) {
284 IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret);
285 goto error;
286 }
287
Johannes Berge1991882012-03-06 13:30:36 -0800288 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800289 if (ret) {
290 IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret);
291 goto error;
292 }
293
294 ret = iwl_alive_start(priv);
295 if (ret)
296 goto error;
297 return 0;
298
299 error:
Don Fry83626402012-03-07 09:52:37 -0800300 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800301 iwl_down(priv);
Don Fry83626402012-03-07 09:52:37 -0800302 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800303
304 IWL_ERR(priv, "Unable to initialize device.\n");
305 return ret;
306}
307
308static int iwlagn_mac_start(struct ieee80211_hw *hw)
309{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200310 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800311 int ret;
312
313 IWL_DEBUG_MAC80211(priv, "enter\n");
314
315 /* we should be verifying the device is ready to be opened */
Johannes Bergb1eea292012-03-06 13:30:42 -0800316 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800317 ret = __iwl_up(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800318 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800319 if (ret)
320 return ret;
321
322 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
323
324 /* Now we should be done, and the READY bit should be set. */
Don Fry83626402012-03-07 09:52:37 -0800325 if (WARN_ON(!test_bit(STATUS_READY, &priv->status)))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800326 ret = -EIO;
327
328 iwlagn_led_enable(priv);
329
330 priv->is_open = 1;
331 IWL_DEBUG_MAC80211(priv, "leave\n");
332 return 0;
333}
334
David Spinadel50c1e9a2012-04-16 14:43:30 -0700335void iwlagn_mac_stop(struct ieee80211_hw *hw)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800336{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200337 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800338
339 IWL_DEBUG_MAC80211(priv, "enter\n");
340
341 if (!priv->is_open)
342 return;
343
344 priv->is_open = 0;
345
Johannes Bergb1eea292012-03-06 13:30:42 -0800346 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800347 iwl_down(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800348 mutex_unlock(&priv->mutex);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800349
350 iwl_cancel_deferred_work(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800351
Johannes Berg1ee158d2012-02-17 10:07:44 -0800352 flush_workqueue(priv->workqueue);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800353
354 /* User space software may expect getting rfkill changes
Emmanuel Grumbach1df06bd2012-01-09 16:35:08 +0200355 * even if interface is down, trans->down will leave the RF
356 * kill interrupt enabled
357 */
Emmanuel Grumbach218733c2012-03-31 08:28:38 -0700358 iwl_trans_stop_hw(priv->trans, false);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800359
360 IWL_DEBUG_MAC80211(priv, "leave\n");
361}
362
David Spinadel50c1e9a2012-04-16 14:43:30 -0700363void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
364 struct ieee80211_vif *vif,
365 struct cfg80211_gtk_rekey_data *data)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800366{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200367 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800368
369 if (iwlagn_mod_params.sw_crypto)
370 return;
371
372 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800373 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800374
375 if (priv->contexts[IWL_RXON_CTX_BSS].vif != vif)
376 goto out;
377
378 memcpy(priv->kek, data->kek, NL80211_KEK_LEN);
379 memcpy(priv->kck, data->kck, NL80211_KCK_LEN);
380 priv->replay_ctr =
381 cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr));
382 priv->have_rekey_data = true;
383
384 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800385 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800386 IWL_DEBUG_MAC80211(priv, "leave\n");
387}
388
389#ifdef CONFIG_PM_SLEEP
Wey-Yi Guy73356132011-11-10 06:55:11 -0800390
David Spinadel50c1e9a2012-04-16 14:43:30 -0700391int iwlagn_mac_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800392{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200393 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800394 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800395 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800396
397 if (WARN_ON(!wowlan))
398 return -EINVAL;
399
400 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800401 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800402
403 /* Don't attempt WoWLAN when not associated, tear down instead. */
404 if (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION ||
405 !iwl_is_associated_ctx(ctx)) {
406 ret = 1;
407 goto out;
408 }
409
Johannes Bergea886a62012-03-07 09:52:15 -0800410 ret = iwlagn_suspend(priv, wowlan);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800411 if (ret)
412 goto error;
413
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700414 device_set_wakeup_enable(priv->trans->dev, true);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800415
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700416 iwl_trans_wowlan_suspend(priv->trans);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800417
418 goto out;
419
420 error:
Johannes Berg15b86bf2012-03-05 11:24:36 -0800421 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800422 iwlagn_prepare_restart(priv);
423 ieee80211_restart_hw(priv->hw);
424 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800425 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800426 IWL_DEBUG_MAC80211(priv, "leave\n");
427
428 return ret;
429}
430
431static int iwlagn_mac_resume(struct ieee80211_hw *hw)
432{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200433 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800434 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
435 struct ieee80211_vif *vif;
436 unsigned long flags;
437 u32 base, status = 0xffffffff;
438 int ret = -EIO;
439
440 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800441 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800442
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700443 iwl_write32(priv->trans, CSR_UCODE_DRV_GP1_CLR,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800444 CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE);
445
Meenakshi Venkataraman2fdfc472012-03-15 13:26:56 -0700446 base = priv->device_pointers.error_event_table;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800447 if (iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700448 spin_lock_irqsave(&priv->trans->reg_lock, flags);
449 ret = iwl_grab_nic_access_silent(priv->trans);
Stanislaw Gruszkabfe4b802012-03-07 09:52:24 -0800450 if (likely(ret == 0)) {
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700451 iwl_write32(priv->trans, HBUS_TARG_MEM_RADDR, base);
452 status = iwl_read32(priv->trans, HBUS_TARG_MEM_RDAT);
453 iwl_release_nic_access(priv->trans);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800454 }
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700455 spin_unlock_irqrestore(&priv->trans->reg_lock, flags);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800456
457#ifdef CONFIG_IWLWIFI_DEBUGFS
458 if (ret == 0) {
Oliver Hartkoppa855f7e2012-03-25 08:43:24 +0200459 const struct fw_img *img;
460
David Spinadel6dfa8d02012-03-10 13:00:14 -0800461 img = &(priv->fw->img[IWL_UCODE_WOWLAN]);
462 if (!priv->wowlan_sram) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800463 priv->wowlan_sram =
David Spinadel6dfa8d02012-03-10 13:00:14 -0800464 kzalloc(img->sec[IWL_UCODE_SECTION_DATA].len,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800465 GFP_KERNEL);
David Spinadel6dfa8d02012-03-10 13:00:14 -0800466 }
Wey-Yi Guy73356132011-11-10 06:55:11 -0800467
468 if (priv->wowlan_sram)
469 _iwl_read_targ_mem_words(
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700470 priv->trans, 0x800000,
David Spinadel6dfa8d02012-03-10 13:00:14 -0800471 priv->wowlan_sram,
472 img->sec[IWL_UCODE_SECTION_DATA].len / 4);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800473 }
474#endif
475 }
476
477 /* we'll clear ctx->vif during iwlagn_prepare_restart() */
478 vif = ctx->vif;
479
Johannes Berg15b86bf2012-03-05 11:24:36 -0800480 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800481
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700482 device_set_wakeup_enable(priv->trans->dev, false);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800483
484 iwlagn_prepare_restart(priv);
485
486 memset((void *)&ctx->active, 0, sizeof(ctx->active));
487 iwl_connection_init_rx_config(priv, ctx);
488 iwlagn_set_rxon_chain(priv, ctx);
489
Johannes Bergb1eea292012-03-06 13:30:42 -0800490 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800491 IWL_DEBUG_MAC80211(priv, "leave\n");
492
493 ieee80211_resume_disconnect(vif);
494
495 return 1;
496}
497
498#endif
499
David Spinadel50c1e9a2012-04-16 14:43:30 -0700500void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800501{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200502 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800503
Wey-Yi Guy73356132011-11-10 06:55:11 -0800504 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
505 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
506
507 if (iwlagn_tx_skb(priv, skb))
508 dev_kfree_skb_any(skb);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800509}
510
David Spinadel50c1e9a2012-04-16 14:43:30 -0700511void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
512 struct ieee80211_vif *vif,
513 struct ieee80211_key_conf *keyconf,
514 struct ieee80211_sta *sta,
515 u32 iv32, u16 *phase1key)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800516{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200517 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800518
519 iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key);
520}
521
David Spinadel50c1e9a2012-04-16 14:43:30 -0700522int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
523 struct ieee80211_vif *vif,
524 struct ieee80211_sta *sta,
525 struct ieee80211_key_conf *key)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800526{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200527 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800528 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
529 struct iwl_rxon_context *ctx = vif_priv->ctx;
530 int ret;
531 bool is_default_wep_key = false;
532
533 IWL_DEBUG_MAC80211(priv, "enter\n");
534
535 if (iwlagn_mod_params.sw_crypto) {
536 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
537 return -EOPNOTSUPP;
538 }
539
Johannes Berga7e12c82011-11-25 03:20:09 -0800540 switch (key->cipher) {
541 case WLAN_CIPHER_SUITE_TKIP:
542 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
543 /* fall through */
544 case WLAN_CIPHER_SUITE_CCMP:
545 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
546 break;
547 default:
548 break;
549 }
550
Wey-Yi Guy73356132011-11-10 06:55:11 -0800551 /*
552 * We could program these keys into the hardware as well, but we
553 * don't expect much multicast traffic in IBSS and having keys
554 * for more stations is probably more useful.
555 *
556 * Mark key TX-only and return 0.
557 */
558 if (vif->type == NL80211_IFTYPE_ADHOC &&
559 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
560 key->hw_key_idx = WEP_INVALID_OFFSET;
561 return 0;
562 }
563
564 /* If they key was TX-only, accept deletion */
565 if (cmd == DISABLE_KEY && key->hw_key_idx == WEP_INVALID_OFFSET)
566 return 0;
567
Johannes Bergb1eea292012-03-06 13:30:42 -0800568 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800569 iwl_scan_cancel_timeout(priv, 100);
570
571 BUILD_BUG_ON(WEP_INVALID_OFFSET == IWLAGN_HW_KEY_DEFAULT);
572
573 /*
574 * If we are getting WEP group key and we didn't receive any key mapping
575 * so far, we are in legacy wep mode (group key only), otherwise we are
576 * in 1X mode.
577 * In legacy wep mode, we use another host command to the uCode.
578 */
579 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
580 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
581 if (cmd == SET_KEY)
582 is_default_wep_key = !ctx->key_mapping_keys;
583 else
584 is_default_wep_key =
585 key->hw_key_idx == IWLAGN_HW_KEY_DEFAULT;
586 }
587
588
589 switch (cmd) {
590 case SET_KEY:
591 if (is_default_wep_key) {
592 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
593 break;
594 }
595 ret = iwl_set_dynamic_key(priv, vif_priv->ctx, key, sta);
596 if (ret) {
597 /*
598 * can't add key for RX, but we don't need it
599 * in the device for TX so still return 0
600 */
601 ret = 0;
602 key->hw_key_idx = WEP_INVALID_OFFSET;
603 }
604
605 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
606 break;
607 case DISABLE_KEY:
608 if (is_default_wep_key)
609 ret = iwl_remove_default_wep_key(priv, ctx, key);
610 else
611 ret = iwl_remove_dynamic_key(priv, ctx, key, sta);
612
613 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
614 break;
615 default:
616 ret = -EINVAL;
617 }
618
Johannes Bergb1eea292012-03-06 13:30:42 -0800619 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800620 IWL_DEBUG_MAC80211(priv, "leave\n");
621
622 return ret;
623}
624
David Spinadel50c1e9a2012-04-16 14:43:30 -0700625int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
626 struct ieee80211_vif *vif,
627 enum ieee80211_ampdu_mlme_action action,
628 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
629 u8 buf_size)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800630{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200631 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800632 int ret = -EINVAL;
633 struct iwl_station_priv *sta_priv = (void *) sta->drv_priv;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800634
635 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
636 sta->addr, tid);
637
Johannes Berg9e295112012-04-09 17:46:55 -0700638 if (!(priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800639 return -EACCES;
640
641 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800642 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800643
644 switch (action) {
645 case IEEE80211_AMPDU_RX_START:
Johannes Berg74289942011-12-13 00:07:40 -0800646 if (iwlagn_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
647 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800648 IWL_DEBUG_HT(priv, "start Rx\n");
649 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
650 break;
651 case IEEE80211_AMPDU_RX_STOP:
652 IWL_DEBUG_HT(priv, "stop Rx\n");
653 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800654 break;
655 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700656 if (!priv->trans->ops->tx_agg_setup)
Johannes Berg9eae88f2012-03-15 13:26:52 -0700657 break;
Johannes Berg74289942011-12-13 00:07:40 -0800658 if (iwlagn_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
659 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800660 IWL_DEBUG_HT(priv, "start Tx\n");
661 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
662 break;
663 case IEEE80211_AMPDU_TX_STOP:
664 IWL_DEBUG_HT(priv, "stop Tx\n");
665 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
666 if ((ret == 0) && (priv->agg_tids_count > 0)) {
667 priv->agg_tids_count--;
668 IWL_DEBUG_HT(priv, "priv->agg_tids_count = %u\n",
669 priv->agg_tids_count);
670 }
Johannes Bergb9ad70d2012-03-06 13:30:55 -0800671 if (!priv->agg_tids_count &&
Johannes Berg9e295112012-04-09 17:46:55 -0700672 priv->hw_params.use_rts_for_aggregation) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800673 /*
674 * switch off RTS/CTS if it was previously enabled
675 */
676 sta_priv->lq_sta.lq.general_params.flags &=
677 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
678 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
679 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
680 }
681 break;
682 case IEEE80211_AMPDU_TX_OPERATIONAL:
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +0200683 ret = iwlagn_tx_agg_oper(priv, vif, sta, tid, buf_size);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800684 break;
685 }
Johannes Bergb1eea292012-03-06 13:30:42 -0800686 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800687 IWL_DEBUG_MAC80211(priv, "leave\n");
688 return ret;
689}
690
691static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
692 struct ieee80211_vif *vif,
693 struct ieee80211_sta *sta)
694{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200695 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800696 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
697 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
698 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800699 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800700 u8 sta_id;
701
Wey-Yi Guy73356132011-11-10 06:55:11 -0800702 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
703 sta->addr);
704 sta_priv->sta_id = IWL_INVALID_STATION;
705
706 atomic_set(&sta_priv->pending_frames, 0);
707 if (vif->type == NL80211_IFTYPE_AP)
708 sta_priv->client = true;
709
710 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
711 is_ap, sta, &sta_id);
712 if (ret) {
713 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
714 sta->addr, ret);
715 /* Should we return success if return code is EEXIST ? */
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800716 return ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800717 }
718
719 sta_priv->sta_id = sta_id;
720
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800721 return 0;
722}
723
724static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
725 struct ieee80211_vif *vif,
726 struct ieee80211_sta *sta)
727{
728 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
729 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
730 int ret;
731
Johannes Berg97420512012-03-07 09:52:42 -0800732 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n", sta->addr);
733
734 if (vif->type == NL80211_IFTYPE_STATION) {
735 /*
736 * Station will be removed from device when the RXON
737 * is set to unassociated -- just deactivate it here
738 * to avoid re-programming it.
739 */
740 ret = 0;
741 iwl_deactivate_station(priv, sta_priv->sta_id, sta->addr);
742 } else {
743 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
744 if (ret)
745 IWL_DEBUG_QUIET_RFKILL(priv,
746 "Error removing station %pM\n", sta->addr);
747 }
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800748 return ret;
749}
750
David Spinadel50c1e9a2012-04-16 14:43:30 -0700751int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
752 struct ieee80211_vif *vif,
753 struct ieee80211_sta *sta,
754 enum ieee80211_sta_state old_state,
755 enum ieee80211_sta_state new_state)
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800756{
757 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800758 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800759 enum {
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800760 NONE, ADD, REMOVE, HT_RATE_INIT, ADD_RATE_INIT,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800761 } op = NONE;
762 int ret;
763
764 IWL_DEBUG_MAC80211(priv, "station %pM state change %d->%d\n",
765 sta->addr, old_state, new_state);
766
Johannes Bergb1eea292012-03-06 13:30:42 -0800767 mutex_lock(&priv->mutex);
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800768 if (vif->type == NL80211_IFTYPE_STATION) {
769 if (old_state == IEEE80211_STA_NOTEXIST &&
770 new_state == IEEE80211_STA_NONE)
771 op = ADD;
772 else if (old_state == IEEE80211_STA_NONE &&
773 new_state == IEEE80211_STA_NOTEXIST)
774 op = REMOVE;
775 else if (old_state == IEEE80211_STA_AUTH &&
776 new_state == IEEE80211_STA_ASSOC)
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800777 op = HT_RATE_INIT;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800778 } else {
779 if (old_state == IEEE80211_STA_AUTH &&
780 new_state == IEEE80211_STA_ASSOC)
781 op = ADD_RATE_INIT;
782 else if (old_state == IEEE80211_STA_ASSOC &&
783 new_state == IEEE80211_STA_AUTH)
784 op = REMOVE;
785 }
786
787 switch (op) {
788 case ADD:
789 ret = iwlagn_mac_sta_add(hw, vif, sta);
790 break;
791 case REMOVE:
792 ret = iwlagn_mac_sta_remove(hw, vif, sta);
793 break;
794 case ADD_RATE_INIT:
795 ret = iwlagn_mac_sta_add(hw, vif, sta);
796 if (ret)
797 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800798 /* Initialize rate scaling */
799 IWL_DEBUG_INFO(priv,
800 "Initializing rate scaling for station %pM\n",
801 sta->addr);
802 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
803 ret = 0;
804 break;
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800805 case HT_RATE_INIT:
806 /* Initialize rate scaling */
807 ret = iwl_sta_update_ht(priv, vif_priv->ctx, sta);
808 if (ret)
809 break;
810 IWL_DEBUG_INFO(priv,
811 "Initializing rate scaling for station %pM\n",
812 sta->addr);
813 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
814 ret = 0;
815 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800816 default:
817 ret = 0;
818 break;
819 }
820
821 /*
822 * mac80211 might WARN if we fail, but due the way we
823 * (badly) handle hard rfkill, we might fail here
824 */
Don Fry83626402012-03-07 09:52:37 -0800825 if (iwl_is_rfkill(priv))
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800826 ret = 0;
827
Johannes Bergb1eea292012-03-06 13:30:42 -0800828 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800829 IWL_DEBUG_MAC80211(priv, "leave\n");
830
831 return ret;
832}
833
David Spinadel50c1e9a2012-04-16 14:43:30 -0700834void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
835 struct ieee80211_channel_switch *ch_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800836{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200837 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800838 const struct iwl_channel_info *ch_info;
839 struct ieee80211_conf *conf = &hw->conf;
840 struct ieee80211_channel *channel = ch_switch->channel;
841 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
842 /*
843 * MULTI-FIXME
844 * When we add support for multiple interfaces, we need to
845 * revisit this. The channel switch command in the device
846 * only affects the BSS context, but what does that really
847 * mean? And what if we get a CSA on the second interface?
848 * This needs a lot of work.
849 */
850 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
851 u16 ch;
852
853 IWL_DEBUG_MAC80211(priv, "enter\n");
854
Johannes Bergb1eea292012-03-06 13:30:42 -0800855 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800856
Don Fry83626402012-03-07 09:52:37 -0800857 if (iwl_is_rfkill(priv))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800858 goto out;
859
Don Fry83626402012-03-07 09:52:37 -0800860 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
861 test_bit(STATUS_SCANNING, &priv->status) ||
862 test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800863 goto out;
864
865 if (!iwl_is_associated_ctx(ctx))
866 goto out;
867
Johannes Berge9676692012-04-10 14:10:28 -0700868 if (!priv->lib->set_channel_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800869 goto out;
870
871 ch = channel->hw_value;
872 if (le16_to_cpu(ctx->active.channel) == ch)
873 goto out;
874
875 ch_info = iwl_get_channel_info(priv, channel->band, ch);
876 if (!is_channel_valid(ch_info)) {
877 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
878 goto out;
879 }
880
Wey-Yi Guy73356132011-11-10 06:55:11 -0800881 priv->current_ht_config.smps = conf->smps_mode;
882
883 /* Configure HT40 channels */
884 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy137ce792011-11-22 16:23:35 -0800885 if (ctx->ht.enabled)
886 iwlagn_config_ht40(conf, ctx);
887 else
Wey-Yi Guy73356132011-11-10 06:55:11 -0800888 ctx->ht.is_40mhz = false;
889
890 if ((le16_to_cpu(ctx->staging.channel) != ch))
891 ctx->staging.flags = 0;
892
893 iwl_set_rxon_channel(priv, channel, ctx);
894 iwl_set_rxon_ht(priv, ht_conf);
895 iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif);
896
Wey-Yi Guy73356132011-11-10 06:55:11 -0800897 iwl_set_rate(priv);
898 /*
899 * at this point, staging_rxon has the
900 * configuration for channel switch
901 */
Don Fry83626402012-03-07 09:52:37 -0800902 set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800903 priv->switch_channel = cpu_to_le16(ch);
Johannes Berge9676692012-04-10 14:10:28 -0700904 if (priv->lib->set_channel_switch(priv, ch_switch)) {
Don Fry83626402012-03-07 09:52:37 -0800905 clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800906 priv->switch_channel = 0;
907 ieee80211_chswitch_done(ctx->vif, false);
908 }
909
910out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800911 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800912 IWL_DEBUG_MAC80211(priv, "leave\n");
913}
914
Meenakshi Venkataramanbedec3a2012-03-13 17:47:23 -0700915void iwl_chswitch_done(struct iwl_priv *priv, bool is_success)
916{
917 /*
918 * MULTI-FIXME
919 * See iwlagn_mac_channel_switch.
920 */
921 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
922
923 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
924 return;
925
926 if (test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
927 ieee80211_chswitch_done(ctx->vif, is_success);
928}
929
David Spinadel50c1e9a2012-04-16 14:43:30 -0700930void iwlagn_configure_filter(struct ieee80211_hw *hw,
931 unsigned int changed_flags,
932 unsigned int *total_flags,
933 u64 multicast)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800934{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200935 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800936 __le32 filter_or = 0, filter_nand = 0;
937 struct iwl_rxon_context *ctx;
938
939#define CHK(test, flag) do { \
940 if (*total_flags & (test)) \
941 filter_or |= (flag); \
942 else \
943 filter_nand |= (flag); \
944 } while (0)
945
946 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
947 changed_flags, *total_flags);
948
949 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
950 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
951 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
952 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
953
954#undef CHK
955
Johannes Bergb1eea292012-03-06 13:30:42 -0800956 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800957
958 for_each_context(priv, ctx) {
959 ctx->staging.filter_flags &= ~filter_nand;
960 ctx->staging.filter_flags |= filter_or;
961
962 /*
963 * Not committing directly because hardware can perform a scan,
964 * but we'll eventually commit the filter flags change anyway.
965 */
966 }
967
Johannes Bergb1eea292012-03-06 13:30:42 -0800968 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800969
970 /*
971 * Receiving all multicast frames is always enabled by the
972 * default flags setup in iwl_connection_init_rx_config()
973 * since we currently do not support programming multicast
974 * filters into the device.
975 */
976 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
977 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
978}
979
David Spinadel50c1e9a2012-04-16 14:43:30 -0700980void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800981{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200982 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800983
Johannes Bergb1eea292012-03-06 13:30:42 -0800984 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800985 IWL_DEBUG_MAC80211(priv, "enter\n");
986
Don Fry83626402012-03-07 09:52:37 -0800987 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800988 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
989 goto done;
990 }
Don Fry83626402012-03-07 09:52:37 -0800991 if (iwl_is_rfkill(priv)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800992 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
993 goto done;
994 }
995
996 /*
997 * mac80211 will not push any more frames for transmit
998 * until the flush is completed
999 */
1000 if (drop) {
1001 IWL_DEBUG_MAC80211(priv, "send flush command\n");
1002 if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
1003 IWL_ERR(priv, "flush request fail\n");
1004 goto done;
1005 }
1006 }
1007 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -07001008 iwl_trans_wait_tx_queue_empty(priv->trans);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001009done:
Johannes Bergb1eea292012-03-06 13:30:42 -08001010 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001011 IWL_DEBUG_MAC80211(priv, "leave\n");
1012}
1013
1014static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
1015 struct ieee80211_channel *channel,
1016 enum nl80211_channel_type channel_type,
1017 int duration)
1018{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001019 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001020 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_PAN];
1021 int err = 0;
1022
Johannes Berga18f61b2012-03-15 13:26:53 -07001023 if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
Wey-Yi Guy73356132011-11-10 06:55:11 -08001024 return -EOPNOTSUPP;
1025
1026 if (!(ctx->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)))
1027 return -EOPNOTSUPP;
1028
1029 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001030 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001031
Don Fry83626402012-03-07 09:52:37 -08001032 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001033 err = -EBUSY;
1034 goto out;
1035 }
1036
1037 priv->hw_roc_channel = channel;
1038 priv->hw_roc_chantype = channel_type;
Johannes Berg3ddf6be2011-11-10 06:55:21 -08001039 /* convert from ms to TU */
1040 priv->hw_roc_duration = DIV_ROUND_UP(1000 * duration, 1024);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001041 priv->hw_roc_start_notified = false;
1042 cancel_delayed_work(&priv->hw_roc_disable_work);
1043
1044 if (!ctx->is_active) {
Johannes Berga69cd042011-11-10 06:55:13 -08001045 static const struct iwl_qos_info default_qos_data = {
1046 .def_qos_parm = {
1047 .ac[0] = {
1048 .cw_min = cpu_to_le16(3),
1049 .cw_max = cpu_to_le16(7),
1050 .aifsn = 2,
1051 .edca_txop = cpu_to_le16(1504),
1052 },
1053 .ac[1] = {
1054 .cw_min = cpu_to_le16(7),
1055 .cw_max = cpu_to_le16(15),
1056 .aifsn = 2,
1057 .edca_txop = cpu_to_le16(3008),
1058 },
1059 .ac[2] = {
1060 .cw_min = cpu_to_le16(15),
1061 .cw_max = cpu_to_le16(1023),
1062 .aifsn = 3,
1063 },
1064 .ac[3] = {
1065 .cw_min = cpu_to_le16(15),
1066 .cw_max = cpu_to_le16(1023),
1067 .aifsn = 7,
1068 },
1069 },
1070 };
1071
Wey-Yi Guy73356132011-11-10 06:55:11 -08001072 ctx->is_active = true;
Johannes Berga69cd042011-11-10 06:55:13 -08001073 ctx->qos_data = default_qos_data;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001074 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
1075 memcpy(ctx->staging.node_addr,
1076 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1077 ETH_ALEN);
1078 memcpy(ctx->staging.bssid_addr,
1079 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1080 ETH_ALEN);
1081 err = iwlagn_commit_rxon(priv, ctx);
1082 if (err)
1083 goto out;
1084 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK |
1085 RXON_FILTER_PROMISC_MSK |
1086 RXON_FILTER_CTL2HOST_MSK;
1087
1088 err = iwlagn_commit_rxon(priv, ctx);
1089 if (err) {
1090 iwlagn_disable_roc(priv);
1091 goto out;
1092 }
1093 priv->hw_roc_setup = true;
1094 }
1095
1096 err = iwl_scan_initiate(priv, ctx->vif, IWL_SCAN_ROC, channel->band);
1097 if (err)
1098 iwlagn_disable_roc(priv);
1099
1100 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001101 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001102 IWL_DEBUG_MAC80211(priv, "leave\n");
1103
1104 return err;
1105}
1106
David Spinadel50c1e9a2012-04-16 14:43:30 -07001107int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001108{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001109 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001110
Johannes Berga18f61b2012-03-15 13:26:53 -07001111 if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
Wey-Yi Guy73356132011-11-10 06:55:11 -08001112 return -EOPNOTSUPP;
1113
1114 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001115 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001116 iwl_scan_cancel_timeout(priv, priv->hw_roc_duration);
1117 iwlagn_disable_roc(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -08001118 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001119 IWL_DEBUG_MAC80211(priv, "leave\n");
1120
1121 return 0;
1122}
1123
David Spinadel50c1e9a2012-04-16 14:43:30 -07001124void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
1125 enum ieee80211_rssi_event rssi_event)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001126{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001127 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001128
1129 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001130 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001131
Emmanuel Grumbach21522682012-03-22 17:51:44 +02001132 if (priv->cfg->bt_params &&
1133 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001134 if (rssi_event == RSSI_EVENT_LOW)
1135 priv->bt_enable_pspoll = true;
1136 else if (rssi_event == RSSI_EVENT_HIGH)
1137 priv->bt_enable_pspoll = false;
1138
1139 iwlagn_send_advance_bt_config(priv);
1140 } else {
1141 IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled,"
1142 "ignoring RSSI callback\n");
1143 }
1144
Johannes Bergb1eea292012-03-06 13:30:42 -08001145 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001146 IWL_DEBUG_MAC80211(priv, "leave\n");
1147}
1148
David Spinadel50c1e9a2012-04-16 14:43:30 -07001149int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
1150 struct ieee80211_sta *sta, bool set)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001151{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001152 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001153
Johannes Berg1ee158d2012-02-17 10:07:44 -08001154 queue_work(priv->workqueue, &priv->beacon_update);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001155
1156 return 0;
1157}
1158
David Spinadel50c1e9a2012-04-16 14:43:30 -07001159int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
1160 struct ieee80211_vif *vif, u16 queue,
1161 const struct ieee80211_tx_queue_params *params)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001162{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001163 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001164 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1165 struct iwl_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001166 int q;
1167
1168 if (WARN_ON(!ctx))
1169 return -EINVAL;
1170
1171 IWL_DEBUG_MAC80211(priv, "enter\n");
1172
Don Fry83626402012-03-07 09:52:37 -08001173 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001174 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
1175 return -EIO;
1176 }
1177
1178 if (queue >= AC_NUM) {
1179 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
1180 return 0;
1181 }
1182
1183 q = AC_NUM - 1 - queue;
1184
Johannes Bergb1eea292012-03-06 13:30:42 -08001185 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001186
1187 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1188 cpu_to_le16(params->cw_min);
1189 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1190 cpu_to_le16(params->cw_max);
1191 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1192 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1193 cpu_to_le16((params->txop * 32));
1194
1195 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1196
Johannes Bergb1eea292012-03-06 13:30:42 -08001197 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001198
1199 IWL_DEBUG_MAC80211(priv, "leave\n");
1200 return 0;
1201}
1202
David Spinadel50c1e9a2012-04-16 14:43:30 -07001203int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001204{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001205 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001206
1207 return priv->ibss_manager == IWL_IBSS_MANAGER;
1208}
1209
1210static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
1211{
1212 iwl_connection_init_rx_config(priv, ctx);
1213
1214 iwlagn_set_rxon_chain(priv, ctx);
1215
1216 return iwlagn_commit_rxon(priv, ctx);
1217}
1218
David Spinadel50c1e9a2012-04-16 14:43:30 -07001219int iwl_setup_interface(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001220{
1221 struct ieee80211_vif *vif = ctx->vif;
1222 int err;
1223
Johannes Bergb1eea292012-03-06 13:30:42 -08001224 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001225
1226 /*
1227 * This variable will be correct only when there's just
1228 * a single context, but all code using it is for hardware
1229 * that supports only one context.
1230 */
1231 priv->iw_mode = vif->type;
1232
1233 ctx->is_active = true;
1234
1235 err = iwl_set_mode(priv, ctx);
1236 if (err) {
1237 if (!ctx->always_active)
1238 ctx->is_active = false;
1239 return err;
1240 }
1241
Emmanuel Grumbach21522682012-03-22 17:51:44 +02001242 if (priv->cfg->bt_params && priv->cfg->bt_params->advanced_bt_coexist &&
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001243 vif->type == NL80211_IFTYPE_ADHOC) {
1244 /*
1245 * pretend to have high BT traffic as long as we
1246 * are operating in IBSS mode, as this will cause
1247 * the rate scaling etc. to behave as intended.
1248 */
1249 priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
1250 }
1251
1252 return 0;
1253}
1254
1255static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
1256 struct ieee80211_vif *vif)
1257{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001258 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001259 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1260 struct iwl_rxon_context *tmp, *ctx = NULL;
1261 int err;
1262 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif);
1263
1264 IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
1265 viftype, vif->addr);
1266
1267 cancel_delayed_work_sync(&priv->hw_roc_disable_work);
1268
Johannes Bergb1eea292012-03-06 13:30:42 -08001269 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001270
1271 iwlagn_disable_roc(priv);
1272
Don Fry83626402012-03-07 09:52:37 -08001273 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001274 IWL_WARN(priv, "Try to add interface when device not ready\n");
1275 err = -EINVAL;
1276 goto out;
1277 }
1278
1279 for_each_context(priv, tmp) {
1280 u32 possible_modes =
1281 tmp->interface_modes | tmp->exclusive_interface_modes;
1282
1283 if (tmp->vif) {
1284 /* check if this busy context is exclusive */
1285 if (tmp->exclusive_interface_modes &
1286 BIT(tmp->vif->type)) {
1287 err = -EINVAL;
1288 goto out;
1289 }
1290 continue;
1291 }
1292
1293 if (!(possible_modes & BIT(viftype)))
1294 continue;
1295
1296 /* have maybe usable context w/o interface */
1297 ctx = tmp;
1298 break;
1299 }
1300
1301 if (!ctx) {
1302 err = -EOPNOTSUPP;
1303 goto out;
1304 }
1305
1306 vif_priv->ctx = ctx;
1307 ctx->vif = vif;
1308
1309 err = iwl_setup_interface(priv, ctx);
1310 if (!err)
1311 goto out;
1312
1313 ctx->vif = NULL;
1314 priv->iw_mode = NL80211_IFTYPE_STATION;
1315 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001316 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001317
1318 IWL_DEBUG_MAC80211(priv, "leave\n");
1319 return err;
1320}
1321
David Spinadel50c1e9a2012-04-16 14:43:30 -07001322void iwl_teardown_interface(struct iwl_priv *priv,
1323 struct ieee80211_vif *vif,
1324 bool mode_change)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001325{
1326 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1327
Johannes Bergb1eea292012-03-06 13:30:42 -08001328 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001329
1330 if (priv->scan_vif == vif) {
1331 iwl_scan_cancel_timeout(priv, 200);
1332 iwl_force_scan_end(priv);
1333 }
1334
1335 if (!mode_change) {
1336 iwl_set_mode(priv, ctx);
1337 if (!ctx->always_active)
1338 ctx->is_active = false;
1339 }
1340
1341 /*
1342 * When removing the IBSS interface, overwrite the
1343 * BT traffic load with the stored one from the last
1344 * notification, if any. If this is a device that
1345 * doesn't implement this, this has no effect since
1346 * both values are the same and zero.
1347 */
1348 if (vif->type == NL80211_IFTYPE_ADHOC)
1349 priv->bt_traffic_load = priv->last_bt_traffic_load;
1350}
1351
1352static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw,
1353 struct ieee80211_vif *vif)
1354{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001355 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001356 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1357
1358 IWL_DEBUG_MAC80211(priv, "enter\n");
1359
Johannes Bergb1eea292012-03-06 13:30:42 -08001360 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001361
1362 if (WARN_ON(ctx->vif != vif)) {
1363 struct iwl_rxon_context *tmp;
1364 IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
1365 for_each_context(priv, tmp)
1366 IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
1367 tmp->ctxid, tmp, tmp->vif);
1368 }
1369 ctx->vif = NULL;
1370
1371 iwl_teardown_interface(priv, vif, false);
1372
Johannes Bergb1eea292012-03-06 13:30:42 -08001373 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001374
1375 IWL_DEBUG_MAC80211(priv, "leave\n");
1376
1377}
1378
1379static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
1380 struct ieee80211_vif *vif,
1381 enum nl80211_iftype newtype, bool newp2p)
1382{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001383 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001384 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1385 struct iwl_rxon_context *bss_ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1386 struct iwl_rxon_context *tmp;
1387 enum nl80211_iftype newviftype = newtype;
1388 u32 interface_modes;
1389 int err;
1390
1391 IWL_DEBUG_MAC80211(priv, "enter\n");
1392
1393 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1394
Johannes Bergb1eea292012-03-06 13:30:42 -08001395 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001396
Don Fry83626402012-03-07 09:52:37 -08001397 if (!ctx->vif || !iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001398 /*
1399 * Huh? But wait ... this can maybe happen when
1400 * we're in the middle of a firmware restart!
1401 */
1402 err = -EBUSY;
1403 goto out;
1404 }
1405
1406 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
1407
1408 if (!(interface_modes & BIT(newtype))) {
1409 err = -EBUSY;
1410 goto out;
1411 }
1412
1413 /*
1414 * Refuse a change that should be done by moving from the PAN
1415 * context to the BSS context instead, if the BSS context is
1416 * available and can support the new interface type.
1417 */
1418 if (ctx->ctxid == IWL_RXON_CTX_PAN && !bss_ctx->vif &&
1419 (bss_ctx->interface_modes & BIT(newtype) ||
1420 bss_ctx->exclusive_interface_modes & BIT(newtype))) {
1421 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
1422 err = -EBUSY;
1423 goto out;
1424 }
1425
1426 if (ctx->exclusive_interface_modes & BIT(newtype)) {
1427 for_each_context(priv, tmp) {
1428 if (ctx == tmp)
1429 continue;
1430
1431 if (!tmp->vif)
1432 continue;
1433
1434 /*
1435 * The current mode switch would be exclusive, but
1436 * another context is active ... refuse the switch.
1437 */
1438 err = -EBUSY;
1439 goto out;
1440 }
1441 }
1442
1443 /* success */
1444 iwl_teardown_interface(priv, vif, true);
1445 vif->type = newviftype;
1446 vif->p2p = newp2p;
1447 err = iwl_setup_interface(priv, ctx);
1448 WARN_ON(err);
1449 /*
1450 * We've switched internally, but submitting to the
1451 * device may have failed for some reason. Mask this
1452 * error, because otherwise mac80211 will not switch
1453 * (and set the interface type back) and we'll be
1454 * out of sync with it.
1455 */
1456 err = 0;
1457
1458 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001459 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001460 IWL_DEBUG_MAC80211(priv, "leave\n");
1461
1462 return err;
1463}
1464
David Spinadel50c1e9a2012-04-16 14:43:30 -07001465int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
1466 struct ieee80211_vif *vif,
1467 struct cfg80211_scan_request *req)
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001468{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001469 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001470 int ret;
1471
1472 IWL_DEBUG_MAC80211(priv, "enter\n");
1473
1474 if (req->n_channels == 0)
1475 return -EINVAL;
1476
Johannes Bergb1eea292012-03-06 13:30:42 -08001477 mutex_lock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001478
1479 /*
1480 * If an internal scan is in progress, just set
1481 * up the scan_request as per above.
1482 */
1483 if (priv->scan_type != IWL_SCAN_NORMAL) {
1484 IWL_DEBUG_SCAN(priv,
1485 "SCAN request during internal scan - defer\n");
1486 priv->scan_request = req;
1487 priv->scan_vif = vif;
1488 ret = 0;
1489 } else {
1490 priv->scan_request = req;
1491 priv->scan_vif = vif;
1492 /*
1493 * mac80211 will only ask for one band at a time
1494 * so using channels[0] here is ok
1495 */
1496 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
1497 req->channels[0]->band);
1498 if (ret) {
1499 priv->scan_request = NULL;
1500 priv->scan_vif = NULL;
1501 }
1502 }
1503
1504 IWL_DEBUG_MAC80211(priv, "leave\n");
1505
Johannes Bergb1eea292012-03-06 13:30:42 -08001506 mutex_unlock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001507
1508 return ret;
1509}
1510
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001511static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
1512{
Johannes Berg9451ca12012-03-05 11:24:23 -08001513 struct iwl_addsta_cmd cmd = {
1514 .mode = STA_CONTROL_MODIFY_MSK,
1515 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1516 .sta.sta_id = sta_id,
1517 };
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001518
Johannes Berg9451ca12012-03-05 11:24:23 -08001519 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001520}
1521
David Spinadel50c1e9a2012-04-16 14:43:30 -07001522void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001523 struct ieee80211_vif *vif,
1524 enum sta_notify_cmd cmd,
1525 struct ieee80211_sta *sta)
1526{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001527 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001528 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1529 int sta_id;
1530
1531 IWL_DEBUG_MAC80211(priv, "enter\n");
1532
1533 switch (cmd) {
1534 case STA_NOTIFY_SLEEP:
1535 WARN_ON(!sta_priv->client);
1536 sta_priv->asleep = true;
1537 if (atomic_read(&sta_priv->pending_frames) > 0)
1538 ieee80211_sta_block_awake(hw, sta, true);
1539 break;
1540 case STA_NOTIFY_AWAKE:
1541 WARN_ON(!sta_priv->client);
1542 if (!sta_priv->asleep)
1543 break;
1544 sta_priv->asleep = false;
1545 sta_id = iwl_sta_id(sta);
1546 if (sta_id != IWL_INVALID_STATION)
1547 iwl_sta_modify_ps_wake(priv, sta_id);
1548 break;
1549 default:
1550 break;
1551 }
1552 IWL_DEBUG_MAC80211(priv, "leave\n");
1553}
1554
Wey-Yi Guy73356132011-11-10 06:55:11 -08001555struct ieee80211_ops iwlagn_hw_ops = {
1556 .tx = iwlagn_mac_tx,
1557 .start = iwlagn_mac_start,
1558 .stop = iwlagn_mac_stop,
1559#ifdef CONFIG_PM_SLEEP
1560 .suspend = iwlagn_mac_suspend,
1561 .resume = iwlagn_mac_resume,
1562#endif
1563 .add_interface = iwlagn_mac_add_interface,
1564 .remove_interface = iwlagn_mac_remove_interface,
1565 .change_interface = iwlagn_mac_change_interface,
1566 .config = iwlagn_mac_config,
1567 .configure_filter = iwlagn_configure_filter,
1568 .set_key = iwlagn_mac_set_key,
1569 .update_tkip_key = iwlagn_mac_update_tkip_key,
1570 .set_rekey_data = iwlagn_mac_set_rekey_data,
1571 .conf_tx = iwlagn_mac_conf_tx,
1572 .bss_info_changed = iwlagn_bss_info_changed,
1573 .ampdu_action = iwlagn_mac_ampdu_action,
1574 .hw_scan = iwlagn_mac_hw_scan,
1575 .sta_notify = iwlagn_mac_sta_notify,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -08001576 .sta_state = iwlagn_mac_sta_state,
Wey-Yi Guy73356132011-11-10 06:55:11 -08001577 .channel_switch = iwlagn_mac_channel_switch,
1578 .flush = iwlagn_mac_flush,
1579 .tx_last_beacon = iwlagn_mac_tx_last_beacon,
1580 .remain_on_channel = iwlagn_mac_remain_on_channel,
1581 .cancel_remain_on_channel = iwlagn_mac_cancel_remain_on_channel,
1582 .rssi_callback = iwlagn_mac_rssi_callback,
1583 CFG80211_TESTMODE_CMD(iwlagn_mac_testmode_cmd)
1584 CFG80211_TESTMODE_DUMP(iwlagn_mac_testmode_dump)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001585 .set_tim = iwlagn_mac_set_tim,
1586};
1587
1588/* This function both allocates and initializes hw and priv. */
1589struct ieee80211_hw *iwl_alloc_all(void)
1590{
1591 struct iwl_priv *priv;
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001592 struct iwl_op_mode *op_mode;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001593 /* mac80211 allocates memory for this device instance, including
1594 * space for this driver's private structure */
1595 struct ieee80211_hw *hw;
1596
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001597 hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) +
1598 sizeof(struct iwl_op_mode), &iwlagn_hw_ops);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001599 if (!hw)
1600 goto out;
1601
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001602 op_mode = hw->priv;
1603 priv = IWL_OP_MODE_GET_DVM(op_mode);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001604 priv->hw = hw;
1605
1606out:
1607 return hw;
1608}