blob: dcee30f0d629aced1a45c3a76e0a08c47860e2fb [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
Don Fryedf38332012-01-25 16:18:52 -080045#include "iwl-ucode.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080046#include "iwl-eeprom.h"
Don Fry69a679b2011-12-07 08:50:46 -080047#include "iwl-wifi.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080048#include "iwl-dev.h"
49#include "iwl-core.h"
50#include "iwl-io.h"
51#include "iwl-agn-calib.h"
52#include "iwl-agn.h"
53#include "iwl-shared.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080054#include "iwl-trans.h"
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +020055#include "iwl-op-mode.h"
Wey-Yi Guy73356132011-11-10 06:55:11 -080056
57/*****************************************************************************
58 *
59 * mac80211 entry point functions
60 *
61 *****************************************************************************/
62
63static const struct ieee80211_iface_limit iwlagn_sta_ap_limits[] = {
64 {
65 .max = 1,
66 .types = BIT(NL80211_IFTYPE_STATION),
67 },
68 {
69 .max = 1,
70 .types = BIT(NL80211_IFTYPE_AP),
71 },
72};
73
74static const struct ieee80211_iface_limit iwlagn_2sta_limits[] = {
75 {
76 .max = 2,
77 .types = BIT(NL80211_IFTYPE_STATION),
78 },
79};
80
81static const struct ieee80211_iface_limit iwlagn_p2p_sta_go_limits[] = {
82 {
83 .max = 1,
84 .types = BIT(NL80211_IFTYPE_STATION),
85 },
86 {
87 .max = 1,
88 .types = BIT(NL80211_IFTYPE_P2P_GO) |
89 BIT(NL80211_IFTYPE_AP),
90 },
91};
92
93static const struct ieee80211_iface_limit iwlagn_p2p_2sta_limits[] = {
94 {
95 .max = 2,
96 .types = BIT(NL80211_IFTYPE_STATION),
97 },
98 {
99 .max = 1,
100 .types = BIT(NL80211_IFTYPE_P2P_CLIENT),
101 },
102};
103
104static const struct ieee80211_iface_combination
105iwlagn_iface_combinations_dualmode[] = {
106 { .num_different_channels = 1,
107 .max_interfaces = 2,
108 .beacon_int_infra_match = true,
109 .limits = iwlagn_sta_ap_limits,
110 .n_limits = ARRAY_SIZE(iwlagn_sta_ap_limits),
111 },
112 { .num_different_channels = 1,
113 .max_interfaces = 2,
114 .limits = iwlagn_2sta_limits,
115 .n_limits = ARRAY_SIZE(iwlagn_2sta_limits),
116 },
117};
118
119static const struct ieee80211_iface_combination
120iwlagn_iface_combinations_p2p[] = {
121 { .num_different_channels = 1,
122 .max_interfaces = 2,
123 .beacon_int_infra_match = true,
124 .limits = iwlagn_p2p_sta_go_limits,
125 .n_limits = ARRAY_SIZE(iwlagn_p2p_sta_go_limits),
126 },
127 { .num_different_channels = 1,
128 .max_interfaces = 2,
129 .limits = iwlagn_p2p_2sta_limits,
130 .n_limits = ARRAY_SIZE(iwlagn_p2p_2sta_limits),
131 },
132};
133
134/*
135 * Not a mac80211 entry point function, but it fits in with all the
136 * other mac80211 functions grouped here.
137 */
138int iwlagn_mac_setup_register(struct iwl_priv *priv,
Don Fry4a986772012-02-06 17:06:07 -0800139 struct iwl_ucode_capabilities *capa)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800140{
141 int ret;
142 struct ieee80211_hw *hw = priv->hw;
143 struct iwl_rxon_context *ctx;
144
145 hw->rate_control_algorithm = "iwl-agn-rs";
146
147 /* Tell mac80211 our characteristics */
148 hw->flags = IEEE80211_HW_SIGNAL_DBM |
149 IEEE80211_HW_AMPDU_AGGREGATION |
150 IEEE80211_HW_NEED_DTIM_PERIOD |
151 IEEE80211_HW_SPECTRUM_MGMT |
152 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
153
154 /*
155 * Including the following line will crash some AP's. This
156 * workaround removes the stimulus which causes the crash until
157 * the AP software can be fixed.
158 hw->max_tx_aggregation_subframes = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
159 */
160
161 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
162 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
163
Don Fry38622412011-12-16 07:07:36 -0800164 if (cfg(priv)->sku & EEPROM_SKU_CAP_11N_ENABLE)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800165 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
166 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
167
168 if (capa->flags & IWL_UCODE_TLV_FLAGS_MFP)
169 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
170
171 hw->sta_data_size = sizeof(struct iwl_station_priv);
172 hw->vif_data_size = sizeof(struct iwl_vif_priv);
173
174 for_each_context(priv, ctx) {
175 hw->wiphy->interface_modes |= ctx->interface_modes;
176 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
177 }
178
179 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
180
181 if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)) {
182 hw->wiphy->iface_combinations = iwlagn_iface_combinations_p2p;
183 hw->wiphy->n_iface_combinations =
184 ARRAY_SIZE(iwlagn_iface_combinations_p2p);
185 } else if (hw->wiphy->interface_modes & BIT(NL80211_IFTYPE_AP)) {
186 hw->wiphy->iface_combinations =
187 iwlagn_iface_combinations_dualmode;
188 hw->wiphy->n_iface_combinations =
189 ARRAY_SIZE(iwlagn_iface_combinations_dualmode);
190 }
191
192 hw->wiphy->max_remain_on_channel_duration = 1000;
193
194 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
195 WIPHY_FLAG_DISABLE_BEACON_HINTS |
196 WIPHY_FLAG_IBSS_RSN;
197
Don Fry65161742012-02-07 15:00:12 -0800198 if (nic(priv)->fw.ucode_wowlan.code.len &&
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200199 device_can_wakeup(trans(priv)->dev)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800200 hw->wiphy->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT |
201 WIPHY_WOWLAN_DISCONNECT |
202 WIPHY_WOWLAN_EAP_IDENTITY_REQ |
203 WIPHY_WOWLAN_RFKILL_RELEASE;
204 if (!iwlagn_mod_params.sw_crypto)
205 hw->wiphy->wowlan.flags |=
206 WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
207 WIPHY_WOWLAN_GTK_REKEY_FAILURE;
208
209 hw->wiphy->wowlan.n_patterns = IWLAGN_WOWLAN_MAX_PATTERNS;
210 hw->wiphy->wowlan.pattern_min_len =
211 IWLAGN_WOWLAN_MIN_PATTERN_LEN;
212 hw->wiphy->wowlan.pattern_max_len =
213 IWLAGN_WOWLAN_MAX_PATTERN_LEN;
214 }
215
216 if (iwlagn_mod_params.power_save)
217 hw->wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
218 else
219 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
220
221 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
222 /* we create the 802.11 header and a zero-length SSID element */
223 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
224
225 /* Default value; 4 EDCA QOS priorities */
226 hw->queues = 4;
227
228 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
229
230 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
231 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
232 &priv->bands[IEEE80211_BAND_2GHZ];
233 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
234 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
235 &priv->bands[IEEE80211_BAND_5GHZ];
236
Emmanuel Grumbach99673ee2012-01-08 21:19:45 +0200237 hw->wiphy->hw_version = trans(priv)->hw_id;
Wey-Yi Guy0ba958e2011-12-10 11:33:52 -0800238
Wey-Yi Guy73356132011-11-10 06:55:11 -0800239 iwl_leds_init(priv);
240
241 ret = ieee80211_register_hw(priv->hw);
242 if (ret) {
243 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
244 return ret;
245 }
246 priv->mac80211_registered = 1;
247
248 return 0;
249}
250
Don Fry09af1402011-12-09 10:07:38 -0800251void iwlagn_mac_unregister(struct iwl_priv *priv)
252{
253 if (!priv->mac80211_registered)
254 return;
255 iwl_leds_exit(priv);
256 ieee80211_unregister_hw(priv->hw);
257 priv->mac80211_registered = 0;
258}
259
Wey-Yi Guy73356132011-11-10 06:55:11 -0800260static int __iwl_up(struct iwl_priv *priv)
261{
262 struct iwl_rxon_context *ctx;
263 int ret;
264
265 lockdep_assert_held(&priv->shrd->mutex);
266
267 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status)) {
268 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
269 return -EIO;
270 }
271
272 for_each_context(priv, ctx) {
273 ret = iwlagn_alloc_bcast_station(priv, ctx);
274 if (ret) {
275 iwl_dealloc_bcast_stations(priv);
276 return ret;
277 }
278 }
279
Don Fry69a679b2011-12-07 08:50:46 -0800280 ret = iwl_run_init_ucode(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800281 if (ret) {
282 IWL_ERR(priv, "Failed to run INIT ucode: %d\n", ret);
283 goto error;
284 }
285
Don Fry69a679b2011-12-07 08:50:46 -0800286 ret = iwl_load_ucode_wait_alive(trans(priv), IWL_UCODE_REGULAR);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800287 if (ret) {
288 IWL_ERR(priv, "Failed to start RT ucode: %d\n", ret);
289 goto error;
290 }
291
292 ret = iwl_alive_start(priv);
293 if (ret)
294 goto error;
295 return 0;
296
297 error:
298 set_bit(STATUS_EXIT_PENDING, &priv->shrd->status);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800299 iwl_down(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800300 clear_bit(STATUS_EXIT_PENDING, &priv->shrd->status);
301
302 IWL_ERR(priv, "Unable to initialize device.\n");
303 return ret;
304}
305
306static int iwlagn_mac_start(struct ieee80211_hw *hw)
307{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200308 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800309 int ret;
310
311 IWL_DEBUG_MAC80211(priv, "enter\n");
312
313 /* we should be verifying the device is ready to be opened */
314 mutex_lock(&priv->shrd->mutex);
315 ret = __iwl_up(priv);
316 mutex_unlock(&priv->shrd->mutex);
317 if (ret)
318 return ret;
319
320 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
321
322 /* Now we should be done, and the READY bit should be set. */
323 if (WARN_ON(!test_bit(STATUS_READY, &priv->shrd->status)))
324 ret = -EIO;
325
326 iwlagn_led_enable(priv);
327
328 priv->is_open = 1;
329 IWL_DEBUG_MAC80211(priv, "leave\n");
330 return 0;
331}
332
333static void iwlagn_mac_stop(struct ieee80211_hw *hw)
334{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200335 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800336
337 IWL_DEBUG_MAC80211(priv, "enter\n");
338
339 if (!priv->is_open)
340 return;
341
342 priv->is_open = 0;
343
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800344 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800345 iwl_down(priv);
Emmanuel Grumbach78e5a462012-02-17 10:34:53 -0800346 mutex_unlock(&priv->shrd->mutex);
347
348 iwl_cancel_deferred_work(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800349
Johannes Berg1ee158d2012-02-17 10:07:44 -0800350 flush_workqueue(priv->workqueue);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800351
352 /* User space software may expect getting rfkill changes
Emmanuel Grumbach1df06bd2012-01-09 16:35:08 +0200353 * even if interface is down, trans->down will leave the RF
354 * kill interrupt enabled
355 */
356 iwl_trans_stop_hw(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800357
358 IWL_DEBUG_MAC80211(priv, "leave\n");
359}
360
361static void iwlagn_mac_set_rekey_data(struct ieee80211_hw *hw,
362 struct ieee80211_vif *vif,
363 struct cfg80211_gtk_rekey_data *data)
364{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200365 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800366
367 if (iwlagn_mod_params.sw_crypto)
368 return;
369
370 IWL_DEBUG_MAC80211(priv, "enter\n");
371 mutex_lock(&priv->shrd->mutex);
372
373 if (priv->contexts[IWL_RXON_CTX_BSS].vif != vif)
374 goto out;
375
376 memcpy(priv->kek, data->kek, NL80211_KEK_LEN);
377 memcpy(priv->kck, data->kck, NL80211_KCK_LEN);
378 priv->replay_ctr =
379 cpu_to_le64(be64_to_cpup((__be64 *)&data->replay_ctr));
380 priv->have_rekey_data = true;
381
382 out:
383 mutex_unlock(&priv->shrd->mutex);
384 IWL_DEBUG_MAC80211(priv, "leave\n");
385}
386
387#ifdef CONFIG_PM_SLEEP
Wey-Yi Guy73356132011-11-10 06:55:11 -0800388
389static int iwlagn_mac_suspend(struct ieee80211_hw *hw,
390 struct cfg80211_wowlan *wowlan)
391{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200392 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800393 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800394 int ret;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800395
396 if (WARN_ON(!wowlan))
397 return -EINVAL;
398
399 IWL_DEBUG_MAC80211(priv, "enter\n");
400 mutex_lock(&priv->shrd->mutex);
401
402 /* Don't attempt WoWLAN when not associated, tear down instead. */
403 if (!ctx->vif || ctx->vif->type != NL80211_IFTYPE_STATION ||
404 !iwl_is_associated_ctx(ctx)) {
405 ret = 1;
406 goto out;
407 }
408
Wey-Yi Guy023ca582011-11-10 06:55:17 -0800409 ret = iwlagn_suspend(priv, hw, wowlan);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800410 if (ret)
411 goto error;
412
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200413 device_set_wakeup_enable(trans(priv)->dev, true);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800414
415 /* Now let the ucode operate on its own */
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200416 iwl_write32(trans(priv), CSR_UCODE_DRV_GP1_SET,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800417 CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE);
418
419 goto out;
420
421 error:
422 priv->shrd->wowlan = false;
423 iwlagn_prepare_restart(priv);
424 ieee80211_restart_hw(priv->hw);
425 out:
426 mutex_unlock(&priv->shrd->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;
440
441 IWL_DEBUG_MAC80211(priv, "enter\n");
442 mutex_lock(&priv->shrd->mutex);
443
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200444 iwl_write32(trans(priv), CSR_UCODE_DRV_GP1_CLR,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800445 CSR_UCODE_DRV_GP1_BIT_D3_CFG_COMPLETE);
446
Don Fryae6130f2011-11-30 16:12:59 -0800447 base = priv->shrd->device_pointers.error_event_table;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800448 if (iwlagn_hw_valid_rtc_data_addr(base)) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200449 spin_lock_irqsave(&trans(priv)->reg_lock, flags);
450 ret = iwl_grab_nic_access_silent(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800451 if (ret == 0) {
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200452 iwl_write32(trans(priv), HBUS_TARG_MEM_RADDR, base);
453 status = iwl_read32(trans(priv), HBUS_TARG_MEM_RDAT);
454 iwl_release_nic_access(trans(priv));
Wey-Yi Guy73356132011-11-10 06:55:11 -0800455 }
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200456 spin_unlock_irqrestore(&trans(priv)->reg_lock, flags);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800457
458#ifdef CONFIG_IWLWIFI_DEBUGFS
459 if (ret == 0) {
Don Fry65161742012-02-07 15:00:12 -0800460 struct iwl_nic *nic = nic(priv);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800461 if (!priv->wowlan_sram)
462 priv->wowlan_sram =
Don Fry65161742012-02-07 15:00:12 -0800463 kzalloc(nic->fw.ucode_wowlan.data.len,
Wey-Yi Guy73356132011-11-10 06:55:11 -0800464 GFP_KERNEL);
465
466 if (priv->wowlan_sram)
467 _iwl_read_targ_mem_words(
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200468 trans(priv), 0x800000,
469 priv->wowlan_sram,
Don Fry65161742012-02-07 15:00:12 -0800470 nic->fw.ucode_wowlan.data.len / 4);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800471 }
472#endif
473 }
474
475 /* we'll clear ctx->vif during iwlagn_prepare_restart() */
476 vif = ctx->vif;
477
478 priv->shrd->wowlan = false;
479
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200480 device_set_wakeup_enable(trans(priv)->dev, false);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800481
482 iwlagn_prepare_restart(priv);
483
484 memset((void *)&ctx->active, 0, sizeof(ctx->active));
485 iwl_connection_init_rx_config(priv, ctx);
486 iwlagn_set_rxon_chain(priv, ctx);
487
488 mutex_unlock(&priv->shrd->mutex);
489 IWL_DEBUG_MAC80211(priv, "leave\n");
490
491 ieee80211_resume_disconnect(vif);
492
493 return 1;
494}
495
496#endif
497
498static void iwlagn_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
499{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200500 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800501
Wey-Yi Guy73356132011-11-10 06:55:11 -0800502 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
503 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
504
505 if (iwlagn_tx_skb(priv, skb))
506 dev_kfree_skb_any(skb);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800507}
508
509static void iwlagn_mac_update_tkip_key(struct ieee80211_hw *hw,
510 struct ieee80211_vif *vif,
511 struct ieee80211_key_conf *keyconf,
512 struct ieee80211_sta *sta,
513 u32 iv32, u16 *phase1key)
514{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200515 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800516
517 iwl_update_tkip_key(priv, vif, keyconf, sta, iv32, phase1key);
518}
519
520static int iwlagn_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
521 struct ieee80211_vif *vif,
522 struct ieee80211_sta *sta,
523 struct ieee80211_key_conf *key)
524{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200525 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800526 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
527 struct iwl_rxon_context *ctx = vif_priv->ctx;
528 int ret;
529 bool is_default_wep_key = false;
530
531 IWL_DEBUG_MAC80211(priv, "enter\n");
532
533 if (iwlagn_mod_params.sw_crypto) {
534 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
535 return -EOPNOTSUPP;
536 }
537
Johannes Berga7e12c82011-11-25 03:20:09 -0800538 switch (key->cipher) {
539 case WLAN_CIPHER_SUITE_TKIP:
540 key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
541 /* fall through */
542 case WLAN_CIPHER_SUITE_CCMP:
543 key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
544 break;
545 default:
546 break;
547 }
548
Wey-Yi Guy73356132011-11-10 06:55:11 -0800549 /*
550 * We could program these keys into the hardware as well, but we
551 * don't expect much multicast traffic in IBSS and having keys
552 * for more stations is probably more useful.
553 *
554 * Mark key TX-only and return 0.
555 */
556 if (vif->type == NL80211_IFTYPE_ADHOC &&
557 !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
558 key->hw_key_idx = WEP_INVALID_OFFSET;
559 return 0;
560 }
561
562 /* If they key was TX-only, accept deletion */
563 if (cmd == DISABLE_KEY && key->hw_key_idx == WEP_INVALID_OFFSET)
564 return 0;
565
566 mutex_lock(&priv->shrd->mutex);
567 iwl_scan_cancel_timeout(priv, 100);
568
569 BUILD_BUG_ON(WEP_INVALID_OFFSET == IWLAGN_HW_KEY_DEFAULT);
570
571 /*
572 * If we are getting WEP group key and we didn't receive any key mapping
573 * so far, we are in legacy wep mode (group key only), otherwise we are
574 * in 1X mode.
575 * In legacy wep mode, we use another host command to the uCode.
576 */
577 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
578 key->cipher == WLAN_CIPHER_SUITE_WEP104) && !sta) {
579 if (cmd == SET_KEY)
580 is_default_wep_key = !ctx->key_mapping_keys;
581 else
582 is_default_wep_key =
583 key->hw_key_idx == IWLAGN_HW_KEY_DEFAULT;
584 }
585
586
587 switch (cmd) {
588 case SET_KEY:
589 if (is_default_wep_key) {
590 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
591 break;
592 }
593 ret = iwl_set_dynamic_key(priv, vif_priv->ctx, key, sta);
594 if (ret) {
595 /*
596 * can't add key for RX, but we don't need it
597 * in the device for TX so still return 0
598 */
599 ret = 0;
600 key->hw_key_idx = WEP_INVALID_OFFSET;
601 }
602
603 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
604 break;
605 case DISABLE_KEY:
606 if (is_default_wep_key)
607 ret = iwl_remove_default_wep_key(priv, ctx, key);
608 else
609 ret = iwl_remove_dynamic_key(priv, ctx, key, sta);
610
611 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
612 break;
613 default:
614 ret = -EINVAL;
615 }
616
617 mutex_unlock(&priv->shrd->mutex);
618 IWL_DEBUG_MAC80211(priv, "leave\n");
619
620 return ret;
621}
622
623static int iwlagn_mac_ampdu_action(struct ieee80211_hw *hw,
624 struct ieee80211_vif *vif,
625 enum ieee80211_ampdu_mlme_action action,
626 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
627 u8 buf_size)
628{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200629 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800630 int ret = -EINVAL;
631 struct iwl_station_priv *sta_priv = (void *) sta->drv_priv;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800632
633 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
634 sta->addr, tid);
635
Don Fry38622412011-12-16 07:07:36 -0800636 if (!(cfg(priv)->sku & EEPROM_SKU_CAP_11N_ENABLE))
Wey-Yi Guy73356132011-11-10 06:55:11 -0800637 return -EACCES;
638
639 IWL_DEBUG_MAC80211(priv, "enter\n");
640 mutex_lock(&priv->shrd->mutex);
641
642 switch (action) {
643 case IEEE80211_AMPDU_RX_START:
Johannes Berg74289942011-12-13 00:07:40 -0800644 if (iwlagn_mod_params.disable_11n & IWL_DISABLE_HT_RXAGG)
645 break;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800646 IWL_DEBUG_HT(priv, "start Rx\n");
647 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
648 break;
649 case IEEE80211_AMPDU_RX_STOP:
650 IWL_DEBUG_HT(priv, "stop Rx\n");
651 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
652 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
653 ret = 0;
654 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 }
669 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status))
670 ret = 0;
Don Fry38622412011-12-16 07:07:36 -0800671 if (!priv->agg_tids_count && cfg(priv)->ht_params &&
672 cfg(priv)->ht_params->use_rts_for_aggregation) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800673 /*
674 * switch off RTS/CTS if it was previously enabled
675 */
676 sta_priv->lq_sta.lq.general_params.flags &=
677 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
678 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
679 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
680 }
681 break;
682 case IEEE80211_AMPDU_TX_OPERATIONAL:
Emmanuel Grumbach822e8b22011-11-21 13:25:31 +0200683 ret = iwlagn_tx_agg_oper(priv, vif, sta, tid, buf_size);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800684 break;
685 }
686 mutex_unlock(&priv->shrd->mutex);
687 IWL_DEBUG_MAC80211(priv, "leave\n");
688 return ret;
689}
690
691static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
692 struct ieee80211_vif *vif,
693 struct ieee80211_sta *sta)
694{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200695 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800696 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
697 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
698 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
699 int ret = 0;
700 u8 sta_id;
701
702 IWL_DEBUG_MAC80211(priv, "received request to add station %pM\n",
703 sta->addr);
704 mutex_lock(&priv->shrd->mutex);
705 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
706 sta->addr);
707 sta_priv->sta_id = IWL_INVALID_STATION;
708
709 atomic_set(&sta_priv->pending_frames, 0);
710 if (vif->type == NL80211_IFTYPE_AP)
711 sta_priv->client = true;
712
713 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
714 is_ap, sta, &sta_id);
715 if (ret) {
716 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
717 sta->addr, ret);
718 /* Should we return success if return code is EEXIST ? */
719 goto out;
720 }
721
722 sta_priv->sta_id = sta_id;
723
724 /* Initialize rate scaling */
725 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
726 sta->addr);
727 iwl_rs_rate_init(priv, sta, sta_id);
728 out:
729 mutex_unlock(&priv->shrd->mutex);
730 IWL_DEBUG_MAC80211(priv, "leave\n");
731
732 return ret;
733}
734
735static void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
736 struct ieee80211_channel_switch *ch_switch)
737{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200738 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800739 const struct iwl_channel_info *ch_info;
740 struct ieee80211_conf *conf = &hw->conf;
741 struct ieee80211_channel *channel = ch_switch->channel;
742 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
743 /*
744 * MULTI-FIXME
745 * When we add support for multiple interfaces, we need to
746 * revisit this. The channel switch command in the device
747 * only affects the BSS context, but what does that really
748 * mean? And what if we get a CSA on the second interface?
749 * This needs a lot of work.
750 */
751 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
752 u16 ch;
753
754 IWL_DEBUG_MAC80211(priv, "enter\n");
755
756 mutex_lock(&priv->shrd->mutex);
757
758 if (iwl_is_rfkill(priv->shrd))
759 goto out;
760
761 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status) ||
762 test_bit(STATUS_SCANNING, &priv->shrd->status) ||
763 test_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->shrd->status))
764 goto out;
765
766 if (!iwl_is_associated_ctx(ctx))
767 goto out;
768
Don Fry38622412011-12-16 07:07:36 -0800769 if (!cfg(priv)->lib->set_channel_switch)
Wey-Yi Guy73356132011-11-10 06:55:11 -0800770 goto out;
771
772 ch = channel->hw_value;
773 if (le16_to_cpu(ctx->active.channel) == ch)
774 goto out;
775
776 ch_info = iwl_get_channel_info(priv, channel->band, ch);
777 if (!is_channel_valid(ch_info)) {
778 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
779 goto out;
780 }
781
Wey-Yi Guy73356132011-11-10 06:55:11 -0800782 priv->current_ht_config.smps = conf->smps_mode;
783
784 /* Configure HT40 channels */
785 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy137ce792011-11-22 16:23:35 -0800786 if (ctx->ht.enabled)
787 iwlagn_config_ht40(conf, ctx);
788 else
Wey-Yi Guy73356132011-11-10 06:55:11 -0800789 ctx->ht.is_40mhz = false;
790
791 if ((le16_to_cpu(ctx->staging.channel) != ch))
792 ctx->staging.flags = 0;
793
794 iwl_set_rxon_channel(priv, channel, ctx);
795 iwl_set_rxon_ht(priv, ht_conf);
796 iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif);
797
Wey-Yi Guy73356132011-11-10 06:55:11 -0800798 iwl_set_rate(priv);
799 /*
800 * at this point, staging_rxon has the
801 * configuration for channel switch
802 */
803 set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->shrd->status);
804 priv->switch_channel = cpu_to_le16(ch);
Don Fry38622412011-12-16 07:07:36 -0800805 if (cfg(priv)->lib->set_channel_switch(priv, ch_switch)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800806 clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->shrd->status);
807 priv->switch_channel = 0;
808 ieee80211_chswitch_done(ctx->vif, false);
809 }
810
811out:
812 mutex_unlock(&priv->shrd->mutex);
813 IWL_DEBUG_MAC80211(priv, "leave\n");
814}
815
816static void iwlagn_configure_filter(struct ieee80211_hw *hw,
817 unsigned int changed_flags,
818 unsigned int *total_flags,
819 u64 multicast)
820{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200821 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800822 __le32 filter_or = 0, filter_nand = 0;
823 struct iwl_rxon_context *ctx;
824
825#define CHK(test, flag) do { \
826 if (*total_flags & (test)) \
827 filter_or |= (flag); \
828 else \
829 filter_nand |= (flag); \
830 } while (0)
831
832 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
833 changed_flags, *total_flags);
834
835 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
836 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
837 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
838 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
839
840#undef CHK
841
842 mutex_lock(&priv->shrd->mutex);
843
844 for_each_context(priv, ctx) {
845 ctx->staging.filter_flags &= ~filter_nand;
846 ctx->staging.filter_flags |= filter_or;
847
848 /*
849 * Not committing directly because hardware can perform a scan,
850 * but we'll eventually commit the filter flags change anyway.
851 */
852 }
853
854 mutex_unlock(&priv->shrd->mutex);
855
856 /*
857 * Receiving all multicast frames is always enabled by the
858 * default flags setup in iwl_connection_init_rx_config()
859 * since we currently do not support programming multicast
860 * filters into the device.
861 */
862 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
863 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
864}
865
866static void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
867{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200868 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800869
870 mutex_lock(&priv->shrd->mutex);
871 IWL_DEBUG_MAC80211(priv, "enter\n");
872
873 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status)) {
874 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
875 goto done;
876 }
877 if (iwl_is_rfkill(priv->shrd)) {
878 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
879 goto done;
880 }
881
882 /*
883 * mac80211 will not push any more frames for transmit
884 * until the flush is completed
885 */
886 if (drop) {
887 IWL_DEBUG_MAC80211(priv, "send flush command\n");
888 if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
889 IWL_ERR(priv, "flush request fail\n");
890 goto done;
891 }
892 }
893 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
894 iwl_trans_wait_tx_queue_empty(trans(priv));
895done:
896 mutex_unlock(&priv->shrd->mutex);
897 IWL_DEBUG_MAC80211(priv, "leave\n");
898}
899
900static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
901 struct ieee80211_channel *channel,
902 enum nl80211_channel_type channel_type,
903 int duration)
904{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200905 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800906 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_PAN];
907 int err = 0;
908
909 if (!(priv->shrd->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
910 return -EOPNOTSUPP;
911
912 if (!(ctx->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)))
913 return -EOPNOTSUPP;
914
915 IWL_DEBUG_MAC80211(priv, "enter\n");
916 mutex_lock(&priv->shrd->mutex);
917
918 if (test_bit(STATUS_SCAN_HW, &priv->shrd->status)) {
919 err = -EBUSY;
920 goto out;
921 }
922
923 priv->hw_roc_channel = channel;
924 priv->hw_roc_chantype = channel_type;
Johannes Berg3ddf6be2011-11-10 06:55:21 -0800925 /* convert from ms to TU */
926 priv->hw_roc_duration = DIV_ROUND_UP(1000 * duration, 1024);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800927 priv->hw_roc_start_notified = false;
928 cancel_delayed_work(&priv->hw_roc_disable_work);
929
930 if (!ctx->is_active) {
Johannes Berga69cd042011-11-10 06:55:13 -0800931 static const struct iwl_qos_info default_qos_data = {
932 .def_qos_parm = {
933 .ac[0] = {
934 .cw_min = cpu_to_le16(3),
935 .cw_max = cpu_to_le16(7),
936 .aifsn = 2,
937 .edca_txop = cpu_to_le16(1504),
938 },
939 .ac[1] = {
940 .cw_min = cpu_to_le16(7),
941 .cw_max = cpu_to_le16(15),
942 .aifsn = 2,
943 .edca_txop = cpu_to_le16(3008),
944 },
945 .ac[2] = {
946 .cw_min = cpu_to_le16(15),
947 .cw_max = cpu_to_le16(1023),
948 .aifsn = 3,
949 },
950 .ac[3] = {
951 .cw_min = cpu_to_le16(15),
952 .cw_max = cpu_to_le16(1023),
953 .aifsn = 7,
954 },
955 },
956 };
957
Wey-Yi Guy73356132011-11-10 06:55:11 -0800958 ctx->is_active = true;
Johannes Berga69cd042011-11-10 06:55:13 -0800959 ctx->qos_data = default_qos_data;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800960 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
961 memcpy(ctx->staging.node_addr,
962 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
963 ETH_ALEN);
964 memcpy(ctx->staging.bssid_addr,
965 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
966 ETH_ALEN);
967 err = iwlagn_commit_rxon(priv, ctx);
968 if (err)
969 goto out;
970 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK |
971 RXON_FILTER_PROMISC_MSK |
972 RXON_FILTER_CTL2HOST_MSK;
973
974 err = iwlagn_commit_rxon(priv, ctx);
975 if (err) {
976 iwlagn_disable_roc(priv);
977 goto out;
978 }
979 priv->hw_roc_setup = true;
980 }
981
982 err = iwl_scan_initiate(priv, ctx->vif, IWL_SCAN_ROC, channel->band);
983 if (err)
984 iwlagn_disable_roc(priv);
985
986 out:
987 mutex_unlock(&priv->shrd->mutex);
988 IWL_DEBUG_MAC80211(priv, "leave\n");
989
990 return err;
991}
992
993static int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
994{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200995 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800996
997 if (!(priv->shrd->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
998 return -EOPNOTSUPP;
999
1000 IWL_DEBUG_MAC80211(priv, "enter\n");
1001 mutex_lock(&priv->shrd->mutex);
1002 iwl_scan_cancel_timeout(priv, priv->hw_roc_duration);
1003 iwlagn_disable_roc(priv);
1004 mutex_unlock(&priv->shrd->mutex);
1005 IWL_DEBUG_MAC80211(priv, "leave\n");
1006
1007 return 0;
1008}
1009
1010static int iwlagn_mac_tx_sync(struct ieee80211_hw *hw,
1011 struct ieee80211_vif *vif,
1012 const u8 *bssid,
1013 enum ieee80211_tx_sync_type type)
1014{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001015 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001016 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1017 struct iwl_rxon_context *ctx = vif_priv->ctx;
1018 int ret;
1019 u8 sta_id;
1020
John W. Linville5d22df22011-12-14 14:35:41 -05001021 if (ctx->ctxid != IWL_RXON_CTX_PAN)
1022 return 0;
1023
Wey-Yi Guy73356132011-11-10 06:55:11 -08001024 IWL_DEBUG_MAC80211(priv, "enter\n");
1025 mutex_lock(&priv->shrd->mutex);
1026
1027 if (iwl_is_associated_ctx(ctx)) {
1028 ret = 0;
1029 goto out;
1030 }
1031
1032 if (ctx->preauth_bssid || test_bit(STATUS_SCAN_HW,
1033 &priv->shrd->status)) {
1034 ret = -EBUSY;
1035 goto out;
1036 }
1037
1038 ret = iwl_add_station_common(priv, ctx, bssid, true, NULL, &sta_id);
1039 if (ret)
1040 goto out;
1041
1042 if (WARN_ON(sta_id != ctx->ap_sta_id)) {
1043 ret = -EIO;
1044 goto out_remove_sta;
1045 }
1046
1047 memcpy(ctx->bssid, bssid, ETH_ALEN);
1048 ctx->preauth_bssid = true;
1049
1050 ret = iwlagn_commit_rxon(priv, ctx);
1051
1052 if (ret == 0)
1053 goto out;
1054
1055 out_remove_sta:
1056 iwl_remove_station(priv, sta_id, bssid);
1057 out:
1058 mutex_unlock(&priv->shrd->mutex);
1059 IWL_DEBUG_MAC80211(priv, "leave\n");
1060
1061 return ret;
1062}
1063
1064static void iwlagn_mac_finish_tx_sync(struct ieee80211_hw *hw,
1065 struct ieee80211_vif *vif,
1066 const u8 *bssid,
1067 enum ieee80211_tx_sync_type type)
1068{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001069 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001070 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1071 struct iwl_rxon_context *ctx = vif_priv->ctx;
1072
John W. Linville5d22df22011-12-14 14:35:41 -05001073 if (ctx->ctxid != IWL_RXON_CTX_PAN)
1074 return;
1075
Wey-Yi Guy73356132011-11-10 06:55:11 -08001076 IWL_DEBUG_MAC80211(priv, "enter\n");
1077 mutex_lock(&priv->shrd->mutex);
1078
1079 if (iwl_is_associated_ctx(ctx))
1080 goto out;
1081
1082 iwl_remove_station(priv, ctx->ap_sta_id, bssid);
1083 ctx->preauth_bssid = false;
1084 /* no need to commit */
1085 out:
1086 mutex_unlock(&priv->shrd->mutex);
1087 IWL_DEBUG_MAC80211(priv, "leave\n");
1088}
1089
1090static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
1091 enum ieee80211_rssi_event rssi_event)
1092{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001093 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001094
1095 IWL_DEBUG_MAC80211(priv, "enter\n");
1096 mutex_lock(&priv->shrd->mutex);
1097
Don Fry38622412011-12-16 07:07:36 -08001098 if (cfg(priv)->bt_params &&
1099 cfg(priv)->bt_params->advanced_bt_coexist) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001100 if (rssi_event == RSSI_EVENT_LOW)
1101 priv->bt_enable_pspoll = true;
1102 else if (rssi_event == RSSI_EVENT_HIGH)
1103 priv->bt_enable_pspoll = false;
1104
1105 iwlagn_send_advance_bt_config(priv);
1106 } else {
1107 IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled,"
1108 "ignoring RSSI callback\n");
1109 }
1110
1111 mutex_unlock(&priv->shrd->mutex);
1112 IWL_DEBUG_MAC80211(priv, "leave\n");
1113}
1114
1115static int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
1116 struct ieee80211_sta *sta, bool set)
1117{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001118 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001119
Johannes Berg1ee158d2012-02-17 10:07:44 -08001120 queue_work(priv->workqueue, &priv->beacon_update);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001121
1122 return 0;
1123}
1124
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001125static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
1126 struct ieee80211_vif *vif, u16 queue,
1127 const struct ieee80211_tx_queue_params *params)
1128{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001129 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001130 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1131 struct iwl_rxon_context *ctx = vif_priv->ctx;
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001132 int q;
1133
1134 if (WARN_ON(!ctx))
1135 return -EINVAL;
1136
1137 IWL_DEBUG_MAC80211(priv, "enter\n");
1138
1139 if (!iwl_is_ready_rf(priv->shrd)) {
1140 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
1141 return -EIO;
1142 }
1143
1144 if (queue >= AC_NUM) {
1145 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
1146 return 0;
1147 }
1148
1149 q = AC_NUM - 1 - queue;
1150
Johannes Berg08ae86a2012-03-05 11:24:27 -08001151 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001152
1153 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1154 cpu_to_le16(params->cw_min);
1155 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1156 cpu_to_le16(params->cw_max);
1157 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1158 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1159 cpu_to_le16((params->txop * 32));
1160
1161 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1162
Johannes Berg08ae86a2012-03-05 11:24:27 -08001163 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001164
1165 IWL_DEBUG_MAC80211(priv, "leave\n");
1166 return 0;
1167}
1168
1169static int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
1170{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001171 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001172
1173 return priv->ibss_manager == IWL_IBSS_MANAGER;
1174}
1175
1176static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
1177{
1178 iwl_connection_init_rx_config(priv, ctx);
1179
1180 iwlagn_set_rxon_chain(priv, ctx);
1181
1182 return iwlagn_commit_rxon(priv, ctx);
1183}
1184
1185static int iwl_setup_interface(struct iwl_priv *priv,
1186 struct iwl_rxon_context *ctx)
1187{
1188 struct ieee80211_vif *vif = ctx->vif;
1189 int err;
1190
1191 lockdep_assert_held(&priv->shrd->mutex);
1192
1193 /*
1194 * This variable will be correct only when there's just
1195 * a single context, but all code using it is for hardware
1196 * that supports only one context.
1197 */
1198 priv->iw_mode = vif->type;
1199
1200 ctx->is_active = true;
1201
1202 err = iwl_set_mode(priv, ctx);
1203 if (err) {
1204 if (!ctx->always_active)
1205 ctx->is_active = false;
1206 return err;
1207 }
1208
Don Fry38622412011-12-16 07:07:36 -08001209 if (cfg(priv)->bt_params && cfg(priv)->bt_params->advanced_bt_coexist &&
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001210 vif->type == NL80211_IFTYPE_ADHOC) {
1211 /*
1212 * pretend to have high BT traffic as long as we
1213 * are operating in IBSS mode, as this will cause
1214 * the rate scaling etc. to behave as intended.
1215 */
1216 priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
1217 }
1218
1219 return 0;
1220}
1221
1222static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
1223 struct ieee80211_vif *vif)
1224{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001225 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001226 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1227 struct iwl_rxon_context *tmp, *ctx = NULL;
1228 int err;
1229 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif);
1230
1231 IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
1232 viftype, vif->addr);
1233
1234 cancel_delayed_work_sync(&priv->hw_roc_disable_work);
1235
1236 mutex_lock(&priv->shrd->mutex);
1237
1238 iwlagn_disable_roc(priv);
1239
1240 if (!iwl_is_ready_rf(priv->shrd)) {
1241 IWL_WARN(priv, "Try to add interface when device not ready\n");
1242 err = -EINVAL;
1243 goto out;
1244 }
1245
1246 for_each_context(priv, tmp) {
1247 u32 possible_modes =
1248 tmp->interface_modes | tmp->exclusive_interface_modes;
1249
1250 if (tmp->vif) {
1251 /* check if this busy context is exclusive */
1252 if (tmp->exclusive_interface_modes &
1253 BIT(tmp->vif->type)) {
1254 err = -EINVAL;
1255 goto out;
1256 }
1257 continue;
1258 }
1259
1260 if (!(possible_modes & BIT(viftype)))
1261 continue;
1262
1263 /* have maybe usable context w/o interface */
1264 ctx = tmp;
1265 break;
1266 }
1267
1268 if (!ctx) {
1269 err = -EOPNOTSUPP;
1270 goto out;
1271 }
1272
1273 vif_priv->ctx = ctx;
1274 ctx->vif = vif;
1275
1276 err = iwl_setup_interface(priv, ctx);
1277 if (!err)
1278 goto out;
1279
1280 ctx->vif = NULL;
1281 priv->iw_mode = NL80211_IFTYPE_STATION;
1282 out:
1283 mutex_unlock(&priv->shrd->mutex);
1284
1285 IWL_DEBUG_MAC80211(priv, "leave\n");
1286 return err;
1287}
1288
1289static void iwl_teardown_interface(struct iwl_priv *priv,
1290 struct ieee80211_vif *vif,
1291 bool mode_change)
1292{
1293 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1294
1295 lockdep_assert_held(&priv->shrd->mutex);
1296
1297 if (priv->scan_vif == vif) {
1298 iwl_scan_cancel_timeout(priv, 200);
1299 iwl_force_scan_end(priv);
1300 }
1301
1302 if (!mode_change) {
1303 iwl_set_mode(priv, ctx);
1304 if (!ctx->always_active)
1305 ctx->is_active = false;
1306 }
1307
1308 /*
1309 * When removing the IBSS interface, overwrite the
1310 * BT traffic load with the stored one from the last
1311 * notification, if any. If this is a device that
1312 * doesn't implement this, this has no effect since
1313 * both values are the same and zero.
1314 */
1315 if (vif->type == NL80211_IFTYPE_ADHOC)
1316 priv->bt_traffic_load = priv->last_bt_traffic_load;
1317}
1318
1319static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw,
1320 struct ieee80211_vif *vif)
1321{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001322 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001323 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1324
1325 IWL_DEBUG_MAC80211(priv, "enter\n");
1326
1327 mutex_lock(&priv->shrd->mutex);
1328
1329 if (WARN_ON(ctx->vif != vif)) {
1330 struct iwl_rxon_context *tmp;
1331 IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
1332 for_each_context(priv, tmp)
1333 IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
1334 tmp->ctxid, tmp, tmp->vif);
1335 }
1336 ctx->vif = NULL;
1337
1338 iwl_teardown_interface(priv, vif, false);
1339
1340 mutex_unlock(&priv->shrd->mutex);
1341
1342 IWL_DEBUG_MAC80211(priv, "leave\n");
1343
1344}
1345
1346static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
1347 struct ieee80211_vif *vif,
1348 enum nl80211_iftype newtype, bool newp2p)
1349{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001350 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001351 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1352 struct iwl_rxon_context *bss_ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1353 struct iwl_rxon_context *tmp;
1354 enum nl80211_iftype newviftype = newtype;
1355 u32 interface_modes;
1356 int err;
1357
1358 IWL_DEBUG_MAC80211(priv, "enter\n");
1359
1360 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1361
1362 mutex_lock(&priv->shrd->mutex);
1363
1364 if (!ctx->vif || !iwl_is_ready_rf(priv->shrd)) {
1365 /*
1366 * Huh? But wait ... this can maybe happen when
1367 * we're in the middle of a firmware restart!
1368 */
1369 err = -EBUSY;
1370 goto out;
1371 }
1372
1373 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
1374
1375 if (!(interface_modes & BIT(newtype))) {
1376 err = -EBUSY;
1377 goto out;
1378 }
1379
1380 /*
1381 * Refuse a change that should be done by moving from the PAN
1382 * context to the BSS context instead, if the BSS context is
1383 * available and can support the new interface type.
1384 */
1385 if (ctx->ctxid == IWL_RXON_CTX_PAN && !bss_ctx->vif &&
1386 (bss_ctx->interface_modes & BIT(newtype) ||
1387 bss_ctx->exclusive_interface_modes & BIT(newtype))) {
1388 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
1389 err = -EBUSY;
1390 goto out;
1391 }
1392
1393 if (ctx->exclusive_interface_modes & BIT(newtype)) {
1394 for_each_context(priv, tmp) {
1395 if (ctx == tmp)
1396 continue;
1397
1398 if (!tmp->vif)
1399 continue;
1400
1401 /*
1402 * The current mode switch would be exclusive, but
1403 * another context is active ... refuse the switch.
1404 */
1405 err = -EBUSY;
1406 goto out;
1407 }
1408 }
1409
1410 /* success */
1411 iwl_teardown_interface(priv, vif, true);
1412 vif->type = newviftype;
1413 vif->p2p = newp2p;
1414 err = iwl_setup_interface(priv, ctx);
1415 WARN_ON(err);
1416 /*
1417 * We've switched internally, but submitting to the
1418 * device may have failed for some reason. Mask this
1419 * error, because otherwise mac80211 will not switch
1420 * (and set the interface type back) and we'll be
1421 * out of sync with it.
1422 */
1423 err = 0;
1424
1425 out:
1426 mutex_unlock(&priv->shrd->mutex);
1427 IWL_DEBUG_MAC80211(priv, "leave\n");
1428
1429 return err;
1430}
1431
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001432static int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
1433 struct ieee80211_vif *vif,
1434 struct cfg80211_scan_request *req)
1435{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001436 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001437 int ret;
1438
1439 IWL_DEBUG_MAC80211(priv, "enter\n");
1440
1441 if (req->n_channels == 0)
1442 return -EINVAL;
1443
1444 mutex_lock(&priv->shrd->mutex);
1445
1446 /*
1447 * If an internal scan is in progress, just set
1448 * up the scan_request as per above.
1449 */
1450 if (priv->scan_type != IWL_SCAN_NORMAL) {
1451 IWL_DEBUG_SCAN(priv,
1452 "SCAN request during internal scan - defer\n");
1453 priv->scan_request = req;
1454 priv->scan_vif = vif;
1455 ret = 0;
1456 } else {
1457 priv->scan_request = req;
1458 priv->scan_vif = vif;
1459 /*
1460 * mac80211 will only ask for one band at a time
1461 * so using channels[0] here is ok
1462 */
1463 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
1464 req->channels[0]->band);
1465 if (ret) {
1466 priv->scan_request = NULL;
1467 priv->scan_vif = NULL;
1468 }
1469 }
1470
1471 IWL_DEBUG_MAC80211(priv, "leave\n");
1472
1473 mutex_unlock(&priv->shrd->mutex);
1474
1475 return ret;
1476}
1477
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001478static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
1479 struct ieee80211_vif *vif,
1480 struct ieee80211_sta *sta)
1481{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001482 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001483 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1484 int ret;
1485
1486 IWL_DEBUG_MAC80211(priv, "enter: received request to remove "
1487 "station %pM\n", sta->addr);
1488 mutex_lock(&priv->shrd->mutex);
1489 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n",
1490 sta->addr);
1491 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
1492 if (ret)
1493 IWL_DEBUG_QUIET_RFKILL(priv, "Error removing station %pM\n",
1494 sta->addr);
1495 mutex_unlock(&priv->shrd->mutex);
1496 IWL_DEBUG_MAC80211(priv, "leave\n");
1497
1498 return ret;
1499}
1500
1501static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
1502{
Johannes Berg9451ca12012-03-05 11:24:23 -08001503 struct iwl_addsta_cmd cmd = {
1504 .mode = STA_CONTROL_MODIFY_MSK,
1505 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1506 .sta.sta_id = sta_id,
1507 };
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001508
Johannes Berg9451ca12012-03-05 11:24:23 -08001509 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001510}
1511
1512static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
1513 struct ieee80211_vif *vif,
1514 enum sta_notify_cmd cmd,
1515 struct ieee80211_sta *sta)
1516{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001517 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001518 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1519 int sta_id;
1520
1521 IWL_DEBUG_MAC80211(priv, "enter\n");
1522
1523 switch (cmd) {
1524 case STA_NOTIFY_SLEEP:
1525 WARN_ON(!sta_priv->client);
1526 sta_priv->asleep = true;
1527 if (atomic_read(&sta_priv->pending_frames) > 0)
1528 ieee80211_sta_block_awake(hw, sta, true);
1529 break;
1530 case STA_NOTIFY_AWAKE:
1531 WARN_ON(!sta_priv->client);
1532 if (!sta_priv->asleep)
1533 break;
1534 sta_priv->asleep = false;
1535 sta_id = iwl_sta_id(sta);
1536 if (sta_id != IWL_INVALID_STATION)
1537 iwl_sta_modify_ps_wake(priv, sta_id);
1538 break;
1539 default:
1540 break;
1541 }
1542 IWL_DEBUG_MAC80211(priv, "leave\n");
1543}
1544
Wey-Yi Guy73356132011-11-10 06:55:11 -08001545struct ieee80211_ops iwlagn_hw_ops = {
1546 .tx = iwlagn_mac_tx,
1547 .start = iwlagn_mac_start,
1548 .stop = iwlagn_mac_stop,
1549#ifdef CONFIG_PM_SLEEP
1550 .suspend = iwlagn_mac_suspend,
1551 .resume = iwlagn_mac_resume,
1552#endif
1553 .add_interface = iwlagn_mac_add_interface,
1554 .remove_interface = iwlagn_mac_remove_interface,
1555 .change_interface = iwlagn_mac_change_interface,
1556 .config = iwlagn_mac_config,
1557 .configure_filter = iwlagn_configure_filter,
1558 .set_key = iwlagn_mac_set_key,
1559 .update_tkip_key = iwlagn_mac_update_tkip_key,
1560 .set_rekey_data = iwlagn_mac_set_rekey_data,
1561 .conf_tx = iwlagn_mac_conf_tx,
1562 .bss_info_changed = iwlagn_bss_info_changed,
1563 .ampdu_action = iwlagn_mac_ampdu_action,
1564 .hw_scan = iwlagn_mac_hw_scan,
1565 .sta_notify = iwlagn_mac_sta_notify,
1566 .sta_add = iwlagn_mac_sta_add,
1567 .sta_remove = iwlagn_mac_sta_remove,
1568 .channel_switch = iwlagn_mac_channel_switch,
1569 .flush = iwlagn_mac_flush,
1570 .tx_last_beacon = iwlagn_mac_tx_last_beacon,
1571 .remain_on_channel = iwlagn_mac_remain_on_channel,
1572 .cancel_remain_on_channel = iwlagn_mac_cancel_remain_on_channel,
1573 .rssi_callback = iwlagn_mac_rssi_callback,
1574 CFG80211_TESTMODE_CMD(iwlagn_mac_testmode_cmd)
1575 CFG80211_TESTMODE_DUMP(iwlagn_mac_testmode_dump)
1576 .tx_sync = iwlagn_mac_tx_sync,
1577 .finish_tx_sync = iwlagn_mac_finish_tx_sync,
1578 .set_tim = iwlagn_mac_set_tim,
1579};
1580
1581/* This function both allocates and initializes hw and priv. */
1582struct ieee80211_hw *iwl_alloc_all(void)
1583{
1584 struct iwl_priv *priv;
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001585 struct iwl_op_mode *op_mode;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001586 /* mac80211 allocates memory for this device instance, including
1587 * space for this driver's private structure */
1588 struct ieee80211_hw *hw;
1589
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001590 hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) +
1591 sizeof(struct iwl_op_mode), &iwlagn_hw_ops);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001592 if (!hw)
1593 goto out;
1594
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001595 op_mode = hw->priv;
1596 priv = IWL_OP_MODE_GET_DVM(op_mode);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001597 priv->hw = hw;
1598
1599out:
1600 return hw;
1601}