blob: 9fba532d35cd4226ba339952feaf2fa4a7b7e691 [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
782 spin_lock_irq(&priv->shrd->lock);
783
784 priv->current_ht_config.smps = conf->smps_mode;
785
786 /* Configure HT40 channels */
787 ctx->ht.enabled = conf_is_ht(conf);
Wey-Yi Guy137ce792011-11-22 16:23:35 -0800788 if (ctx->ht.enabled)
789 iwlagn_config_ht40(conf, ctx);
790 else
Wey-Yi Guy73356132011-11-10 06:55:11 -0800791 ctx->ht.is_40mhz = false;
792
793 if ((le16_to_cpu(ctx->staging.channel) != ch))
794 ctx->staging.flags = 0;
795
796 iwl_set_rxon_channel(priv, channel, ctx);
797 iwl_set_rxon_ht(priv, ht_conf);
798 iwl_set_flags_for_band(priv, ctx, channel->band, ctx->vif);
799
800 spin_unlock_irq(&priv->shrd->lock);
801
802 iwl_set_rate(priv);
803 /*
804 * at this point, staging_rxon has the
805 * configuration for channel switch
806 */
807 set_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->shrd->status);
808 priv->switch_channel = cpu_to_le16(ch);
Don Fry38622412011-12-16 07:07:36 -0800809 if (cfg(priv)->lib->set_channel_switch(priv, ch_switch)) {
Wey-Yi Guy73356132011-11-10 06:55:11 -0800810 clear_bit(STATUS_CHANNEL_SWITCH_PENDING, &priv->shrd->status);
811 priv->switch_channel = 0;
812 ieee80211_chswitch_done(ctx->vif, false);
813 }
814
815out:
816 mutex_unlock(&priv->shrd->mutex);
817 IWL_DEBUG_MAC80211(priv, "leave\n");
818}
819
820static void iwlagn_configure_filter(struct ieee80211_hw *hw,
821 unsigned int changed_flags,
822 unsigned int *total_flags,
823 u64 multicast)
824{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200825 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800826 __le32 filter_or = 0, filter_nand = 0;
827 struct iwl_rxon_context *ctx;
828
829#define CHK(test, flag) do { \
830 if (*total_flags & (test)) \
831 filter_or |= (flag); \
832 else \
833 filter_nand |= (flag); \
834 } while (0)
835
836 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
837 changed_flags, *total_flags);
838
839 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
840 /* Setting _just_ RXON_FILTER_CTL2HOST_MSK causes FH errors */
841 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_PROMISC_MSK);
842 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
843
844#undef CHK
845
846 mutex_lock(&priv->shrd->mutex);
847
848 for_each_context(priv, ctx) {
849 ctx->staging.filter_flags &= ~filter_nand;
850 ctx->staging.filter_flags |= filter_or;
851
852 /*
853 * Not committing directly because hardware can perform a scan,
854 * but we'll eventually commit the filter flags change anyway.
855 */
856 }
857
858 mutex_unlock(&priv->shrd->mutex);
859
860 /*
861 * Receiving all multicast frames is always enabled by the
862 * default flags setup in iwl_connection_init_rx_config()
863 * since we currently do not support programming multicast
864 * filters into the device.
865 */
866 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
867 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
868}
869
870static void iwlagn_mac_flush(struct ieee80211_hw *hw, bool drop)
871{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200872 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800873
874 mutex_lock(&priv->shrd->mutex);
875 IWL_DEBUG_MAC80211(priv, "enter\n");
876
877 if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status)) {
878 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
879 goto done;
880 }
881 if (iwl_is_rfkill(priv->shrd)) {
882 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
883 goto done;
884 }
885
886 /*
887 * mac80211 will not push any more frames for transmit
888 * until the flush is completed
889 */
890 if (drop) {
891 IWL_DEBUG_MAC80211(priv, "send flush command\n");
892 if (iwlagn_txfifo_flush(priv, IWL_DROP_ALL)) {
893 IWL_ERR(priv, "flush request fail\n");
894 goto done;
895 }
896 }
897 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
898 iwl_trans_wait_tx_queue_empty(trans(priv));
899done:
900 mutex_unlock(&priv->shrd->mutex);
901 IWL_DEBUG_MAC80211(priv, "leave\n");
902}
903
904static int iwlagn_mac_remain_on_channel(struct ieee80211_hw *hw,
905 struct ieee80211_channel *channel,
906 enum nl80211_channel_type channel_type,
907 int duration)
908{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200909 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800910 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_PAN];
911 int err = 0;
912
913 if (!(priv->shrd->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
914 return -EOPNOTSUPP;
915
916 if (!(ctx->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)))
917 return -EOPNOTSUPP;
918
919 IWL_DEBUG_MAC80211(priv, "enter\n");
920 mutex_lock(&priv->shrd->mutex);
921
922 if (test_bit(STATUS_SCAN_HW, &priv->shrd->status)) {
923 err = -EBUSY;
924 goto out;
925 }
926
927 priv->hw_roc_channel = channel;
928 priv->hw_roc_chantype = channel_type;
Johannes Berg3ddf6be2011-11-10 06:55:21 -0800929 /* convert from ms to TU */
930 priv->hw_roc_duration = DIV_ROUND_UP(1000 * duration, 1024);
Wey-Yi Guy73356132011-11-10 06:55:11 -0800931 priv->hw_roc_start_notified = false;
932 cancel_delayed_work(&priv->hw_roc_disable_work);
933
934 if (!ctx->is_active) {
Johannes Berga69cd042011-11-10 06:55:13 -0800935 static const struct iwl_qos_info default_qos_data = {
936 .def_qos_parm = {
937 .ac[0] = {
938 .cw_min = cpu_to_le16(3),
939 .cw_max = cpu_to_le16(7),
940 .aifsn = 2,
941 .edca_txop = cpu_to_le16(1504),
942 },
943 .ac[1] = {
944 .cw_min = cpu_to_le16(7),
945 .cw_max = cpu_to_le16(15),
946 .aifsn = 2,
947 .edca_txop = cpu_to_le16(3008),
948 },
949 .ac[2] = {
950 .cw_min = cpu_to_le16(15),
951 .cw_max = cpu_to_le16(1023),
952 .aifsn = 3,
953 },
954 .ac[3] = {
955 .cw_min = cpu_to_le16(15),
956 .cw_max = cpu_to_le16(1023),
957 .aifsn = 7,
958 },
959 },
960 };
961
Wey-Yi Guy73356132011-11-10 06:55:11 -0800962 ctx->is_active = true;
Johannes Berga69cd042011-11-10 06:55:13 -0800963 ctx->qos_data = default_qos_data;
Wey-Yi Guy73356132011-11-10 06:55:11 -0800964 ctx->staging.dev_type = RXON_DEV_TYPE_P2P;
965 memcpy(ctx->staging.node_addr,
966 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
967 ETH_ALEN);
968 memcpy(ctx->staging.bssid_addr,
969 priv->contexts[IWL_RXON_CTX_BSS].staging.node_addr,
970 ETH_ALEN);
971 err = iwlagn_commit_rxon(priv, ctx);
972 if (err)
973 goto out;
974 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK |
975 RXON_FILTER_PROMISC_MSK |
976 RXON_FILTER_CTL2HOST_MSK;
977
978 err = iwlagn_commit_rxon(priv, ctx);
979 if (err) {
980 iwlagn_disable_roc(priv);
981 goto out;
982 }
983 priv->hw_roc_setup = true;
984 }
985
986 err = iwl_scan_initiate(priv, ctx->vif, IWL_SCAN_ROC, channel->band);
987 if (err)
988 iwlagn_disable_roc(priv);
989
990 out:
991 mutex_unlock(&priv->shrd->mutex);
992 IWL_DEBUG_MAC80211(priv, "leave\n");
993
994 return err;
995}
996
997static int iwlagn_mac_cancel_remain_on_channel(struct ieee80211_hw *hw)
998{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200999 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001000
1001 if (!(priv->shrd->valid_contexts & BIT(IWL_RXON_CTX_PAN)))
1002 return -EOPNOTSUPP;
1003
1004 IWL_DEBUG_MAC80211(priv, "enter\n");
1005 mutex_lock(&priv->shrd->mutex);
1006 iwl_scan_cancel_timeout(priv, priv->hw_roc_duration);
1007 iwlagn_disable_roc(priv);
1008 mutex_unlock(&priv->shrd->mutex);
1009 IWL_DEBUG_MAC80211(priv, "leave\n");
1010
1011 return 0;
1012}
1013
1014static int iwlagn_mac_tx_sync(struct ieee80211_hw *hw,
1015 struct ieee80211_vif *vif,
1016 const u8 *bssid,
1017 enum ieee80211_tx_sync_type type)
1018{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001019 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001020 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1021 struct iwl_rxon_context *ctx = vif_priv->ctx;
1022 int ret;
1023 u8 sta_id;
1024
John W. Linville5d22df22011-12-14 14:35:41 -05001025 if (ctx->ctxid != IWL_RXON_CTX_PAN)
1026 return 0;
1027
Wey-Yi Guy73356132011-11-10 06:55:11 -08001028 IWL_DEBUG_MAC80211(priv, "enter\n");
1029 mutex_lock(&priv->shrd->mutex);
1030
1031 if (iwl_is_associated_ctx(ctx)) {
1032 ret = 0;
1033 goto out;
1034 }
1035
1036 if (ctx->preauth_bssid || test_bit(STATUS_SCAN_HW,
1037 &priv->shrd->status)) {
1038 ret = -EBUSY;
1039 goto out;
1040 }
1041
1042 ret = iwl_add_station_common(priv, ctx, bssid, true, NULL, &sta_id);
1043 if (ret)
1044 goto out;
1045
1046 if (WARN_ON(sta_id != ctx->ap_sta_id)) {
1047 ret = -EIO;
1048 goto out_remove_sta;
1049 }
1050
1051 memcpy(ctx->bssid, bssid, ETH_ALEN);
1052 ctx->preauth_bssid = true;
1053
1054 ret = iwlagn_commit_rxon(priv, ctx);
1055
1056 if (ret == 0)
1057 goto out;
1058
1059 out_remove_sta:
1060 iwl_remove_station(priv, sta_id, bssid);
1061 out:
1062 mutex_unlock(&priv->shrd->mutex);
1063 IWL_DEBUG_MAC80211(priv, "leave\n");
1064
1065 return ret;
1066}
1067
1068static void iwlagn_mac_finish_tx_sync(struct ieee80211_hw *hw,
1069 struct ieee80211_vif *vif,
1070 const u8 *bssid,
1071 enum ieee80211_tx_sync_type type)
1072{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001073 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001074 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1075 struct iwl_rxon_context *ctx = vif_priv->ctx;
1076
John W. Linville5d22df22011-12-14 14:35:41 -05001077 if (ctx->ctxid != IWL_RXON_CTX_PAN)
1078 return;
1079
Wey-Yi Guy73356132011-11-10 06:55:11 -08001080 IWL_DEBUG_MAC80211(priv, "enter\n");
1081 mutex_lock(&priv->shrd->mutex);
1082
1083 if (iwl_is_associated_ctx(ctx))
1084 goto out;
1085
1086 iwl_remove_station(priv, ctx->ap_sta_id, bssid);
1087 ctx->preauth_bssid = false;
1088 /* no need to commit */
1089 out:
1090 mutex_unlock(&priv->shrd->mutex);
1091 IWL_DEBUG_MAC80211(priv, "leave\n");
1092}
1093
1094static void iwlagn_mac_rssi_callback(struct ieee80211_hw *hw,
1095 enum ieee80211_rssi_event rssi_event)
1096{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001097 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001098
1099 IWL_DEBUG_MAC80211(priv, "enter\n");
1100 mutex_lock(&priv->shrd->mutex);
1101
Don Fry38622412011-12-16 07:07:36 -08001102 if (cfg(priv)->bt_params &&
1103 cfg(priv)->bt_params->advanced_bt_coexist) {
Wey-Yi Guy73356132011-11-10 06:55:11 -08001104 if (rssi_event == RSSI_EVENT_LOW)
1105 priv->bt_enable_pspoll = true;
1106 else if (rssi_event == RSSI_EVENT_HIGH)
1107 priv->bt_enable_pspoll = false;
1108
1109 iwlagn_send_advance_bt_config(priv);
1110 } else {
1111 IWL_DEBUG_MAC80211(priv, "Advanced BT coex disabled,"
1112 "ignoring RSSI callback\n");
1113 }
1114
1115 mutex_unlock(&priv->shrd->mutex);
1116 IWL_DEBUG_MAC80211(priv, "leave\n");
1117}
1118
1119static int iwlagn_mac_set_tim(struct ieee80211_hw *hw,
1120 struct ieee80211_sta *sta, bool set)
1121{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001122 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001123
Johannes Berg1ee158d2012-02-17 10:07:44 -08001124 queue_work(priv->workqueue, &priv->beacon_update);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001125
1126 return 0;
1127}
1128
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001129static int iwlagn_mac_conf_tx(struct ieee80211_hw *hw,
1130 struct ieee80211_vif *vif, u16 queue,
1131 const struct ieee80211_tx_queue_params *params)
1132{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001133 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001134 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1135 struct iwl_rxon_context *ctx = vif_priv->ctx;
1136 unsigned long flags;
1137 int q;
1138
1139 if (WARN_ON(!ctx))
1140 return -EINVAL;
1141
1142 IWL_DEBUG_MAC80211(priv, "enter\n");
1143
1144 if (!iwl_is_ready_rf(priv->shrd)) {
1145 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
1146 return -EIO;
1147 }
1148
1149 if (queue >= AC_NUM) {
1150 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
1151 return 0;
1152 }
1153
1154 q = AC_NUM - 1 - queue;
1155
1156 spin_lock_irqsave(&priv->shrd->lock, flags);
1157
1158 ctx->qos_data.def_qos_parm.ac[q].cw_min =
1159 cpu_to_le16(params->cw_min);
1160 ctx->qos_data.def_qos_parm.ac[q].cw_max =
1161 cpu_to_le16(params->cw_max);
1162 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
1163 ctx->qos_data.def_qos_parm.ac[q].edca_txop =
1164 cpu_to_le16((params->txop * 32));
1165
1166 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0;
1167
1168 spin_unlock_irqrestore(&priv->shrd->lock, flags);
1169
1170 IWL_DEBUG_MAC80211(priv, "leave\n");
1171 return 0;
1172}
1173
1174static int iwlagn_mac_tx_last_beacon(struct ieee80211_hw *hw)
1175{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001176 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001177
1178 return priv->ibss_manager == IWL_IBSS_MANAGER;
1179}
1180
1181static int iwl_set_mode(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
1182{
1183 iwl_connection_init_rx_config(priv, ctx);
1184
1185 iwlagn_set_rxon_chain(priv, ctx);
1186
1187 return iwlagn_commit_rxon(priv, ctx);
1188}
1189
1190static int iwl_setup_interface(struct iwl_priv *priv,
1191 struct iwl_rxon_context *ctx)
1192{
1193 struct ieee80211_vif *vif = ctx->vif;
1194 int err;
1195
1196 lockdep_assert_held(&priv->shrd->mutex);
1197
1198 /*
1199 * This variable will be correct only when there's just
1200 * a single context, but all code using it is for hardware
1201 * that supports only one context.
1202 */
1203 priv->iw_mode = vif->type;
1204
1205 ctx->is_active = true;
1206
1207 err = iwl_set_mode(priv, ctx);
1208 if (err) {
1209 if (!ctx->always_active)
1210 ctx->is_active = false;
1211 return err;
1212 }
1213
Don Fry38622412011-12-16 07:07:36 -08001214 if (cfg(priv)->bt_params && cfg(priv)->bt_params->advanced_bt_coexist &&
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001215 vif->type == NL80211_IFTYPE_ADHOC) {
1216 /*
1217 * pretend to have high BT traffic as long as we
1218 * are operating in IBSS mode, as this will cause
1219 * the rate scaling etc. to behave as intended.
1220 */
1221 priv->bt_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_HIGH;
1222 }
1223
1224 return 0;
1225}
1226
1227static int iwlagn_mac_add_interface(struct ieee80211_hw *hw,
1228 struct ieee80211_vif *vif)
1229{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001230 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001231 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
1232 struct iwl_rxon_context *tmp, *ctx = NULL;
1233 int err;
1234 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif);
1235
1236 IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n",
1237 viftype, vif->addr);
1238
1239 cancel_delayed_work_sync(&priv->hw_roc_disable_work);
1240
1241 mutex_lock(&priv->shrd->mutex);
1242
1243 iwlagn_disable_roc(priv);
1244
1245 if (!iwl_is_ready_rf(priv->shrd)) {
1246 IWL_WARN(priv, "Try to add interface when device not ready\n");
1247 err = -EINVAL;
1248 goto out;
1249 }
1250
1251 for_each_context(priv, tmp) {
1252 u32 possible_modes =
1253 tmp->interface_modes | tmp->exclusive_interface_modes;
1254
1255 if (tmp->vif) {
1256 /* check if this busy context is exclusive */
1257 if (tmp->exclusive_interface_modes &
1258 BIT(tmp->vif->type)) {
1259 err = -EINVAL;
1260 goto out;
1261 }
1262 continue;
1263 }
1264
1265 if (!(possible_modes & BIT(viftype)))
1266 continue;
1267
1268 /* have maybe usable context w/o interface */
1269 ctx = tmp;
1270 break;
1271 }
1272
1273 if (!ctx) {
1274 err = -EOPNOTSUPP;
1275 goto out;
1276 }
1277
1278 vif_priv->ctx = ctx;
1279 ctx->vif = vif;
1280
1281 err = iwl_setup_interface(priv, ctx);
1282 if (!err)
1283 goto out;
1284
1285 ctx->vif = NULL;
1286 priv->iw_mode = NL80211_IFTYPE_STATION;
1287 out:
1288 mutex_unlock(&priv->shrd->mutex);
1289
1290 IWL_DEBUG_MAC80211(priv, "leave\n");
1291 return err;
1292}
1293
1294static void iwl_teardown_interface(struct iwl_priv *priv,
1295 struct ieee80211_vif *vif,
1296 bool mode_change)
1297{
1298 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1299
1300 lockdep_assert_held(&priv->shrd->mutex);
1301
1302 if (priv->scan_vif == vif) {
1303 iwl_scan_cancel_timeout(priv, 200);
1304 iwl_force_scan_end(priv);
1305 }
1306
1307 if (!mode_change) {
1308 iwl_set_mode(priv, ctx);
1309 if (!ctx->always_active)
1310 ctx->is_active = false;
1311 }
1312
1313 /*
1314 * When removing the IBSS interface, overwrite the
1315 * BT traffic load with the stored one from the last
1316 * notification, if any. If this is a device that
1317 * doesn't implement this, this has no effect since
1318 * both values are the same and zero.
1319 */
1320 if (vif->type == NL80211_IFTYPE_ADHOC)
1321 priv->bt_traffic_load = priv->last_bt_traffic_load;
1322}
1323
1324static void iwlagn_mac_remove_interface(struct ieee80211_hw *hw,
1325 struct ieee80211_vif *vif)
1326{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001327 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001328 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1329
1330 IWL_DEBUG_MAC80211(priv, "enter\n");
1331
1332 mutex_lock(&priv->shrd->mutex);
1333
1334 if (WARN_ON(ctx->vif != vif)) {
1335 struct iwl_rxon_context *tmp;
1336 IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
1337 for_each_context(priv, tmp)
1338 IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
1339 tmp->ctxid, tmp, tmp->vif);
1340 }
1341 ctx->vif = NULL;
1342
1343 iwl_teardown_interface(priv, vif, false);
1344
1345 mutex_unlock(&priv->shrd->mutex);
1346
1347 IWL_DEBUG_MAC80211(priv, "leave\n");
1348
1349}
1350
1351static int iwlagn_mac_change_interface(struct ieee80211_hw *hw,
1352 struct ieee80211_vif *vif,
1353 enum nl80211_iftype newtype, bool newp2p)
1354{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001355 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy0b7a4c72011-11-10 06:55:14 -08001356 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
1357 struct iwl_rxon_context *bss_ctx = &priv->contexts[IWL_RXON_CTX_BSS];
1358 struct iwl_rxon_context *tmp;
1359 enum nl80211_iftype newviftype = newtype;
1360 u32 interface_modes;
1361 int err;
1362
1363 IWL_DEBUG_MAC80211(priv, "enter\n");
1364
1365 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1366
1367 mutex_lock(&priv->shrd->mutex);
1368
1369 if (!ctx->vif || !iwl_is_ready_rf(priv->shrd)) {
1370 /*
1371 * Huh? But wait ... this can maybe happen when
1372 * we're in the middle of a firmware restart!
1373 */
1374 err = -EBUSY;
1375 goto out;
1376 }
1377
1378 interface_modes = ctx->interface_modes | ctx->exclusive_interface_modes;
1379
1380 if (!(interface_modes & BIT(newtype))) {
1381 err = -EBUSY;
1382 goto out;
1383 }
1384
1385 /*
1386 * Refuse a change that should be done by moving from the PAN
1387 * context to the BSS context instead, if the BSS context is
1388 * available and can support the new interface type.
1389 */
1390 if (ctx->ctxid == IWL_RXON_CTX_PAN && !bss_ctx->vif &&
1391 (bss_ctx->interface_modes & BIT(newtype) ||
1392 bss_ctx->exclusive_interface_modes & BIT(newtype))) {
1393 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
1394 err = -EBUSY;
1395 goto out;
1396 }
1397
1398 if (ctx->exclusive_interface_modes & BIT(newtype)) {
1399 for_each_context(priv, tmp) {
1400 if (ctx == tmp)
1401 continue;
1402
1403 if (!tmp->vif)
1404 continue;
1405
1406 /*
1407 * The current mode switch would be exclusive, but
1408 * another context is active ... refuse the switch.
1409 */
1410 err = -EBUSY;
1411 goto out;
1412 }
1413 }
1414
1415 /* success */
1416 iwl_teardown_interface(priv, vif, true);
1417 vif->type = newviftype;
1418 vif->p2p = newp2p;
1419 err = iwl_setup_interface(priv, ctx);
1420 WARN_ON(err);
1421 /*
1422 * We've switched internally, but submitting to the
1423 * device may have failed for some reason. Mask this
1424 * error, because otherwise mac80211 will not switch
1425 * (and set the interface type back) and we'll be
1426 * out of sync with it.
1427 */
1428 err = 0;
1429
1430 out:
1431 mutex_unlock(&priv->shrd->mutex);
1432 IWL_DEBUG_MAC80211(priv, "leave\n");
1433
1434 return err;
1435}
1436
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001437static int iwlagn_mac_hw_scan(struct ieee80211_hw *hw,
1438 struct ieee80211_vif *vif,
1439 struct cfg80211_scan_request *req)
1440{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001441 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyba4c5312011-11-10 06:55:15 -08001442 int ret;
1443
1444 IWL_DEBUG_MAC80211(priv, "enter\n");
1445
1446 if (req->n_channels == 0)
1447 return -EINVAL;
1448
1449 mutex_lock(&priv->shrd->mutex);
1450
1451 /*
1452 * If an internal scan is in progress, just set
1453 * up the scan_request as per above.
1454 */
1455 if (priv->scan_type != IWL_SCAN_NORMAL) {
1456 IWL_DEBUG_SCAN(priv,
1457 "SCAN request during internal scan - defer\n");
1458 priv->scan_request = req;
1459 priv->scan_vif = vif;
1460 ret = 0;
1461 } else {
1462 priv->scan_request = req;
1463 priv->scan_vif = vif;
1464 /*
1465 * mac80211 will only ask for one band at a time
1466 * so using channels[0] here is ok
1467 */
1468 ret = iwl_scan_initiate(priv, vif, IWL_SCAN_NORMAL,
1469 req->channels[0]->band);
1470 if (ret) {
1471 priv->scan_request = NULL;
1472 priv->scan_vif = NULL;
1473 }
1474 }
1475
1476 IWL_DEBUG_MAC80211(priv, "leave\n");
1477
1478 mutex_unlock(&priv->shrd->mutex);
1479
1480 return ret;
1481}
1482
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001483static int iwlagn_mac_sta_remove(struct ieee80211_hw *hw,
1484 struct ieee80211_vif *vif,
1485 struct ieee80211_sta *sta)
1486{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001487 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001488 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1489 int ret;
1490
1491 IWL_DEBUG_MAC80211(priv, "enter: received request to remove "
1492 "station %pM\n", sta->addr);
1493 mutex_lock(&priv->shrd->mutex);
1494 IWL_DEBUG_INFO(priv, "proceeding to remove station %pM\n",
1495 sta->addr);
1496 ret = iwl_remove_station(priv, sta_priv->sta_id, sta->addr);
1497 if (ret)
1498 IWL_DEBUG_QUIET_RFKILL(priv, "Error removing station %pM\n",
1499 sta->addr);
1500 mutex_unlock(&priv->shrd->mutex);
1501 IWL_DEBUG_MAC80211(priv, "leave\n");
1502
1503 return ret;
1504}
1505
1506static void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
1507{
Johannes Berg9451ca12012-03-05 11:24:23 -08001508 struct iwl_addsta_cmd cmd = {
1509 .mode = STA_CONTROL_MODIFY_MSK,
1510 .station_flags_msk = STA_FLG_PWR_SAVE_MSK,
1511 .sta.sta_id = sta_id,
1512 };
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001513
Johannes Berg9451ca12012-03-05 11:24:23 -08001514 iwl_send_add_sta(priv, &cmd, CMD_ASYNC);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001515}
1516
1517static void iwlagn_mac_sta_notify(struct ieee80211_hw *hw,
1518 struct ieee80211_vif *vif,
1519 enum sta_notify_cmd cmd,
1520 struct ieee80211_sta *sta)
1521{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001522 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy76b29332011-11-10 06:55:16 -08001523 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
1524 int sta_id;
1525
1526 IWL_DEBUG_MAC80211(priv, "enter\n");
1527
1528 switch (cmd) {
1529 case STA_NOTIFY_SLEEP:
1530 WARN_ON(!sta_priv->client);
1531 sta_priv->asleep = true;
1532 if (atomic_read(&sta_priv->pending_frames) > 0)
1533 ieee80211_sta_block_awake(hw, sta, true);
1534 break;
1535 case STA_NOTIFY_AWAKE:
1536 WARN_ON(!sta_priv->client);
1537 if (!sta_priv->asleep)
1538 break;
1539 sta_priv->asleep = false;
1540 sta_id = iwl_sta_id(sta);
1541 if (sta_id != IWL_INVALID_STATION)
1542 iwl_sta_modify_ps_wake(priv, sta_id);
1543 break;
1544 default:
1545 break;
1546 }
1547 IWL_DEBUG_MAC80211(priv, "leave\n");
1548}
1549
Wey-Yi Guy73356132011-11-10 06:55:11 -08001550struct ieee80211_ops iwlagn_hw_ops = {
1551 .tx = iwlagn_mac_tx,
1552 .start = iwlagn_mac_start,
1553 .stop = iwlagn_mac_stop,
1554#ifdef CONFIG_PM_SLEEP
1555 .suspend = iwlagn_mac_suspend,
1556 .resume = iwlagn_mac_resume,
1557#endif
1558 .add_interface = iwlagn_mac_add_interface,
1559 .remove_interface = iwlagn_mac_remove_interface,
1560 .change_interface = iwlagn_mac_change_interface,
1561 .config = iwlagn_mac_config,
1562 .configure_filter = iwlagn_configure_filter,
1563 .set_key = iwlagn_mac_set_key,
1564 .update_tkip_key = iwlagn_mac_update_tkip_key,
1565 .set_rekey_data = iwlagn_mac_set_rekey_data,
1566 .conf_tx = iwlagn_mac_conf_tx,
1567 .bss_info_changed = iwlagn_bss_info_changed,
1568 .ampdu_action = iwlagn_mac_ampdu_action,
1569 .hw_scan = iwlagn_mac_hw_scan,
1570 .sta_notify = iwlagn_mac_sta_notify,
1571 .sta_add = iwlagn_mac_sta_add,
1572 .sta_remove = iwlagn_mac_sta_remove,
1573 .channel_switch = iwlagn_mac_channel_switch,
1574 .flush = iwlagn_mac_flush,
1575 .tx_last_beacon = iwlagn_mac_tx_last_beacon,
1576 .remain_on_channel = iwlagn_mac_remain_on_channel,
1577 .cancel_remain_on_channel = iwlagn_mac_cancel_remain_on_channel,
1578 .rssi_callback = iwlagn_mac_rssi_callback,
1579 CFG80211_TESTMODE_CMD(iwlagn_mac_testmode_cmd)
1580 CFG80211_TESTMODE_DUMP(iwlagn_mac_testmode_dump)
1581 .tx_sync = iwlagn_mac_tx_sync,
1582 .finish_tx_sync = iwlagn_mac_finish_tx_sync,
1583 .set_tim = iwlagn_mac_set_tim,
1584};
1585
1586/* This function both allocates and initializes hw and priv. */
1587struct ieee80211_hw *iwl_alloc_all(void)
1588{
1589 struct iwl_priv *priv;
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001590 struct iwl_op_mode *op_mode;
Wey-Yi Guy73356132011-11-10 06:55:11 -08001591 /* mac80211 allocates memory for this device instance, including
1592 * space for this driver's private structure */
1593 struct ieee80211_hw *hw;
1594
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001595 hw = ieee80211_alloc_hw(sizeof(struct iwl_priv) +
1596 sizeof(struct iwl_op_mode), &iwlagn_hw_ops);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001597 if (!hw)
1598 goto out;
1599
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001600 op_mode = hw->priv;
1601 priv = IWL_OP_MODE_GET_DVM(op_mode);
Wey-Yi Guy73356132011-11-10 06:55:11 -08001602 priv->hw = hw;
1603
1604out:
1605 return hw;
1606}