blob: b6805f8e9a014553cca088e4992aa09c421897f7 [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 |
160 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
161
Johannes Berg54708d82012-03-05 11:24:31 -0800162 if (hw_params(priv).sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800163 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
164 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
165
David Spinadel18c57d32012-03-07 09:52:31 -0800166#ifndef CONFIG_IWLWIFI_EXPERIMENTAL_MFP
167 /* enable 11w if the uCode advertise */
Wey-Yi Guy73356132011-11-10 06:55:11 -0800168 if (capa->flags & IWL_UCODE_TLV_FLAGS_MFP)
David Spinadel18c57d32012-03-07 09:52:31 -0800169#endif /* !CONFIG_IWLWIFI_EXPERIMENTAL_MFP */
Wey-Yi Guy73356132011-11-10 06:55:11 -0800170 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
171
172 hw->sta_data_size = sizeof(struct iwl_station_priv);
173 hw->vif_data_size = sizeof(struct iwl_vif_priv);
174
175 for_each_context(priv, ctx) {
176 hw->wiphy->interface_modes |= ctx->interface_modes;
177 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
178 }
179
180 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
181
182 if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)) {
183 hw->wiphy->iface_combinations = iwlagn_iface_combinations_p2p;
184 hw->wiphy->n_iface_combinations =
185 ARRAY_SIZE(iwlagn_iface_combinations_p2p);
186 } else if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
187 hw->wiphy->iface_combinations =
188 iwlagn_iface_combinations_dualmode;
189 hw->wiphy->n_iface_combinations =
190 ARRAY_SIZE(iwlagn_iface_combinations_dualmode);
191 }
192
193 hw->wiphy->max_remain_on_channel_duration = 1000;
194
195 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
196 WIPHY_FLAG_DISABLE_BEACON_HINTS |
197 WIPHY_FLAG_IBSS_RSN;
198
David Spinadel6dfa8d02012-03-10 13:00:14 -0800199 if (priv->fw->img[IWL_UCODE_WOWLAN].sec[0].len &&
Johannes Berg2dd4f9f2012-03-05 11:24:35 -0800200 trans(priv)->ops->wowlan_suspend &&
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200201 device_can_wakeup(trans(priv)->dev)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800202 hw->wiphy->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
203 WIPHY_WOWLAN_DISCONNECT |
204 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
205 WIPHY_WOWLAN_RFKILL_RELEASE;
206 if (!iwlagn_mod_params.sw_crypto)
207 hw->wiphy->wowlan.flags |=
208 WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
209 WIPHY_WOWLAN_GTK_REKEY_FAILURE;
210
211 hw->wiphy->wowlan.n_patterns = IWLAGN_WOWLAN_MAX_PATTERNS;
212 hw->wiphy->wowlan.pattern_min_len =
213 IWLAGN_WOWLAN_MIN_PATTERN_LEN;
214 hw->wiphy->wowlan.pattern_max_len =
215 IWLAGN_WOWLAN_MAX_PATTERN_LEN;
216 }
217
218 if (iwlagn_mod_params.power_save)
219 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
220 else
221 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
222
223 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
224 /* we create the 802.11 header and a zero-length SSID element */
225 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
226
227 /* Default value; 4 EDCA QOS priorities */
228 hw->queues = 4;
229
230 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
231
232 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
233 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
234 &priv->bands[IEEE80211_BAND_2GHZ];
235 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
236 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
237 &priv->bands[IEEE80211_BAND_5GHZ];
238
Emmanuel Grumbach99673ee2012-01-08 21:19:45 +0200239 hw->wiphy->hw_version = trans(priv)->hw_id;
Wey-Yi Guy0ba958e2011-12-10 11:33:52 -0800240
Wey-Yi Guy73356132011-11-10 06:55:11 -0800241 iwl_leds_init(priv);
242
243 ret = ieee80211_register_hw(priv->hw);
244 if (ret) {
245 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
246 return ret;
247 }
248 priv->mac80211_registered = 1;
249
250 return 0;
251}
252
Don Fry09af1402011-12-09 10:07:38 -0800253void iwlagn_mac_unregister(struct iwl_priv *priv)
254{
255 if (!priv->mac80211_registered)
256 return;
257 iwl_leds_exit(priv);
258 ieee80211_unregister_hw(priv->hw);
259 priv->mac80211_registered = 0;
260}
261
Wey-Yi Guy73356132011-11-10 06:55:11 -0800262static int __iwl_up(struct iwl_priv *priv)
263{
264 struct iwl_rxon_context *ctx;
265 int ret;
266
Johannes Bergb1eea292012-03-06 13:30:42 -0800267 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800268
Don Fry83626402012-03-07 09:52:37 -0800269 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800270 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
271 return -EIO;
272 }
273
274 for_each_context(priv, ctx) {
275 ret = iwlagn_alloc_bcast_station(priv, ctx);
276 if (ret) {
277 iwl_dealloc_bcast_stations(priv);
278 return ret;
279 }
280 }
281
Johannes Berge1991882012-03-06 13:30:36 -0800282 ret = iwl_run_init_ucode(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800283 if (ret) {
284 IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret);
285 goto error;
286 }
287
Johannes Berge1991882012-03-06 13:30:36 -0800288 ret = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800289 if (ret) {
290 IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret);
291 goto error;
292 }
293
294 ret = iwl_alive_start(priv);
295 if (ret)
296 goto error;
297 return 0;
298
299 error:
Don Fry83626402012-03-07 09:52:37 -0800300 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800301 iwl_down(priv);
Don Fry83626402012-03-07 09:52:37 -0800302 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800303
304 IWL_ERR(priv, "Unable to initialize device.\n");
305 return ret;
306}
307
308static int iwlagn_mac_start(struct ieee80211_hw *hw)
309{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200310 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800311 int ret;
312
313 IWL_DEBUG_MAC80211(priv, "enter\n");
314
315 /* we should be verifying the device is ready to be opened */
Johannes Bergb1eea292012-03-06 13:30:42 -0800316 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800317 ret = __iwl_up(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800318 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800319 if (ret)
320 return ret;
321
322 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
323
324 /* Now we should be done, and the READY bit should be set. */
Don Fry83626402012-03-07 09:52:37 -0800325 if (WARN_ON(!test_bit(STATUS_READY, &priv->status)))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800326 ret = -EIO;
327
328 iwlagn_led_enable(priv);
329
330 priv->is_open = 1;
331 IWL_DEBUG_MAC80211(priv, "leave\n");
332 return 0;
333}
334
335static void iwlagn_mac_stop(struct ieee80211_hw *hw)
336{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200337 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800338
339 IWL_DEBUG_MAC80211(priv, "enter\n");
340
341 if (!priv->is_open)
342 return;
343
344 priv->is_open = 0;
345
Johannes Bergb1eea292012-03-06 13:30:42 -0800346 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800347 iwl_down(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -0800348 mutex_unlock(&priv->mutex);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800349
350 iwl_cancel_deferred_work(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800351
Johannes Berg1ee158d2012-02-17 10:07:44 -0800352 flush_workqueue(priv->workqueue);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800353
354 /* User space software may expect getting rfkill changes
Emmanuel Grumbach1df06bd2012-01-09 16:35:08 +0200355 * even if interface is down, trans->down will leave the RF
356 * kill interrupt enabled
357 */
358 iwl_trans_stop_hw(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800359
360 IWL_DEBUG_MAC80211(priv, "leave\n");
361}
362
363static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
364 struct ieee80211_vif *vif,
365 struct cfg80211_gtk_rekey_data *data)
366{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200367 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800368
369 if (iwlagn_mod_params.sw_crypto)
370 return;
371
372 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800373 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800374
375 if (priv->contexts[IWL_RXON_CTX_BSS].vif != vif)
376 goto out;
377
378 memcpy(priv->kek, data->kek, NL80211_KEK_LEN);
379 memcpy(priv->kck, data->kck, NL80211_KCK_LEN);
380 priv->replay_ctr =
381 cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr));
382 priv->have_rekey_data = true;
383
384 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800385 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800386 IWL_DEBUG_MAC80211(priv, "leave\n");
387}
388
389#ifdef CONFIG_PM_SLEEP
Wey-Yi Guy73356132011-11-10 06:55:11 -0800390
391static int iwlagn_mac_suspend(struct ieee80211_hw *hw,
392 struct cfg80211_wowlan *wowlan)
393{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200394 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800395 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800396 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800397
398 if (WARN_ON(!wowlan))
399 return -EINVAL;
400
401 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800402 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800403
404 /* Don't attempt WoWLAN when not associated, tear down instead. */
405 if (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION ||
406 !iwl_is_associated_ctx(ctx)) {
407 ret = 1;
408 goto out;
409 }
410
Johannes Bergea886a62012-03-07 09:52:15 -0800411 ret = iwlagn_suspend(priv, wowlan);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800412 if (ret)
413 goto error;
414
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200415 device_set_wakeup_enable(trans(priv)->dev, true);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800416
Johannes Berg2dd4f9f2012-03-05 11:24:35 -0800417 iwl_trans_wowlan_suspend(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800418
419 goto out;
420
421 error:
Johannes Berg15b86bf2012-03-05 11:24:36 -0800422 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800423 iwlagn_prepare_restart(priv);
424 ieee80211_restart_hw(priv->hw);
425 out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800426 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800427 IWL_DEBUG_MAC80211(priv, "leave\n");
428
429 return ret;
430}
431
432static int iwlagn_mac_resume(struct ieee80211_hw *hw)
433{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200434 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800435 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
436 struct ieee80211_vif *vif;
437 unsigned long flags;
438 u32 base, status = 0xffffffff;
439 int ret = -EIO;
David Spinadel6dfa8d02012-03-10 13:00:14 -0800440 const struct fw_img *img;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800441
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
Don Fryae6130f2011-11-30 16:12:59 -0800448 base = priv->shrd->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) {
David Spinadel6dfa8d02012-03-10 13:00:14 -0800461 img = &(priv->fw->img[IWL_UCODE_WOWLAN]);
462 if (!priv->wowlan_sram) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800463 priv->wowlan_sram =
David Spinadel6dfa8d02012-03-10 13:00:14 -0800464 kzalloc(img->sec[IWL_UCODE_SECTION_DATA].len,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800465 GFP_KERNEL);
David Spinadel6dfa8d02012-03-10 13:00:14 -0800466 }
Wey-Yi Guy73356132011-11-10 06:55:11 -0800467
468 if (priv->wowlan_sram)
469 _iwl_read_targ_mem_words(
David Spinadel6dfa8d02012-03-10 13:00:14 -0800470 trans(priv), 0x800000,
471 priv->wowlan_sram,
472 img->sec[IWL_UCODE_SECTION_DATA].len / 4);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800473 }
474#endif
475 }
476
477 /* we'll clear ctx->vif during iwlagn_prepare_restart() */
478 vif = ctx->vif;
479
Johannes Berg15b86bf2012-03-05 11:24:36 -0800480 priv->wowlan = false;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800481
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200482 device_set_wakeup_enable(trans(priv)->dev, false);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800483
484 iwlagn_prepare_restart(priv);
485
486 memset((void *)&ctx->active, 0, sizeof(ctx->active));
487 iwl_connection_init_rx_config(priv, ctx);
488 iwlagn_set_rxon_chain(priv, ctx);
489
Johannes Bergb1eea292012-03-06 13:30:42 -0800490 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800491 IWL_DEBUG_MAC80211(priv, "leave\n");
492
493 ieee80211_resume_disconnect(vif);
494
495 return 1;
496}
497
498#endif
499
500static void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
501{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200502 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800503
Wey-Yi Guy73356132011-11-10 06:55:11 -0800504 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
505 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
506
507 if (iwlagn_tx_skb(priv, skb))
508 dev_kfree_skb_any(skb);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800509}
510
511static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
512 struct ieee80211_vif *vif,
513 struct ieee80211_key_conf *keyconf,
514 struct ieee80211_sta *sta,
515 u32 iv32, u16 *phase1key)
516{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200517 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800518
519 iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key);
520}
521
522static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
523 struct ieee80211_vif *vif,
524 struct ieee80211_sta *sta,
525 struct ieee80211_key_conf *key)
526{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200527 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800528 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
529 struct iwl_rxon_context *ctx = vif_priv->ctx;
530 int ret;
531 bool is_default_wep_key = false;
532
533 IWL_DEBUG_MAC80211(priv, "enter\n");
534
535 if (iwlagn_mod_params.sw_crypto) {
536 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
537 return -EOPNOTSUPP;
538 }
539
Johannes Berga7e12c82011-11-25 03:20:09 -0800540 switch (key->cipher) {
541 case WLAN_CIPHER_SUITE_TKIP:
542 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
543 /* fall through */
544 case WLAN_CIPHER_SUITE_CCMP:
545 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
546 break;
547 default:
548 break;
549 }
550
Wey-Yi Guy73356132011-11-10 06:55:11 -0800551 /*
552 * We could program these keys into the hardware as well, but we
553 * don't expect much multicast traffic in IBSS and having keys
554 * for more stations is probably more useful.
555 *
556 * Mark key TX-only and return 0.
557 */
558 if (vif->type == NL80211_IFTYPE_ADHOC &&
559 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
560 key->hw_key_idx = WEP_INVALID_OFFSET;
561 return 0;
562 }
563
564 /* If they key was TX-only, accept deletion */
565 if (cmd == DISABLE_KEY && key->hw_key_idx == WEP_INVALID_OFFSET)
566 return 0;
567
Johannes Bergb1eea292012-03-06 13:30:42 -0800568 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800569 iwl_scan_cancel_timeout(priv, 100);
570
571 BUILD_BUG_ON(WEP_INVALID_OFFSET == IWLAGN_HW_KEY_DEFAULT);
572
573 /*
574 * If we are getting WEP group key and we didn't receive any key mapping
575 * so far, we are in legacy wep mode (group key only), otherwise we are
576 * in 1X mode.
577 * In legacy wep mode, we use another host command to the uCode.
578 */
579 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
580 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
581 if (cmd == SET_KEY)
582 is_default_wep_key = !ctx->key_mapping_keys;
583 else
584 is_default_wep_key =
585 key->hw_key_idx == IWLAGN_HW_KEY_DEFAULT;
586 }
587
588
589 switch (cmd) {
590 case SET_KEY:
591 if (is_default_wep_key) {
592 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
593 break;
594 }
595 ret = iwl_set_dynamic_key(priv, vif_priv->ctx, key, sta);
596 if (ret) {
597 /*
598 * can't add key for RX, but we don't need it
599 * in the device for TX so still return 0
600 */
601 ret = 0;
602 key->hw_key_idx = WEP_INVALID_OFFSET;
603 }
604
605 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
606 break;
607 case DISABLE_KEY:
608 if (is_default_wep_key)
609 ret = iwl_remove_default_wep_key(priv, ctx, key);
610 else
611 ret = iwl_remove_dynamic_key(priv, ctx, key, sta);
612
613 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
614 break;
615 default:
616 ret = -EINVAL;
617 }
618
Johannes Bergb1eea292012-03-06 13:30:42 -0800619 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800620 IWL_DEBUG_MAC80211(priv, "leave\n");
621
622 return ret;
623}
624
625static int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
626 struct ieee80211_vif *vif,
627 enum ieee80211_ampdu_mlme_action action,
628 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
629 u8 buf_size)
630{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200631 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800632 int ret = -EINVAL;
633 struct iwl_station_priv *sta_priv = (void *) sta->drv_priv;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800634
635 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
636 sta->addr, tid);
637
Johannes Berg54708d82012-03-05 11:24:31 -0800638 if (!(hw_params(priv).sku & EEPROM_SKU_CAP_11N_ENABLE))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800639 return -EACCES;
640
641 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -0800642 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800643
644 switch (action) {
645 case IEEE80211_AMPDU_RX_START:
Johannes Berg74289942011-12-13 00:07:40 -0800646 if (iwlagn_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
647 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800648 IWL_DEBUG_HT(priv, "start Rx\n");
649 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
650 break;
651 case IEEE80211_AMPDU_RX_STOP:
652 IWL_DEBUG_HT(priv, "stop Rx\n");
653 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800654 break;
655 case IEEE80211_AMPDU_TX_START:
Johannes Berg74289942011-12-13 00:07:40 -0800656 if (iwlagn_mod_params.disable_11n & IWL_DISABLE_HT_TXAGG)
657 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800658 IWL_DEBUG_HT(priv, "start Tx\n");
659 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
660 break;
661 case IEEE80211_AMPDU_TX_STOP:
662 IWL_DEBUG_HT(priv, "stop Tx\n");
663 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
664 if ((ret == 0) && (priv->agg_tids_count > 0)) {
665 priv->agg_tids_count--;
666 IWL_DEBUG_HT(priv, "priv->agg_tids_count = %u\n",
667 priv->agg_tids_count);
668 }
Johannes Bergb9ad70d2012-03-06 13:30:55 -0800669 if (!priv->agg_tids_count &&
670 hw_params(priv).use_rts_for_aggregation) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800671 /*
672 * switch off RTS/CTS if it was previously enabled
673 */
674 sta_priv->lq_sta.lq.general_params.flags &=
675 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
676 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
677 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
678 }
679 break;
680 case IEEE80211_AMPDU_TX_OPERATIONAL:
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +0200681 ret = iwlagn_tx_agg_oper(priv, vif, sta, tid, buf_size);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800682 break;
683 }
Johannes Bergb1eea292012-03-06 13:30:42 -0800684 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800685 IWL_DEBUG_MAC80211(priv, "leave\n");
686 return ret;
687}
688
689static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
690 struct ieee80211_vif *vif,
691 struct ieee80211_sta *sta)
692{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200693 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800694 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
695 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
696 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800697 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800698 u8 sta_id;
699
Wey-Yi Guy73356132011-11-10 06:55:11 -0800700 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
701 sta->addr);
702 sta_priv->sta_id = IWL_INVALID_STATION;
703
704 atomic_set(&sta_priv->pending_frames, 0);
705 if (vif->type == NL80211_IFTYPE_AP)
706 sta_priv->client = true;
707
708 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
709 is_ap, sta, &sta_id);
710 if (ret) {
711 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
712 sta->addr, ret);
713 /* Should we return success if return code is EEXIST ? */
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800714 return ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800715 }
716
717 sta_priv->sta_id = sta_id;
718
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800719 return 0;
720}
721
722static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
723 struct ieee80211_vif *vif,
724 struct ieee80211_sta *sta)
725{
726 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
727 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
728 int ret;
729
Johannes Berg97420512012-03-07 09:52:42 -0800730 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n", sta->addr);
731
732 if (vif->type == NL80211_IFTYPE_STATION) {
733 /*
734 * Station will be removed from device when the RXON
735 * is set to unassociated -- just deactivate it here
736 * to avoid re-programming it.
737 */
738 ret = 0;
739 iwl_deactivate_station(priv, sta_priv->sta_id, sta->addr);
740 } else {
741 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
742 if (ret)
743 IWL_DEBUG_QUIET_RFKILL(priv,
744 "Error removing station %pM\n", sta->addr);
745 }
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800746 return ret;
747}
748
749static int iwlagn_mac_sta_state(struct ieee80211_hw *hw,
750 struct ieee80211_vif *vif,
751 struct ieee80211_sta *sta,
752 enum ieee80211_sta_state old_state,
753 enum ieee80211_sta_state new_state)
754{
755 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800756 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800757 enum {
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800758 NONE, ADD, REMOVE, HT_RATE_INIT, ADD_RATE_INIT,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800759 } op = NONE;
760 int ret;
761
762 IWL_DEBUG_MAC80211(priv, "station %pM state change %d->%d\n",
763 sta->addr, old_state, new_state);
764
Johannes Bergb1eea292012-03-06 13:30:42 -0800765 mutex_lock(&priv->mutex);
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800766 if (vif->type == NL80211_IFTYPE_STATION) {
767 if (old_state == IEEE80211_STA_NOTEXIST &&
768 new_state == IEEE80211_STA_NONE)
769 op = ADD;
770 else if (old_state == IEEE80211_STA_NONE &&
771 new_state == IEEE80211_STA_NOTEXIST)
772 op = REMOVE;
773 else if (old_state == IEEE80211_STA_AUTH &&
774 new_state == IEEE80211_STA_ASSOC)
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800775 op = HT_RATE_INIT;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800776 } else {
777 if (old_state == IEEE80211_STA_AUTH &&
778 new_state == IEEE80211_STA_ASSOC)
779 op = ADD_RATE_INIT;
780 else if (old_state == IEEE80211_STA_ASSOC &&
781 new_state == IEEE80211_STA_AUTH)
782 op = REMOVE;
783 }
784
785 switch (op) {
786 case ADD:
787 ret = iwlagn_mac_sta_add(hw, vif, sta);
788 break;
789 case REMOVE:
790 ret = iwlagn_mac_sta_remove(hw, vif, sta);
791 break;
792 case ADD_RATE_INIT:
793 ret = iwlagn_mac_sta_add(hw, vif, sta);
794 if (ret)
795 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800796 /* Initialize rate scaling */
797 IWL_DEBUG_INFO(priv,
798 "Initializing rate scaling for station %pM\n",
799 sta->addr);
800 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
801 ret = 0;
802 break;
Johannes Bergab0bd5b2012-03-05 11:24:47 -0800803 case HT_RATE_INIT:
804 /* Initialize rate scaling */
805 ret = iwl_sta_update_ht(priv, vif_priv->ctx, sta);
806 if (ret)
807 break;
808 IWL_DEBUG_INFO(priv,
809 "Initializing rate scaling for station %pM\n",
810 sta->addr);
811 iwl_rs_rate_init(priv, sta, iwl_sta_id(sta));
812 ret = 0;
813 break;
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800814 default:
815 ret = 0;
816 break;
817 }
818
819 /*
820 * mac80211 might WARN if we fail, but due the way we
821 * (badly) handle hard rfkill, we might fail here
822 */
Don Fry83626402012-03-07 09:52:37 -0800823 if (iwl_is_rfkill(priv))
Johannes Bergfb5fe5b2012-03-05 11:24:29 -0800824 ret = 0;
825
Johannes Bergb1eea292012-03-06 13:30:42 -0800826 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800827 IWL_DEBUG_MAC80211(priv, "leave\n");
828
829 return ret;
830}
831
832static void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
833 struct ieee80211_channel_switch *ch_switch)
834{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200835 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800836 const struct iwl_channel_info *ch_info;
837 struct ieee80211_conf *conf = &hw->conf;
838 struct ieee80211_channel *channel = ch_switch->channel;
839 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
840 /*
841 * MULTI-FIXME
842 * When we add support for multiple interfaces, we need to
843 * revisit this. The channel switch command in the device
844 * only affects the BSS context, but what does that really
845 * mean? And what if we get a CSA on the second interface?
846 * This needs a lot of work.
847 */
848 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
849 u16 ch;
850
851 IWL_DEBUG_MAC80211(priv, "enter\n");
852
Johannes Bergb1eea292012-03-06 13:30:42 -0800853 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800854
Don Fry83626402012-03-07 09:52:37 -0800855 if (iwl_is_rfkill(priv))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800856 goto out;
857
Don Fry83626402012-03-07 09:52:37 -0800858 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
859 test_bit(STATUS_SCANNING, &priv->status) ||
860 test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800861 goto out;
862
863 if (!iwl_is_associated_ctx(ctx))
864 goto out;
865
Don Fry38622412011-12-16 07:07:36 -0800866 if (!cfg(priv)->lib->set_channel_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800867 goto out;
868
869 ch = channel->hw_value;
870 if (le16_to_cpu(ctx->active.channel) == ch)
871 goto out;
872
873 ch_info = iwl_get_channel_info(priv, channel->band, ch);
874 if (!is_channel_valid(ch_info)) {
875 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
876 goto out;
877 }
878
Wey-Yi Guy73356132011-11-10 06:55:11 -0800879 priv->current_ht_config.smps = conf->smps_mode;
880
881 /* Configure HT40 channels */
882 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy137ce792011-11-22 16:23:35 -0800883 if (ctx->ht.enabled)
884 iwlagn_config_ht40(conf, ctx);
885 else
Wey-Yi Guy73356132011-11-10 06:55:11 -0800886 ctx->ht.is_40mhz = false;
887
888 if ((le16_to_cpu(ctx->staging.channel) != ch))
889 ctx->staging.flags = 0;
890
891 iwl_set_rxon_channel(priv, channel, ctx);
892 iwl_set_rxon_ht(priv, ht_conf);
893 iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif);
894
Wey-Yi Guy73356132011-11-10 06:55:11 -0800895 iwl_set_rate(priv);
896 /*
897 * at this point, staging_rxon has the
898 * configuration for channel switch
899 */
Don Fry83626402012-03-07 09:52:37 -0800900 set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800901 priv->switch_channel = cpu_to_le16(ch);
Don Fry38622412011-12-16 07:07:36 -0800902 if (cfg(priv)->lib->set_channel_switch(priv, ch_switch)) {
Don Fry83626402012-03-07 09:52:37 -0800903 clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->status);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800904 priv->switch_channel = 0;
905 ieee80211_chswitch_done(ctx->vif, false);
906 }
907
908out:
Johannes Bergb1eea292012-03-06 13:30:42 -0800909 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800910 IWL_DEBUG_MAC80211(priv, "leave\n");
911}
912
913static void iwlagn_configure_filter(struct ieee80211_hw *hw,
914 unsigned int changed_flags,
915 unsigned int *total_flags,
916 u64 multicast)
917{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200918 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800919 __le32 filter_or = 0, filter_nand = 0;
920 struct iwl_rxon_context *ctx;
921
922#define CHK(test, flag) do { \
923 if (*total_flags & (test)) \
924 filter_or |= (flag); \
925 else \
926 filter_nand |= (flag); \
927 } while (0)
928
929 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
930 changed_flags, *total_flags);
931
932 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
933 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
934 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
935 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
936
937#undef CHK
938
Johannes Bergb1eea292012-03-06 13:30:42 -0800939 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800940
941 for_each_context(priv, ctx) {
942 ctx->staging.filter_flags &= ~filter_nand;
943 ctx->staging.filter_flags |= filter_or;
944
945 /*
946 * Not committing directly because hardware can perform a scan,
947 * but we'll eventually commit the filter flags change anyway.
948 */
949 }
950
Johannes Bergb1eea292012-03-06 13:30:42 -0800951 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800952
953 /*
954 * Receiving all multicast frames is always enabled by the
955 * default flags setup in iwl_connection_init_rx_config()
956 * since we currently do not support programming multicast
957 * filters into the device.
958 */
959 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
960 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
961}
962
963static void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
964{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200965 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800966
Johannes Bergb1eea292012-03-06 13:30:42 -0800967 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800968 IWL_DEBUG_MAC80211(priv, "enter\n");
969
Don Fry83626402012-03-07 09:52:37 -0800970 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800971 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
972 goto done;
973 }
Don Fry83626402012-03-07 09:52:37 -0800974 if (iwl_is_rfkill(priv)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800975 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
976 goto done;
977 }
978
979 /*
980 * mac80211 will not push any more frames for transmit
981 * until the flush is completed
982 */
983 if (drop) {
984 IWL_DEBUG_MAC80211(priv, "send flush command\n");
985 if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
986 IWL_ERR(priv, "flush request fail\n");
987 goto done;
988 }
989 }
990 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
991 iwl_trans_wait_tx_queue_empty(trans(priv));
992done:
Johannes Bergb1eea292012-03-06 13:30:42 -0800993 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800994 IWL_DEBUG_MAC80211(priv, "leave\n");
995}
996
997static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
998 struct ieee80211_channel *channel,
999 enum nl80211_channel_type channel_type,
1000 int duration)
1001{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001002 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001003 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_PAN];
1004 int err = 0;
1005
1006 if (!(priv->shrd->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
1007 return -EOPNOTSUPP;
1008
1009 if (!(ctx->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)))
1010 return -EOPNOTSUPP;
1011
1012 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001013 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001014
Don Fry83626402012-03-07 09:52:37 -08001015 if (test_bit(STATUS_SCAN_HW, &priv->status)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001016 err = -EBUSY;
1017 goto out;
1018 }
1019
1020 priv->hw_roc_channel = channel;
1021 priv->hw_roc_chantype = channel_type;
Johannes Berg3ddf6be2011-11-10 06:55:21 -08001022 /* convert from ms to TU */
1023 priv->hw_roc_duration = DIV_ROUND_UP(1000 * duration, 1024);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001024 priv->hw_roc_start_notified = false;
1025 cancel_delayed_work(&priv->hw_roc_disable_work);
1026
1027 if (!ctx->is_active) {
Johannes Berga69cd042011-11-10 06:55:13 -08001028 static const struct iwl_qos_info default_qos_data = {
1029 .def_qos_parm = {
1030 .ac[0] = {
1031 .cw_min = cpu_to_le16(3),
1032 .cw_max = cpu_to_le16(7),
1033 .aifsn = 2,
1034 .edca_txop = cpu_to_le16(1504),
1035 },
1036 .ac[1] = {
1037 .cw_min = cpu_to_le16(7),
1038 .cw_max = cpu_to_le16(15),
1039 .aifsn = 2,
1040 .edca_txop = cpu_to_le16(3008),
1041 },
1042 .ac[2] = {
1043 .cw_min = cpu_to_le16(15),
1044 .cw_max = cpu_to_le16(1023),
1045 .aifsn = 3,
1046 },
1047 .ac[3] = {
1048 .cw_min = cpu_to_le16(15),
1049 .cw_max = cpu_to_le16(1023),
1050 .aifsn = 7,
1051 },
1052 },
1053 };
1054
Wey-Yi Guy73356132011-11-10 06:55:11 -08001055 ctx->is_active = true;
Johannes Berga69cd042011-11-10 06:55:13 -08001056 ctx->qos_data = default_qos_data;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001057 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
1058 memcpy(ctx->staging.node_addr,
1059 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1060 ETH_ALEN);
1061 memcpy(ctx->staging.bssid_addr,
1062 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
1063 ETH_ALEN);
1064 err = iwlagn_commit_rxon(priv, ctx);
1065 if (err)
1066 goto out;
1067 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK |
1068 RXON_FILTER_PROMISC_MSK |
1069 RXON_FILTER_CTL2HOST_MSK;
1070
1071 err = iwlagn_commit_rxon(priv, ctx);
1072 if (err) {
1073 iwlagn_disable_roc(priv);
1074 goto out;
1075 }
1076 priv->hw_roc_setup = true;
1077 }
1078
1079 err = iwl_scan_initiate(priv, ctx->vif, IWL_SCAN_ROC, channel->band);
1080 if (err)
1081 iwlagn_disable_roc(priv);
1082
1083 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001084 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001085 IWL_DEBUG_MAC80211(priv, "leave\n");
1086
1087 return err;
1088}
1089
1090static int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
1091{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001092 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001093
1094 if (!(priv->shrd->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
1095 return -EOPNOTSUPP;
1096
1097 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001098 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001099 iwl_scan_cancel_timeout(priv, priv->hw_roc_duration);
1100 iwlagn_disable_roc(priv);
Johannes Bergb1eea292012-03-06 13:30:42 -08001101 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001102 IWL_DEBUG_MAC80211(priv, "leave\n");
1103
1104 return 0;
1105}
1106
Wey-Yi Guy73356132011-11-10 06:55:11 -08001107static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
1108 enum ieee80211_rssi_event rssi_event)
1109{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001110 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001111
1112 IWL_DEBUG_MAC80211(priv, "enter\n");
Johannes Bergb1eea292012-03-06 13:30:42 -08001113 mutex_lock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001114
Don Fry38622412011-12-16 07:07:36 -08001115 if (cfg(priv)->bt_params &&
1116 cfg(priv)->bt_params->advanced_bt_coexist) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001117 if (rssi_event == RSSI_EVENT_LOW)
1118 priv->bt_enable_pspoll = true;
1119 else if (rssi_event == RSSI_EVENT_HIGH)
1120 priv->bt_enable_pspoll = false;
1121
1122 iwlagn_send_advance_bt_config(priv);
1123 } else {
1124 IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled,"
1125 "ignoring RSSI callback\n");
1126 }
1127
Johannes Bergb1eea292012-03-06 13:30:42 -08001128 mutex_unlock(&priv->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001129 IWL_DEBUG_MAC80211(priv, "leave\n");
1130}
1131
1132static int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
1133 struct ieee80211_sta *sta, bool set)
1134{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001135 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001136
Johannes Berg1ee158d2012-02-17 10:07:44 -08001137 queue_work(priv->workqueue, &priv->beacon_update);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001138
1139 return 0;
1140}
1141
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001142static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
1143 struct ieee80211_vif *vif, u16 queue,
1144 const struct ieee80211_tx_queue_params *params)
1145{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001146 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001147 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1148 struct iwl_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001149 int q;
1150
1151 if (WARN_ON(!ctx))
1152 return -EINVAL;
1153
1154 IWL_DEBUG_MAC80211(priv, "enter\n");
1155
Don Fry83626402012-03-07 09:52:37 -08001156 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001157 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
1158 return -EIO;
1159 }
1160
1161 if (queue >= AC_NUM) {
1162 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
1163 return 0;
1164 }
1165
1166 q = AC_NUM - 1 - queue;
1167
Johannes Bergb1eea292012-03-06 13:30:42 -08001168 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001169
1170 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1171 cpu_to_le16(params->cw_min);
1172 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1173 cpu_to_le16(params->cw_max);
1174 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1175 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1176 cpu_to_le16((params->txop * 32));
1177
1178 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1179
Johannes Bergb1eea292012-03-06 13:30:42 -08001180 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001181
1182 IWL_DEBUG_MAC80211(priv, "leave\n");
1183 return 0;
1184}
1185
1186static int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
1187{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001188 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001189
1190 return priv->ibss_manager == IWL_IBSS_MANAGER;
1191}
1192
1193static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
1194{
1195 iwl_connection_init_rx_config(priv, ctx);
1196
1197 iwlagn_set_rxon_chain(priv, ctx);
1198
1199 return iwlagn_commit_rxon(priv, ctx);
1200}
1201
1202static int iwl_setup_interface(struct iwl_priv *priv,
1203 struct iwl_rxon_context *ctx)
1204{
1205 struct ieee80211_vif *vif = ctx->vif;
1206 int err;
1207
Johannes Bergb1eea292012-03-06 13:30:42 -08001208 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001209
1210 /*
1211 * This variable will be correct only when there's just
1212 * a single context, but all code using it is for hardware
1213 * that supports only one context.
1214 */
1215 priv->iw_mode = vif->type;
1216
1217 ctx->is_active = true;
1218
1219 err = iwl_set_mode(priv, ctx);
1220 if (err) {
1221 if (!ctx->always_active)
1222 ctx->is_active = false;
1223 return err;
1224 }
1225
Don Fry38622412011-12-16 07:07:36 -08001226 if (cfg(priv)->bt_params && cfg(priv)->bt_params->advanced_bt_coexist &&
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001227 vif->type == NL80211_IFTYPE_ADHOC) {
1228 /*
1229 * pretend to have high BT traffic as long as we
1230 * are operating in IBSS mode, as this will cause
1231 * the rate scaling etc. to behave as intended.
1232 */
1233 priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
1234 }
1235
1236 return 0;
1237}
1238
1239static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
1240 struct ieee80211_vif *vif)
1241{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001242 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001243 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1244 struct iwl_rxon_context *tmp, *ctx = NULL;
1245 int err;
1246 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif);
1247
1248 IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
1249 viftype, vif->addr);
1250
1251 cancel_delayed_work_sync(&priv->hw_roc_disable_work);
1252
Johannes Bergb1eea292012-03-06 13:30:42 -08001253 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001254
1255 iwlagn_disable_roc(priv);
1256
Don Fry83626402012-03-07 09:52:37 -08001257 if (!iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001258 IWL_WARN(priv, "Try to add interface when device not ready\n");
1259 err = -EINVAL;
1260 goto out;
1261 }
1262
1263 for_each_context(priv, tmp) {
1264 u32 possible_modes =
1265 tmp->interface_modes | tmp->exclusive_interface_modes;
1266
1267 if (tmp->vif) {
1268 /* check if this busy context is exclusive */
1269 if (tmp->exclusive_interface_modes &
1270 BIT(tmp->vif->type)) {
1271 err = -EINVAL;
1272 goto out;
1273 }
1274 continue;
1275 }
1276
1277 if (!(possible_modes & BIT(viftype)))
1278 continue;
1279
1280 /* have maybe usable context w/o interface */
1281 ctx = tmp;
1282 break;
1283 }
1284
1285 if (!ctx) {
1286 err = -EOPNOTSUPP;
1287 goto out;
1288 }
1289
1290 vif_priv->ctx = ctx;
1291 ctx->vif = vif;
1292
1293 err = iwl_setup_interface(priv, ctx);
1294 if (!err)
1295 goto out;
1296
1297 ctx->vif = NULL;
1298 priv->iw_mode = NL80211_IFTYPE_STATION;
1299 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001300 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001301
1302 IWL_DEBUG_MAC80211(priv, "leave\n");
1303 return err;
1304}
1305
1306static void iwl_teardown_interface(struct iwl_priv *priv,
1307 struct ieee80211_vif *vif,
1308 bool mode_change)
1309{
1310 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1311
Johannes Bergb1eea292012-03-06 13:30:42 -08001312 lockdep_assert_held(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001313
1314 if (priv->scan_vif == vif) {
1315 iwl_scan_cancel_timeout(priv, 200);
1316 iwl_force_scan_end(priv);
1317 }
1318
1319 if (!mode_change) {
1320 iwl_set_mode(priv, ctx);
1321 if (!ctx->always_active)
1322 ctx->is_active = false;
1323 }
1324
1325 /*
1326 * When removing the IBSS interface, overwrite the
1327 * BT traffic load with the stored one from the last
1328 * notification, if any. If this is a device that
1329 * doesn't implement this, this has no effect since
1330 * both values are the same and zero.
1331 */
1332 if (vif->type == NL80211_IFTYPE_ADHOC)
1333 priv->bt_traffic_load = priv->last_bt_traffic_load;
1334}
1335
1336static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw,
1337 struct ieee80211_vif *vif)
1338{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001339 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001340 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1341
1342 IWL_DEBUG_MAC80211(priv, "enter\n");
1343
Johannes Bergb1eea292012-03-06 13:30:42 -08001344 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001345
1346 if (WARN_ON(ctx->vif != vif)) {
1347 struct iwl_rxon_context *tmp;
1348 IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
1349 for_each_context(priv, tmp)
1350 IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
1351 tmp->ctxid, tmp, tmp->vif);
1352 }
1353 ctx->vif = NULL;
1354
1355 iwl_teardown_interface(priv, vif, false);
1356
Johannes Bergb1eea292012-03-06 13:30:42 -08001357 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001358
1359 IWL_DEBUG_MAC80211(priv, "leave\n");
1360
1361}
1362
1363static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
1364 struct ieee80211_vif *vif,
1365 enum nl80211_iftype newtype, bool newp2p)
1366{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001367 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001368 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1369 struct iwl_rxon_context *bss_ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1370 struct iwl_rxon_context *tmp;
1371 enum nl80211_iftype newviftype = newtype;
1372 u32 interface_modes;
1373 int err;
1374
1375 IWL_DEBUG_MAC80211(priv, "enter\n");
1376
1377 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1378
Johannes Bergb1eea292012-03-06 13:30:42 -08001379 mutex_lock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001380
Don Fry83626402012-03-07 09:52:37 -08001381 if (!ctx->vif || !iwl_is_ready_rf(priv)) {
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001382 /*
1383 * Huh? But wait ... this can maybe happen when
1384 * we're in the middle of a firmware restart!
1385 */
1386 err = -EBUSY;
1387 goto out;
1388 }
1389
1390 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
1391
1392 if (!(interface_modes & BIT(newtype))) {
1393 err = -EBUSY;
1394 goto out;
1395 }
1396
1397 /*
1398 * Refuse a change that should be done by moving from the PAN
1399 * context to the BSS context instead, if the BSS context is
1400 * available and can support the new interface type.
1401 */
1402 if (ctx->ctxid == IWL_RXON_CTX_PAN && !bss_ctx->vif &&
1403 (bss_ctx->interface_modes & BIT(newtype) ||
1404 bss_ctx->exclusive_interface_modes & BIT(newtype))) {
1405 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
1406 err = -EBUSY;
1407 goto out;
1408 }
1409
1410 if (ctx->exclusive_interface_modes & BIT(newtype)) {
1411 for_each_context(priv, tmp) {
1412 if (ctx == tmp)
1413 continue;
1414
1415 if (!tmp->vif)
1416 continue;
1417
1418 /*
1419 * The current mode switch would be exclusive, but
1420 * another context is active ... refuse the switch.
1421 */
1422 err = -EBUSY;
1423 goto out;
1424 }
1425 }
1426
1427 /* success */
1428 iwl_teardown_interface(priv, vif, true);
1429 vif->type = newviftype;
1430 vif->p2p = newp2p;
1431 err = iwl_setup_interface(priv, ctx);
1432 WARN_ON(err);
1433 /*
1434 * We've switched internally, but submitting to the
1435 * device may have failed for some reason. Mask this
1436 * error, because otherwise mac80211 will not switch
1437 * (and set the interface type back) and we'll be
1438 * out of sync with it.
1439 */
1440 err = 0;
1441
1442 out:
Johannes Bergb1eea292012-03-06 13:30:42 -08001443 mutex_unlock(&priv->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001444 IWL_DEBUG_MAC80211(priv, "leave\n");
1445
1446 return err;
1447}
1448
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001449static int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
1450 struct ieee80211_vif *vif,
1451 struct cfg80211_scan_request *req)
1452{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001453 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001454 int ret;
1455
1456 IWL_DEBUG_MAC80211(priv, "enter\n");
1457
1458 if (req->n_channels == 0)
1459 return -EINVAL;
1460
Johannes Bergb1eea292012-03-06 13:30:42 -08001461 mutex_lock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001462
1463 /*
1464 * If an internal scan is in progress, just set
1465 * up the scan_request as per above.
1466 */
1467 if (priv->scan_type != IWL_SCAN_NORMAL) {
1468 IWL_DEBUG_SCAN(priv,
1469 "SCAN request during internal scan - defer\n");
1470 priv->scan_request = req;
1471 priv->scan_vif = vif;
1472 ret = 0;
1473 } else {
1474 priv->scan_request = req;
1475 priv->scan_vif = vif;
1476 /*
1477 * mac80211 will only ask for one band at a time
1478 * so using channels[0] here is ok
1479 */
1480 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
1481 req->channels[0]->band);
1482 if (ret) {
1483 priv->scan_request = NULL;
1484 priv->scan_vif = NULL;
1485 }
1486 }
1487
1488 IWL_DEBUG_MAC80211(priv, "leave\n");
1489
Johannes Bergb1eea292012-03-06 13:30:42 -08001490 mutex_unlock(&priv->mutex);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001491
1492 return ret;
1493}
1494
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001495static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
1496{
Johannes Berg9451ca12012-03-05 11:24:23 -08001497 struct iwl_addsta_cmd cmd = {
1498 .mode = STA_CONTROL_MODIFY_MSK,
1499 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1500 .sta.sta_id = sta_id,
1501 };
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001502
Johannes Berg9451ca12012-03-05 11:24:23 -08001503 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001504}
1505
1506static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
1507 struct ieee80211_vif *vif,
1508 enum sta_notify_cmd cmd,
1509 struct ieee80211_sta *sta)
1510{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001511 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001512 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1513 int sta_id;
1514
1515 IWL_DEBUG_MAC80211(priv, "enter\n");
1516
1517 switch (cmd) {
1518 case STA_NOTIFY_SLEEP:
1519 WARN_ON(!sta_priv->client);
1520 sta_priv->asleep = true;
1521 if (atomic_read(&sta_priv->pending_frames) > 0)
1522 ieee80211_sta_block_awake(hw, sta, true);
1523 break;
1524 case STA_NOTIFY_AWAKE:
1525 WARN_ON(!sta_priv->client);
1526 if (!sta_priv->asleep)
1527 break;
1528 sta_priv->asleep = false;
1529 sta_id = iwl_sta_id(sta);
1530 if (sta_id != IWL_INVALID_STATION)
1531 iwl_sta_modify_ps_wake(priv, sta_id);
1532 break;
1533 default:
1534 break;
1535 }
1536 IWL_DEBUG_MAC80211(priv, "leave\n");
1537}
1538
Wey-Yi Guy73356132011-11-10 06:55:11 -08001539struct ieee80211_ops iwlagn_hw_ops = {
1540 .tx = iwlagn_mac_tx,
1541 .start = iwlagn_mac_start,
1542 .stop = iwlagn_mac_stop,
1543#ifdef CONFIG_PM_SLEEP
1544 .suspend = iwlagn_mac_suspend,
1545 .resume = iwlagn_mac_resume,
1546#endif
1547 .add_interface = iwlagn_mac_add_interface,
1548 .remove_interface = iwlagn_mac_remove_interface,
1549 .change_interface = iwlagn_mac_change_interface,
1550 .config = iwlagn_mac_config,
1551 .configure_filter = iwlagn_configure_filter,
1552 .set_key = iwlagn_mac_set_key,
1553 .update_tkip_key = iwlagn_mac_update_tkip_key,
1554 .set_rekey_data = iwlagn_mac_set_rekey_data,
1555 .conf_tx = iwlagn_mac_conf_tx,
1556 .bss_info_changed = iwlagn_bss_info_changed,
1557 .ampdu_action = iwlagn_mac_ampdu_action,
1558 .hw_scan = iwlagn_mac_hw_scan,
1559 .sta_notify = iwlagn_mac_sta_notify,
Johannes Bergfb5fe5b2012-03-05 11:24:29 -08001560 .sta_state = iwlagn_mac_sta_state,
Wey-Yi Guy73356132011-11-10 06:55:11 -08001561 .channel_switch = iwlagn_mac_channel_switch,
1562 .flush = iwlagn_mac_flush,
1563 .tx_last_beacon = iwlagn_mac_tx_last_beacon,
1564 .remain_on_channel = iwlagn_mac_remain_on_channel,
1565 .cancel_remain_on_channel = iwlagn_mac_cancel_remain_on_channel,
1566 .rssi_callback = iwlagn_mac_rssi_callback,
1567 CFG80211_TESTMODE_CMD(iwlagn_mac_testmode_cmd)
1568 CFG80211_TESTMODE_DUMP(iwlagn_mac_testmode_dump)
Wey-Yi Guy73356132011-11-10 06:55:11 -08001569 .set_tim = iwlagn_mac_set_tim,
1570};
1571
1572/* This function both allocates and initializes hw and priv. */
1573struct ieee80211_hw *iwl_alloc_all(void)
1574{
1575 struct iwl_priv *priv;
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001576 struct iwl_op_mode *op_mode;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001577 /* mac80211 allocates memory for this device instance, including
1578 * space for this driver's private structure */
1579 struct ieee80211_hw *hw;
1580
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001581 hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) +
1582 sizeof(struct iwl_op_mode), &iwlagn_hw_ops);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001583 if (!hw)
1584 goto out;
1585
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001586 op_mode = hw->priv;
1587 priv = IWL_OP_MODE_GET_DVM(op_mode);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001588 priv->hw = hw;
1589
1590out:
1591 return hw;
1592}