blob: d98249369784fa1725c7f786b6ddd52232b551b6 [file] [log] [blame]
Wey-Yi Guy73356132011-11-10 06:55:11 -08001/******************************************************************************
2 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08003 * Copyright(c) 2003 - 2012 Intel Corporation. All rights reserved.
Wey-Yi Guy73356132011-11-10 06:55:11 -08004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/slab.h>
33#include <linux/dma-mapping.h>
34#include <linux/delay.h>
35#include <linux/sched.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
Wey-Yi Guy73356132011-11-10 06:55:11 -080038#include <linux/etherdevice.h>
39#include <linux/if_arp.h>
40
41#include <net/mac80211.h>
42
43#include <asm/div64.h>
44
45#include "iwl-eeprom.h"
46#include "iwl-dev.h"
47#include "iwl-core.h"
48#include "iwl-io.h"
49#include "iwl-agn-calib.h"
50#include "iwl-agn.h"
51#include "iwl-shared.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080052#include "iwl-trans.h"
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +020053#include "iwl-op-mode.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080054
55/*****************************************************************************
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 |
148 IEEE80211_HW_NEED_DTIM_PERIOD |
149 IEEE80211_HW_SPECTRUM_MGMT |
150 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
151
152 /*
153 * Including the following line will crash some AP's. This
154 * workaround removes the stimulus which causes the crash until
155 * the AP software can be fixed.
156 hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
157 */
158
159 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
Johannes Berge5610382012-03-15 13:26:51 -0700160 IEEE80211_HW_SUPPORTS_DYNAMIC_PS |
161 IEEE80211_HW_SCAN_WHILE_IDLE;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800162
Johannes Berg9e295112012-04-09 17:46:55 -0700163 if (priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800164 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
165 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
166
David Spinadel18c57d32012-03-07 09:52:31 -0800167#ifndef CONFIG_IWLWIFI_EXPERIMENTAL_MFP
168 /* enable 11w if the uCode advertise */
Wey-Yi Guy73356132011-11-10 06:55:11 -0800169 if (capa->flags & IWL_UCODE_TLV_FLAGS_MFP)
David Spinadel18c57d32012-03-07 09:52:31 -0800170#endif /* !CONFIG_IWLWIFI_EXPERIMENTAL_MFP */
Wey-Yi Guy73356132011-11-10 06:55:11 -0800171 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
172
173 hw->sta_data_size = sizeof(struct iwl_station_priv);
174 hw->vif_data_size = sizeof(struct iwl_vif_priv);
175
176 for_each_context(priv, ctx) {
177 hw->wiphy->interface_modes |= ctx->interface_modes;
178 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
179 }
180
181 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
182
183 if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)) {
184 hw->wiphy->iface_combinations = iwlagn_iface_combinations_p2p;
185 hw->wiphy->n_iface_combinations =
186 ARRAY_SIZE(iwlagn_iface_combinations_p2p);
187 } else if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
188 hw->wiphy->iface_combinations =
189 iwlagn_iface_combinations_dualmode;
190 hw->wiphy->n_iface_combinations =
191 ARRAY_SIZE(iwlagn_iface_combinations_dualmode);
192 }
193
194 hw->wiphy->max_remain_on_channel_duration = 1000;
195
196 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
197 WIPHY_FLAG_DISABLE_BEACON_HINTS |
198 WIPHY_FLAG_IBSS_RSN;
199
David Spinadel6dfa8d02012-03-10 13:00:14 -0800200 if (priv->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Johannes Berg2dd4f9f2012-03-05 11:24:35 -0800201 trans(priv)->ops->wowlan_suspend &&
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200202 device_can_wakeup(trans(priv)->dev)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800203 hw->wiphy->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
204 WIPHY_WOWLAN_DISCONNECT |
205 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
206 WIPHY_WOWLAN_RFKILL_RELEASE;
207 if (!iwlagn_mod_params.sw_crypto)
208 hw->wiphy->wowlan.flags |=
209 WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
210 WIPHY_WOWLAN_GTK_REKEY_FAILURE;
211
212 hw->wiphy->wowlan.n_patterns = IWLAGN_WOWLAN_MAX_PATTERNS;
213 hw->wiphy->wowlan.pattern_min_len =
214 IWLAGN_WOWLAN_MIN_PATTERN_LEN;
215 hw->wiphy->wowlan.pattern_max_len =
216 IWLAGN_WOWLAN_MAX_PATTERN_LEN;
217 }
218
219 if (iwlagn_mod_params.power_save)
220 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
221 else
222 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
223
224 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
225 /* we create the 802.11 header and a zero-length SSID element */
226 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
227
228 /* Default value; 4 EDCA QOS priorities */
229 hw->queues = 4;
230
231 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
232
233 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
234 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
235 &priv->bands[IEEE80211_BAND_2GHZ];
236 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
237 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
238 &priv->bands[IEEE80211_BAND_5GHZ];
239
Emmanuel Grumbach99673ee2012-01-08 21:19:45 +0200240 hw->wiphy->hw_version = trans(priv)->hw_id;
Wey-Yi Guy0ba958e2011-12-10 11:33:52 -0800241
Wey-Yi Guy73356132011-11-10 06:55:11 -0800242 iwl_leds_init(priv);
243
244 ret = ieee80211_register_hw(priv->hw);
245 if (ret) {
246 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
247 return ret;
248 }
249 priv->mac80211_registered = 1;
250
251 return 0;
252}
253
Don Fry09af1402011-12-09 10:07:38 -0800254void iwlagn_mac_unregister(struct iwl_priv *priv)
255{
256 if (!priv->mac80211_registered)
257 return;
258 iwl_leds_exit(priv);
259 ieee80211_unregister_hw(priv->hw);
260 priv->mac80211_registered = 0;
261}
262
Wey-Yi Guy73356132011-11-10 06:55:11 -0800263static int __iwl_up(struct iwl_priv *priv)
264{
265 struct iwl_rxon_context *ctx;
266 int ret;
267
Johannes Bergb1eea292012-03-06 13:30:42 -0800268 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800269
Don Fry83626402012-03-07 09:52:37 -0800270 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800271 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
272 return -EIO;
273 }
274
275 for_each_context(priv, ctx) {
276 ret = iwlagn_alloc_bcast_station(priv, ctx);
277 if (ret) {
278 iwl_dealloc_bcast_stations(priv);
279 return ret;
280 }
281 }
282
Johannes Berge1991882012-03-06 13:30:36 -0800283 ret = iwl_run_init_ucode(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800284 if (ret) {
285 IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret);
286 goto error;
287 }
288
Johannes Berge1991882012-03-06 13:30:36 -0800289 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800290 if (ret) {
291 IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret);
292 goto error;
293 }
294
295 ret = iwl_alive_start(priv);
296 if (ret)
297 goto error;
298 return 0;
299
300 error:
Don Fry83626402012-03-07 09:52:37 -0800301 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800302 iwl_down(priv);
Don Fry83626402012-03-07 09:52:37 -0800303 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800304
305 IWL_ERR(priv, "Unable to initialize device.\n");
306 return ret;
307}
308
309static int iwlagn_mac_start(struct ieee80211_hw *hw)
310{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200311 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800312 int ret;
313
314 IWL_DEBUG_MAC80211(priv, "enter\n");
315
316 /* we should be verifying the device is ready to be opened */
Johannes Bergb1eea292012-03-06 13:30:42 -0800317 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800318 ret = __iwl_up(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800319 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800320 if (ret)
321 return ret;
322
323 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
324
325 /* Now we should be done, and the READY bit should be set. */
Don Fry83626402012-03-07 09:52:37 -0800326 if (WARN_ON(!test_bit(STATUS_READY, &priv->status)))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800327 ret = -EIO;
328
329 iwlagn_led_enable(priv);
330
331 priv->is_open = 1;
332 IWL_DEBUG_MAC80211(priv, "leave\n");
333 return 0;
334}
335
336static void iwlagn_mac_stop(struct ieee80211_hw *hw)
337{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200338 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800339
340 IWL_DEBUG_MAC80211(priv, "enter\n");
341
342 if (!priv->is_open)
343 return;
344
345 priv->is_open = 0;
346
Johannes Bergb1eea292012-03-06 13:30:42 -0800347 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800348 iwl_down(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800349 mutex_unlock(&priv->mutex);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800350
351 iwl_cancel_deferred_work(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800352
Johannes Berg1ee158d2012-02-17 10:07:44 -0800353 flush_workqueue(priv->workqueue);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800354
355 /* User space software may expect getting rfkill changes
Emmanuel Grumbach1df06bd2012-01-09 16:35:08 +0200356 * even if interface is down, trans->down will leave the RF
357 * kill interrupt enabled
358 */
359 iwl_trans_stop_hw(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800360
361 IWL_DEBUG_MAC80211(priv, "leave\n");
362}
363
364static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
365 struct ieee80211_vif *vif,
366 struct cfg80211_gtk_rekey_data *data)
367{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200368 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800369
370 if (iwlagn_mod_params.sw_crypto)
371 return;
372
373 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800374 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800375
376 if (priv->contexts[IWL_RXON_CTX_BSS].vif != vif)
377 goto out;
378
379 memcpy(priv->kek, data->kek, NL80211_KEK_LEN);
380 memcpy(priv->kck, data->kck, NL80211_KCK_LEN);
381 priv->replay_ctr =
382 cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr));
383 priv->have_rekey_data = true;
384
385 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800386 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800387 IWL_DEBUG_MAC80211(priv, "leave\n");
388}
389
390#ifdef CONFIG_PM_SLEEP
Wey-Yi Guy73356132011-11-10 06:55:11 -0800391
392static int iwlagn_mac_suspend(struct ieee80211_hw *hw,
393 struct cfg80211_wowlan *wowlan)
394{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200395 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800396 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800397 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800398
399 if (WARN_ON(!wowlan))
400 return -EINVAL;
401
402 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800403 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800404
405 /* Don't attempt WoWLAN when not associated, tear down instead. */
406 if (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION ||
407 !iwl_is_associated_ctx(ctx)) {
408 ret = 1;
409 goto out;
410 }
411
Johannes Bergea886a62012-03-07 09:52:15 -0800412 ret = iwlagn_suspend(priv, wowlan);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800413 if (ret)
414 goto error;
415
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200416 device_set_wakeup_enable(trans(priv)->dev, true);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800417
Johannes Berg2dd4f9f2012-03-05 11:24:35 -0800418 iwl_trans_wowlan_suspend(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800419
420 goto out;
421
422 error:
Johannes Berg15b86bf2012-03-05 11:24:36 -0800423 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800424 iwlagn_prepare_restart(priv);
425 ieee80211_restart_hw(priv->hw);
426 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800427 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800428 IWL_DEBUG_MAC80211(priv, "leave\n");
429
430 return ret;
431}
432
433static int iwlagn_mac_resume(struct ieee80211_hw *hw)
434{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200435 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800436 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
437 struct ieee80211_vif *vif;
438 unsigned long flags;
439 u32 base, status = 0xffffffff;
440 int ret = -EIO;
441
442 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800443 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800444
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200445 iwl_write32(trans(priv), CSR_UCODE_DRV_GP1_CLR,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800446 CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE);
447
Meenakshi Venkataraman2fdfc472012-03-15 13:26:56 -0700448 base = priv->device_pointers.error_event_table;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800449 if (iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200450 spin_lock_irqsave(&trans(priv)->reg_lock, flags);
451 ret = iwl_grab_nic_access_silent(trans(priv));
Stanislaw Gruszkabfe4b802012-03-07 09:52:24 -0800452 if (likely(ret == 0)) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200453 iwl_write32(trans(priv), HBUS_TARG_MEM_RADDR, base);
454 status = iwl_read32(trans(priv), HBUS_TARG_MEM_RDAT);
455 iwl_release_nic_access(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800456 }
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200457 spin_unlock_irqrestore(&trans(priv)->reg_lock, flags);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800458
459#ifdef CONFIG_IWLWIFI_DEBUGFS
460 if (ret == 0) {
Oliver Hartkoppa855f7e2012-03-25 08:43:24 +0200461 const struct fw_img *img;
462
David Spinadel6dfa8d02012-03-10 13:00:14 -0800463 img = &(priv->fw->img[IWL_UCODE_WOWLAN]);
464 if (!priv->wowlan_sram) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800465 priv->wowlan_sram =
David Spinadel6dfa8d02012-03-10 13:00:14 -0800466 kzalloc(img->sec[IWL_UCODE_SECTION_DATA].len,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800467 GFP_KERNEL);
David Spinadel6dfa8d02012-03-10 13:00:14 -0800468 }
Wey-Yi Guy73356132011-11-10 06:55:11 -0800469
470 if (priv->wowlan_sram)
471 _iwl_read_targ_mem_words(
David Spinadel6dfa8d02012-03-10 13:00:14 -0800472 trans(priv), 0x800000,
473 priv->wowlan_sram,
474 img->sec[IWL_UCODE_SECTION_DATA].len / 4);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800475 }
476#endif
477 }
478
479 /* we'll clear ctx->vif during iwlagn_prepare_restart() */
480 vif = ctx->vif;
481
Johannes Berg15b86bf2012-03-05 11:24:36 -0800482 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800483
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200484 device_set_wakeup_enable(trans(priv)->dev, false);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800485
486 iwlagn_prepare_restart(priv);
487
488 memset((void *)&ctx->active, 0, sizeof(ctx->active));
489 iwl_connection_init_rx_config(priv, ctx);
490 iwlagn_set_rxon_chain(priv, ctx);
491
Johannes Bergb1eea292012-03-06 13:30:42 -0800492 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800493 IWL_DEBUG_MAC80211(priv, "leave\n");
494
495 ieee80211_resume_disconnect(vif);
496
497 return 1;
498}
499
500#endif
501
502static void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
503{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200504 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800505
Wey-Yi Guy73356132011-11-10 06:55:11 -0800506 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
507 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
508
509 if (iwlagn_tx_skb(priv, skb))
510 dev_kfree_skb_any(skb);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800511}
512
513static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
514 struct ieee80211_vif *vif,
515 struct ieee80211_key_conf *keyconf,
516 struct ieee80211_sta *sta,
517 u32 iv32, u16 *phase1key)
518{
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
521 iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key);
522}
523
524static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
525 struct ieee80211_vif *vif,
526 struct ieee80211_sta *sta,
527 struct ieee80211_key_conf *key)
528{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200529 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800530 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
531 struct iwl_rxon_context *ctx = vif_priv->ctx;
532 int ret;
533 bool is_default_wep_key = false;
534
535 IWL_DEBUG_MAC80211(priv, "enter\n");
536
537 if (iwlagn_mod_params.sw_crypto) {
538 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
539 return -EOPNOTSUPP;
540 }
541
Johannes Berga7e12c82011-11-25 03:20:09 -0800542 switch (key->cipher) {
543 case WLAN_CIPHER_SUITE_TKIP:
544 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
545 /* fall through */
546 case WLAN_CIPHER_SUITE_CCMP:
547 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
548 break;
549 default:
550 break;
551 }
552
Wey-Yi Guy73356132011-11-10 06:55:11 -0800553 /*
554 * We could program these keys into the hardware as well, but we
555 * don't expect much multicast traffic in IBSS and having keys
556 * for more stations is probably more useful.
557 *
558 * Mark key TX-only and return 0.
559 */
560 if (vif->type == NL80211_IFTYPE_ADHOC &&
561 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
562 key->hw_key_idx = WEP_INVALID_OFFSET;
563 return 0;
564 }
565
566 /* If they key was TX-only, accept deletion */
567 if (cmd == DISABLE_KEY && key->hw_key_idx == WEP_INVALID_OFFSET)
568 return 0;
569
Johannes Bergb1eea292012-03-06 13:30:42 -0800570 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800571 iwl_scan_cancel_timeout(priv, 100);
572
573 BUILD_BUG_ON(WEP_INVALID_OFFSET == IWLAGN_HW_KEY_DEFAULT);
574
575 /*
576 * If we are getting WEP group key and we didn't receive any key mapping
577 * so far, we are in legacy wep mode (group key only), otherwise we are
578 * in 1X mode.
579 * In legacy wep mode, we use another host command to the uCode.
580 */
581 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
582 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
583 if (cmd == SET_KEY)
584 is_default_wep_key = !ctx->key_mapping_keys;
585 else
586 is_default_wep_key =
587 key->hw_key_idx == IWLAGN_HW_KEY_DEFAULT;
588 }
589
590
591 switch (cmd) {
592 case SET_KEY:
593 if (is_default_wep_key) {
594 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
595 break;
596 }
597 ret = iwl_set_dynamic_key(priv, vif_priv->ctx, key, sta);
598 if (ret) {
599 /*
600 * can't add key for RX, but we don't need it
601 * in the device for TX so still return 0
602 */
603 ret = 0;
604 key->hw_key_idx = WEP_INVALID_OFFSET;
605 }
606
607 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
608 break;
609 case DISABLE_KEY:
610 if (is_default_wep_key)
611 ret = iwl_remove_default_wep_key(priv, ctx, key);
612 else
613 ret = iwl_remove_dynamic_key(priv, ctx, key, sta);
614
615 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
616 break;
617 default:
618 ret = -EINVAL;
619 }
620
Johannes Bergb1eea292012-03-06 13:30:42 -0800621 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800622 IWL_DEBUG_MAC80211(priv, "leave\n");
623
624 return ret;
625}
626
627static int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
628 struct ieee80211_vif *vif,
629 enum ieee80211_ampdu_mlme_action action,
630 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
631 u8 buf_size)
632{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200633 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800634 int ret = -EINVAL;
635 struct iwl_station_priv *sta_priv = (void *) sta->drv_priv;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800636
637 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
638 sta->addr, tid);
639
Johannes Berg9e295112012-04-09 17:46:55 -0700640 if (!(priv->hw_params.sku & EEPROM_SKU_CAP_11N_ENABLE))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800641 return -EACCES;
642
643 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800644 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800645
646 switch (action) {
647 case IEEE80211_AMPDU_RX_START:
Johannes Berg74289942011-12-13 00:07:40 -0800648 if (iwlagn_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
649 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800650 IWL_DEBUG_HT(priv, "start Rx\n");
651 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
652 break;
653 case IEEE80211_AMPDU_RX_STOP:
654 IWL_DEBUG_HT(priv, "stop Rx\n");
655 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800656 break;
657 case IEEE80211_AMPDU_TX_START:
Johannes Berg9eae88f2012-03-15 13:26:52 -0700658 if (!trans(priv)->ops->tx_agg_setup)
659 break;
Johannes Berg74289942011-12-13 00:07:40 -0800660 if (iwlagn_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
661 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800662 IWL_DEBUG_HT(priv, "start Tx\n");
663 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
664 break;
665 case IEEE80211_AMPDU_TX_STOP:
666 IWL_DEBUG_HT(priv, "stop Tx\n");
667 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
668 if ((ret == 0) && (priv->agg_tids_count > 0)) {
669 priv->agg_tids_count--;
670 IWL_DEBUG_HT(priv, "priv->agg_tids_count = %u\n",
671 priv->agg_tids_count);
672 }
Johannes Bergb9ad70d2012-03-06 13:30:55 -0800673 if (!priv->agg_tids_count &&
Johannes Berg9e295112012-04-09 17:46:55 -0700674 priv->hw_params.use_rts_for_aggregation) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800675 /*
676 * switch off RTS/CTS if it was previously enabled
677 */
678 sta_priv->lq_sta.lq.general_params.flags &=
679 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
680 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
681 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
682 }
683 break;
684 case IEEE80211_AMPDU_TX_OPERATIONAL:
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +0200685 ret = iwlagn_tx_agg_oper(priv, vif, sta, tid, buf_size);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800686 break;
687 }
Johannes Bergb1eea292012-03-06 13:30:42 -0800688 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800689 IWL_DEBUG_MAC80211(priv, "leave\n");
690 return ret;
691}
692
693static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
694 struct ieee80211_vif *vif,
695 struct ieee80211_sta *sta)
696{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200697 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800698 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
699 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
700 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800701 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800702 u8 sta_id;
703
Wey-Yi Guy73356132011-11-10 06:55:11 -0800704 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
705 sta->addr);
706 sta_priv->sta_id = IWL_INVALID_STATION;
707
708 atomic_set(&sta_priv->pending_frames, 0);
709 if (vif->type == NL80211_IFTYPE_AP)
710 sta_priv->client = true;
711
712 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
713 is_ap, sta, &sta_id);
714 if (ret) {
715 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
716 sta->addr, ret);
717 /* Should we return success if return code is EEXIST ? */
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800718 return ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800719 }
720
721 sta_priv->sta_id = sta_id;
722
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800723 return 0;
724}
725
726static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
727 struct ieee80211_vif *vif,
728 struct ieee80211_sta *sta)
729{
730 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
731 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
732 int ret;
733
Johannes Berg97420512012-03-07 09:52:42 -0800734 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n", sta->addr);
735
736 if (vif->type == NL80211_IFTYPE_STATION) {
737 /*
738 * Station will be removed from device when the RXON
739 * is set to unassociated -- just deactivate it here
740 * to avoid re-programming it.
741 */
742 ret = 0;
743 iwl_deactivate_station(priv, sta_priv->sta_id, sta->addr);
744 } else {
745 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
746 if (ret)
747 IWL_DEBUG_QUIET_RFKILL(priv,
748 "Error removing station %pM\n", sta->addr);
749 }
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800750 return ret;
751}
752
753static int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
754 struct ieee80211_vif *vif,
755 struct ieee80211_sta *sta,
756 enum ieee80211_sta_state old_state,
757 enum ieee80211_sta_state new_state)
758{
759 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800760 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800761 enum {
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800762 NONE, ADD, REMOVE, HT_RATE_INIT, ADD_RATE_INIT,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800763 } op = NONE;
764 int ret;
765
766 IWL_DEBUG_MAC80211(priv, "station %pM state change %d->%d\n",
767 sta->addr, old_state, new_state);
768
Johannes Bergb1eea292012-03-06 13:30:42 -0800769 mutex_lock(&priv->mutex);
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800770 if (vif->type == NL80211_IFTYPE_STATION) {
771 if (old_state == IEEE80211_STA_NOTEXIST &&
772 new_state == IEEE80211_STA_NONE)
773 op = ADD;
774 else if (old_state == IEEE80211_STA_NONE &&
775 new_state == IEEE80211_STA_NOTEXIST)
776 op = REMOVE;
777 else if (old_state == IEEE80211_STA_AUTH &&
778 new_state == IEEE80211_STA_ASSOC)
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800779 op = HT_RATE_INIT;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800780 } else {
781 if (old_state == IEEE80211_STA_AUTH &&
782 new_state == IEEE80211_STA_ASSOC)
783 op = ADD_RATE_INIT;
784 else if (old_state == IEEE80211_STA_ASSOC &&
785 new_state == IEEE80211_STA_AUTH)
786 op = REMOVE;
787 }
788
789 switch (op) {
790 case ADD:
791 ret = iwlagn_mac_sta_add(hw, vif, sta);
792 break;
793 case REMOVE:
794 ret = iwlagn_mac_sta_remove(hw, vif, sta);
795 break;
796 case ADD_RATE_INIT:
797 ret = iwlagn_mac_sta_add(hw, vif, sta);
798 if (ret)
799 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800800 /* Initialize rate scaling */
801 IWL_DEBUG_INFO(priv,
802 "Initializing rate scaling for station %pM\n",
803 sta->addr);
804 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
805 ret = 0;
806 break;
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800807 case HT_RATE_INIT:
808 /* Initialize rate scaling */
809 ret = iwl_sta_update_ht(priv, vif_priv->ctx, sta);
810 if (ret)
811 break;
812 IWL_DEBUG_INFO(priv,
813 "Initializing rate scaling for station %pM\n",
814 sta->addr);
815 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
816 ret = 0;
817 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800818 default:
819 ret = 0;
820 break;
821 }
822
823 /*
824 * mac80211 might WARN if we fail, but due the way we
825 * (badly) handle hard rfkill, we might fail here
826 */
Don Fry83626402012-03-07 09:52:37 -0800827 if (iwl_is_rfkill(priv))
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800828 ret = 0;
829
Johannes Bergb1eea292012-03-06 13:30:42 -0800830 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800831 IWL_DEBUG_MAC80211(priv, "leave\n");
832
833 return ret;
834}
835
836static void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
837 struct ieee80211_channel_switch *ch_switch)
838{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200839 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800840 const struct iwl_channel_info *ch_info;
841 struct ieee80211_conf *conf = &hw->conf;
842 struct ieee80211_channel *channel = ch_switch->channel;
843 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
844 /*
845 * MULTI-FIXME
846 * When we add support for multiple interfaces, we need to
847 * revisit this. The channel switch command in the device
848 * only affects the BSS context, but what does that really
849 * mean? And what if we get a CSA on the second interface?
850 * This needs a lot of work.
851 */
852 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
853 u16 ch;
854
855 IWL_DEBUG_MAC80211(priv, "enter\n");
856
Johannes Bergb1eea292012-03-06 13:30:42 -0800857 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800858
Don Fry83626402012-03-07 09:52:37 -0800859 if (iwl_is_rfkill(priv))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800860 goto out;
861
Don Fry83626402012-03-07 09:52:37 -0800862 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
863 test_bit(STATUS_SCANNING, &priv->status) ||
864 test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800865 goto out;
866
867 if (!iwl_is_associated_ctx(ctx))
868 goto out;
869
Johannes Berge9676692012-04-10 14:10:28 -0700870 if (!priv->lib->set_channel_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800871 goto out;
872
873 ch = channel->hw_value;
874 if (le16_to_cpu(ctx->active.channel) == ch)
875 goto out;
876
877 ch_info = iwl_get_channel_info(priv, channel->band, ch);
878 if (!is_channel_valid(ch_info)) {
879 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
880 goto out;
881 }
882
Wey-Yi Guy73356132011-11-10 06:55:11 -0800883 priv->current_ht_config.smps = conf->smps_mode;
884
885 /* Configure HT40 channels */
886 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy137ce792011-11-22 16:23:35 -0800887 if (ctx->ht.enabled)
888 iwlagn_config_ht40(conf, ctx);
889 else
Wey-Yi Guy73356132011-11-10 06:55:11 -0800890 ctx->ht.is_40mhz = false;
891
892 if ((le16_to_cpu(ctx->staging.channel) != ch))
893 ctx->staging.flags = 0;
894
895 iwl_set_rxon_channel(priv, channel, ctx);
896 iwl_set_rxon_ht(priv, ht_conf);
897 iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif);
898
Wey-Yi Guy73356132011-11-10 06:55:11 -0800899 iwl_set_rate(priv);
900 /*
901 * at this point, staging_rxon has the
902 * configuration for channel switch
903 */
Don Fry83626402012-03-07 09:52:37 -0800904 set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800905 priv->switch_channel = cpu_to_le16(ch);
Johannes Berge9676692012-04-10 14:10:28 -0700906 if (priv->lib->set_channel_switch(priv, ch_switch)) {
Don Fry83626402012-03-07 09:52:37 -0800907 clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800908 priv->switch_channel = 0;
909 ieee80211_chswitch_done(ctx->vif, false);
910 }
911
912out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800913 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800914 IWL_DEBUG_MAC80211(priv, "leave\n");
915}
916
Meenakshi Venkataramanbedec3a2012-03-13 17:47:23 -0700917void iwl_chswitch_done(struct iwl_priv *priv, bool is_success)
918{
919 /*
920 * MULTI-FIXME
921 * See iwlagn_mac_channel_switch.
922 */
923 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
924
925 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
926 return;
927
928 if (test_and_clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
929 ieee80211_chswitch_done(ctx->vif, is_success);
930}
931
Wey-Yi Guy73356132011-11-10 06:55:11 -0800932static void iwlagn_configure_filter(struct ieee80211_hw *hw,
933 unsigned int changed_flags,
934 unsigned int *total_flags,
935 u64 multicast)
936{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200937 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800938 __le32 filter_or = 0, filter_nand = 0;
939 struct iwl_rxon_context *ctx;
940
941#define CHK(test, flag) do { \
942 if (*total_flags & (test)) \
943 filter_or |= (flag); \
944 else \
945 filter_nand |= (flag); \
946 } while (0)
947
948 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
949 changed_flags, *total_flags);
950
951 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
952 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
953 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
954 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
955
956#undef CHK
957
Johannes Bergb1eea292012-03-06 13:30:42 -0800958 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800959
960 for_each_context(priv, ctx) {
961 ctx->staging.filter_flags &= ~filter_nand;
962 ctx->staging.filter_flags |= filter_or;
963
964 /*
965 * Not committing directly because hardware can perform a scan,
966 * but we'll eventually commit the filter flags change anyway.
967 */
968 }
969
Johannes Bergb1eea292012-03-06 13:30:42 -0800970 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800971
972 /*
973 * Receiving all multicast frames is always enabled by the
974 * default flags setup in iwl_connection_init_rx_config()
975 * since we currently do not support programming multicast
976 * filters into the device.
977 */
978 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
979 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
980}
981
982static void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
983{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200984 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800985
Johannes Bergb1eea292012-03-06 13:30:42 -0800986 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800987 IWL_DEBUG_MAC80211(priv, "enter\n");
988
Don Fry83626402012-03-07 09:52:37 -0800989 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800990 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
991 goto done;
992 }
Don Fry83626402012-03-07 09:52:37 -0800993 if (iwl_is_rfkill(priv)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800994 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
995 goto done;
996 }
997
998 /*
999 * mac80211 will not push any more frames for transmit
1000 * until the flush is completed
1001 */
1002 if (drop) {
1003 IWL_DEBUG_MAC80211(priv, "send flush command\n");
1004 if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
1005 IWL_ERR(priv, "flush request fail\n");
1006 goto done;
1007 }
1008 }
1009 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
1010 iwl_trans_wait_tx_queue_empty(trans(priv));
1011done:
Johannes Bergb1eea292012-03-06 13:30:42 -08001012 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001013 IWL_DEBUG_MAC80211(priv, "leave\n");
1014}
1015
1016static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
1017 struct ieee80211_channel *channel,
1018 enum nl80211_channel_type channel_type,
1019 int duration)
1020{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001021 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001022 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_PAN];
1023 int err = 0;
1024
Johannes Berga18f61b2012-03-15 13:26:53 -07001025 if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
Wey-Yi Guy73356132011-11-10 06:55:11 -08001026 return -EOPNOTSUPP;
1027
1028 if (!(ctx->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)))
1029 return -EOPNOTSUPP;
1030
1031 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001032 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001033
Don Fry83626402012-03-07 09:52:37 -08001034 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001035 err = -EBUSY;
1036 goto out;
1037 }
1038
1039 priv->hw_roc_channel = channel;
1040 priv->hw_roc_chantype = channel_type;
Johannes Berg3ddf6be2011-11-10 06:55:21 -08001041 /* convert from ms to TU */
1042 priv->hw_roc_duration = DIV_ROUND_UP(1000 * duration, 1024);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001043 priv->hw_roc_start_notified = false;
1044 cancel_delayed_work(&priv->hw_roc_disable_work);
1045
1046 if (!ctx->is_active) {
Johannes Berga69cd042011-11-10 06:55:13 -08001047 static const struct iwl_qos_info default_qos_data = {
1048 .def_qos_parm = {
1049 .ac[0] = {
1050 .cw_min = cpu_to_le16(3),
1051 .cw_max = cpu_to_le16(7),
1052 .aifsn = 2,
1053 .edca_txop = cpu_to_le16(1504),
1054 },
1055 .ac[1] = {
1056 .cw_min = cpu_to_le16(7),
1057 .cw_max = cpu_to_le16(15),
1058 .aifsn = 2,
1059 .edca_txop = cpu_to_le16(3008),
1060 },
1061 .ac[2] = {
1062 .cw_min = cpu_to_le16(15),
1063 .cw_max = cpu_to_le16(1023),
1064 .aifsn = 3,
1065 },
1066 .ac[3] = {
1067 .cw_min = cpu_to_le16(15),
1068 .cw_max = cpu_to_le16(1023),
1069 .aifsn = 7,
1070 },
1071 },
1072 };
1073
Wey-Yi Guy73356132011-11-10 06:55:11 -08001074 ctx->is_active = true;
Johannes Berga69cd042011-11-10 06:55:13 -08001075 ctx->qos_data = default_qos_data;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001076 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
1077 memcpy(ctx->staging.node_addr,
1078 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1079 ETH_ALEN);
1080 memcpy(ctx->staging.bssid_addr,
1081 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1082 ETH_ALEN);
1083 err = iwlagn_commit_rxon(priv, ctx);
1084 if (err)
1085 goto out;
1086 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK |
1087 RXON_FILTER_PROMISC_MSK |
1088 RXON_FILTER_CTL2HOST_MSK;
1089
1090 err = iwlagn_commit_rxon(priv, ctx);
1091 if (err) {
1092 iwlagn_disable_roc(priv);
1093 goto out;
1094 }
1095 priv->hw_roc_setup = true;
1096 }
1097
1098 err = iwl_scan_initiate(priv, ctx->vif, IWL_SCAN_ROC, channel->band);
1099 if (err)
1100 iwlagn_disable_roc(priv);
1101
1102 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001103 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001104 IWL_DEBUG_MAC80211(priv, "leave\n");
1105
1106 return err;
1107}
1108
1109static int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
1110{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001111 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001112
Johannes Berga18f61b2012-03-15 13:26:53 -07001113 if (!(priv->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
Wey-Yi Guy73356132011-11-10 06:55:11 -08001114 return -EOPNOTSUPP;
1115
1116 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001117 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001118 iwl_scan_cancel_timeout(priv, priv->hw_roc_duration);
1119 iwlagn_disable_roc(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -08001120 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001121 IWL_DEBUG_MAC80211(priv, "leave\n");
1122
1123 return 0;
1124}
1125
Wey-Yi Guy73356132011-11-10 06:55:11 -08001126static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
1127 enum ieee80211_rssi_event rssi_event)
1128{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001129 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001130
1131 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001132 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001133
Don Fry38622412011-12-16 07:07:36 -08001134 if (cfg(priv)->bt_params &&
1135 cfg(priv)->bt_params->advanced_bt_coexist) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001136 if (rssi_event == RSSI_EVENT_LOW)
1137 priv->bt_enable_pspoll = true;
1138 else if (rssi_event == RSSI_EVENT_HIGH)
1139 priv->bt_enable_pspoll = false;
1140
1141 iwlagn_send_advance_bt_config(priv);
1142 } else {
1143 IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled,"
1144 "ignoring RSSI callback\n");
1145 }
1146
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
1151static int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
1152 struct ieee80211_sta *sta, bool set)
1153{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001154 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001155
Johannes Berg1ee158d2012-02-17 10:07:44 -08001156 queue_work(priv->workqueue, &priv->beacon_update);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001157
1158 return 0;
1159}
1160
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001161static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
1162 struct ieee80211_vif *vif, u16 queue,
1163 const struct ieee80211_tx_queue_params *params)
1164{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001165 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001166 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1167 struct iwl_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001168 int q;
1169
1170 if (WARN_ON(!ctx))
1171 return -EINVAL;
1172
1173 IWL_DEBUG_MAC80211(priv, "enter\n");
1174
Don Fry83626402012-03-07 09:52:37 -08001175 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001176 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
1177 return -EIO;
1178 }
1179
1180 if (queue >= AC_NUM) {
1181 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
1182 return 0;
1183 }
1184
1185 q = AC_NUM - 1 - queue;
1186
Johannes Bergb1eea292012-03-06 13:30:42 -08001187 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001188
1189 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1190 cpu_to_le16(params->cw_min);
1191 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1192 cpu_to_le16(params->cw_max);
1193 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1194 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1195 cpu_to_le16((params->txop * 32));
1196
1197 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1198
Johannes Bergb1eea292012-03-06 13:30:42 -08001199 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001200
1201 IWL_DEBUG_MAC80211(priv, "leave\n");
1202 return 0;
1203}
1204
1205static int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
1206{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001207 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001208
1209 return priv->ibss_manager == IWL_IBSS_MANAGER;
1210}
1211
1212static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
1213{
1214 iwl_connection_init_rx_config(priv, ctx);
1215
1216 iwlagn_set_rxon_chain(priv, ctx);
1217
1218 return iwlagn_commit_rxon(priv, ctx);
1219}
1220
1221static int iwl_setup_interface(struct iwl_priv *priv,
1222 struct iwl_rxon_context *ctx)
1223{
1224 struct ieee80211_vif *vif = ctx->vif;
1225 int err;
1226
Johannes Bergb1eea292012-03-06 13:30:42 -08001227 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001228
1229 /*
1230 * This variable will be correct only when there's just
1231 * a single context, but all code using it is for hardware
1232 * that supports only one context.
1233 */
1234 priv->iw_mode = vif->type;
1235
1236 ctx->is_active = true;
1237
1238 err = iwl_set_mode(priv, ctx);
1239 if (err) {
1240 if (!ctx->always_active)
1241 ctx->is_active = false;
1242 return err;
1243 }
1244
Don Fry38622412011-12-16 07:07:36 -08001245 if (cfg(priv)->bt_params && cfg(priv)->bt_params->advanced_bt_coexist &&
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001246 vif->type == NL80211_IFTYPE_ADHOC) {
1247 /*
1248 * pretend to have high BT traffic as long as we
1249 * are operating in IBSS mode, as this will cause
1250 * the rate scaling etc. to behave as intended.
1251 */
1252 priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
1253 }
1254
1255 return 0;
1256}
1257
1258static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
1259 struct ieee80211_vif *vif)
1260{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001261 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001262 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1263 struct iwl_rxon_context *tmp, *ctx = NULL;
1264 int err;
1265 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif);
1266
1267 IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
1268 viftype, vif->addr);
1269
1270 cancel_delayed_work_sync(&priv->hw_roc_disable_work);
1271
Johannes Bergb1eea292012-03-06 13:30:42 -08001272 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001273
1274 iwlagn_disable_roc(priv);
1275
Don Fry83626402012-03-07 09:52:37 -08001276 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001277 IWL_WARN(priv, "Try to add interface when device not ready\n");
1278 err = -EINVAL;
1279 goto out;
1280 }
1281
1282 for_each_context(priv, tmp) {
1283 u32 possible_modes =
1284 tmp->interface_modes | tmp->exclusive_interface_modes;
1285
1286 if (tmp->vif) {
1287 /* check if this busy context is exclusive */
1288 if (tmp->exclusive_interface_modes &
1289 BIT(tmp->vif->type)) {
1290 err = -EINVAL;
1291 goto out;
1292 }
1293 continue;
1294 }
1295
1296 if (!(possible_modes & BIT(viftype)))
1297 continue;
1298
1299 /* have maybe usable context w/o interface */
1300 ctx = tmp;
1301 break;
1302 }
1303
1304 if (!ctx) {
1305 err = -EOPNOTSUPP;
1306 goto out;
1307 }
1308
1309 vif_priv->ctx = ctx;
1310 ctx->vif = vif;
1311
1312 err = iwl_setup_interface(priv, ctx);
1313 if (!err)
1314 goto out;
1315
1316 ctx->vif = NULL;
1317 priv->iw_mode = NL80211_IFTYPE_STATION;
1318 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001319 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001320
1321 IWL_DEBUG_MAC80211(priv, "leave\n");
1322 return err;
1323}
1324
1325static void iwl_teardown_interface(struct iwl_priv *priv,
1326 struct ieee80211_vif *vif,
1327 bool mode_change)
1328{
1329 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1330
Johannes Bergb1eea292012-03-06 13:30:42 -08001331 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001332
1333 if (priv->scan_vif == vif) {
1334 iwl_scan_cancel_timeout(priv, 200);
1335 iwl_force_scan_end(priv);
1336 }
1337
1338 if (!mode_change) {
1339 iwl_set_mode(priv, ctx);
1340 if (!ctx->always_active)
1341 ctx->is_active = false;
1342 }
1343
1344 /*
1345 * When removing the IBSS interface, overwrite the
1346 * BT traffic load with the stored one from the last
1347 * notification, if any. If this is a device that
1348 * doesn't implement this, this has no effect since
1349 * both values are the same and zero.
1350 */
1351 if (vif->type == NL80211_IFTYPE_ADHOC)
1352 priv->bt_traffic_load = priv->last_bt_traffic_load;
1353}
1354
1355static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw,
1356 struct ieee80211_vif *vif)
1357{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001358 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001359 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1360
1361 IWL_DEBUG_MAC80211(priv, "enter\n");
1362
Johannes Bergb1eea292012-03-06 13:30:42 -08001363 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001364
1365 if (WARN_ON(ctx->vif != vif)) {
1366 struct iwl_rxon_context *tmp;
1367 IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
1368 for_each_context(priv, tmp)
1369 IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
1370 tmp->ctxid, tmp, tmp->vif);
1371 }
1372 ctx->vif = NULL;
1373
1374 iwl_teardown_interface(priv, vif, false);
1375
Johannes Bergb1eea292012-03-06 13:30:42 -08001376 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001377
1378 IWL_DEBUG_MAC80211(priv, "leave\n");
1379
1380}
1381
1382static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
1383 struct ieee80211_vif *vif,
1384 enum nl80211_iftype newtype, bool newp2p)
1385{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001386 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001387 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1388 struct iwl_rxon_context *bss_ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1389 struct iwl_rxon_context *tmp;
1390 enum nl80211_iftype newviftype = newtype;
1391 u32 interface_modes;
1392 int err;
1393
1394 IWL_DEBUG_MAC80211(priv, "enter\n");
1395
1396 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1397
Johannes Bergb1eea292012-03-06 13:30:42 -08001398 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001399
Don Fry83626402012-03-07 09:52:37 -08001400 if (!ctx->vif || !iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001401 /*
1402 * Huh? But wait ... this can maybe happen when
1403 * we're in the middle of a firmware restart!
1404 */
1405 err = -EBUSY;
1406 goto out;
1407 }
1408
1409 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
1410
1411 if (!(interface_modes & BIT(newtype))) {
1412 err = -EBUSY;
1413 goto out;
1414 }
1415
1416 /*
1417 * Refuse a change that should be done by moving from the PAN
1418 * context to the BSS context instead, if the BSS context is
1419 * available and can support the new interface type.
1420 */
1421 if (ctx->ctxid == IWL_RXON_CTX_PAN && !bss_ctx->vif &&
1422 (bss_ctx->interface_modes & BIT(newtype) ||
1423 bss_ctx->exclusive_interface_modes & BIT(newtype))) {
1424 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
1425 err = -EBUSY;
1426 goto out;
1427 }
1428
1429 if (ctx->exclusive_interface_modes & BIT(newtype)) {
1430 for_each_context(priv, tmp) {
1431 if (ctx == tmp)
1432 continue;
1433
1434 if (!tmp->vif)
1435 continue;
1436
1437 /*
1438 * The current mode switch would be exclusive, but
1439 * another context is active ... refuse the switch.
1440 */
1441 err = -EBUSY;
1442 goto out;
1443 }
1444 }
1445
1446 /* success */
1447 iwl_teardown_interface(priv, vif, true);
1448 vif->type = newviftype;
1449 vif->p2p = newp2p;
1450 err = iwl_setup_interface(priv, ctx);
1451 WARN_ON(err);
1452 /*
1453 * We've switched internally, but submitting to the
1454 * device may have failed for some reason. Mask this
1455 * error, because otherwise mac80211 will not switch
1456 * (and set the interface type back) and we'll be
1457 * out of sync with it.
1458 */
1459 err = 0;
1460
1461 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001462 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001463 IWL_DEBUG_MAC80211(priv, "leave\n");
1464
1465 return err;
1466}
1467
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001468static int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
1469 struct ieee80211_vif *vif,
1470 struct cfg80211_scan_request *req)
1471{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001472 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001473 int ret;
1474
1475 IWL_DEBUG_MAC80211(priv, "enter\n");
1476
1477 if (req->n_channels == 0)
1478 return -EINVAL;
1479
Johannes Bergb1eea292012-03-06 13:30:42 -08001480 mutex_lock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001481
1482 /*
1483 * If an internal scan is in progress, just set
1484 * up the scan_request as per above.
1485 */
1486 if (priv->scan_type != IWL_SCAN_NORMAL) {
1487 IWL_DEBUG_SCAN(priv,
1488 "SCAN request during internal scan - defer\n");
1489 priv->scan_request = req;
1490 priv->scan_vif = vif;
1491 ret = 0;
1492 } else {
1493 priv->scan_request = req;
1494 priv->scan_vif = vif;
1495 /*
1496 * mac80211 will only ask for one band at a time
1497 * so using channels[0] here is ok
1498 */
1499 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
1500 req->channels[0]->band);
1501 if (ret) {
1502 priv->scan_request = NULL;
1503 priv->scan_vif = NULL;
1504 }
1505 }
1506
1507 IWL_DEBUG_MAC80211(priv, "leave\n");
1508
Johannes Bergb1eea292012-03-06 13:30:42 -08001509 mutex_unlock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001510
1511 return ret;
1512}
1513
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001514static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
1515{
Johannes Berg9451ca12012-03-05 11:24:23 -08001516 struct iwl_addsta_cmd cmd = {
1517 .mode = STA_CONTROL_MODIFY_MSK,
1518 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1519 .sta.sta_id = sta_id,
1520 };
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001521
Johannes Berg9451ca12012-03-05 11:24:23 -08001522 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001523}
1524
1525static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
1526 struct ieee80211_vif *vif,
1527 enum sta_notify_cmd cmd,
1528 struct ieee80211_sta *sta)
1529{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001530 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001531 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1532 int sta_id;
1533
1534 IWL_DEBUG_MAC80211(priv, "enter\n");
1535
1536 switch (cmd) {
1537 case STA_NOTIFY_SLEEP:
1538 WARN_ON(!sta_priv->client);
1539 sta_priv->asleep = true;
1540 if (atomic_read(&sta_priv->pending_frames) > 0)
1541 ieee80211_sta_block_awake(hw, sta, true);
1542 break;
1543 case STA_NOTIFY_AWAKE:
1544 WARN_ON(!sta_priv->client);
1545 if (!sta_priv->asleep)
1546 break;
1547 sta_priv->asleep = false;
1548 sta_id = iwl_sta_id(sta);
1549 if (sta_id != IWL_INVALID_STATION)
1550 iwl_sta_modify_ps_wake(priv, sta_id);
1551 break;
1552 default:
1553 break;
1554 }
1555 IWL_DEBUG_MAC80211(priv, "leave\n");
1556}
1557
Wey-Yi Guy73356132011-11-10 06:55:11 -08001558struct ieee80211_ops iwlagn_hw_ops = {
1559 .tx = iwlagn_mac_tx,
1560 .start = iwlagn_mac_start,
1561 .stop = iwlagn_mac_stop,
1562#ifdef CONFIG_PM_SLEEP
1563 .suspend = iwlagn_mac_suspend,
1564 .resume = iwlagn_mac_resume,
1565#endif
1566 .add_interface = iwlagn_mac_add_interface,
1567 .remove_interface = iwlagn_mac_remove_interface,
1568 .change_interface = iwlagn_mac_change_interface,
1569 .config = iwlagn_mac_config,
1570 .configure_filter = iwlagn_configure_filter,
1571 .set_key = iwlagn_mac_set_key,
1572 .update_tkip_key = iwlagn_mac_update_tkip_key,
1573 .set_rekey_data = iwlagn_mac_set_rekey_data,
1574 .conf_tx = iwlagn_mac_conf_tx,
1575 .bss_info_changed = iwlagn_bss_info_changed,
1576 .ampdu_action = iwlagn_mac_ampdu_action,
1577 .hw_scan = iwlagn_mac_hw_scan,
1578 .sta_notify = iwlagn_mac_sta_notify,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -08001579 .sta_state = iwlagn_mac_sta_state,
Wey-Yi Guy73356132011-11-10 06:55:11 -08001580 .channel_switch = iwlagn_mac_channel_switch,
1581 .flush = iwlagn_mac_flush,
1582 .tx_last_beacon = iwlagn_mac_tx_last_beacon,
1583 .remain_on_channel = iwlagn_mac_remain_on_channel,
1584 .cancel_remain_on_channel = iwlagn_mac_cancel_remain_on_channel,
1585 .rssi_callback = iwlagn_mac_rssi_callback,
1586 CFG80211_TESTMODE_CMD(iwlagn_mac_testmode_cmd)
1587 CFG80211_TESTMODE_DUMP(iwlagn_mac_testmode_dump)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001588 .set_tim = iwlagn_mac_set_tim,
1589};
1590
1591/* This function both allocates and initializes hw and priv. */
1592struct ieee80211_hw *iwl_alloc_all(void)
1593{
1594 struct iwl_priv *priv;
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001595 struct iwl_op_mode *op_mode;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001596 /* mac80211 allocates memory for this device instance, including
1597 * space for this driver's private structure */
1598 struct ieee80211_hw *hw;
1599
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001600 hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) +
1601 sizeof(struct iwl_op_mode), &iwlagn_hw_ops);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001602 if (!hw)
1603 goto out;
1604
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001605 op_mode = hw->priv;
1606 priv = IWL_OP_MODE_GET_DVM(op_mode);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001607 priv->hw = hw;
1608
1609out:
1610 return hw;
1611}