blob: 5d158ca9d246247c1f4a92fd8fbd4004020ba887 [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"
Wey-Yi Guy73356132011-11-10 06:55:11 -080047#include "iwl-io.h"
48#include "iwl-agn-calib.h"
49#include "iwl-agn.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080050#include "iwl-trans.h"
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +020051#include "iwl-op-mode.h"
Johannes Berg65de7e82012-04-17 07:36:30 -070052#include "iwl-modparams.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 |
Johannes Berg14791772012-04-17 07:39:03 -0700149 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
150 IEEE80211_HW_QUEUE_CONTROL |
151 IEEE80211_HW_SUPPORTS_PS |
152 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
Johannes Berg57897722012-05-11 10:53:18 +0200153 IEEE80211_HW_WANT_MONITOR_VIF |
Johannes Berg14791772012-04-17 07:39:03 -0700154 IEEE80211_HW_SCAN_WHILE_IDLE;
155
156 hw->offchannel_tx_hw_queue = IWL_AUX_QUEUE;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800157
158 /*
159 * Including the following line will crash some AP's. This
160 * workaround removes the stimulus which causes the crash until
161 * the AP software can be fixed.
162 hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
163 */
164
Johannes Berg9e295112012-04-09 17:46:55 -0700165 if (priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800166 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
167 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
168
David Spinadel18c57d32012-03-07 09:52:31 -0800169#ifndef CONFIG_IWLWIFI_EXPERIMENTAL_MFP
170 /* enable 11w if the uCode advertise */
Wey-Yi Guy73356132011-11-10 06:55:11 -0800171 if (capa->flags & IWL_UCODE_TLV_FLAGS_MFP)
David Spinadel18c57d32012-03-07 09:52:31 -0800172#endif /* !CONFIG_IWLWIFI_EXPERIMENTAL_MFP */
Wey-Yi Guy73356132011-11-10 06:55:11 -0800173 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
174
175 hw->sta_data_size = sizeof(struct iwl_station_priv);
176 hw->vif_data_size = sizeof(struct iwl_vif_priv);
177
178 for_each_context(priv, ctx) {
179 hw->wiphy->interface_modes |= ctx->interface_modes;
180 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
181 }
182
183 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
184
185 if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)) {
186 hw->wiphy->iface_combinations = iwlagn_iface_combinations_p2p;
187 hw->wiphy->n_iface_combinations =
188 ARRAY_SIZE(iwlagn_iface_combinations_p2p);
189 } else if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
190 hw->wiphy->iface_combinations =
191 iwlagn_iface_combinations_dualmode;
192 hw->wiphy->n_iface_combinations =
193 ARRAY_SIZE(iwlagn_iface_combinations_dualmode);
194 }
195
196 hw->wiphy->max_remain_on_channel_duration = 1000;
197
198 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
199 WIPHY_FLAG_DISABLE_BEACON_HINTS |
200 WIPHY_FLAG_IBSS_RSN;
201
Johannes Bergfcb6ff52012-06-04 13:43:11 +0200202#ifdef CONFIG_PM_SLEEP
David Spinadel6dfa8d02012-03-10 13:00:14 -0800203 if (priv->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700204 priv->trans->ops->wowlan_suspend &&
205 device_can_wakeup(priv->trans->dev)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800206 hw->wiphy->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
207 WIPHY_WOWLAN_DISCONNECT |
208 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
209 WIPHY_WOWLAN_RFKILL_RELEASE;
Johannes Berg65de7e82012-04-17 07:36:30 -0700210 if (!iwlwifi_mod_params.sw_crypto)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800211 hw->wiphy->wowlan.flags |=
212 WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
213 WIPHY_WOWLAN_GTK_REKEY_FAILURE;
214
215 hw->wiphy->wowlan.n_patterns = IWLAGN_WOWLAN_MAX_PATTERNS;
216 hw->wiphy->wowlan.pattern_min_len =
217 IWLAGN_WOWLAN_MIN_PATTERN_LEN;
218 hw->wiphy->wowlan.pattern_max_len =
219 IWLAGN_WOWLAN_MAX_PATTERN_LEN;
220 }
Johannes Bergfcb6ff52012-06-04 13:43:11 +0200221#endif
Wey-Yi Guy73356132011-11-10 06:55:11 -0800222
Johannes Berg65de7e82012-04-17 07:36:30 -0700223 if (iwlwifi_mod_params.power_save)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800224 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
225 else
226 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
227
228 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
David Spinadel4f9bfbb2012-05-11 10:53:16 +0200229 /* we create the 802.11 header and a max-length SSID element */
230 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 34;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800231
Johannes Berg14791772012-04-17 07:39:03 -0700232 /*
233 * We don't use all queues: 4 and 9 are unused and any
234 * aggregation queue gets mapped down to the AC queue.
235 */
236 hw->queues = IWLAGN_FIRST_AMPDU_QUEUE;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800237
238 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
239
240 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
241 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
242 &priv->bands[IEEE80211_BAND_2GHZ];
243 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
244 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
245 &priv->bands[IEEE80211_BAND_5GHZ];
246
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700247 hw->wiphy->hw_version = priv->trans->hw_id;
Wey-Yi Guy0ba958e2011-12-10 11:33:52 -0800248
Wey-Yi Guy73356132011-11-10 06:55:11 -0800249 iwl_leds_init(priv);
250
251 ret = ieee80211_register_hw(priv->hw);
252 if (ret) {
253 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
254 return ret;
255 }
256 priv->mac80211_registered = 1;
257
258 return 0;
259}
260
Don Fry09af1402011-12-09 10:07:38 -0800261void iwlagn_mac_unregister(struct iwl_priv *priv)
262{
263 if (!priv->mac80211_registered)
264 return;
265 iwl_leds_exit(priv);
266 ieee80211_unregister_hw(priv->hw);
267 priv->mac80211_registered = 0;
268}
269
Wey-Yi Guy73356132011-11-10 06:55:11 -0800270static int __iwl_up(struct iwl_priv *priv)
271{
272 struct iwl_rxon_context *ctx;
273 int ret;
274
Johannes Bergb1eea292012-03-06 13:30:42 -0800275 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800276
Don Fry83626402012-03-07 09:52:37 -0800277 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800278 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
279 return -EIO;
280 }
281
282 for_each_context(priv, ctx) {
283 ret = iwlagn_alloc_bcast_station(priv, ctx);
284 if (ret) {
285 iwl_dealloc_bcast_stations(priv);
286 return ret;
287 }
288 }
289
Johannes Berge1991882012-03-06 13:30:36 -0800290 ret = iwl_run_init_ucode(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800291 if (ret) {
292 IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret);
293 goto error;
294 }
295
Johannes Berge1991882012-03-06 13:30:36 -0800296 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800297 if (ret) {
298 IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret);
299 goto error;
300 }
301
302 ret = iwl_alive_start(priv);
303 if (ret)
304 goto error;
305 return 0;
306
307 error:
Don Fry83626402012-03-07 09:52:37 -0800308 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800309 iwl_down(priv);
Don Fry83626402012-03-07 09:52:37 -0800310 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800311
312 IWL_ERR(priv, "Unable to initialize device.\n");
313 return ret;
314}
315
316static int iwlagn_mac_start(struct ieee80211_hw *hw)
317{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200318 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800319 int ret;
320
321 IWL_DEBUG_MAC80211(priv, "enter\n");
322
323 /* we should be verifying the device is ready to be opened */
Johannes Bergb1eea292012-03-06 13:30:42 -0800324 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800325 ret = __iwl_up(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800326 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800327 if (ret)
328 return ret;
329
330 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
331
332 /* Now we should be done, and the READY bit should be set. */
Don Fry83626402012-03-07 09:52:37 -0800333 if (WARN_ON(!test_bit(STATUS_READY, &priv->status)))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800334 ret = -EIO;
335
336 iwlagn_led_enable(priv);
337
338 priv->is_open = 1;
339 IWL_DEBUG_MAC80211(priv, "leave\n");
340 return 0;
341}
342
David Spinadel50c1e9a2012-04-16 14:43:30 -0700343void iwlagn_mac_stop(struct ieee80211_hw *hw)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800344{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200345 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800346
347 IWL_DEBUG_MAC80211(priv, "enter\n");
348
349 if (!priv->is_open)
350 return;
351
352 priv->is_open = 0;
353
Johannes Bergb1eea292012-03-06 13:30:42 -0800354 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800355 iwl_down(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800356 mutex_unlock(&priv->mutex);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800357
358 iwl_cancel_deferred_work(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800359
Johannes Berg1ee158d2012-02-17 10:07:44 -0800360 flush_workqueue(priv->workqueue);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800361
362 /* User space software may expect getting rfkill changes
Emmanuel Grumbach1df06bd2012-01-09 16:35:08 +0200363 * even if interface is down, trans->down will leave the RF
364 * kill interrupt enabled
365 */
Emmanuel Grumbach218733c2012-03-31 08:28:38 -0700366 iwl_trans_stop_hw(priv->trans, false);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800367
368 IWL_DEBUG_MAC80211(priv, "leave\n");
369}
370
David Spinadel50c1e9a2012-04-16 14:43:30 -0700371void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
372 struct ieee80211_vif *vif,
373 struct cfg80211_gtk_rekey_data *data)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800374{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200375 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800376
Johannes Berg65de7e82012-04-17 07:36:30 -0700377 if (iwlwifi_mod_params.sw_crypto)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800378 return;
379
380 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800381 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800382
383 if (priv->contexts[IWL_RXON_CTX_BSS].vif != vif)
384 goto out;
385
386 memcpy(priv->kek, data->kek, NL80211_KEK_LEN);
387 memcpy(priv->kck, data->kck, NL80211_KCK_LEN);
388 priv->replay_ctr =
389 cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr));
390 priv->have_rekey_data = true;
391
392 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800393 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800394 IWL_DEBUG_MAC80211(priv, "leave\n");
395}
396
397#ifdef CONFIG_PM_SLEEP
Wey-Yi Guy73356132011-11-10 06:55:11 -0800398
David Spinadel50c1e9a2012-04-16 14:43:30 -0700399int iwlagn_mac_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800400{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200401 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800402 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800403 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800404
405 if (WARN_ON(!wowlan))
406 return -EINVAL;
407
408 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800409 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800410
411 /* Don't attempt WoWLAN when not associated, tear down instead. */
412 if (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION ||
413 !iwl_is_associated_ctx(ctx)) {
414 ret = 1;
415 goto out;
416 }
417
Johannes Bergea886a62012-03-07 09:52:15 -0800418 ret = iwlagn_suspend(priv, wowlan);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800419 if (ret)
420 goto error;
421
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700422 device_set_wakeup_enable(priv->trans->dev, true);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800423
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700424 iwl_trans_wowlan_suspend(priv->trans);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800425
426 goto out;
427
428 error:
Johannes Berg15b86bf2012-03-05 11:24:36 -0800429 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800430 iwlagn_prepare_restart(priv);
431 ieee80211_restart_hw(priv->hw);
432 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800433 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800434 IWL_DEBUG_MAC80211(priv, "leave\n");
435
436 return ret;
437}
438
439static int iwlagn_mac_resume(struct ieee80211_hw *hw)
440{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200441 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800442 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
443 struct ieee80211_vif *vif;
444 unsigned long flags;
445 u32 base, status = 0xffffffff;
446 int ret = -EIO;
447
448 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800449 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800450
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700451 iwl_write32(priv->trans, CSR_UCODE_DRV_GP1_CLR,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800452 CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE);
453
Meenakshi Venkataraman2fdfc472012-03-15 13:26:56 -0700454 base = priv->device_pointers.error_event_table;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800455 if (iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700456 spin_lock_irqsave(&priv->trans->reg_lock, flags);
457 ret = iwl_grab_nic_access_silent(priv->trans);
Stanislaw Gruszkabfe4b802012-03-07 09:52:24 -0800458 if (likely(ret == 0)) {
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700459 iwl_write32(priv->trans, HBUS_TARG_MEM_RADDR, base);
460 status = iwl_read32(priv->trans, HBUS_TARG_MEM_RDAT);
461 iwl_release_nic_access(priv->trans);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800462 }
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700463 spin_unlock_irqrestore(&priv->trans->reg_lock, flags);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800464
465#ifdef CONFIG_IWLWIFI_DEBUGFS
466 if (ret == 0) {
Oliver Hartkoppa855f7e2012-03-25 08:43:24 +0200467 const struct fw_img *img;
468
David Spinadel6dfa8d02012-03-10 13:00:14 -0800469 img = &(priv->fw->img[IWL_UCODE_WOWLAN]);
470 if (!priv->wowlan_sram) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800471 priv->wowlan_sram =
David Spinadel6dfa8d02012-03-10 13:00:14 -0800472 kzalloc(img->sec[IWL_UCODE_SECTION_DATA].len,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800473 GFP_KERNEL);
David Spinadel6dfa8d02012-03-10 13:00:14 -0800474 }
Wey-Yi Guy73356132011-11-10 06:55:11 -0800475
476 if (priv->wowlan_sram)
477 _iwl_read_targ_mem_words(
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700478 priv->trans, 0x800000,
David Spinadel6dfa8d02012-03-10 13:00:14 -0800479 priv->wowlan_sram,
480 img->sec[IWL_UCODE_SECTION_DATA].len / 4);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800481 }
482#endif
483 }
484
485 /* we'll clear ctx->vif during iwlagn_prepare_restart() */
486 vif = ctx->vif;
487
Johannes Berg15b86bf2012-03-05 11:24:36 -0800488 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800489
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700490 device_set_wakeup_enable(priv->trans->dev, false);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800491
492 iwlagn_prepare_restart(priv);
493
494 memset((void *)&ctx->active, 0, sizeof(ctx->active));
495 iwl_connection_init_rx_config(priv, ctx);
496 iwlagn_set_rxon_chain(priv, ctx);
497
Johannes Bergb1eea292012-03-06 13:30:42 -0800498 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800499 IWL_DEBUG_MAC80211(priv, "leave\n");
500
501 ieee80211_resume_disconnect(vif);
502
503 return 1;
504}
505
506#endif
507
David Spinadel50c1e9a2012-04-16 14:43:30 -0700508void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800509{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200510 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800511
Wey-Yi Guy73356132011-11-10 06:55:11 -0800512 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
513 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
514
515 if (iwlagn_tx_skb(priv, skb))
516 dev_kfree_skb_any(skb);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800517}
518
David Spinadel50c1e9a2012-04-16 14:43:30 -0700519void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
520 struct ieee80211_vif *vif,
521 struct ieee80211_key_conf *keyconf,
522 struct ieee80211_sta *sta,
523 u32 iv32, u16 *phase1key)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800524{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200525 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800526
527 iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key);
528}
529
David Spinadel50c1e9a2012-04-16 14:43:30 -0700530int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
531 struct ieee80211_vif *vif,
532 struct ieee80211_sta *sta,
533 struct ieee80211_key_conf *key)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800534{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200535 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800536 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
537 struct iwl_rxon_context *ctx = vif_priv->ctx;
538 int ret;
539 bool is_default_wep_key = false;
540
541 IWL_DEBUG_MAC80211(priv, "enter\n");
542
Johannes Berg65de7e82012-04-17 07:36:30 -0700543 if (iwlwifi_mod_params.sw_crypto) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800544 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
545 return -EOPNOTSUPP;
546 }
547
Johannes Berga7e12c82011-11-25 03:20:09 -0800548 switch (key->cipher) {
549 case WLAN_CIPHER_SUITE_TKIP:
550 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
551 /* fall through */
552 case WLAN_CIPHER_SUITE_CCMP:
553 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
554 break;
555 default:
556 break;
557 }
558
Wey-Yi Guy73356132011-11-10 06:55:11 -0800559 /*
560 * We could program these keys into the hardware as well, but we
561 * don't expect much multicast traffic in IBSS and having keys
562 * for more stations is probably more useful.
563 *
564 * Mark key TX-only and return 0.
565 */
566 if (vif->type == NL80211_IFTYPE_ADHOC &&
567 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
568 key->hw_key_idx = WEP_INVALID_OFFSET;
569 return 0;
570 }
571
572 /* If they key was TX-only, accept deletion */
573 if (cmd == DISABLE_KEY && key->hw_key_idx == WEP_INVALID_OFFSET)
574 return 0;
575
Johannes Bergb1eea292012-03-06 13:30:42 -0800576 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800577 iwl_scan_cancel_timeout(priv, 100);
578
579 BUILD_BUG_ON(WEP_INVALID_OFFSET == IWLAGN_HW_KEY_DEFAULT);
580
581 /*
582 * If we are getting WEP group key and we didn't receive any key mapping
583 * so far, we are in legacy wep mode (group key only), otherwise we are
584 * in 1X mode.
585 * In legacy wep mode, we use another host command to the uCode.
586 */
587 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
588 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
589 if (cmd == SET_KEY)
590 is_default_wep_key = !ctx->key_mapping_keys;
591 else
592 is_default_wep_key =
593 key->hw_key_idx == IWLAGN_HW_KEY_DEFAULT;
594 }
595
596
597 switch (cmd) {
598 case SET_KEY:
599 if (is_default_wep_key) {
600 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
601 break;
602 }
603 ret = iwl_set_dynamic_key(priv, vif_priv->ctx, key, sta);
604 if (ret) {
605 /*
606 * can't add key for RX, but we don't need it
607 * in the device for TX so still return 0
608 */
609 ret = 0;
610 key->hw_key_idx = WEP_INVALID_OFFSET;
611 }
612
613 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
614 break;
615 case DISABLE_KEY:
616 if (is_default_wep_key)
617 ret = iwl_remove_default_wep_key(priv, ctx, key);
618 else
619 ret = iwl_remove_dynamic_key(priv, ctx, key, sta);
620
621 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
622 break;
623 default:
624 ret = -EINVAL;
625 }
626
Johannes Bergb1eea292012-03-06 13:30:42 -0800627 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800628 IWL_DEBUG_MAC80211(priv, "leave\n");
629
630 return ret;
631}
632
David Spinadel50c1e9a2012-04-16 14:43:30 -0700633int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
634 struct ieee80211_vif *vif,
635 enum ieee80211_ampdu_mlme_action action,
636 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
637 u8 buf_size)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800638{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200639 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800640 int ret = -EINVAL;
641 struct iwl_station_priv *sta_priv = (void *) sta->drv_priv;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800642
643 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
644 sta->addr, tid);
645
Johannes Berg9e295112012-04-09 17:46:55 -0700646 if (!(priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800647 return -EACCES;
648
649 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800650 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800651
652 switch (action) {
653 case IEEE80211_AMPDU_RX_START:
Johannes Berg65de7e82012-04-17 07:36:30 -0700654 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
Johannes Berg74289942011-12-13 00:07:40 -0800655 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800656 IWL_DEBUG_HT(priv, "start Rx\n");
657 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
658 break;
659 case IEEE80211_AMPDU_RX_STOP:
660 IWL_DEBUG_HT(priv, "stop Rx\n");
661 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800662 break;
663 case IEEE80211_AMPDU_TX_START:
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -0700664 if (!priv->trans->ops->tx_agg_setup)
Johannes Berg9eae88f2012-03-15 13:26:52 -0700665 break;
Johannes Berg65de7e82012-04-17 07:36:30 -0700666 if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
Johannes Berg74289942011-12-13 00:07:40 -0800667 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800668 IWL_DEBUG_HT(priv, "start Tx\n");
669 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
670 break;
671 case IEEE80211_AMPDU_TX_STOP:
672 IWL_DEBUG_HT(priv, "stop Tx\n");
673 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
674 if ((ret == 0) && (priv->agg_tids_count > 0)) {
675 priv->agg_tids_count--;
676 IWL_DEBUG_HT(priv, "priv->agg_tids_count = %u\n",
677 priv->agg_tids_count);
678 }
Johannes Bergb9ad70d2012-03-06 13:30:55 -0800679 if (!priv->agg_tids_count &&
Johannes Berg9e295112012-04-09 17:46:55 -0700680 priv->hw_params.use_rts_for_aggregation) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800681 /*
682 * switch off RTS/CTS if it was previously enabled
683 */
684 sta_priv->lq_sta.lq.general_params.flags &=
685 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
686 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
687 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
688 }
689 break;
690 case IEEE80211_AMPDU_TX_OPERATIONAL:
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +0200691 ret = iwlagn_tx_agg_oper(priv, vif, sta, tid, buf_size);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800692 break;
693 }
Johannes Bergb1eea292012-03-06 13:30:42 -0800694 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800695 IWL_DEBUG_MAC80211(priv, "leave\n");
696 return ret;
697}
698
699static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
700 struct ieee80211_vif *vif,
701 struct ieee80211_sta *sta)
702{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200703 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800704 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
705 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
706 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800707 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800708 u8 sta_id;
709
Wey-Yi Guy73356132011-11-10 06:55:11 -0800710 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
711 sta->addr);
712 sta_priv->sta_id = IWL_INVALID_STATION;
713
714 atomic_set(&sta_priv->pending_frames, 0);
715 if (vif->type == NL80211_IFTYPE_AP)
716 sta_priv->client = true;
717
718 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
719 is_ap, sta, &sta_id);
720 if (ret) {
721 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
722 sta->addr, ret);
723 /* Should we return success if return code is EEXIST ? */
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800724 return ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800725 }
726
727 sta_priv->sta_id = sta_id;
728
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800729 return 0;
730}
731
732static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
733 struct ieee80211_vif *vif,
734 struct ieee80211_sta *sta)
735{
736 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
737 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
738 int ret;
739
Johannes Berg97420512012-03-07 09:52:42 -0800740 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n", sta->addr);
741
742 if (vif->type == NL80211_IFTYPE_STATION) {
743 /*
744 * Station will be removed from device when the RXON
745 * is set to unassociated -- just deactivate it here
746 * to avoid re-programming it.
747 */
748 ret = 0;
749 iwl_deactivate_station(priv, sta_priv->sta_id, sta->addr);
750 } else {
751 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
752 if (ret)
753 IWL_DEBUG_QUIET_RFKILL(priv,
754 "Error removing station %pM\n", sta->addr);
755 }
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800756 return ret;
757}
758
David Spinadel50c1e9a2012-04-16 14:43:30 -0700759int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
760 struct ieee80211_vif *vif,
761 struct ieee80211_sta *sta,
762 enum ieee80211_sta_state old_state,
763 enum ieee80211_sta_state new_state)
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800764{
765 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800766 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800767 enum {
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800768 NONE, ADD, REMOVE, HT_RATE_INIT, ADD_RATE_INIT,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800769 } op = NONE;
770 int ret;
771
772 IWL_DEBUG_MAC80211(priv, "station %pM state change %d->%d\n",
773 sta->addr, old_state, new_state);
774
Johannes Bergb1eea292012-03-06 13:30:42 -0800775 mutex_lock(&priv->mutex);
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800776 if (vif->type == NL80211_IFTYPE_STATION) {
777 if (old_state == IEEE80211_STA_NOTEXIST &&
778 new_state == IEEE80211_STA_NONE)
779 op = ADD;
780 else if (old_state == IEEE80211_STA_NONE &&
781 new_state == IEEE80211_STA_NOTEXIST)
782 op = REMOVE;
783 else if (old_state == IEEE80211_STA_AUTH &&
784 new_state == IEEE80211_STA_ASSOC)
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800785 op = HT_RATE_INIT;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800786 } else {
787 if (old_state == IEEE80211_STA_AUTH &&
788 new_state == IEEE80211_STA_ASSOC)
789 op = ADD_RATE_INIT;
790 else if (old_state == IEEE80211_STA_ASSOC &&
791 new_state == IEEE80211_STA_AUTH)
792 op = REMOVE;
793 }
794
795 switch (op) {
796 case ADD:
797 ret = iwlagn_mac_sta_add(hw, vif, sta);
798 break;
799 case REMOVE:
800 ret = iwlagn_mac_sta_remove(hw, vif, sta);
801 break;
802 case ADD_RATE_INIT:
803 ret = iwlagn_mac_sta_add(hw, vif, sta);
804 if (ret)
805 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800806 /* Initialize rate scaling */
807 IWL_DEBUG_INFO(priv,
808 "Initializing rate scaling for station %pM\n",
809 sta->addr);
810 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
811 ret = 0;
812 break;
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800813 case HT_RATE_INIT:
814 /* Initialize rate scaling */
815 ret = iwl_sta_update_ht(priv, vif_priv->ctx, sta);
816 if (ret)
817 break;
818 IWL_DEBUG_INFO(priv,
819 "Initializing rate scaling for station %pM\n",
820 sta->addr);
821 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
822 ret = 0;
823 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800824 default:
825 ret = 0;
826 break;
827 }
828
829 /*
830 * mac80211 might WARN if we fail, but due the way we
831 * (badly) handle hard rfkill, we might fail here
832 */
Don Fry83626402012-03-07 09:52:37 -0800833 if (iwl_is_rfkill(priv))
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800834 ret = 0;
835
Johannes Bergb1eea292012-03-06 13:30:42 -0800836 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800837 IWL_DEBUG_MAC80211(priv, "leave\n");
838
839 return ret;
840}
841
David Spinadel50c1e9a2012-04-16 14:43:30 -0700842void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
843 struct ieee80211_channel_switch *ch_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800844{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200845 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800846 const struct iwl_channel_info *ch_info;
847 struct ieee80211_conf *conf = &hw->conf;
848 struct ieee80211_channel *channel = ch_switch->channel;
849 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
850 /*
851 * MULTI-FIXME
852 * When we add support for multiple interfaces, we need to
853 * revisit this. The channel switch command in the device
854 * only affects the BSS context, but what does that really
855 * mean? And what if we get a CSA on the second interface?
856 * This needs a lot of work.
857 */
858 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
859 u16 ch;
860
861 IWL_DEBUG_MAC80211(priv, "enter\n");
862
Johannes Bergb1eea292012-03-06 13:30:42 -0800863 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800864
Don Fry83626402012-03-07 09:52:37 -0800865 if (iwl_is_rfkill(priv))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800866 goto out;
867
Don Fry83626402012-03-07 09:52:37 -0800868 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
869 test_bit(STATUS_SCANNING, &priv->status) ||
870 test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800871 goto out;
872
873 if (!iwl_is_associated_ctx(ctx))
874 goto out;
875
Johannes Berge9676692012-04-10 14:10:28 -0700876 if (!priv->lib->set_channel_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800877 goto out;
878
879 ch = channel->hw_value;
880 if (le16_to_cpu(ctx->active.channel) == ch)
881 goto out;
882
883 ch_info = iwl_get_channel_info(priv, channel->band, ch);
884 if (!is_channel_valid(ch_info)) {
885 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
886 goto out;
887 }
888
Wey-Yi Guy73356132011-11-10 06:55:11 -0800889 priv->current_ht_config.smps = conf->smps_mode;
890
891 /* Configure HT40 channels */
892 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy137ce792011-11-22 16:23:35 -0800893 if (ctx->ht.enabled)
894 iwlagn_config_ht40(conf, ctx);
895 else
Wey-Yi Guy73356132011-11-10 06:55:11 -0800896 ctx->ht.is_40mhz = false;
897
898 if ((le16_to_cpu(ctx->staging.channel) != ch))
899 ctx->staging.flags = 0;
900
901 iwl_set_rxon_channel(priv, channel, ctx);
902 iwl_set_rxon_ht(priv, ht_conf);
903 iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif);
904
Wey-Yi Guy73356132011-11-10 06:55:11 -0800905 /*
906 * at this point, staging_rxon has the
907 * configuration for channel switch
908 */
Don Fry83626402012-03-07 09:52:37 -0800909 set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800910 priv->switch_channel = cpu_to_le16(ch);
Johannes Berge9676692012-04-10 14:10:28 -0700911 if (priv->lib->set_channel_switch(priv, ch_switch)) {
Don Fry83626402012-03-07 09:52:37 -0800912 clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800913 priv->switch_channel = 0;
914 ieee80211_chswitch_done(ctx->vif, false);
915 }
916
917out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800918 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800919 IWL_DEBUG_MAC80211(priv, "leave\n");
920}
921
Meenakshi Venkataramanbedec3a2012-03-13 17:47:23 -0700922void iwl_chswitch_done(struct iwl_priv *priv, bool is_success)
923{
924 /*
925 * MULTI-FIXME
926 * See iwlagn_mac_channel_switch.
927 */
928 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
929
930 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
931 return;
932
933 if (test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
934 ieee80211_chswitch_done(ctx->vif, is_success);
935}
936
David Spinadel50c1e9a2012-04-16 14:43:30 -0700937void iwlagn_configure_filter(struct ieee80211_hw *hw,
938 unsigned int changed_flags,
939 unsigned int *total_flags,
940 u64 multicast)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800941{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200942 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800943 __le32 filter_or = 0, filter_nand = 0;
944 struct iwl_rxon_context *ctx;
945
946#define CHK(test, flag) do { \
947 if (*total_flags & (test)) \
948 filter_or |= (flag); \
949 else \
950 filter_nand |= (flag); \
951 } while (0)
952
953 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
954 changed_flags, *total_flags);
955
956 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
957 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
958 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
959 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
960
961#undef CHK
962
Johannes Bergb1eea292012-03-06 13:30:42 -0800963 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800964
965 for_each_context(priv, ctx) {
966 ctx->staging.filter_flags &= ~filter_nand;
967 ctx->staging.filter_flags |= filter_or;
968
969 /*
970 * Not committing directly because hardware can perform a scan,
971 * but we'll eventually commit the filter flags change anyway.
972 */
973 }
974
Johannes Bergb1eea292012-03-06 13:30:42 -0800975 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800976
977 /*
978 * Receiving all multicast frames is always enabled by the
979 * default flags setup in iwl_connection_init_rx_config()
980 * since we currently do not support programming multicast
981 * filters into the device.
982 */
983 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
984 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
985}
986
David Spinadel50c1e9a2012-04-16 14:43:30 -0700987void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800988{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200989 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800990
Johannes Bergb1eea292012-03-06 13:30:42 -0800991 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800992 IWL_DEBUG_MAC80211(priv, "enter\n");
993
Don Fry83626402012-03-07 09:52:37 -0800994 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800995 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
996 goto done;
997 }
Don Fry83626402012-03-07 09:52:37 -0800998 if (iwl_is_rfkill(priv)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800999 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
1000 goto done;
1001 }
1002
1003 /*
1004 * mac80211 will not push any more frames for transmit
1005 * until the flush is completed
1006 */
1007 if (drop) {
1008 IWL_DEBUG_MAC80211(priv, "send flush command\n");
1009 if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
1010 IWL_ERR(priv, "flush request fail\n");
1011 goto done;
1012 }
1013 }
1014 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
Emmanuel Grumbach68e8dfd2012-04-18 07:28:17 -07001015 iwl_trans_wait_tx_queue_empty(priv->trans);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001016done:
Johannes Bergb1eea292012-03-06 13:30:42 -08001017 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001018 IWL_DEBUG_MAC80211(priv, "leave\n");
1019}
1020
1021static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
1022 struct ieee80211_channel *channel,
1023 enum nl80211_channel_type channel_type,
1024 int duration)
1025{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001026 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001027 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_PAN];
1028 int err = 0;
1029
Johannes Berga18f61b2012-03-15 13:26:53 -07001030 if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
Wey-Yi Guy73356132011-11-10 06:55:11 -08001031 return -EOPNOTSUPP;
1032
1033 if (!(ctx->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)))
1034 return -EOPNOTSUPP;
1035
1036 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001037 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001038
Don Fry83626402012-03-07 09:52:37 -08001039 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001040 err = -EBUSY;
1041 goto out;
1042 }
1043
1044 priv->hw_roc_channel = channel;
1045 priv->hw_roc_chantype = channel_type;
Johannes Berg3ddf6be2011-11-10 06:55:21 -08001046 /* convert from ms to TU */
1047 priv->hw_roc_duration = DIV_ROUND_UP(1000 * duration, 1024);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001048 priv->hw_roc_start_notified = false;
1049 cancel_delayed_work(&priv->hw_roc_disable_work);
1050
1051 if (!ctx->is_active) {
Johannes Berga69cd042011-11-10 06:55:13 -08001052 static const struct iwl_qos_info default_qos_data = {
1053 .def_qos_parm = {
1054 .ac[0] = {
1055 .cw_min = cpu_to_le16(3),
1056 .cw_max = cpu_to_le16(7),
1057 .aifsn = 2,
1058 .edca_txop = cpu_to_le16(1504),
1059 },
1060 .ac[1] = {
1061 .cw_min = cpu_to_le16(7),
1062 .cw_max = cpu_to_le16(15),
1063 .aifsn = 2,
1064 .edca_txop = cpu_to_le16(3008),
1065 },
1066 .ac[2] = {
1067 .cw_min = cpu_to_le16(15),
1068 .cw_max = cpu_to_le16(1023),
1069 .aifsn = 3,
1070 },
1071 .ac[3] = {
1072 .cw_min = cpu_to_le16(15),
1073 .cw_max = cpu_to_le16(1023),
1074 .aifsn = 7,
1075 },
1076 },
1077 };
1078
Wey-Yi Guy73356132011-11-10 06:55:11 -08001079 ctx->is_active = true;
Johannes Berga69cd042011-11-10 06:55:13 -08001080 ctx->qos_data = default_qos_data;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001081 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
1082 memcpy(ctx->staging.node_addr,
1083 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1084 ETH_ALEN);
1085 memcpy(ctx->staging.bssid_addr,
1086 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1087 ETH_ALEN);
1088 err = iwlagn_commit_rxon(priv, ctx);
1089 if (err)
1090 goto out;
1091 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK |
1092 RXON_FILTER_PROMISC_MSK |
1093 RXON_FILTER_CTL2HOST_MSK;
1094
1095 err = iwlagn_commit_rxon(priv, ctx);
1096 if (err) {
1097 iwlagn_disable_roc(priv);
1098 goto out;
1099 }
1100 priv->hw_roc_setup = true;
1101 }
1102
1103 err = iwl_scan_initiate(priv, ctx->vif, IWL_SCAN_ROC, channel->band);
1104 if (err)
1105 iwlagn_disable_roc(priv);
1106
1107 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001108 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001109 IWL_DEBUG_MAC80211(priv, "leave\n");
1110
1111 return err;
1112}
1113
David Spinadel50c1e9a2012-04-16 14:43:30 -07001114int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001115{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001116 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001117
Johannes Berga18f61b2012-03-15 13:26:53 -07001118 if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
Wey-Yi Guy73356132011-11-10 06:55:11 -08001119 return -EOPNOTSUPP;
1120
1121 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001122 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001123 iwl_scan_cancel_timeout(priv, priv->hw_roc_duration);
1124 iwlagn_disable_roc(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -08001125 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001126 IWL_DEBUG_MAC80211(priv, "leave\n");
1127
1128 return 0;
1129}
1130
David Spinadel50c1e9a2012-04-16 14:43:30 -07001131void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
1132 enum ieee80211_rssi_event rssi_event)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001133{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001134 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001135
1136 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001137 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001138
Emmanuel Grumbach21522682012-03-22 17:51:44 +02001139 if (priv->cfg->bt_params &&
1140 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001141 if (rssi_event == RSSI_EVENT_LOW)
1142 priv->bt_enable_pspoll = true;
1143 else if (rssi_event == RSSI_EVENT_HIGH)
1144 priv->bt_enable_pspoll = false;
1145
1146 iwlagn_send_advance_bt_config(priv);
1147 } else {
1148 IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled,"
1149 "ignoring RSSI callback\n");
1150 }
1151
Johannes Bergb1eea292012-03-06 13:30:42 -08001152 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001153 IWL_DEBUG_MAC80211(priv, "leave\n");
1154}
1155
David Spinadel50c1e9a2012-04-16 14:43:30 -07001156int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
1157 struct ieee80211_sta *sta, bool set)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001158{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001159 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001160
Johannes Berg1ee158d2012-02-17 10:07:44 -08001161 queue_work(priv->workqueue, &priv->beacon_update);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001162
1163 return 0;
1164}
1165
David Spinadel50c1e9a2012-04-16 14:43:30 -07001166int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
1167 struct ieee80211_vif *vif, u16 queue,
1168 const struct ieee80211_tx_queue_params *params)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001169{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001170 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001171 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1172 struct iwl_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001173 int q;
1174
1175 if (WARN_ON(!ctx))
1176 return -EINVAL;
1177
1178 IWL_DEBUG_MAC80211(priv, "enter\n");
1179
Don Fry83626402012-03-07 09:52:37 -08001180 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001181 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
1182 return -EIO;
1183 }
1184
1185 if (queue >= AC_NUM) {
1186 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
1187 return 0;
1188 }
1189
1190 q = AC_NUM - 1 - queue;
1191
Johannes Bergb1eea292012-03-06 13:30:42 -08001192 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001193
1194 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1195 cpu_to_le16(params->cw_min);
1196 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1197 cpu_to_le16(params->cw_max);
1198 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1199 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1200 cpu_to_le16((params->txop * 32));
1201
1202 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1203
Johannes Bergb1eea292012-03-06 13:30:42 -08001204 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001205
1206 IWL_DEBUG_MAC80211(priv, "leave\n");
1207 return 0;
1208}
1209
David Spinadel50c1e9a2012-04-16 14:43:30 -07001210int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001211{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001212 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001213
1214 return priv->ibss_manager == IWL_IBSS_MANAGER;
1215}
1216
1217static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
1218{
1219 iwl_connection_init_rx_config(priv, ctx);
1220
1221 iwlagn_set_rxon_chain(priv, ctx);
1222
1223 return iwlagn_commit_rxon(priv, ctx);
1224}
1225
David Spinadel50c1e9a2012-04-16 14:43:30 -07001226int iwl_setup_interface(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001227{
1228 struct ieee80211_vif *vif = ctx->vif;
Johannes Berg14791772012-04-17 07:39:03 -07001229 int err, ac;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001230
Johannes Bergb1eea292012-03-06 13:30:42 -08001231 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001232
1233 /*
1234 * This variable will be correct only when there's just
1235 * a single context, but all code using it is for hardware
1236 * that supports only one context.
1237 */
1238 priv->iw_mode = vif->type;
1239
1240 ctx->is_active = true;
1241
1242 err = iwl_set_mode(priv, ctx);
1243 if (err) {
1244 if (!ctx->always_active)
1245 ctx->is_active = false;
1246 return err;
1247 }
1248
Emmanuel Grumbach21522682012-03-22 17:51:44 +02001249 if (priv->cfg->bt_params && priv->cfg->bt_params->advanced_bt_coexist &&
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001250 vif->type == NL80211_IFTYPE_ADHOC) {
1251 /*
1252 * pretend to have high BT traffic as long as we
1253 * are operating in IBSS mode, as this will cause
1254 * the rate scaling etc. to behave as intended.
1255 */
1256 priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
1257 }
1258
Johannes Berg14791772012-04-17 07:39:03 -07001259 /* set up queue mappings */
1260 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1261 vif->hw_queue[ac] = ctx->ac_to_queue[ac];
1262
1263 if (vif->type == NL80211_IFTYPE_AP)
1264 vif->cab_queue = ctx->mcast_queue;
1265 else
1266 vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
1267
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001268 return 0;
1269}
1270
1271static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
Johannes Berg14791772012-04-17 07:39:03 -07001272 struct ieee80211_vif *vif)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001273{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001274 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001275 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1276 struct iwl_rxon_context *tmp, *ctx = NULL;
1277 int err;
1278 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif);
Stanislaw Gruszka8db4c7e2012-04-18 08:01:15 -07001279 bool reset = false;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001280
1281 IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
1282 viftype, vif->addr);
1283
1284 cancel_delayed_work_sync(&priv->hw_roc_disable_work);
1285
Johannes Bergb1eea292012-03-06 13:30:42 -08001286 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001287
1288 iwlagn_disable_roc(priv);
1289
Don Fry83626402012-03-07 09:52:37 -08001290 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001291 IWL_WARN(priv, "Try to add interface when device not ready\n");
1292 err = -EINVAL;
1293 goto out;
1294 }
1295
1296 for_each_context(priv, tmp) {
1297 u32 possible_modes =
1298 tmp->interface_modes | tmp->exclusive_interface_modes;
1299
1300 if (tmp->vif) {
Stanislaw Gruszka8db4c7e2012-04-18 08:01:15 -07001301 /* On reset we need to add the same interface again */
1302 if (tmp->vif == vif) {
1303 reset = true;
1304 ctx = tmp;
1305 break;
1306 }
1307
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001308 /* check if this busy context is exclusive */
1309 if (tmp->exclusive_interface_modes &
1310 BIT(tmp->vif->type)) {
1311 err = -EINVAL;
1312 goto out;
1313 }
1314 continue;
1315 }
1316
1317 if (!(possible_modes & BIT(viftype)))
1318 continue;
1319
1320 /* have maybe usable context w/o interface */
1321 ctx = tmp;
1322 break;
1323 }
1324
1325 if (!ctx) {
1326 err = -EOPNOTSUPP;
1327 goto out;
1328 }
1329
1330 vif_priv->ctx = ctx;
1331 ctx->vif = vif;
1332
1333 err = iwl_setup_interface(priv, ctx);
Stanislaw Gruszka8db4c7e2012-04-18 08:01:15 -07001334 if (!err || reset)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001335 goto out;
1336
1337 ctx->vif = NULL;
1338 priv->iw_mode = NL80211_IFTYPE_STATION;
1339 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001340 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001341
1342 IWL_DEBUG_MAC80211(priv, "leave\n");
1343 return err;
1344}
1345
David Spinadel50c1e9a2012-04-16 14:43:30 -07001346void iwl_teardown_interface(struct iwl_priv *priv,
1347 struct ieee80211_vif *vif,
1348 bool mode_change)
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001349{
1350 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1351
Johannes Bergb1eea292012-03-06 13:30:42 -08001352 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001353
1354 if (priv->scan_vif == vif) {
1355 iwl_scan_cancel_timeout(priv, 200);
1356 iwl_force_scan_end(priv);
1357 }
1358
1359 if (!mode_change) {
1360 iwl_set_mode(priv, ctx);
1361 if (!ctx->always_active)
1362 ctx->is_active = false;
1363 }
1364
1365 /*
1366 * When removing the IBSS interface, overwrite the
1367 * BT traffic load with the stored one from the last
1368 * notification, if any. If this is a device that
1369 * doesn't implement this, this has no effect since
1370 * both values are the same and zero.
1371 */
1372 if (vif->type == NL80211_IFTYPE_ADHOC)
1373 priv->bt_traffic_load = priv->last_bt_traffic_load;
1374}
1375
1376static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw,
1377 struct ieee80211_vif *vif)
1378{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001379 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001380 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1381
1382 IWL_DEBUG_MAC80211(priv, "enter\n");
1383
Johannes Bergb1eea292012-03-06 13:30:42 -08001384 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001385
1386 if (WARN_ON(ctx->vif != vif)) {
1387 struct iwl_rxon_context *tmp;
1388 IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
1389 for_each_context(priv, tmp)
1390 IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
1391 tmp->ctxid, tmp, tmp->vif);
1392 }
1393 ctx->vif = NULL;
1394
1395 iwl_teardown_interface(priv, vif, false);
1396
Johannes Bergb1eea292012-03-06 13:30:42 -08001397 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001398
1399 IWL_DEBUG_MAC80211(priv, "leave\n");
1400
1401}
1402
1403static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
1404 struct ieee80211_vif *vif,
1405 enum nl80211_iftype newtype, bool newp2p)
1406{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001407 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001408 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1409 struct iwl_rxon_context *bss_ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1410 struct iwl_rxon_context *tmp;
1411 enum nl80211_iftype newviftype = newtype;
1412 u32 interface_modes;
1413 int err;
1414
1415 IWL_DEBUG_MAC80211(priv, "enter\n");
1416
1417 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1418
Johannes Bergb1eea292012-03-06 13:30:42 -08001419 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001420
Don Fry83626402012-03-07 09:52:37 -08001421 if (!ctx->vif || !iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001422 /*
1423 * Huh? But wait ... this can maybe happen when
1424 * we're in the middle of a firmware restart!
1425 */
1426 err = -EBUSY;
1427 goto out;
1428 }
1429
1430 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
1431
1432 if (!(interface_modes & BIT(newtype))) {
1433 err = -EBUSY;
1434 goto out;
1435 }
1436
1437 /*
1438 * Refuse a change that should be done by moving from the PAN
1439 * context to the BSS context instead, if the BSS context is
1440 * available and can support the new interface type.
1441 */
1442 if (ctx->ctxid == IWL_RXON_CTX_PAN && !bss_ctx->vif &&
1443 (bss_ctx->interface_modes & BIT(newtype) ||
1444 bss_ctx->exclusive_interface_modes & BIT(newtype))) {
1445 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
1446 err = -EBUSY;
1447 goto out;
1448 }
1449
1450 if (ctx->exclusive_interface_modes & BIT(newtype)) {
1451 for_each_context(priv, tmp) {
1452 if (ctx == tmp)
1453 continue;
1454
1455 if (!tmp->vif)
1456 continue;
1457
1458 /*
1459 * The current mode switch would be exclusive, but
1460 * another context is active ... refuse the switch.
1461 */
1462 err = -EBUSY;
1463 goto out;
1464 }
1465 }
1466
1467 /* success */
1468 iwl_teardown_interface(priv, vif, true);
1469 vif->type = newviftype;
1470 vif->p2p = newp2p;
1471 err = iwl_setup_interface(priv, ctx);
1472 WARN_ON(err);
1473 /*
1474 * We've switched internally, but submitting to the
1475 * device may have failed for some reason. Mask this
1476 * error, because otherwise mac80211 will not switch
1477 * (and set the interface type back) and we'll be
1478 * out of sync with it.
1479 */
1480 err = 0;
1481
1482 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001483 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001484 IWL_DEBUG_MAC80211(priv, "leave\n");
1485
1486 return err;
1487}
1488
David Spinadel50c1e9a2012-04-16 14:43:30 -07001489int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
1490 struct ieee80211_vif *vif,
1491 struct cfg80211_scan_request *req)
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001492{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001493 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001494 int ret;
1495
1496 IWL_DEBUG_MAC80211(priv, "enter\n");
1497
1498 if (req->n_channels == 0)
1499 return -EINVAL;
1500
Johannes Bergb1eea292012-03-06 13:30:42 -08001501 mutex_lock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001502
1503 /*
1504 * If an internal scan is in progress, just set
1505 * up the scan_request as per above.
1506 */
1507 if (priv->scan_type != IWL_SCAN_NORMAL) {
1508 IWL_DEBUG_SCAN(priv,
1509 "SCAN request during internal scan - defer\n");
1510 priv->scan_request = req;
1511 priv->scan_vif = vif;
1512 ret = 0;
1513 } else {
1514 priv->scan_request = req;
1515 priv->scan_vif = vif;
1516 /*
1517 * mac80211 will only ask for one band at a time
1518 * so using channels[0] here is ok
1519 */
1520 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
1521 req->channels[0]->band);
1522 if (ret) {
1523 priv->scan_request = NULL;
1524 priv->scan_vif = NULL;
1525 }
1526 }
1527
1528 IWL_DEBUG_MAC80211(priv, "leave\n");
1529
Johannes Bergb1eea292012-03-06 13:30:42 -08001530 mutex_unlock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001531
1532 return ret;
1533}
1534
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001535static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
1536{
Johannes Berg9451ca12012-03-05 11:24:23 -08001537 struct iwl_addsta_cmd cmd = {
1538 .mode = STA_CONTROL_MODIFY_MSK,
1539 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1540 .sta.sta_id = sta_id,
1541 };
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001542
Johannes Berg9451ca12012-03-05 11:24:23 -08001543 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001544}
1545
David Spinadel50c1e9a2012-04-16 14:43:30 -07001546void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001547 struct ieee80211_vif *vif,
1548 enum sta_notify_cmd cmd,
1549 struct ieee80211_sta *sta)
1550{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001551 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001552 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1553 int sta_id;
1554
1555 IWL_DEBUG_MAC80211(priv, "enter\n");
1556
1557 switch (cmd) {
1558 case STA_NOTIFY_SLEEP:
1559 WARN_ON(!sta_priv->client);
1560 sta_priv->asleep = true;
1561 if (atomic_read(&sta_priv->pending_frames) > 0)
1562 ieee80211_sta_block_awake(hw, sta, true);
1563 break;
1564 case STA_NOTIFY_AWAKE:
1565 WARN_ON(!sta_priv->client);
1566 if (!sta_priv->asleep)
1567 break;
1568 sta_priv->asleep = false;
1569 sta_id = iwl_sta_id(sta);
1570 if (sta_id != IWL_INVALID_STATION)
1571 iwl_sta_modify_ps_wake(priv, sta_id);
1572 break;
1573 default:
1574 break;
1575 }
1576 IWL_DEBUG_MAC80211(priv, "leave\n");
1577}
1578
Wey-Yi Guy73356132011-11-10 06:55:11 -08001579struct ieee80211_ops iwlagn_hw_ops = {
1580 .tx = iwlagn_mac_tx,
1581 .start = iwlagn_mac_start,
1582 .stop = iwlagn_mac_stop,
1583#ifdef CONFIG_PM_SLEEP
1584 .suspend = iwlagn_mac_suspend,
1585 .resume = iwlagn_mac_resume,
1586#endif
1587 .add_interface = iwlagn_mac_add_interface,
1588 .remove_interface = iwlagn_mac_remove_interface,
1589 .change_interface = iwlagn_mac_change_interface,
1590 .config = iwlagn_mac_config,
1591 .configure_filter = iwlagn_configure_filter,
1592 .set_key = iwlagn_mac_set_key,
1593 .update_tkip_key = iwlagn_mac_update_tkip_key,
1594 .set_rekey_data = iwlagn_mac_set_rekey_data,
1595 .conf_tx = iwlagn_mac_conf_tx,
1596 .bss_info_changed = iwlagn_bss_info_changed,
1597 .ampdu_action = iwlagn_mac_ampdu_action,
1598 .hw_scan = iwlagn_mac_hw_scan,
1599 .sta_notify = iwlagn_mac_sta_notify,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -08001600 .sta_state = iwlagn_mac_sta_state,
Wey-Yi Guy73356132011-11-10 06:55:11 -08001601 .channel_switch = iwlagn_mac_channel_switch,
1602 .flush = iwlagn_mac_flush,
1603 .tx_last_beacon = iwlagn_mac_tx_last_beacon,
1604 .remain_on_channel = iwlagn_mac_remain_on_channel,
1605 .cancel_remain_on_channel = iwlagn_mac_cancel_remain_on_channel,
1606 .rssi_callback = iwlagn_mac_rssi_callback,
1607 CFG80211_TESTMODE_CMD(iwlagn_mac_testmode_cmd)
1608 CFG80211_TESTMODE_DUMP(iwlagn_mac_testmode_dump)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001609 .set_tim = iwlagn_mac_set_tim,
1610};
1611
1612/* This function both allocates and initializes hw and priv. */
1613struct ieee80211_hw *iwl_alloc_all(void)
1614{
1615 struct iwl_priv *priv;
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001616 struct iwl_op_mode *op_mode;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001617 /* mac80211 allocates memory for this device instance, including
1618 * space for this driver's private structure */
1619 struct ieee80211_hw *hw;
1620
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001621 hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) +
1622 sizeof(struct iwl_op_mode), &iwlagn_hw_ops);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001623 if (!hw)
1624 goto out;
1625
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001626 op_mode = hw->priv;
1627 priv = IWL_OP_MODE_GET_DVM(op_mode);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001628 priv->hw = hw;
1629
1630out:
1631 return hw;
1632}