blob: 0fccf725a2e6e81e4cbba273dda99c784672087c [file] [log] [blame]
Wey-Yi Guy73356132011-11-10 06:55:11 -08001/******************************************************************************
2 *
Johannes Berg128e63e2013-01-21 21:39:26 +01003 * Copyright(c) 2003 - 2013 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
Johannes Berg53e11162012-05-16 23:59:03 +020041#include <net/ieee80211_radiotap.h>
Wey-Yi Guy73356132011-11-10 06:55:11 -080042#include <net/mac80211.h>
43
44#include <asm/div64.h>
45
Wey-Yi Guy73356132011-11-10 06:55:11 -080046#include "iwl-io.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080047#include "iwl-trans.h"
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +020048#include "iwl-op-mode.h"
Johannes Berg65de7e82012-04-17 07:36:30 -070049#include "iwl-modparams.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080050
Johannes Berg1023fdc2012-05-15 12:16:34 +020051#include "dev.h"
52#include "calib.h"
53#include "agn.h"
54
Wey-Yi Guy73356132011-11-10 06:55:11 -080055/*****************************************************************************
56 *
57 * mac80211 entry point functions
58 *
59 *****************************************************************************/
60
61static const struct ieee80211_iface_limit iwlagn_sta_ap_limits[] = {
62 {
63 .max = 1,
64 .types = BIT(NL80211_IFTYPE_STATION),
65 },
66 {
67 .max = 1,
68 .types = BIT(NL80211_IFTYPE_AP),
69 },
70};
71
72static const struct ieee80211_iface_limit iwlagn_2sta_limits[] = {
73 {
74 .max = 2,
75 .types = BIT(NL80211_IFTYPE_STATION),
76 },
77};
78
79static const struct ieee80211_iface_limit iwlagn_p2p_sta_go_limits[] = {
80 {
81 .max = 1,
82 .types = BIT(NL80211_IFTYPE_STATION),
83 },
84 {
85 .max = 1,
86 .types = BIT(NL80211_IFTYPE_P2P_GO) |
87 BIT(NL80211_IFTYPE_AP),
88 },
89};
90
91static const struct ieee80211_iface_limit iwlagn_p2p_2sta_limits[] = {
92 {
93 .max = 2,
94 .types = BIT(NL80211_IFTYPE_STATION),
95 },
96 {
97 .max = 1,
98 .types = BIT(NL80211_IFTYPE_P2P_CLIENT),
99 },
100};
101
102static const struct ieee80211_iface_combination
103iwlagn_iface_combinations_dualmode[] = {
104 { .num_different_channels = 1,
105 .max_interfaces = 2,
106 .beacon_int_infra_match = true,
107 .limits = iwlagn_sta_ap_limits,
108 .n_limits = ARRAY_SIZE(iwlagn_sta_ap_limits),
109 },
110 { .num_different_channels = 1,
111 .max_interfaces = 2,
112 .limits = iwlagn_2sta_limits,
113 .n_limits = ARRAY_SIZE(iwlagn_2sta_limits),
114 },
115};
116
117static const struct ieee80211_iface_combination
118iwlagn_iface_combinations_p2p[] = {
119 { .num_different_channels = 1,
120 .max_interfaces = 2,
121 .beacon_int_infra_match = true,
122 .limits = iwlagn_p2p_sta_go_limits,
123 .n_limits = ARRAY_SIZE(iwlagn_p2p_sta_go_limits),
124 },
125 { .num_different_channels = 1,
126 .max_interfaces = 2,
127 .limits = iwlagn_p2p_2sta_limits,
128 .n_limits = ARRAY_SIZE(iwlagn_p2p_2sta_limits),
129 },
130};
131
132/*
133 * Not a mac80211 entry point function, but it fits in with all the
134 * other mac80211 functions grouped here.
135 */
136int iwlagn_mac_setup_register(struct iwl_priv *priv,
Johannes Berg0692fe42012-03-06 13:30:37 -0800137 const struct iwl_ucode_capabilities *capa)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800138{
139 int ret;
140 struct ieee80211_hw *hw = priv->hw;
141 struct iwl_rxon_context *ctx;
142
143 hw->rate_control_algorithm = "iwl-agn-rs";
144
145 /* Tell mac80211 our characteristics */
146 hw->flags = IEEE80211_HW_SIGNAL_DBM |
147 IEEE80211_HW_AMPDU_AGGREGATION |
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +0200148 IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC |
Wey-Yi Guy73356132011-11-10 06:55:11 -0800149 IEEE80211_HW_SPECTRUM_MGMT |
Johannes Berg14791772012-04-17 07:39:03 -0700150 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
151 IEEE80211_HW_QUEUE_CONTROL |
152 IEEE80211_HW_SUPPORTS_PS |
153 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
Johannes Bergf1e3e052013-02-06 23:57:57 +0100154 IEEE80211_HW_WANT_MONITOR_VIF;
Johannes Berg14791772012-04-17 07:39:03 -0700155
156 hw->offchannel_tx_hw_queue = IWL_AUX_QUEUE;
Johannes Berg53e11162012-05-16 23:59:03 +0200157 hw->radiotap_mcs_details |= IEEE80211_RADIOTAP_MCS_HAVE_FMT;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800158
159 /*
160 * Including the following line will crash some AP's. This
161 * workaround removes the stimulus which causes the crash until
162 * the AP software can be fixed.
163 hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
164 */
165
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200166 if (priv->nvm_data->sku_cap_11n_enable)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800167 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
168 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
169
Johannes Berg686681b2012-11-15 11:35:57 +0100170 /*
171 * Enable 11w if advertised by firmware and software crypto
172 * is not enabled (as the firmware will interpret some mgmt
173 * packets, so enabling it with software crypto isn't safe)
174 */
175 if (priv->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_MFP &&
176 !iwlwifi_mod_params.sw_crypto)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800177 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
178
179 hw->sta_data_size = sizeof(struct iwl_station_priv);
180 hw->vif_data_size = sizeof(struct iwl_vif_priv);
181
182 for_each_context(priv, ctx) {
183 hw->wiphy->interface_modes |= ctx->interface_modes;
184 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
185 }
186
187 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
188
189 if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)) {
190 hw->wiphy->iface_combinations = iwlagn_iface_combinations_p2p;
191 hw->wiphy->n_iface_combinations =
192 ARRAY_SIZE(iwlagn_iface_combinations_p2p);
193 } else if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
194 hw->wiphy->iface_combinations =
195 iwlagn_iface_combinations_dualmode;
196 hw->wiphy->n_iface_combinations =
197 ARRAY_SIZE(iwlagn_iface_combinations_dualmode);
198 }
199
Johannes Bergda0cabb2012-07-25 17:06:47 +0200200 hw->wiphy->max_remain_on_channel_duration = 500;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800201
202 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
203 WIPHY_FLAG_DISABLE_BEACON_HINTS |
204 WIPHY_FLAG_IBSS_RSN;
205
Johannes Bergfcb6ff52012-06-04 13:43:11 +0200206#ifdef CONFIG_PM_SLEEP
David Spinadel6dfa8d02012-03-10 13:00:14 -0800207 if (priv->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Johannes Bergddaf5a52013-01-08 11:25:44 +0100208 priv->trans->ops->d3_suspend &&
209 priv->trans->ops->d3_resume &&
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700210 device_can_wakeup(priv->trans->dev)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800211 hw->wiphy->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
212 WIPHY_WOWLAN_DISCONNECT |
213 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
214 WIPHY_WOWLAN_RFKILL_RELEASE;
Johannes Berg65de7e82012-04-17 07:36:30 -0700215 if (!iwlwifi_mod_params.sw_crypto)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800216 hw->wiphy->wowlan.flags |=
217 WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
218 WIPHY_WOWLAN_GTK_REKEY_FAILURE;
219
220 hw->wiphy->wowlan.n_patterns = IWLAGN_WOWLAN_MAX_PATTERNS;
221 hw->wiphy->wowlan.pattern_min_len =
222 IWLAGN_WOWLAN_MIN_PATTERN_LEN;
223 hw->wiphy->wowlan.pattern_max_len =
224 IWLAGN_WOWLAN_MAX_PATTERN_LEN;
225 }
Johannes Bergfcb6ff52012-06-04 13:43:11 +0200226#endif
Wey-Yi Guy73356132011-11-10 06:55:11 -0800227
Johannes Berg65de7e82012-04-17 07:36:30 -0700228 if (iwlwifi_mod_params.power_save)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800229 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
230 else
231 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
232
233 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
David Spinadel4f9bfbb2012-05-11 10:53:16 +0200234 /* we create the 802.11 header and a max-length SSID element */
235 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 34;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800236
Johannes Berg14791772012-04-17 07:39:03 -0700237 /*
238 * We don't use all queues: 4 and 9 are unused and any
239 * aggregation queue gets mapped down to the AC queue.
240 */
241 hw->queues = IWLAGN_FIRST_AMPDU_QUEUE;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800242
243 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
244
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200245 if (priv->nvm_data->bands[IEEE80211_BAND_2GHZ].n_channels)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800246 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200247 &priv->nvm_data->bands[IEEE80211_BAND_2GHZ];
248 if (priv->nvm_data->bands[IEEE80211_BAND_5GHZ].n_channels)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800249 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200250 &priv->nvm_data->bands[IEEE80211_BAND_5GHZ];
Wey-Yi Guy73356132011-11-10 06:55:11 -0800251
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700252 hw->wiphy->hw_version = priv->trans->hw_id;
Wey-Yi Guy0ba958e2011-12-10 11:33:52 -0800253
Wey-Yi Guy73356132011-11-10 06:55:11 -0800254 iwl_leds_init(priv);
255
256 ret = ieee80211_register_hw(priv->hw);
257 if (ret) {
258 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
Johannes Berg0e1fa7e2012-06-05 09:38:35 +0200259 iwl_leds_exit(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800260 return ret;
261 }
262 priv->mac80211_registered = 1;
263
264 return 0;
265}
266
Don Fry09af1402011-12-09 10:07:38 -0800267void iwlagn_mac_unregister(struct iwl_priv *priv)
268{
269 if (!priv->mac80211_registered)
270 return;
271 iwl_leds_exit(priv);
272 ieee80211_unregister_hw(priv->hw);
273 priv->mac80211_registered = 0;
274}
275
Wey-Yi Guy73356132011-11-10 06:55:11 -0800276static int __iwl_up(struct iwl_priv *priv)
277{
278 struct iwl_rxon_context *ctx;
279 int ret;
280
Johannes Bergb1eea292012-03-06 13:30:42 -0800281 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800282
Don Fry83626402012-03-07 09:52:37 -0800283 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800284 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
285 return -EIO;
286 }
287
288 for_each_context(priv, ctx) {
289 ret = iwlagn_alloc_bcast_station(priv, ctx);
290 if (ret) {
291 iwl_dealloc_bcast_stations(priv);
292 return ret;
293 }
294 }
295
Johannes Berge1991882012-03-06 13:30:36 -0800296 ret = iwl_run_init_ucode(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800297 if (ret) {
298 IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret);
299 goto error;
300 }
301
Johannes Berge1991882012-03-06 13:30:36 -0800302 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800303 if (ret) {
304 IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret);
305 goto error;
306 }
307
308 ret = iwl_alive_start(priv);
309 if (ret)
310 goto error;
311 return 0;
312
313 error:
Don Fry83626402012-03-07 09:52:37 -0800314 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800315 iwl_down(priv);
Don Fry83626402012-03-07 09:52:37 -0800316 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800317
318 IWL_ERR(priv, "Unable to initialize device.\n");
319 return ret;
320}
321
322static int iwlagn_mac_start(struct ieee80211_hw *hw)
323{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200324 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800325 int ret;
326
327 IWL_DEBUG_MAC80211(priv, "enter\n");
328
329 /* we should be verifying the device is ready to be opened */
Johannes Bergb1eea292012-03-06 13:30:42 -0800330 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800331 ret = __iwl_up(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800332 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800333 if (ret)
334 return ret;
335
336 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
337
338 /* Now we should be done, and the READY bit should be set. */
Don Fry83626402012-03-07 09:52:37 -0800339 if (WARN_ON(!test_bit(STATUS_READY, &priv->status)))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800340 ret = -EIO;
341
342 iwlagn_led_enable(priv);
343
344 priv->is_open = 1;
345 IWL_DEBUG_MAC80211(priv, "leave\n");
346 return 0;
347}
348
Johannes Bergaca86262012-05-14 09:08:50 +0200349static void iwlagn_mac_stop(struct ieee80211_hw *hw)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800350{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200351 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800352
353 IWL_DEBUG_MAC80211(priv, "enter\n");
354
355 if (!priv->is_open)
356 return;
357
358 priv->is_open = 0;
359
Johannes Bergb1eea292012-03-06 13:30:42 -0800360 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800361 iwl_down(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800362 mutex_unlock(&priv->mutex);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800363
364 iwl_cancel_deferred_work(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800365
Johannes Berg1ee158d2012-02-17 10:07:44 -0800366 flush_workqueue(priv->workqueue);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800367
368 /* User space software may expect getting rfkill changes
Emmanuel Grumbach1df06bd2012-01-09 16:35:08 +0200369 * even if interface is down, trans->down will leave the RF
370 * kill interrupt enabled
371 */
Emmanuel Grumbach218733c2012-03-31 08:28:38 -0700372 iwl_trans_stop_hw(priv->trans, false);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800373
374 IWL_DEBUG_MAC80211(priv, "leave\n");
375}
376
Johannes Bergaca86262012-05-14 09:08:50 +0200377static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
378 struct ieee80211_vif *vif,
379 struct cfg80211_gtk_rekey_data *data)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800380{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200381 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800382
Johannes Berg65de7e82012-04-17 07:36:30 -0700383 if (iwlwifi_mod_params.sw_crypto)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800384 return;
385
386 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800387 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800388
389 if (priv->contexts[IWL_RXON_CTX_BSS].vif != vif)
390 goto out;
391
392 memcpy(priv->kek, data->kek, NL80211_KEK_LEN);
393 memcpy(priv->kck, data->kck, NL80211_KCK_LEN);
394 priv->replay_ctr =
395 cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr));
396 priv->have_rekey_data = true;
397
398 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800399 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800400 IWL_DEBUG_MAC80211(priv, "leave\n");
401}
402
403#ifdef CONFIG_PM_SLEEP
Wey-Yi Guy73356132011-11-10 06:55:11 -0800404
Johannes Bergaca86262012-05-14 09:08:50 +0200405static int iwlagn_mac_suspend(struct ieee80211_hw *hw,
406 struct cfg80211_wowlan *wowlan)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800407{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200408 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800409 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800410 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800411
412 if (WARN_ON(!wowlan))
413 return -EINVAL;
414
415 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800416 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800417
418 /* Don't attempt WoWLAN when not associated, tear down instead. */
419 if (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION ||
420 !iwl_is_associated_ctx(ctx)) {
421 ret = 1;
422 goto out;
423 }
424
Johannes Bergea886a62012-03-07 09:52:15 -0800425 ret = iwlagn_suspend(priv, wowlan);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800426 if (ret)
427 goto error;
428
Johannes Bergddaf5a52013-01-08 11:25:44 +0100429 iwl_trans_d3_suspend(priv->trans);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800430
431 goto out;
432
433 error:
Johannes Berg15b86bf2012-03-05 11:24:36 -0800434 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800435 iwlagn_prepare_restart(priv);
436 ieee80211_restart_hw(priv->hw);
437 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800438 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800439 IWL_DEBUG_MAC80211(priv, "leave\n");
440
441 return ret;
442}
443
444static int iwlagn_mac_resume(struct ieee80211_hw *hw)
445{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200446 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800447 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
448 struct ieee80211_vif *vif;
449 unsigned long flags;
450 u32 base, status = 0xffffffff;
451 int ret = -EIO;
452
453 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800454 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800455
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700456 iwl_write32(priv->trans, CSR_UCODE_DRV_GP1_CLR,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800457 CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE);
458
Meenakshi Venkataraman2fdfc472012-03-15 13:26:56 -0700459 base = priv->device_pointers.error_event_table;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800460 if (iwlagn_hw_valid_rtc_data_addr(base)) {
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200461 if (iwl_trans_grab_nic_access(priv->trans, true, &flags)) {
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700462 iwl_write32(priv->trans, HBUS_TARG_MEM_RADDR, base);
463 status = iwl_read32(priv->trans, HBUS_TARG_MEM_RDAT);
Lilach Edelsteine56b04e2013-01-16 11:34:49 +0200464 iwl_trans_release_nic_access(priv->trans, &flags);
Emmanuel Grumbach653ea7a2012-12-31 13:15:36 +0200465 ret = 0;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800466 }
Wey-Yi Guy73356132011-11-10 06:55:11 -0800467
468#ifdef CONFIG_IWLWIFI_DEBUGFS
469 if (ret == 0) {
Oliver Hartkoppa855f7e2012-03-25 08:43:24 +0200470 const struct fw_img *img;
471
David Spinadel6dfa8d02012-03-10 13:00:14 -0800472 img = &(priv->fw->img[IWL_UCODE_WOWLAN]);
473 if (!priv->wowlan_sram) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800474 priv->wowlan_sram =
David Spinadel6dfa8d02012-03-10 13:00:14 -0800475 kzalloc(img->sec[IWL_UCODE_SECTION_DATA].len,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800476 GFP_KERNEL);
David Spinadel6dfa8d02012-03-10 13:00:14 -0800477 }
Wey-Yi Guy73356132011-11-10 06:55:11 -0800478
479 if (priv->wowlan_sram)
Emmanuel Grumbach4fd442d2012-12-24 14:27:11 +0200480 iwl_trans_read_mem(
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700481 priv->trans, 0x800000,
David Spinadel6dfa8d02012-03-10 13:00:14 -0800482 priv->wowlan_sram,
483 img->sec[IWL_UCODE_SECTION_DATA].len / 4);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800484 }
485#endif
486 }
487
488 /* we'll clear ctx->vif during iwlagn_prepare_restart() */
489 vif = ctx->vif;
490
Johannes Berg15b86bf2012-03-05 11:24:36 -0800491 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800492
Wey-Yi Guy73356132011-11-10 06:55:11 -0800493 iwlagn_prepare_restart(priv);
494
495 memset((void *)&ctx->active, 0, sizeof(ctx->active));
496 iwl_connection_init_rx_config(priv, ctx);
497 iwlagn_set_rxon_chain(priv, ctx);
498
Johannes Bergb1eea292012-03-06 13:30:42 -0800499 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800500 IWL_DEBUG_MAC80211(priv, "leave\n");
501
502 ieee80211_resume_disconnect(vif);
503
504 return 1;
505}
506
Johannes Berg76ed2ed2012-05-16 22:54:25 +0200507static void iwlagn_mac_set_wakeup(struct ieee80211_hw *hw, bool enabled)
508{
509 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
510
511 device_set_wakeup_enable(priv->trans->dev, enabled);
512}
Wey-Yi Guy73356132011-11-10 06:55:11 -0800513#endif
514
Thomas Huehn36323f82012-07-23 21:33:42 +0200515static void iwlagn_mac_tx(struct ieee80211_hw *hw,
516 struct ieee80211_tx_control *control,
517 struct sk_buff *skb)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800518{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200519 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800520
Thomas Huehn36323f82012-07-23 21:33:42 +0200521 if (iwlagn_tx_skb(priv, control->sta, skb))
Johannes Berg31df3bb2012-10-31 22:07:39 +0100522 ieee80211_free_txskb(hw, skb);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800523}
524
Johannes Bergaca86262012-05-14 09:08:50 +0200525static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
526 struct ieee80211_vif *vif,
527 struct ieee80211_key_conf *keyconf,
528 struct ieee80211_sta *sta,
529 u32 iv32, u16 *phase1key)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800530{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200531 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800532
533 iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key);
534}
535
Johannes Bergaca86262012-05-14 09:08:50 +0200536static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
537 struct ieee80211_vif *vif,
538 struct ieee80211_sta *sta,
539 struct ieee80211_key_conf *key)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800540{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200541 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800542 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
543 struct iwl_rxon_context *ctx = vif_priv->ctx;
544 int ret;
545 bool is_default_wep_key = false;
546
547 IWL_DEBUG_MAC80211(priv, "enter\n");
548
Johannes Berg65de7e82012-04-17 07:36:30 -0700549 if (iwlwifi_mod_params.sw_crypto) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800550 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
551 return -EOPNOTSUPP;
552 }
553
Johannes Berga7e12c82011-11-25 03:20:09 -0800554 switch (key->cipher) {
555 case WLAN_CIPHER_SUITE_TKIP:
556 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
557 /* fall through */
558 case WLAN_CIPHER_SUITE_CCMP:
559 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
560 break;
561 default:
562 break;
563 }
564
Wey-Yi Guy73356132011-11-10 06:55:11 -0800565 /*
566 * We could program these keys into the hardware as well, but we
567 * don't expect much multicast traffic in IBSS and having keys
568 * for more stations is probably more useful.
569 *
570 * Mark key TX-only and return 0.
571 */
572 if (vif->type == NL80211_IFTYPE_ADHOC &&
573 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
574 key->hw_key_idx = WEP_INVALID_OFFSET;
575 return 0;
576 }
577
578 /* If they key was TX-only, accept deletion */
579 if (cmd == DISABLE_KEY && key->hw_key_idx == WEP_INVALID_OFFSET)
580 return 0;
581
Johannes Bergb1eea292012-03-06 13:30:42 -0800582 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800583 iwl_scan_cancel_timeout(priv, 100);
584
585 BUILD_BUG_ON(WEP_INVALID_OFFSET == IWLAGN_HW_KEY_DEFAULT);
586
587 /*
588 * If we are getting WEP group key and we didn't receive any key mapping
589 * so far, we are in legacy wep mode (group key only), otherwise we are
590 * in 1X mode.
591 * In legacy wep mode, we use another host command to the uCode.
592 */
593 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
594 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
595 if (cmd == SET_KEY)
596 is_default_wep_key = !ctx->key_mapping_keys;
597 else
598 is_default_wep_key =
599 key->hw_key_idx == IWLAGN_HW_KEY_DEFAULT;
600 }
601
602
603 switch (cmd) {
604 case SET_KEY:
605 if (is_default_wep_key) {
606 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
607 break;
608 }
609 ret = iwl_set_dynamic_key(priv, vif_priv->ctx, key, sta);
610 if (ret) {
611 /*
612 * can't add key for RX, but we don't need it
613 * in the device for TX so still return 0
614 */
615 ret = 0;
616 key->hw_key_idx = WEP_INVALID_OFFSET;
617 }
618
619 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
620 break;
621 case DISABLE_KEY:
622 if (is_default_wep_key)
623 ret = iwl_remove_default_wep_key(priv, ctx, key);
624 else
625 ret = iwl_remove_dynamic_key(priv, ctx, key, sta);
626
627 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
628 break;
629 default:
630 ret = -EINVAL;
631 }
632
Johannes Bergb1eea292012-03-06 13:30:42 -0800633 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800634 IWL_DEBUG_MAC80211(priv, "leave\n");
635
636 return ret;
637}
638
Johannes Bergaca86262012-05-14 09:08:50 +0200639static int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
640 struct ieee80211_vif *vif,
641 enum ieee80211_ampdu_mlme_action action,
642 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
643 u8 buf_size)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800644{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200645 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800646 int ret = -EINVAL;
647 struct iwl_station_priv *sta_priv = (void *) sta->drv_priv;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800648
649 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
650 sta->addr, tid);
651
Eytan Lifshitzb7998c82012-12-01 20:59:49 +0200652 if (!(priv->nvm_data->sku_cap_11n_enable))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800653 return -EACCES;
654
655 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800656 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800657
658 switch (action) {
659 case IEEE80211_AMPDU_RX_START:
Johannes Berg65de7e82012-04-17 07:36:30 -0700660 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
Johannes Berg74289942011-12-13 00:07:40 -0800661 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800662 IWL_DEBUG_HT(priv, "start Rx\n");
663 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
664 break;
665 case IEEE80211_AMPDU_RX_STOP:
666 IWL_DEBUG_HT(priv, "stop Rx\n");
667 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800668 break;
669 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach4beaf6c2012-05-29 11:29:10 +0300670 if (!priv->trans->ops->txq_enable)
Johannes Berg9eae88f2012-03-15 13:26:52 -0700671 break;
Johannes Berg65de7e82012-04-17 07:36:30 -0700672 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
Johannes Berg74289942011-12-13 00:07:40 -0800673 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800674 IWL_DEBUG_HT(priv, "start Tx\n");
675 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
676 break;
Johannes Berg18b559d2012-07-18 13:51:25 +0200677 case IEEE80211_AMPDU_TX_STOP_CONT:
678 case IEEE80211_AMPDU_TX_STOP_FLUSH:
679 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Wey-Yi Guy73356132011-11-10 06:55:11 -0800680 IWL_DEBUG_HT(priv, "stop Tx\n");
681 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
682 if ((ret == 0) && (priv->agg_tids_count > 0)) {
683 priv->agg_tids_count--;
684 IWL_DEBUG_HT(priv, "priv->agg_tids_count = %u\n",
685 priv->agg_tids_count);
686 }
Johannes Bergb9ad70d2012-03-06 13:30:55 -0800687 if (!priv->agg_tids_count &&
Johannes Berg9e295112012-04-09 17:46:55 -0700688 priv->hw_params.use_rts_for_aggregation) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800689 /*
690 * switch off RTS/CTS if it was previously enabled
691 */
692 sta_priv->lq_sta.lq.general_params.flags &=
693 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
694 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
695 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
696 }
697 break;
698 case IEEE80211_AMPDU_TX_OPERATIONAL:
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +0200699 ret = iwlagn_tx_agg_oper(priv, vif, sta, tid, buf_size);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800700 break;
701 }
Johannes Bergb1eea292012-03-06 13:30:42 -0800702 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800703 IWL_DEBUG_MAC80211(priv, "leave\n");
704 return ret;
705}
706
707static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
708 struct ieee80211_vif *vif,
709 struct ieee80211_sta *sta)
710{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200711 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800712 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
713 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
714 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800715 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800716 u8 sta_id;
717
Wey-Yi Guy73356132011-11-10 06:55:11 -0800718 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
719 sta->addr);
720 sta_priv->sta_id = IWL_INVALID_STATION;
721
722 atomic_set(&sta_priv->pending_frames, 0);
723 if (vif->type == NL80211_IFTYPE_AP)
724 sta_priv->client = true;
725
726 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
727 is_ap, sta, &sta_id);
728 if (ret) {
729 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
730 sta->addr, ret);
731 /* Should we return success if return code is EEXIST ? */
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800732 return ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800733 }
734
735 sta_priv->sta_id = sta_id;
736
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800737 return 0;
738}
739
740static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
741 struct ieee80211_vif *vif,
742 struct ieee80211_sta *sta)
743{
744 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
745 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
746 int ret;
747
Johannes Berg97420512012-03-07 09:52:42 -0800748 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n", sta->addr);
749
750 if (vif->type == NL80211_IFTYPE_STATION) {
751 /*
752 * Station will be removed from device when the RXON
753 * is set to unassociated -- just deactivate it here
754 * to avoid re-programming it.
755 */
756 ret = 0;
757 iwl_deactivate_station(priv, sta_priv->sta_id, sta->addr);
758 } else {
759 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
760 if (ret)
761 IWL_DEBUG_QUIET_RFKILL(priv,
762 "Error removing station %pM\n", sta->addr);
763 }
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800764 return ret;
765}
766
Johannes Bergaca86262012-05-14 09:08:50 +0200767static int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
768 struct ieee80211_vif *vif,
769 struct ieee80211_sta *sta,
770 enum ieee80211_sta_state old_state,
771 enum ieee80211_sta_state new_state)
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800772{
773 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800774 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800775 enum {
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800776 NONE, ADD, REMOVE, HT_RATE_INIT, ADD_RATE_INIT,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800777 } op = NONE;
778 int ret;
779
780 IWL_DEBUG_MAC80211(priv, "station %pM state change %d->%d\n",
781 sta->addr, old_state, new_state);
782
Johannes Bergb1eea292012-03-06 13:30:42 -0800783 mutex_lock(&priv->mutex);
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800784 if (vif->type == NL80211_IFTYPE_STATION) {
785 if (old_state == IEEE80211_STA_NOTEXIST &&
786 new_state == IEEE80211_STA_NONE)
787 op = ADD;
788 else if (old_state == IEEE80211_STA_NONE &&
789 new_state == IEEE80211_STA_NOTEXIST)
790 op = REMOVE;
791 else if (old_state == IEEE80211_STA_AUTH &&
792 new_state == IEEE80211_STA_ASSOC)
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800793 op = HT_RATE_INIT;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800794 } else {
795 if (old_state == IEEE80211_STA_AUTH &&
796 new_state == IEEE80211_STA_ASSOC)
797 op = ADD_RATE_INIT;
798 else if (old_state == IEEE80211_STA_ASSOC &&
799 new_state == IEEE80211_STA_AUTH)
800 op = REMOVE;
801 }
802
803 switch (op) {
804 case ADD:
805 ret = iwlagn_mac_sta_add(hw, vif, sta);
Johannes Bergeac9ac62012-06-25 09:36:41 +0200806 if (ret)
807 break;
808 /*
809 * Clear the in-progress flag, the AP station entry was added
810 * but we'll initialize LQ only when we've associated (which
811 * would also clear the in-progress flag). This is necessary
812 * in case we never initialize LQ because association fails.
813 */
814 spin_lock_bh(&priv->sta_lock);
815 priv->stations[iwl_sta_id(sta)].used &=
816 ~IWL_STA_UCODE_INPROGRESS;
817 spin_unlock_bh(&priv->sta_lock);
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800818 break;
819 case REMOVE:
820 ret = iwlagn_mac_sta_remove(hw, vif, sta);
821 break;
822 case ADD_RATE_INIT:
823 ret = iwlagn_mac_sta_add(hw, vif, sta);
824 if (ret)
825 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800826 /* Initialize rate scaling */
827 IWL_DEBUG_INFO(priv,
828 "Initializing rate scaling for station %pM\n",
829 sta->addr);
830 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
831 ret = 0;
832 break;
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800833 case HT_RATE_INIT:
834 /* Initialize rate scaling */
835 ret = iwl_sta_update_ht(priv, vif_priv->ctx, sta);
836 if (ret)
837 break;
838 IWL_DEBUG_INFO(priv,
839 "Initializing rate scaling for station %pM\n",
840 sta->addr);
841 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
842 ret = 0;
843 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800844 default:
845 ret = 0;
846 break;
847 }
848
849 /*
850 * mac80211 might WARN if we fail, but due the way we
851 * (badly) handle hard rfkill, we might fail here
852 */
Don Fry83626402012-03-07 09:52:37 -0800853 if (iwl_is_rfkill(priv))
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800854 ret = 0;
855
Johannes Bergb1eea292012-03-06 13:30:42 -0800856 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800857 IWL_DEBUG_MAC80211(priv, "leave\n");
858
859 return ret;
860}
861
Johannes Bergaca86262012-05-14 09:08:50 +0200862static void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
863 struct ieee80211_channel_switch *ch_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800864{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200865 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800866 struct ieee80211_conf *conf = &hw->conf;
867 struct ieee80211_channel *channel = ch_switch->channel;
868 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
869 /*
870 * MULTI-FIXME
871 * When we add support for multiple interfaces, we need to
872 * revisit this. The channel switch command in the device
873 * only affects the BSS context, but what does that really
874 * mean? And what if we get a CSA on the second interface?
875 * This needs a lot of work.
876 */
877 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
878 u16 ch;
879
880 IWL_DEBUG_MAC80211(priv, "enter\n");
881
Johannes Bergb1eea292012-03-06 13:30:42 -0800882 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800883
Don Fry83626402012-03-07 09:52:37 -0800884 if (iwl_is_rfkill(priv))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800885 goto out;
886
Don Fry83626402012-03-07 09:52:37 -0800887 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
888 test_bit(STATUS_SCANNING, &priv->status) ||
889 test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800890 goto out;
891
892 if (!iwl_is_associated_ctx(ctx))
893 goto out;
894
Johannes Berge9676692012-04-10 14:10:28 -0700895 if (!priv->lib->set_channel_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800896 goto out;
897
898 ch = channel->hw_value;
899 if (le16_to_cpu(ctx->active.channel) == ch)
900 goto out;
901
Wey-Yi Guy73356132011-11-10 06:55:11 -0800902 priv->current_ht_config.smps = conf->smps_mode;
903
904 /* Configure HT40 channels */
905 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy137ce792011-11-22 16:23:35 -0800906 if (ctx->ht.enabled)
907 iwlagn_config_ht40(conf, ctx);
908 else
Wey-Yi Guy73356132011-11-10 06:55:11 -0800909 ctx->ht.is_40mhz = false;
910
911 if ((le16_to_cpu(ctx->staging.channel) != ch))
912 ctx->staging.flags = 0;
913
914 iwl_set_rxon_channel(priv, channel, ctx);
915 iwl_set_rxon_ht(priv, ht_conf);
916 iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif);
917
Wey-Yi Guy73356132011-11-10 06:55:11 -0800918 /*
919 * at this point, staging_rxon has the
920 * configuration for channel switch
921 */
Don Fry83626402012-03-07 09:52:37 -0800922 set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800923 priv->switch_channel = cpu_to_le16(ch);
Johannes Berge9676692012-04-10 14:10:28 -0700924 if (priv->lib->set_channel_switch(priv, ch_switch)) {
Don Fry83626402012-03-07 09:52:37 -0800925 clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800926 priv->switch_channel = 0;
927 ieee80211_chswitch_done(ctx->vif, false);
928 }
929
930out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800931 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800932 IWL_DEBUG_MAC80211(priv, "leave\n");
933}
934
Meenakshi Venkataramanbedec3a2012-03-13 17:47:23 -0700935void iwl_chswitch_done(struct iwl_priv *priv, bool is_success)
936{
937 /*
938 * MULTI-FIXME
939 * See iwlagn_mac_channel_switch.
940 */
941 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
942
943 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
944 return;
945
946 if (test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
947 ieee80211_chswitch_done(ctx->vif, is_success);
948}
949
Johannes Bergaca86262012-05-14 09:08:50 +0200950static void iwlagn_configure_filter(struct ieee80211_hw *hw,
951 unsigned int changed_flags,
952 unsigned int *total_flags,
953 u64 multicast)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800954{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200955 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800956 __le32 filter_or = 0, filter_nand = 0;
957 struct iwl_rxon_context *ctx;
958
959#define CHK(test, flag) do { \
960 if (*total_flags & (test)) \
961 filter_or |= (flag); \
962 else \
963 filter_nand |= (flag); \
964 } while (0)
965
966 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
967 changed_flags, *total_flags);
968
969 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
970 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
971 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
972 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
973
974#undef CHK
975
Johannes Bergb1eea292012-03-06 13:30:42 -0800976 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800977
978 for_each_context(priv, ctx) {
979 ctx->staging.filter_flags &= ~filter_nand;
980 ctx->staging.filter_flags |= filter_or;
981
982 /*
983 * Not committing directly because hardware can perform a scan,
984 * but we'll eventually commit the filter flags change anyway.
985 */
986 }
987
Johannes Bergb1eea292012-03-06 13:30:42 -0800988 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800989
990 /*
991 * Receiving all multicast frames is always enabled by the
992 * default flags setup in iwl_connection_init_rx_config()
993 * since we currently do not support programming multicast
994 * filters into the device.
995 */
996 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
997 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
998}
999
Johannes Bergaca86262012-05-14 09:08:50 +02001000static void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001001{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001002 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001003
Johannes Bergb1eea292012-03-06 13:30:42 -08001004 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001005 IWL_DEBUG_MAC80211(priv, "enter\n");
1006
Don Fry83626402012-03-07 09:52:37 -08001007 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001008 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
1009 goto done;
1010 }
Don Fry83626402012-03-07 09:52:37 -08001011 if (iwl_is_rfkill(priv)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001012 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
1013 goto done;
1014 }
1015
1016 /*
1017 * mac80211 will not push any more frames for transmit
1018 * until the flush is completed
1019 */
1020 if (drop) {
1021 IWL_DEBUG_MAC80211(priv, "send flush command\n");
Johannes Berga4dece92012-10-31 22:21:28 +01001022 if (iwlagn_txfifo_flush(priv)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001023 IWL_ERR(priv, "flush request fail\n");
1024 goto done;
1025 }
1026 }
1027 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -07001028 iwl_trans_wait_tx_queue_empty(priv->trans);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001029done:
Johannes Bergb1eea292012-03-06 13:30:42 -08001030 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001031 IWL_DEBUG_MAC80211(priv, "leave\n");
1032}
1033
1034static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
Eliad Peller49884562012-11-19 17:05:09 +02001035 struct ieee80211_vif *vif,
Wey-Yi Guy73356132011-11-10 06:55:11 -08001036 struct ieee80211_channel *channel,
Wey-Yi Guy73356132011-11-10 06:55:11 -08001037 int duration)
1038{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001039 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001040 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_PAN];
1041 int err = 0;
1042
Johannes Berga18f61b2012-03-15 13:26:53 -07001043 if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
Wey-Yi Guy73356132011-11-10 06:55:11 -08001044 return -EOPNOTSUPP;
1045
1046 if (!(ctx->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)))
1047 return -EOPNOTSUPP;
1048
1049 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001050 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001051
Don Fry83626402012-03-07 09:52:37 -08001052 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Johannes Berg601968b2012-06-14 21:22:17 +02001053 /* mac80211 should not scan while ROC or ROC while scanning */
1054 if (WARN_ON_ONCE(priv->scan_type != IWL_SCAN_RADIO_RESET)) {
1055 err = -EBUSY;
1056 goto out;
1057 }
1058
1059 iwl_scan_cancel_timeout(priv, 100);
1060
1061 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
1062 err = -EBUSY;
1063 goto out;
1064 }
Wey-Yi Guy73356132011-11-10 06:55:11 -08001065 }
1066
1067 priv->hw_roc_channel = channel;
Johannes Berg3ddf6be2011-11-10 06:55:21 -08001068 /* convert from ms to TU */
1069 priv->hw_roc_duration = DIV_ROUND_UP(1000 * duration, 1024);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001070 priv->hw_roc_start_notified = false;
1071 cancel_delayed_work(&priv->hw_roc_disable_work);
1072
1073 if (!ctx->is_active) {
Johannes Berga69cd042011-11-10 06:55:13 -08001074 static const struct iwl_qos_info default_qos_data = {
1075 .def_qos_parm = {
1076 .ac[0] = {
1077 .cw_min = cpu_to_le16(3),
1078 .cw_max = cpu_to_le16(7),
1079 .aifsn = 2,
1080 .edca_txop = cpu_to_le16(1504),
1081 },
1082 .ac[1] = {
1083 .cw_min = cpu_to_le16(7),
1084 .cw_max = cpu_to_le16(15),
1085 .aifsn = 2,
1086 .edca_txop = cpu_to_le16(3008),
1087 },
1088 .ac[2] = {
1089 .cw_min = cpu_to_le16(15),
1090 .cw_max = cpu_to_le16(1023),
1091 .aifsn = 3,
1092 },
1093 .ac[3] = {
1094 .cw_min = cpu_to_le16(15),
1095 .cw_max = cpu_to_le16(1023),
1096 .aifsn = 7,
1097 },
1098 },
1099 };
1100
Wey-Yi Guy73356132011-11-10 06:55:11 -08001101 ctx->is_active = true;
Johannes Berga69cd042011-11-10 06:55:13 -08001102 ctx->qos_data = default_qos_data;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001103 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
1104 memcpy(ctx->staging.node_addr,
1105 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1106 ETH_ALEN);
1107 memcpy(ctx->staging.bssid_addr,
1108 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1109 ETH_ALEN);
1110 err = iwlagn_commit_rxon(priv, ctx);
1111 if (err)
1112 goto out;
1113 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK |
1114 RXON_FILTER_PROMISC_MSK |
1115 RXON_FILTER_CTL2HOST_MSK;
1116
1117 err = iwlagn_commit_rxon(priv, ctx);
1118 if (err) {
1119 iwlagn_disable_roc(priv);
1120 goto out;
1121 }
1122 priv->hw_roc_setup = true;
1123 }
1124
1125 err = iwl_scan_initiate(priv, ctx->vif, IWL_SCAN_ROC, channel->band);
1126 if (err)
1127 iwlagn_disable_roc(priv);
1128
1129 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001130 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001131 IWL_DEBUG_MAC80211(priv, "leave\n");
1132
1133 return err;
1134}
1135
Johannes Bergaca86262012-05-14 09:08:50 +02001136static int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001137{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001138 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001139
Johannes Berga18f61b2012-03-15 13:26:53 -07001140 if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
Wey-Yi Guy73356132011-11-10 06:55:11 -08001141 return -EOPNOTSUPP;
1142
1143 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001144 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001145 iwl_scan_cancel_timeout(priv, priv->hw_roc_duration);
1146 iwlagn_disable_roc(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -08001147 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001148 IWL_DEBUG_MAC80211(priv, "leave\n");
1149
1150 return 0;
1151}
1152
Johannes Bergaca86262012-05-14 09:08:50 +02001153static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
Emmanuel Grumbach887da912013-01-20 17:32:41 +02001154 struct ieee80211_vif *vif,
Johannes Bergaca86262012-05-14 09:08:50 +02001155 enum ieee80211_rssi_event rssi_event)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001156{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001157 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001158
1159 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001160 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001161
Emmanuel Grumbach21522682012-03-22 17:51:44 +02001162 if (priv->cfg->bt_params &&
1163 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001164 if (rssi_event == RSSI_EVENT_LOW)
1165 priv->bt_enable_pspoll = true;
1166 else if (rssi_event == RSSI_EVENT_HIGH)
1167 priv->bt_enable_pspoll = false;
1168
1169 iwlagn_send_advance_bt_config(priv);
1170 } else {
1171 IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled,"
1172 "ignoring RSSI callback\n");
1173 }
1174
Johannes Bergb1eea292012-03-06 13:30:42 -08001175 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001176 IWL_DEBUG_MAC80211(priv, "leave\n");
1177}
1178
Johannes Bergaca86262012-05-14 09:08:50 +02001179static int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
1180 struct ieee80211_sta *sta, bool set)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001181{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001182 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001183
Johannes Berg1ee158d2012-02-17 10:07:44 -08001184 queue_work(priv->workqueue, &priv->beacon_update);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001185
1186 return 0;
1187}
1188
Johannes Bergaca86262012-05-14 09:08:50 +02001189static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
1190 struct ieee80211_vif *vif, u16 queue,
1191 const struct ieee80211_tx_queue_params *params)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001192{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001193 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001194 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1195 struct iwl_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001196 int q;
1197
1198 if (WARN_ON(!ctx))
1199 return -EINVAL;
1200
1201 IWL_DEBUG_MAC80211(priv, "enter\n");
1202
Don Fry83626402012-03-07 09:52:37 -08001203 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001204 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
1205 return -EIO;
1206 }
1207
1208 if (queue >= AC_NUM) {
1209 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
1210 return 0;
1211 }
1212
1213 q = AC_NUM - 1 - queue;
1214
Johannes Bergb1eea292012-03-06 13:30:42 -08001215 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001216
1217 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1218 cpu_to_le16(params->cw_min);
1219 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1220 cpu_to_le16(params->cw_max);
1221 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1222 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1223 cpu_to_le16((params->txop * 32));
1224
1225 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1226
Johannes Bergb1eea292012-03-06 13:30:42 -08001227 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001228
1229 IWL_DEBUG_MAC80211(priv, "leave\n");
1230 return 0;
1231}
1232
Johannes Bergaca86262012-05-14 09:08:50 +02001233static int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001234{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001235 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001236
1237 return priv->ibss_manager == IWL_IBSS_MANAGER;
1238}
1239
1240static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
1241{
1242 iwl_connection_init_rx_config(priv, ctx);
1243
1244 iwlagn_set_rxon_chain(priv, ctx);
1245
1246 return iwlagn_commit_rxon(priv, ctx);
1247}
1248
Johannes Bergaca86262012-05-14 09:08:50 +02001249static int iwl_setup_interface(struct iwl_priv *priv,
1250 struct iwl_rxon_context *ctx)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001251{
1252 struct ieee80211_vif *vif = ctx->vif;
Johannes Berg14791772012-04-17 07:39:03 -07001253 int err, ac;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001254
Johannes Bergb1eea292012-03-06 13:30:42 -08001255 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001256
1257 /*
1258 * This variable will be correct only when there's just
1259 * a single context, but all code using it is for hardware
1260 * that supports only one context.
1261 */
1262 priv->iw_mode = vif->type;
1263
1264 ctx->is_active = true;
1265
1266 err = iwl_set_mode(priv, ctx);
1267 if (err) {
1268 if (!ctx->always_active)
1269 ctx->is_active = false;
1270 return err;
1271 }
1272
Emmanuel Grumbach21522682012-03-22 17:51:44 +02001273 if (priv->cfg->bt_params && priv->cfg->bt_params->advanced_bt_coexist &&
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001274 vif->type == NL80211_IFTYPE_ADHOC) {
1275 /*
1276 * pretend to have high BT traffic as long as we
1277 * are operating in IBSS mode, as this will cause
1278 * the rate scaling etc. to behave as intended.
1279 */
1280 priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
1281 }
1282
Johannes Berg14791772012-04-17 07:39:03 -07001283 /* set up queue mappings */
1284 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1285 vif->hw_queue[ac] = ctx->ac_to_queue[ac];
1286
1287 if (vif->type == NL80211_IFTYPE_AP)
1288 vif->cab_queue = ctx->mcast_queue;
1289 else
1290 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1291
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001292 return 0;
1293}
1294
1295static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
Johannes Berg14791772012-04-17 07:39:03 -07001296 struct ieee80211_vif *vif)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001297{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001298 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001299 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1300 struct iwl_rxon_context *tmp, *ctx = NULL;
1301 int err;
1302 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif);
Stanislaw Gruszka8db4c7e2012-04-18 08:01:15 -07001303 bool reset = false;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001304
1305 IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
1306 viftype, vif->addr);
1307
1308 cancel_delayed_work_sync(&priv->hw_roc_disable_work);
1309
Johannes Bergb1eea292012-03-06 13:30:42 -08001310 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001311
1312 iwlagn_disable_roc(priv);
1313
Don Fry83626402012-03-07 09:52:37 -08001314 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001315 IWL_WARN(priv, "Try to add interface when device not ready\n");
1316 err = -EINVAL;
1317 goto out;
1318 }
1319
1320 for_each_context(priv, tmp) {
1321 u32 possible_modes =
1322 tmp->interface_modes | tmp->exclusive_interface_modes;
1323
1324 if (tmp->vif) {
Stanislaw Gruszka8db4c7e2012-04-18 08:01:15 -07001325 /* On reset we need to add the same interface again */
1326 if (tmp->vif == vif) {
1327 reset = true;
1328 ctx = tmp;
1329 break;
1330 }
1331
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001332 /* check if this busy context is exclusive */
1333 if (tmp->exclusive_interface_modes &
1334 BIT(tmp->vif->type)) {
1335 err = -EINVAL;
1336 goto out;
1337 }
1338 continue;
1339 }
1340
1341 if (!(possible_modes & BIT(viftype)))
1342 continue;
1343
1344 /* have maybe usable context w/o interface */
1345 ctx = tmp;
1346 break;
1347 }
1348
1349 if (!ctx) {
1350 err = -EOPNOTSUPP;
1351 goto out;
1352 }
1353
1354 vif_priv->ctx = ctx;
1355 ctx->vif = vif;
1356
Johannes Berg04baaa22012-11-13 21:28:44 +01001357 /*
1358 * In SNIFFER device type, the firmware reports the FCS to
1359 * the host, rather than snipping it off. Unfortunately,
1360 * mac80211 doesn't (yet) provide a per-packet flag for
1361 * this, so that we have to set the hardware flag based
1362 * on the interfaces added. As the monitor interface can
1363 * only be present by itself, and will be removed before
1364 * other interfaces are added, this is safe.
1365 */
1366 if (vif->type == NL80211_IFTYPE_MONITOR)
1367 priv->hw->flags |= IEEE80211_HW_RX_INCLUDES_FCS;
1368 else
1369 priv->hw->flags &= ~IEEE80211_HW_RX_INCLUDES_FCS;
1370
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001371 err = iwl_setup_interface(priv, ctx);
Stanislaw Gruszka8db4c7e2012-04-18 08:01:15 -07001372 if (!err || reset)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001373 goto out;
1374
1375 ctx->vif = NULL;
1376 priv->iw_mode = NL80211_IFTYPE_STATION;
1377 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001378 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001379
1380 IWL_DEBUG_MAC80211(priv, "leave\n");
1381 return err;
1382}
1383
Johannes Bergaca86262012-05-14 09:08:50 +02001384static void iwl_teardown_interface(struct iwl_priv *priv,
1385 struct ieee80211_vif *vif,
1386 bool mode_change)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001387{
1388 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1389
Johannes Bergb1eea292012-03-06 13:30:42 -08001390 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001391
1392 if (priv->scan_vif == vif) {
1393 iwl_scan_cancel_timeout(priv, 200);
1394 iwl_force_scan_end(priv);
1395 }
1396
1397 if (!mode_change) {
1398 iwl_set_mode(priv, ctx);
1399 if (!ctx->always_active)
1400 ctx->is_active = false;
1401 }
1402
1403 /*
1404 * When removing the IBSS interface, overwrite the
1405 * BT traffic load with the stored one from the last
1406 * notification, if any. If this is a device that
1407 * doesn't implement this, this has no effect since
1408 * both values are the same and zero.
1409 */
1410 if (vif->type == NL80211_IFTYPE_ADHOC)
1411 priv->bt_traffic_load = priv->last_bt_traffic_load;
1412}
1413
1414static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw,
1415 struct ieee80211_vif *vif)
1416{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001417 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001418 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1419
1420 IWL_DEBUG_MAC80211(priv, "enter\n");
1421
Johannes Bergb1eea292012-03-06 13:30:42 -08001422 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001423
1424 if (WARN_ON(ctx->vif != vif)) {
1425 struct iwl_rxon_context *tmp;
1426 IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
1427 for_each_context(priv, tmp)
1428 IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
1429 tmp->ctxid, tmp, tmp->vif);
1430 }
1431 ctx->vif = NULL;
1432
1433 iwl_teardown_interface(priv, vif, false);
1434
Johannes Bergb1eea292012-03-06 13:30:42 -08001435 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001436
1437 IWL_DEBUG_MAC80211(priv, "leave\n");
1438
1439}
1440
1441static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
Johannes Berge75dac92012-06-20 11:47:42 +02001442 struct ieee80211_vif *vif,
1443 enum nl80211_iftype newtype, bool newp2p)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001444{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001445 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Johannes Berge75dac92012-06-20 11:47:42 +02001446 struct iwl_rxon_context *ctx, *tmp;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001447 enum nl80211_iftype newviftype = newtype;
1448 u32 interface_modes;
1449 int err;
1450
1451 IWL_DEBUG_MAC80211(priv, "enter\n");
1452
1453 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1454
Johannes Bergb1eea292012-03-06 13:30:42 -08001455 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001456
Johannes Berge75dac92012-06-20 11:47:42 +02001457 ctx = iwl_rxon_ctx_from_vif(vif);
1458
1459 /*
1460 * To simplify this code, only support changes on the
1461 * BSS context. The PAN context is usually reassigned
1462 * by creating/removing P2P interfaces anyway.
1463 */
1464 if (ctx->ctxid != IWL_RXON_CTX_BSS) {
1465 err = -EBUSY;
1466 goto out;
1467 }
1468
Don Fry83626402012-03-07 09:52:37 -08001469 if (!ctx->vif || !iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001470 /*
1471 * Huh? But wait ... this can maybe happen when
1472 * we're in the middle of a firmware restart!
1473 */
1474 err = -EBUSY;
1475 goto out;
1476 }
1477
Johannes Berge75dac92012-06-20 11:47:42 +02001478 /* Check if the switch is supported in the same context */
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001479 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001480 if (!(interface_modes & BIT(newtype))) {
1481 err = -EBUSY;
1482 goto out;
1483 }
1484
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001485 if (ctx->exclusive_interface_modes & BIT(newtype)) {
1486 for_each_context(priv, tmp) {
1487 if (ctx == tmp)
1488 continue;
1489
Johannes Berge75dac92012-06-20 11:47:42 +02001490 if (!tmp->is_active)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001491 continue;
1492
1493 /*
1494 * The current mode switch would be exclusive, but
1495 * another context is active ... refuse the switch.
1496 */
1497 err = -EBUSY;
1498 goto out;
1499 }
1500 }
1501
1502 /* success */
1503 iwl_teardown_interface(priv, vif, true);
1504 vif->type = newviftype;
1505 vif->p2p = newp2p;
1506 err = iwl_setup_interface(priv, ctx);
1507 WARN_ON(err);
1508 /*
1509 * We've switched internally, but submitting to the
1510 * device may have failed for some reason. Mask this
1511 * error, because otherwise mac80211 will not switch
1512 * (and set the interface type back) and we'll be
1513 * out of sync with it.
1514 */
1515 err = 0;
1516
1517 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001518 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001519 IWL_DEBUG_MAC80211(priv, "leave\n");
1520
1521 return err;
1522}
1523
Johannes Bergaca86262012-05-14 09:08:50 +02001524static int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
1525 struct ieee80211_vif *vif,
1526 struct cfg80211_scan_request *req)
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001527{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001528 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001529 int ret;
1530
1531 IWL_DEBUG_MAC80211(priv, "enter\n");
1532
1533 if (req->n_channels == 0)
1534 return -EINVAL;
1535
Johannes Bergb1eea292012-03-06 13:30:42 -08001536 mutex_lock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001537
1538 /*
1539 * If an internal scan is in progress, just set
1540 * up the scan_request as per above.
1541 */
1542 if (priv->scan_type != IWL_SCAN_NORMAL) {
1543 IWL_DEBUG_SCAN(priv,
1544 "SCAN request during internal scan - defer\n");
1545 priv->scan_request = req;
1546 priv->scan_vif = vif;
1547 ret = 0;
1548 } else {
1549 priv->scan_request = req;
1550 priv->scan_vif = vif;
1551 /*
1552 * mac80211 will only ask for one band at a time
1553 * so using channels[0] here is ok
1554 */
1555 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
1556 req->channels[0]->band);
1557 if (ret) {
1558 priv->scan_request = NULL;
1559 priv->scan_vif = NULL;
1560 }
1561 }
1562
1563 IWL_DEBUG_MAC80211(priv, "leave\n");
1564
Johannes Bergb1eea292012-03-06 13:30:42 -08001565 mutex_unlock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001566
1567 return ret;
1568}
1569
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001570static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
1571{
Johannes Berg9451ca12012-03-05 11:24:23 -08001572 struct iwl_addsta_cmd cmd = {
1573 .mode = STA_CONTROL_MODIFY_MSK,
1574 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1575 .sta.sta_id = sta_id,
1576 };
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001577
Johannes Berg9451ca12012-03-05 11:24:23 -08001578 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001579}
1580
Johannes Bergaca86262012-05-14 09:08:50 +02001581static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
1582 struct ieee80211_vif *vif,
1583 enum sta_notify_cmd cmd,
1584 struct ieee80211_sta *sta)
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001585{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001586 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001587 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1588 int sta_id;
1589
1590 IWL_DEBUG_MAC80211(priv, "enter\n");
1591
1592 switch (cmd) {
1593 case STA_NOTIFY_SLEEP:
1594 WARN_ON(!sta_priv->client);
1595 sta_priv->asleep = true;
1596 if (atomic_read(&sta_priv->pending_frames) > 0)
1597 ieee80211_sta_block_awake(hw, sta, true);
1598 break;
1599 case STA_NOTIFY_AWAKE:
1600 WARN_ON(!sta_priv->client);
1601 if (!sta_priv->asleep)
1602 break;
1603 sta_priv->asleep = false;
1604 sta_id = iwl_sta_id(sta);
1605 if (sta_id != IWL_INVALID_STATION)
1606 iwl_sta_modify_ps_wake(priv, sta_id);
1607 break;
1608 default:
1609 break;
1610 }
1611 IWL_DEBUG_MAC80211(priv, "leave\n");
1612}
1613
Wey-Yi Guy73356132011-11-10 06:55:11 -08001614struct ieee80211_ops iwlagn_hw_ops = {
1615 .tx = iwlagn_mac_tx,
1616 .start = iwlagn_mac_start,
1617 .stop = iwlagn_mac_stop,
1618#ifdef CONFIG_PM_SLEEP
1619 .suspend = iwlagn_mac_suspend,
1620 .resume = iwlagn_mac_resume,
Johannes Berg76ed2ed2012-05-16 22:54:25 +02001621 .set_wakeup = iwlagn_mac_set_wakeup,
Wey-Yi Guy73356132011-11-10 06:55:11 -08001622#endif
1623 .add_interface = iwlagn_mac_add_interface,
1624 .remove_interface = iwlagn_mac_remove_interface,
1625 .change_interface = iwlagn_mac_change_interface,
1626 .config = iwlagn_mac_config,
1627 .configure_filter = iwlagn_configure_filter,
1628 .set_key = iwlagn_mac_set_key,
1629 .update_tkip_key = iwlagn_mac_update_tkip_key,
1630 .set_rekey_data = iwlagn_mac_set_rekey_data,
1631 .conf_tx = iwlagn_mac_conf_tx,
1632 .bss_info_changed = iwlagn_bss_info_changed,
1633 .ampdu_action = iwlagn_mac_ampdu_action,
1634 .hw_scan = iwlagn_mac_hw_scan,
1635 .sta_notify = iwlagn_mac_sta_notify,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -08001636 .sta_state = iwlagn_mac_sta_state,
Wey-Yi Guy73356132011-11-10 06:55:11 -08001637 .channel_switch = iwlagn_mac_channel_switch,
1638 .flush = iwlagn_mac_flush,
1639 .tx_last_beacon = iwlagn_mac_tx_last_beacon,
1640 .remain_on_channel = iwlagn_mac_remain_on_channel,
1641 .cancel_remain_on_channel = iwlagn_mac_cancel_remain_on_channel,
1642 .rssi_callback = iwlagn_mac_rssi_callback,
1643 CFG80211_TESTMODE_CMD(iwlagn_mac_testmode_cmd)
1644 CFG80211_TESTMODE_DUMP(iwlagn_mac_testmode_dump)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001645 .set_tim = iwlagn_mac_set_tim,
1646};
1647
1648/* This function both allocates and initializes hw and priv. */
1649struct ieee80211_hw *iwl_alloc_all(void)
1650{
1651 struct iwl_priv *priv;
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001652 struct iwl_op_mode *op_mode;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001653 /* mac80211 allocates memory for this device instance, including
1654 * space for this driver's private structure */
1655 struct ieee80211_hw *hw;
1656
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001657 hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) +
1658 sizeof(struct iwl_op_mode), &iwlagn_hw_ops);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001659 if (!hw)
1660 goto out;
1661
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001662 op_mode = hw->priv;
1663 priv = IWL_OP_MODE_GET_DVM(op_mode);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001664 priv->hw = hw;
1665
1666out:
1667 return hw;
1668}