blob: 6b7120a41ab2515bd714d8f678934e640d1f2844 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
Zhu Yib481de92007-09-25 17:54:57 -070043#include <net/mac80211.h>
44
45#include <asm/div64.h>
46
Samuel Ortiza3139c52008-12-19 10:37:09 +080047#define DRV_NAME "iwlagn"
48
Assaf Krauss6bc913b2008-03-11 16:17:18 -070049#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070050#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070051#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070052#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070053#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070054#include "iwl-sta.h"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070055#include "iwl-calib.h"
Zhu Yib481de92007-09-25 17:54:57 -070056
Christoph Hellwig416e1432007-10-25 17:15:49 +080057
Zhu Yib481de92007-09-25 17:54:57 -070058/******************************************************************************
59 *
60 * module boiler plate
61 *
62 ******************************************************************************/
63
Zhu Yib481de92007-09-25 17:54:57 -070064/*
65 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070066 */
Tomas Winklerd783b062008-07-18 13:53:02 +080067#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
Zhu Yib481de92007-09-25 17:54:57 -070068
Tomas Winkler0a6857e2008-03-12 16:58:49 -070069#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070070#define VD "d"
71#else
72#define VD
73#endif
74
Tomas Winkler4fc22b22008-07-21 18:54:42 +030075#ifdef CONFIG_IWLAGN_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070076#define VS "s"
77#else
78#define VS
79#endif
80
Tomas Winklerdf48c322008-03-06 10:40:19 -080081#define DRV_VERSION IWLWIFI_VERSION VD VS
Zhu Yib481de92007-09-25 17:54:57 -070082
Zhu Yib481de92007-09-25 17:54:57 -070083
84MODULE_DESCRIPTION(DRV_DESCRIPTION);
85MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080086MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070087MODULE_LICENSE("GPL");
Tomas Winkler4fc22b22008-07-21 18:54:42 +030088MODULE_ALIAS("iwl4965");
Zhu Yib481de92007-09-25 17:54:57 -070089
Zhu Yib481de92007-09-25 17:54:57 -070090/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080091 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -070092 * the functionality provided here
93 */
94
95/**************************************************************/
96
Zhu Yib481de92007-09-25 17:54:57 -070097
Zhu Yib481de92007-09-25 17:54:57 -070098
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -070099static void iwl_set_rxon_hwcrypto(struct iwl_priv *priv, int hw_decrypt)
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700100{
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800101 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -0700102
103 if (hw_decrypt)
104 rxon->filter_flags &= ~RXON_FILTER_DIS_DECRYPT_MSK;
105 else
106 rxon->filter_flags |= RXON_FILTER_DIS_DECRYPT_MSK;
107
108}
109
Zhu Yib481de92007-09-25 17:54:57 -0700110/**
Mohamed Abbas54559702008-09-03 11:18:44 +0800111 * iwl_full_rxon_required - check if full RXON (vs RXON_ASSOC) cmd is needed
Ian Schram01ebd062007-10-25 17:15:22 +0800112 * @priv: staging_rxon is compared to active_rxon
Zhu Yib481de92007-09-25 17:54:57 -0700113 *
Ben Cahill9fbab512007-11-29 11:09:47 +0800114 * If the RXON structure is changing enough to require a new tune,
115 * or is clearing the RXON_FILTER_ASSOC_MSK, then return 1 to indicate that
116 * a new tune (full RXON command, rather than RXON_ASSOC cmd) is required.
Zhu Yib481de92007-09-25 17:54:57 -0700117 */
Mohamed Abbas54559702008-09-03 11:18:44 +0800118static int iwl_full_rxon_required(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700119{
120
121 /* These items are only settable from the full RXON command */
Ron Rindjunsky5d1e2322008-06-30 17:23:04 +0800122 if (!(iwl_is_associated(priv)) ||
Zhu Yib481de92007-09-25 17:54:57 -0700123 compare_ether_addr(priv->staging_rxon.bssid_addr,
124 priv->active_rxon.bssid_addr) ||
125 compare_ether_addr(priv->staging_rxon.node_addr,
126 priv->active_rxon.node_addr) ||
127 compare_ether_addr(priv->staging_rxon.wlap_bssid_addr,
128 priv->active_rxon.wlap_bssid_addr) ||
129 (priv->staging_rxon.dev_type != priv->active_rxon.dev_type) ||
130 (priv->staging_rxon.channel != priv->active_rxon.channel) ||
131 (priv->staging_rxon.air_propagation !=
132 priv->active_rxon.air_propagation) ||
133 (priv->staging_rxon.ofdm_ht_single_stream_basic_rates !=
134 priv->active_rxon.ofdm_ht_single_stream_basic_rates) ||
135 (priv->staging_rxon.ofdm_ht_dual_stream_basic_rates !=
136 priv->active_rxon.ofdm_ht_dual_stream_basic_rates) ||
Zhu Yib481de92007-09-25 17:54:57 -0700137 (priv->staging_rxon.assoc_id != priv->active_rxon.assoc_id))
138 return 1;
139
140 /* flags, filter_flags, ofdm_basic_rates, and cck_basic_rates can
141 * be updated with the RXON_ASSOC command -- however only some
142 * flag transitions are allowed using RXON_ASSOC */
143
144 /* Check if we are not switching bands */
145 if ((priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) !=
146 (priv->active_rxon.flags & RXON_FLG_BAND_24G_MSK))
147 return 1;
148
149 /* Check if we are switching association toggle */
150 if ((priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) !=
151 (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK))
152 return 1;
153
154 return 0;
155}
156
Zhu Yib481de92007-09-25 17:54:57 -0700157/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700158 * iwl_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -0700159 *
Ian Schram01ebd062007-10-25 17:15:22 +0800160 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700161 * the active_rxon structure is updated with the new data. This
162 * function correctly transitions out of the RXON_ASSOC_MSK state if
163 * a HW tune is required based on the RXON structure changes.
164 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700165static int iwl_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700166{
167 /* cast away the const for active_rxon in this function */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800168 struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800169 int ret;
170 bool new_assoc =
171 !!(priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700172
Tomas Winklerfee12472008-04-03 16:05:21 -0700173 if (!iwl_is_alive(priv))
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800174 return -EBUSY;
Zhu Yib481de92007-09-25 17:54:57 -0700175
176 /* always get timestamp with Rx frame */
177 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800178 /* allow CTS-to-self if possible. this is relevant only for
179 * 5000, but will not damage 4965 */
180 priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN;
Zhu Yib481de92007-09-25 17:54:57 -0700181
Samuel Ortiza3139c52008-12-19 10:37:09 +0800182 ret = iwl_agn_check_rxon_cmd(priv);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800183 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800184 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700185 return -EINVAL;
186 }
187
188 /* If we don't need to send a full RXON, we can use
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700189 * iwl_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700190 * and other flags for the current radio configuration. */
Mohamed Abbas54559702008-09-03 11:18:44 +0800191 if (!iwl_full_rxon_required(priv)) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800192 ret = iwl_send_rxon_assoc(priv);
193 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800194 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800195 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700196 }
197
198 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700199 return 0;
200 }
201
202 /* station table will be cleared */
203 priv->assoc_station_added = 0;
204
Zhu Yib481de92007-09-25 17:54:57 -0700205 /* If we are currently associated and the new config requires
206 * an RXON_ASSOC and the new config wants the associated mask enabled,
207 * we must clear the associated from the active configuration
208 * before we apply the new config */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800209 if (iwl_is_associated(priv) && new_assoc) {
Zhu Yib481de92007-09-25 17:54:57 -0700210 IWL_DEBUG_INFO("Toggling associated bit on current RXON\n");
211 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
212
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800213 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800214 sizeof(struct iwl_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700215 &priv->active_rxon);
216
217 /* If the mask clearing failed then we set
218 * active_rxon back to what it was previously */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800219 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700220 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800221 IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800222 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700223 }
Zhu Yib481de92007-09-25 17:54:57 -0700224 }
225
226 IWL_DEBUG_INFO("Sending RXON\n"
227 "* with%s RXON_FILTER_ASSOC_MSK\n"
228 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700229 "* bssid = %pM\n",
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800230 (new_assoc ? "" : "out"),
Zhu Yib481de92007-09-25 17:54:57 -0700231 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700232 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700233
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700234 iwl_set_rxon_hwcrypto(priv, !priv->hw_params.sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800235
236 /* Apply the new configuration
237 * RXON unassoc clears the station table in uCode, send it before
238 * we add the bcast station. If assoc bit is set, we will send RXON
239 * after having added the bcast and bssid station.
240 */
241 if (!new_assoc) {
242 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800243 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800244 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800245 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800246 return ret;
247 }
248 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700249 }
250
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800251 iwl_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800252
Zhu Yib481de92007-09-25 17:54:57 -0700253 if (!priv->error_recovering)
254 priv->start_calib = 0;
255
Zhu Yib481de92007-09-25 17:54:57 -0700256 /* Add the broadcast address so we can send broadcast frames */
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800257 if (iwl_rxon_add_station(priv, iwl_bcast_addr, 0) ==
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800258 IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800259 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700260 return -EIO;
261 }
262
263 /* If we have set the ASSOC_MSK and we are in BSS mode then
264 * add the IWL_AP_ID to the station rate table */
Tomas Winkler91851592008-06-30 17:23:14 +0800265 if (new_assoc) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200266 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler91851592008-06-30 17:23:14 +0800267 ret = iwl_rxon_add_station(priv,
268 priv->active_rxon.bssid_addr, 1);
269 if (ret == IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800270 IWL_ERR(priv,
271 "Error adding AP address for TX.\n");
Tomas Winkler91851592008-06-30 17:23:14 +0800272 return -EIO;
273 }
274 priv->assoc_station_added = 1;
275 if (priv->default_wep_key &&
276 iwl_send_static_wepkey_cmd(priv, 0))
Winkler, Tomas15b16872008-12-19 10:37:33 +0800277 IWL_ERR(priv,
278 "Could not send WEP static key.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700279 }
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800280
281 /* Apply the new configuration
282 * RXON assoc doesn't clear the station table in uCode,
283 */
284 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
285 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
286 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800287 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800288 return ret;
289 }
290 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700291 }
292
Zhu Yi36da7d72008-07-11 11:53:40 +0800293 iwl_init_sensitivity(priv);
294
295 /* If we issue a new RXON command which required a tune then we must
296 * send a new TXPOWER command or we won't be able to Tx any frames */
297 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
298 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800299 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800300 return ret;
301 }
302
Zhu Yib481de92007-09-25 17:54:57 -0700303 return 0;
304}
305
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700306void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700307{
308
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700309 iwl_set_rxon_chain(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700310 iwl_commit_rxon(priv);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700311}
312
Tomas Winklerfcab4232008-05-15 13:54:01 +0800313static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700314{
315 struct list_head *element;
316
317 IWL_DEBUG_INFO("%d frames on pre-allocated heap on clear.\n",
318 priv->frames_count);
319
320 while (!list_empty(&priv->free_frames)) {
321 element = priv->free_frames.next;
322 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800323 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700324 priv->frames_count--;
325 }
326
327 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800328 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700329 priv->frames_count);
330 priv->frames_count = 0;
331 }
332}
333
Tomas Winklerfcab4232008-05-15 13:54:01 +0800334static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700335{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800336 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700337 struct list_head *element;
338 if (list_empty(&priv->free_frames)) {
339 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
340 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800341 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700342 return NULL;
343 }
344
345 priv->frames_count++;
346 return frame;
347 }
348
349 element = priv->free_frames.next;
350 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800351 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700352}
353
Tomas Winklerfcab4232008-05-15 13:54:01 +0800354static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700355{
356 memset(frame, 0, sizeof(*frame));
357 list_add(&frame->list, &priv->free_frames);
358}
359
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800360static unsigned int iwl_fill_beacon_frame(struct iwl_priv *priv,
361 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200362 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700363{
Tomas Winkler3109ece2008-03-28 16:33:35 -0700364 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200365 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
366 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700367 return 0;
368
369 if (priv->ibss_beacon->len > left)
370 return 0;
371
372 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
373
374 return priv->ibss_beacon->len;
375}
376
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700377static u8 iwl_rate_get_lowest_plcp(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700378{
Guy Cohen39e88502008-04-23 17:14:57 -0700379 int i;
380 int rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -0700381
Guy Cohen39e88502008-04-23 17:14:57 -0700382 /* Set rate mask*/
383 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
Chatre, Reinettedbce56a2008-11-12 13:14:07 -0800384 rate_mask = priv->active_rate_basic & IWL_CCK_RATES_MASK;
Guy Cohen39e88502008-04-23 17:14:57 -0700385 else
Chatre, Reinettedbce56a2008-11-12 13:14:07 -0800386 rate_mask = priv->active_rate_basic & IWL_OFDM_RATES_MASK;
Guy Cohen39e88502008-04-23 17:14:57 -0700387
388 /* Find lowest valid rate */
Zhu Yib481de92007-09-25 17:54:57 -0700389 for (i = IWL_RATE_1M_INDEX; i != IWL_RATE_INVALID;
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800390 i = iwl_rates[i].next_ieee) {
Zhu Yib481de92007-09-25 17:54:57 -0700391 if (rate_mask & (1 << i))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800392 return iwl_rates[i].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700393 }
394
Guy Cohen39e88502008-04-23 17:14:57 -0700395 /* No valid rate was found. Assign the lowest one */
396 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK)
397 return IWL_RATE_1M_PLCP;
398 else
399 return IWL_RATE_6M_PLCP;
Zhu Yib481de92007-09-25 17:54:57 -0700400}
401
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700402static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800403 struct iwl_frame *frame, u8 rate)
404{
405 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
406 unsigned int frame_size;
407
408 tx_beacon_cmd = &frame->u.beacon;
409 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
410
411 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
412 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
413
414 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800415 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
416
417 BUG_ON(frame_size > MAX_MPDU_SIZE);
418 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
419
420 if ((rate == IWL_RATE_1M_PLCP) || (rate >= IWL_RATE_2M_PLCP))
421 tx_beacon_cmd->tx.rate_n_flags =
422 iwl_hw_set_rate_n_flags(rate, RATE_MCS_CCK_MSK);
423 else
424 tx_beacon_cmd->tx.rate_n_flags =
425 iwl_hw_set_rate_n_flags(rate, 0);
426
427 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
428 TX_CMD_FLG_TSF_MSK |
429 TX_CMD_FLG_STA_RATE_MSK;
430
431 return sizeof(*tx_beacon_cmd) + frame_size;
432}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700433static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700434{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800435 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700436 unsigned int frame_size;
437 int rc;
438 u8 rate;
439
Tomas Winklerfcab4232008-05-15 13:54:01 +0800440 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700441
442 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800443 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700444 "command.\n");
445 return -ENOMEM;
446 }
447
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700448 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700449
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700450 frame_size = iwl_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700451
Tomas Winkler857485c2008-03-21 13:53:44 -0700452 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700453 &frame->u.cmd[0]);
454
Tomas Winklerfcab4232008-05-15 13:54:01 +0800455 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700456
457 return rc;
458}
459
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800460static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
461{
462 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
463
464 dma_addr_t addr = get_unaligned_le32(&tb->lo);
465 if (sizeof(dma_addr_t) > sizeof(u32))
466 addr |=
467 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
468
469 return addr;
470}
471
472static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
473{
474 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
475
476 return le16_to_cpu(tb->hi_n_len) >> 4;
477}
478
479static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
480 dma_addr_t addr, u16 len)
481{
482 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
483 u16 hi_n_len = len << 4;
484
485 put_unaligned_le32(addr, &tb->lo);
486 if (sizeof(dma_addr_t) > sizeof(u32))
487 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
488
489 tb->hi_n_len = cpu_to_le16(hi_n_len);
490
491 tfd->num_tbs = idx + 1;
492}
493
494static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
495{
496 return tfd->num_tbs & 0x1f;
497}
498
499/**
500 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
501 * @priv - driver private data
502 * @txq - tx queue
503 *
504 * Does NOT advance any TFD circular buffer read/write indexes
505 * Does NOT free the TFD itself (which is within circular buffer)
506 */
507void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
508{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800509 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800510 struct iwl_tfd *tfd;
511 struct pci_dev *dev = priv->pci_dev;
512 int index = txq->q.read_ptr;
513 int i;
514 int num_tbs;
515
516 tfd = &tfd_tmp[index];
517
518 /* Sanity check on number of chunks */
519 num_tbs = iwl_tfd_get_num_tbs(tfd);
520
521 if (num_tbs >= IWL_NUM_OF_TBS) {
522 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
523 /* @todo issue fatal error, it is quite serious situation */
524 return;
525 }
526
527 /* Unmap tx_cmd */
528 if (num_tbs)
529 pci_unmap_single(dev,
530 pci_unmap_addr(&txq->cmd[index]->meta, mapping),
531 pci_unmap_len(&txq->cmd[index]->meta, len),
532 PCI_DMA_TODEVICE);
533
534 /* Unmap chunks, if any. */
535 for (i = 1; i < num_tbs; i++) {
536 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
537 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
538
539 if (txq->txb) {
540 dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]);
541 txq->txb[txq->q.read_ptr].skb[i - 1] = NULL;
542 }
543 }
544}
545
546int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
547 struct iwl_tx_queue *txq,
548 dma_addr_t addr, u16 len,
549 u8 reset, u8 pad)
550{
551 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800552 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800553 u32 num_tbs;
554
555 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800556 tfd_tmp = (struct iwl_tfd *)txq->tfds;
557 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800558
559 if (reset)
560 memset(tfd, 0, sizeof(*tfd));
561
562 num_tbs = iwl_tfd_get_num_tbs(tfd);
563
564 /* Each TFD can point to a maximum 20 Tx buffers */
565 if (num_tbs >= IWL_NUM_OF_TBS) {
566 IWL_ERR(priv, "Error can not send more than %d chunks\n",
567 IWL_NUM_OF_TBS);
568 return -EINVAL;
569 }
570
571 BUG_ON(addr & ~DMA_BIT_MASK(36));
572 if (unlikely(addr & ~IWL_TX_DMA_MASK))
573 IWL_ERR(priv, "Unaligned address = %llx\n",
574 (unsigned long long)addr);
575
576 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
577
578 return 0;
579}
580
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800581/*
582 * Tell nic where to find circular buffer of Tx Frame Descriptors for
583 * given Tx queue, and enable the DMA channel used for that queue.
584 *
585 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
586 * channels supported in hardware.
587 */
588int iwl_hw_tx_queue_init(struct iwl_priv *priv,
589 struct iwl_tx_queue *txq)
590{
591 int ret;
592 unsigned long flags;
593 int txq_id = txq->q.id;
594
595 spin_lock_irqsave(&priv->lock, flags);
596 ret = iwl_grab_nic_access(priv);
597 if (ret) {
598 spin_unlock_irqrestore(&priv->lock, flags);
599 return ret;
600 }
601
602 /* Circular buffer (TFD queue in DRAM) physical base address */
603 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
604 txq->q.dma_addr >> 8);
605
606 iwl_release_nic_access(priv);
607 spin_unlock_irqrestore(&priv->lock, flags);
608
609 return 0;
610}
611
612
Zhu Yib481de92007-09-25 17:54:57 -0700613/******************************************************************************
614 *
Zhu Yib481de92007-09-25 17:54:57 -0700615 * Misc. internal state and helper functions
616 *
617 ******************************************************************************/
Zhu Yib481de92007-09-25 17:54:57 -0700618
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700619static void iwl_ht_conf(struct iwl_priv *priv,
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700620 struct ieee80211_bss_conf *bss_conf)
621{
Johannes Bergae5eb022008-10-14 16:58:37 +0200622 struct ieee80211_sta_ht_cap *ht_conf;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700623 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
Johannes Bergae5eb022008-10-14 16:58:37 +0200624 struct ieee80211_sta *sta;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700625
626 IWL_DEBUG_MAC80211("enter: \n");
627
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700628 if (!iwl_conf->is_ht)
629 return;
630
Johannes Bergae5eb022008-10-14 16:58:37 +0200631
632 /*
633 * It is totally wrong to base global information on something
634 * that is valid only when associated, alas, this driver works
635 * that way and I don't know how to fix it.
636 */
637
638 rcu_read_lock();
639 sta = ieee80211_find_sta(priv->hw, priv->bssid);
640 if (!sta) {
641 rcu_read_unlock();
642 return;
643 }
644 ht_conf = &sta->ht_cap;
645
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700646 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800647 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700648 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800649 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700650
651 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
652 iwl_conf->max_amsdu_size =
653 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
654
655 iwl_conf->supported_chan_width =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200656 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
Johannes Bergae5eb022008-10-14 16:58:37 +0200657
Sujith094d05d2008-12-12 11:57:43 +0530658 /*
659 * XXX: The HT configuration needs to be moved into iwl_mac_config()
660 * to be done there correctly.
661 */
662
663 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
Luis R. Rodriguezde27e642008-12-23 15:58:44 -0800664 if (conf_is_ht40_minus(&priv->hw->conf))
Sujith094d05d2008-12-12 11:57:43 +0530665 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Luis R. Rodriguezde27e642008-12-23 15:58:44 -0800666 else if (conf_is_ht40_plus(&priv->hw->conf))
Sujith094d05d2008-12-12 11:57:43 +0530667 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
668
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700669 /* If no above or below channel supplied disable FAT channel */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200670 if (iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_ABOVE &&
Sujith094d05d2008-12-12 11:57:43 +0530671 iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_BELOW)
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700672 iwl_conf->supported_chan_width = 0;
673
Ron Rindjunsky12837be2008-09-03 11:26:47 +0800674 iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
675
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200676 memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700677
Sujith094d05d2008-12-12 11:57:43 +0530678 iwl_conf->tx_chan_width = iwl_conf->supported_chan_width != 0;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700679 iwl_conf->ht_protection =
Johannes Bergae5eb022008-10-14 16:58:37 +0200680 bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700681 iwl_conf->non_GF_STA_present =
Johannes Bergae5eb022008-10-14 16:58:37 +0200682 !!(bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700683
Johannes Bergae5eb022008-10-14 16:58:37 +0200684 rcu_read_unlock();
685
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700686 IWL_DEBUG_MAC80211("leave\n");
687}
688
Zhu Yib481de92007-09-25 17:54:57 -0700689/*
690 * QoS support
691*/
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800692static void iwl_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -0700693{
Zhu Yib481de92007-09-25 17:54:57 -0700694 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
695 return;
696
Zhu Yib481de92007-09-25 17:54:57 -0700697 priv->qos_data.def_qos_parm.qos_flags = 0;
698
699 if (priv->qos_data.qos_cap.q_AP.queue_request &&
700 !priv->qos_data.qos_cap.q_AP.txop_request)
701 priv->qos_data.def_qos_parm.qos_flags |=
702 QOS_PARAM_FLG_TXOP_TYPE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700703 if (priv->qos_data.qos_active)
704 priv->qos_data.def_qos_parm.qos_flags |=
705 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
706
Ron Rindjunskyfd105e72007-11-26 16:14:39 +0200707 if (priv->current_ht_config.is_ht)
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800708 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800709
Tomas Winkler3109ece2008-03-28 16:33:35 -0700710 if (force || iwl_is_associated(priv)) {
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800711 IWL_DEBUG_QOS("send QoS cmd with Qos active=%d FLAGS=0x%X\n",
712 priv->qos_data.qos_active,
713 priv->qos_data.def_qos_parm.qos_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700714
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800715 iwl_send_cmd_pdu_async(priv, REPLY_QOS_PARAM,
716 sizeof(struct iwl_qosparam_cmd),
717 &priv->qos_data.def_qos_parm, NULL);
Zhu Yib481de92007-09-25 17:54:57 -0700718 }
719}
720
Zhu Yib481de92007-09-25 17:54:57 -0700721#define MAX_UCODE_BEACON_INTERVAL 4096
Zhu Yib481de92007-09-25 17:54:57 -0700722
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800723static u16 iwl_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700724{
725 u16 new_val = 0;
726 u16 beacon_factor = 0;
727
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800728 beacon_factor = (beacon_val + MAX_UCODE_BEACON_INTERVAL)
729 / MAX_UCODE_BEACON_INTERVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700730 new_val = beacon_val / beacon_factor;
731
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800732 return new_val;
Zhu Yib481de92007-09-25 17:54:57 -0700733}
734
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800735static void iwl_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700736{
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800737 u64 tsf;
738 s32 interval_tm, rem;
Zhu Yib481de92007-09-25 17:54:57 -0700739 unsigned long flags;
740 struct ieee80211_conf *conf = NULL;
741 u16 beacon_int = 0;
742
743 conf = ieee80211_get_hw_conf(priv->hw);
744
745 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800746 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Tomas Winklerb5d7be52008-07-19 04:41:24 +0300747 priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
Zhu Yib481de92007-09-25 17:54:57 -0700748
Johannes Berg05c914f2008-09-11 00:01:58 +0200749 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800750 beacon_int = iwl_adjust_beacon_interval(priv->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700751 priv->rxon_timing.atim_window = 0;
752 } else {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800753 beacon_int = iwl_adjust_beacon_interval(conf->beacon_int);
754
Zhu Yib481de92007-09-25 17:54:57 -0700755 /* TODO: we need to get atim_window from upper stack
756 * for now we set to 0 */
757 priv->rxon_timing.atim_window = 0;
758 }
759
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800760 priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700761
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800762 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
763 interval_tm = beacon_int * 1024;
764 rem = do_div(tsf, interval_tm);
765 priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
766
767 spin_unlock_irqrestore(&priv->lock, flags);
768 IWL_DEBUG_ASSOC("beacon interval %d beacon timer %d beacon tim %d\n",
769 le16_to_cpu(priv->rxon_timing.beacon_interval),
770 le32_to_cpu(priv->rxon_timing.beacon_init_val),
771 le16_to_cpu(priv->rxon_timing.atim_window));
Zhu Yib481de92007-09-25 17:54:57 -0700772}
773
Tomas Winkler82a66bb2008-05-29 16:35:28 +0800774static void iwl_set_flags_for_band(struct iwl_priv *priv,
775 enum ieee80211_band band)
Zhu Yib481de92007-09-25 17:54:57 -0700776{
Johannes Berg8318d782008-01-24 19:38:38 +0100777 if (band == IEEE80211_BAND_5GHZ) {
Zhu Yib481de92007-09-25 17:54:57 -0700778 priv->staging_rxon.flags &=
779 ~(RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK
780 | RXON_FLG_CCK_MSK);
781 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
782 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700783 /* Copied from iwl_post_associate() */
Zhu Yib481de92007-09-25 17:54:57 -0700784 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
785 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
786 else
787 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
788
Johannes Berg05c914f2008-09-11 00:01:58 +0200789 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -0700790 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
791
792 priv->staging_rxon.flags |= RXON_FLG_BAND_24G_MSK;
793 priv->staging_rxon.flags |= RXON_FLG_AUTO_DETECT_MSK;
794 priv->staging_rxon.flags &= ~RXON_FLG_CCK_MSK;
795 }
796}
797
798/*
Ian Schram01ebd062007-10-25 17:15:22 +0800799 * initialize rxon structure with default values from eeprom
Zhu Yib481de92007-09-25 17:54:57 -0700800 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700801static void iwl_connection_init_rx_config(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700802{
Assaf Kraussbf85ea42008-03-14 10:38:49 -0700803 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -0700804
805 memset(&priv->staging_rxon, 0, sizeof(priv->staging_rxon));
806
Zhu, Yi60294de2008-10-29 14:05:45 -0700807 switch (mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200808 case NL80211_IFTYPE_AP:
Zhu Yib481de92007-09-25 17:54:57 -0700809 priv->staging_rxon.dev_type = RXON_DEV_TYPE_AP;
810 break;
811
Johannes Berg05c914f2008-09-11 00:01:58 +0200812 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -0700813 priv->staging_rxon.dev_type = RXON_DEV_TYPE_ESS;
814 priv->staging_rxon.filter_flags = RXON_FILTER_ACCEPT_GRP_MSK;
815 break;
816
Johannes Berg05c914f2008-09-11 00:01:58 +0200817 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -0700818 priv->staging_rxon.dev_type = RXON_DEV_TYPE_IBSS;
819 priv->staging_rxon.flags = RXON_FLG_SHORT_PREAMBLE_MSK;
820 priv->staging_rxon.filter_flags = RXON_FILTER_BCON_AWARE_MSK |
821 RXON_FILTER_ACCEPT_GRP_MSK;
822 break;
823
Johannes Berg05c914f2008-09-11 00:01:58 +0200824 case NL80211_IFTYPE_MONITOR:
Zhu Yib481de92007-09-25 17:54:57 -0700825 priv->staging_rxon.dev_type = RXON_DEV_TYPE_SNIFFER;
826 priv->staging_rxon.filter_flags = RXON_FILTER_PROMISC_MSK |
827 RXON_FILTER_CTL2HOST_MSK | RXON_FILTER_ACCEPT_GRP_MSK;
828 break;
Tomas Winkler69dc5d92008-03-25 16:33:41 -0700829 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +0800830 IWL_ERR(priv, "Unsupported interface type %d\n", mode);
Tomas Winkler69dc5d92008-03-25 16:33:41 -0700831 break;
Zhu Yib481de92007-09-25 17:54:57 -0700832 }
833
834#if 0
835 /* TODO: Figure out when short_preamble would be set and cache from
836 * that */
837 if (!hw_to_local(priv->hw)->short_preamble)
838 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
839 else
840 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
841#endif
842
Assaf Krauss8622e702008-03-21 13:53:43 -0700843 ch_info = iwl_get_channel_info(priv, priv->band,
Rick Farrington25b3f572008-06-30 17:23:28 +0800844 le16_to_cpu(priv->active_rxon.channel));
Zhu Yib481de92007-09-25 17:54:57 -0700845
846 if (!ch_info)
847 ch_info = &priv->channel_info[0];
848
849 /*
850 * in some case A channels are all non IBSS
851 * in this case force B/G channel
852 */
Johannes Berg05c914f2008-09-11 00:01:58 +0200853 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Zhu Yib481de92007-09-25 17:54:57 -0700854 !(is_channel_ibss(ch_info)))
855 ch_info = &priv->channel_info[0];
856
857 priv->staging_rxon.channel = cpu_to_le16(ch_info->channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100858 priv->band = ch_info->band;
Zhu Yib481de92007-09-25 17:54:57 -0700859
Tomas Winkler82a66bb2008-05-29 16:35:28 +0800860 iwl_set_flags_for_band(priv, priv->band);
Zhu Yib481de92007-09-25 17:54:57 -0700861
862 priv->staging_rxon.ofdm_basic_rates =
863 (IWL_OFDM_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
864 priv->staging_rxon.cck_basic_rates =
865 (IWL_CCK_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
866
867 priv->staging_rxon.flags &= ~(RXON_FLG_CHANNEL_MODE_MIXED_MSK |
868 RXON_FLG_CHANNEL_MODE_PURE_40_MSK);
869 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
870 memcpy(priv->staging_rxon.wlap_bssid_addr, priv->mac_addr, ETH_ALEN);
871 priv->staging_rxon.ofdm_ht_single_stream_basic_rates = 0xff;
872 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates = 0xff;
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700873 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700874}
875
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700876static int iwl_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700877{
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700878 iwl_connection_init_rx_config(priv, mode);
Zhu Yib481de92007-09-25 17:54:57 -0700879 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
880
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800881 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700882
Mohamed Abbasfde35712007-11-29 11:10:15 +0800883 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -0700884 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +0800885 return -EAGAIN;
886
887 cancel_delayed_work(&priv->scan_check);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800888 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800889 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +0800890 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
891 return -EAGAIN;
892 }
893
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700894 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700895
896 return 0;
897}
898
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700899static void iwl_set_rate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700900{
Johannes Berg8318d782008-01-24 19:38:38 +0100901 const struct ieee80211_supported_band *hw = NULL;
Zhu Yib481de92007-09-25 17:54:57 -0700902 struct ieee80211_rate *rate;
903 int i;
904
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700905 hw = iwl_get_hw_mode(priv, priv->band);
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -0800906 if (!hw) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800907 IWL_ERR(priv, "Failed to set rate: unable to get hw mode\n");
Saleem Abdulrasoolc4ba9622007-11-18 23:59:08 -0800908 return;
909 }
Zhu Yib481de92007-09-25 17:54:57 -0700910
911 priv->active_rate = 0;
912 priv->active_rate_basic = 0;
913
Johannes Berg8318d782008-01-24 19:38:38 +0100914 for (i = 0; i < hw->n_bitrates; i++) {
915 rate = &(hw->bitrates[i]);
916 if (rate->hw_value < IWL_RATE_COUNT)
917 priv->active_rate |= (1 << rate->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -0700918 }
919
920 IWL_DEBUG_RATE("Set active_rate = %0x, active_rate_basic = %0x\n",
921 priv->active_rate, priv->active_rate_basic);
922
923 /*
924 * If a basic rate is configured, then use it (adding IWL_RATE_1M_MASK)
925 * otherwise set it to the default of all CCK rates and 6, 12, 24 for
926 * OFDM
927 */
928 if (priv->active_rate_basic & IWL_CCK_BASIC_RATES_MASK)
929 priv->staging_rxon.cck_basic_rates =
930 ((priv->active_rate_basic &
931 IWL_CCK_RATES_MASK) >> IWL_FIRST_CCK_RATE) & 0xF;
932 else
933 priv->staging_rxon.cck_basic_rates =
934 (IWL_CCK_BASIC_RATES_MASK >> IWL_FIRST_CCK_RATE) & 0xF;
935
936 if (priv->active_rate_basic & IWL_OFDM_BASIC_RATES_MASK)
937 priv->staging_rxon.ofdm_basic_rates =
938 ((priv->active_rate_basic &
939 (IWL_OFDM_BASIC_RATES_MASK | IWL_RATE_6M_MASK)) >>
940 IWL_FIRST_OFDM_RATE) & 0xFF;
941 else
942 priv->staging_rxon.ofdm_basic_rates =
943 (IWL_OFDM_BASIC_RATES_MASK >> IWL_FIRST_OFDM_RATE) & 0xFF;
944}
945
Zhu Yib481de92007-09-25 17:54:57 -0700946
Zhu Yib481de92007-09-25 17:54:57 -0700947/******************************************************************************
948 *
949 * Generic RX handler implementations
950 *
951 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800952static void iwl_rx_reply_alive(struct iwl_priv *priv,
953 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700954{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800955 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +0800956 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700957 struct delayed_work *pwork;
958
959 palive = &pkt->u.alive_frame;
960
961 IWL_DEBUG_INFO("Alive ucode status 0x%08X revision "
962 "0x%01X 0x%01X\n",
963 palive->is_valid, palive->ver_type,
964 palive->ver_subtype);
965
966 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
967 IWL_DEBUG_INFO("Initialization Alive received.\n");
968 memcpy(&priv->card_alive_init,
969 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800970 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700971 pwork = &priv->init_alive_start;
972 } else {
973 IWL_DEBUG_INFO("Runtime Alive received.\n");
974 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800975 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700976 pwork = &priv->alive_start;
977 }
978
979 /* We delay the ALIVE response by 5ms to
980 * give the HW RF Kill time to activate... */
981 if (palive->is_valid == UCODE_VALID_OK)
982 queue_delayed_work(priv->workqueue, pwork,
983 msecs_to_jiffies(5));
984 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800985 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700986}
987
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700988static void iwl_rx_reply_error(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800989 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700990{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800991 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700992
Winkler, Tomas15b16872008-12-19 10:37:33 +0800993 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
Zhu Yib481de92007-09-25 17:54:57 -0700994 "seq 0x%04X ser 0x%08X\n",
995 le32_to_cpu(pkt->u.err_resp.error_type),
996 get_cmd_string(pkt->u.err_resp.cmd_id),
997 pkt->u.err_resp.cmd_id,
998 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
999 le32_to_cpu(pkt->u.err_resp.error_info));
1000}
1001
1002#define TX_STATUS_ENTRY(x) case TX_STATUS_FAIL_ ## x: return #x
1003
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001004static void iwl_rx_csa(struct iwl_priv *priv, struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001005{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001006 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001007 struct iwl_rxon_cmd *rxon = (void *)&priv->active_rxon;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001008 struct iwl_csa_notification *csa = &(pkt->u.csa_notif);
Zhu Yib481de92007-09-25 17:54:57 -07001009 IWL_DEBUG_11H("CSA notif: channel %d, status %d\n",
1010 le16_to_cpu(csa->channel), le32_to_cpu(csa->status));
1011 rxon->channel = csa->channel;
1012 priv->staging_rxon.channel = csa->channel;
1013}
1014
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001015static void iwl_rx_pm_sleep_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001016 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001017{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001018#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08001019 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001020 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Zhu Yib481de92007-09-25 17:54:57 -07001021 IWL_DEBUG_RX("sleep mode: %d, src: %d\n",
1022 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
1023#endif
1024}
1025
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001026static void iwl_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001027 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001028{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001029 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001030 IWL_DEBUG_RADIO("Dumping %d bytes of unhandled "
1031 "notification for %s:\n",
1032 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Ester Kummerbf403db2008-05-05 10:22:40 +08001033 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -07001034}
1035
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001036static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -07001037{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001038 struct iwl_priv *priv =
1039 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -07001040 struct sk_buff *beacon;
1041
1042 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +02001043 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -07001044
1045 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001046 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -07001047 return;
1048 }
1049
1050 mutex_lock(&priv->mutex);
1051 /* new beacon skb is allocated every time; dispose previous.*/
1052 if (priv->ibss_beacon)
1053 dev_kfree_skb(priv->ibss_beacon);
1054
1055 priv->ibss_beacon = beacon;
1056 mutex_unlock(&priv->mutex);
1057
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001058 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001059}
1060
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001061/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001062 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001063 *
1064 * This callback is provided in order to send a statistics request.
1065 *
1066 * This timer function is continually reset to execute within
1067 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
1068 * was received. We need to ensure we receive the statistics in order
1069 * to update the temperature used for calibrating the TXPOWER.
1070 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001071static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001072{
1073 struct iwl_priv *priv = (struct iwl_priv *)data;
1074
1075 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1076 return;
1077
Mohamed Abbas61780ee2008-10-29 14:05:49 -07001078 /* dont send host command if rf-kill is on */
1079 if (!iwl_is_ready_rf(priv))
1080 return;
1081
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001082 iwl_send_statistics_request(priv, CMD_ASYNC);
1083}
1084
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001085static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001086 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001087{
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001088#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +08001089 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -08001090 struct iwl4965_beacon_notif *beacon =
1091 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326ac2008-06-12 09:47:11 +08001092 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -07001093
1094 IWL_DEBUG_RX("beacon status %x retries %d iss %d "
1095 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +08001096 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -07001097 beacon->beacon_notify_hdr.failure_frame,
1098 le32_to_cpu(beacon->ibss_mgr_status),
1099 le32_to_cpu(beacon->high_tsf),
1100 le32_to_cpu(beacon->low_tsf), rate);
1101#endif
1102
Johannes Berg05c914f2008-09-11 00:01:58 +02001103 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -07001104 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
1105 queue_work(priv->workqueue, &priv->beacon_update);
1106}
1107
Zhu Yib481de92007-09-25 17:54:57 -07001108/* Handle notification from uCode that card's power state is changing
1109 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001110static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08001111 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07001112{
Tomas Winklerdb11d632008-05-05 10:22:33 +08001113 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001114 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
1115 unsigned long status = priv->status;
1116
1117 IWL_DEBUG_RF_KILL("Card state received: HW:%s SW:%s\n",
1118 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
1119 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
1120
1121 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
1122 RF_CARD_DISABLED)) {
1123
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001124 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001125 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1126
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001127 if (!iwl_grab_nic_access(priv)) {
1128 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07001129 priv, HBUS_TARG_MBX_C,
1130 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
1131
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001132 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001133 }
1134
1135 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001136 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001137 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001138 if (!iwl_grab_nic_access(priv)) {
1139 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -07001140 priv, HBUS_TARG_MBX_C,
1141 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
1142
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001143 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001144 }
1145 }
1146
1147 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001148 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -07001149 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001150 iwl_read32(priv, CSR_UCODE_DRV_GP1);
1151 if (!iwl_grab_nic_access(priv))
1152 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001153 }
1154 }
1155
1156 if (flags & HW_CARD_DISABLED)
1157 set_bit(STATUS_RF_KILL_HW, &priv->status);
1158 else
1159 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1160
1161
1162 if (flags & SW_CARD_DISABLED)
1163 set_bit(STATUS_RF_KILL_SW, &priv->status);
1164 else
1165 clear_bit(STATUS_RF_KILL_SW, &priv->status);
1166
1167 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +08001168 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001169
1170 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
1171 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
1172 (test_bit(STATUS_RF_KILL_SW, &status) !=
1173 test_bit(STATUS_RF_KILL_SW, &priv->status)))
1174 queue_work(priv->workqueue, &priv->rf_kill);
1175 else
1176 wake_up_interruptible(&priv->wait_command_queue);
1177}
1178
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001179int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +08001180{
1181 int ret;
1182 unsigned long flags;
1183
1184 spin_lock_irqsave(&priv->lock, flags);
1185 ret = iwl_grab_nic_access(priv);
1186 if (ret)
1187 goto err;
1188
1189 if (src == IWL_PWR_SRC_VAUX) {
1190 u32 val;
Tomas Winklere7b63582008-09-03 11:26:49 +08001191 ret = pci_read_config_dword(priv->pci_dev, PCI_CFG_POWER_SOURCE,
Tomas Winklere2e3c572008-07-18 13:53:04 +08001192 &val);
1193
1194 if (val & PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT)
1195 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
1196 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
1197 ~APMG_PS_CTRL_MSK_PWR_SRC);
1198 } else {
1199 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
1200 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
1201 ~APMG_PS_CTRL_MSK_PWR_SRC);
1202 }
1203
1204 iwl_release_nic_access(priv);
1205err:
1206 spin_unlock_irqrestore(&priv->lock, flags);
1207 return ret;
1208}
1209
Zhu Yib481de92007-09-25 17:54:57 -07001210/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001211 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -07001212 *
1213 * Setup the RX handlers for each of the reply types sent from the uCode
1214 * to the host.
1215 *
1216 * This function chains into the hardware specific files for them to setup
1217 * any hardware specific handlers as well.
1218 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001219static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001220{
Tomas Winkler885ba202008-05-29 16:34:55 +08001221 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001222 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
1223 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001224 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001225 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001226 iwl_rx_pm_debug_statistics_notif;
1227 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001228
Ben Cahill9fbab512007-11-29 11:09:47 +08001229 /*
1230 * The same handler is used for both the REPLY to a discrete
1231 * statistics request from the host as well as for the periodic
1232 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -07001233 */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08001234 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
1235 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +08001236
Tomas Winkler21c339b2008-11-07 09:58:41 -08001237 iwl_setup_spectrum_handlers(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08001238 iwl_setup_rx_scan_handlers(priv);
1239
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001240 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001241 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -07001242
Tomas Winklerc1354752008-05-29 16:35:04 +08001243 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
1244 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +08001245 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +08001246 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
1247 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001248 /* block ack */
1249 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +08001250 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07001251 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001252}
1253
Zhu Yib481de92007-09-25 17:54:57 -07001254/**
Tomas Winklera55360e2008-05-05 10:22:28 +08001255 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001256 *
1257 * Uses the priv->rx_handlers callback function array to invoke
1258 * the appropriate handlers, including command responses,
1259 * frame-received notifications, and other notifications.
1260 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001261void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001262{
Tomas Winklera55360e2008-05-05 10:22:28 +08001263 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001264 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001265 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001266 u32 r, i;
1267 int reclaim;
1268 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001269 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001270 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001271
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001272 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1273 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -08001274 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001275 i = rxq->read;
1276
1277 /* Rx interrupt, but nothing sent from uCode */
1278 if (i == r)
Ester Kummerf3d67992008-05-06 11:05:12 +08001279 IWL_DEBUG(IWL_DL_RX, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001280
Tomas Winklera55360e2008-05-05 10:22:28 +08001281 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001282 fill_rx = 1;
1283
Zhu Yib481de92007-09-25 17:54:57 -07001284 while (i != r) {
1285 rxb = rxq->queue[i];
1286
Ben Cahill9fbab512007-11-29 11:09:47 +08001287 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001288 * then a bug has been introduced in the queue refilling
1289 * routines -- catch it here */
1290 BUG_ON(rxb == NULL);
1291
1292 rxq->queue[i] = NULL;
1293
Johannes Berge91af0a2008-11-19 01:22:51 +01001294 dma_sync_single_range_for_cpu(
1295 &priv->pci_dev->dev, rxb->real_dma_addr,
1296 rxb->aligned_dma_addr - rxb->real_dma_addr,
1297 priv->hw_params.rx_buf_size,
1298 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +08001299 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001300
1301 /* Reclaim a command buffer only if this packet is a response
1302 * to a (driver-originated) command.
1303 * If the packet (e.g. Rx frame) originated from uCode,
1304 * there is no command buffer to reclaim.
1305 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1306 * but apparently a few don't get set; catch them here. */
1307 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1308 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001309 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001310 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001311 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001312 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1313 (pkt->hdr.cmd != REPLY_TX);
1314
1315 /* Based on type of command response or notification,
1316 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001317 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001318 if (priv->rx_handlers[pkt->hdr.cmd]) {
Ester Kummerf3d67992008-05-06 11:05:12 +08001319 IWL_DEBUG(IWL_DL_RX, "r = %d, i = %d, %s, 0x%02x\n", r,
1320 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001321 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1322 } else {
1323 /* No handling needed */
Ester Kummerf3d67992008-05-06 11:05:12 +08001324 IWL_DEBUG(IWL_DL_RX,
Zhu Yib481de92007-09-25 17:54:57 -07001325 "r %d i %d No handler needed for %s, 0x%02x\n",
1326 r, i, get_cmd_string(pkt->hdr.cmd),
1327 pkt->hdr.cmd);
1328 }
1329
1330 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001331 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07001332 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001333 * as we reclaim the driver command queue */
1334 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +08001335 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001336 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001337 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001338 }
1339
1340 /* For now we just don't re-use anything. We can tweak this
1341 * later to try and re-use notification packets and SKBs that
1342 * fail to Rx correctly */
1343 if (rxb->skb != NULL) {
1344 priv->alloc_rxb_skb--;
1345 dev_kfree_skb_any(rxb->skb);
1346 rxb->skb = NULL;
1347 }
1348
Johannes Berg40185172008-11-18 01:47:21 +01001349 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1350 priv->hw_params.rx_buf_size + 256,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02001351 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001352 spin_lock_irqsave(&rxq->lock, flags);
1353 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1354 spin_unlock_irqrestore(&rxq->lock, flags);
1355 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001356 /* If there are a lot of unused frames,
1357 * restock the Rx queue so ucode wont assert. */
1358 if (fill_rx) {
1359 count++;
1360 if (count >= 8) {
1361 priv->rxq.read = i;
Zhu Yif1bc4ac2008-12-17 16:52:33 +08001362 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001363 count = 0;
1364 }
1365 }
Zhu Yib481de92007-09-25 17:54:57 -07001366 }
1367
1368 /* Backtrack one entry */
1369 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08001370 iwl_rx_queue_restock(priv);
1371}
Tomas Winklera55360e2008-05-05 10:22:28 +08001372
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001373#ifdef CONFIG_IWLWIFI_DEBUG
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001374static void iwl_print_rx_config_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001375{
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001376 struct iwl_rxon_cmd *rxon = &priv->staging_rxon;
Joe Perches0795af52007-10-03 17:59:30 -07001377
Zhu Yib481de92007-09-25 17:54:57 -07001378 IWL_DEBUG_RADIO("RX CONFIG:\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08001379 iwl_print_hex_dump(priv, IWL_DL_RADIO, (u8 *) rxon, sizeof(*rxon));
Zhu Yib481de92007-09-25 17:54:57 -07001380 IWL_DEBUG_RADIO("u16 channel: 0x%x\n", le16_to_cpu(rxon->channel));
1381 IWL_DEBUG_RADIO("u32 flags: 0x%08X\n", le32_to_cpu(rxon->flags));
1382 IWL_DEBUG_RADIO("u32 filter_flags: 0x%08x\n",
1383 le32_to_cpu(rxon->filter_flags));
1384 IWL_DEBUG_RADIO("u8 dev_type: 0x%x\n", rxon->dev_type);
1385 IWL_DEBUG_RADIO("u8 ofdm_basic_rates: 0x%02x\n",
1386 rxon->ofdm_basic_rates);
1387 IWL_DEBUG_RADIO("u8 cck_basic_rates: 0x%02x\n", rxon->cck_basic_rates);
Johannes Berge1749612008-10-27 15:59:26 -07001388 IWL_DEBUG_RADIO("u8[6] node_addr: %pM\n", rxon->node_addr);
1389 IWL_DEBUG_RADIO("u8[6] bssid_addr: %pM\n", rxon->bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001390 IWL_DEBUG_RADIO("u16 assoc_id: 0x%x\n", le16_to_cpu(rxon->assoc_id));
1391}
1392#endif
1393
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001394/* call this function to flush any scheduled tasklet */
1395static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1396{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001397 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001398 synchronize_irq(priv->pci_dev->irq);
1399 tasklet_kill(&priv->irq_tasklet);
1400}
1401
Zhu Yib481de92007-09-25 17:54:57 -07001402/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001403 * iwl_irq_handle_error - called for HW or SW error interrupt from card
Zhu Yib481de92007-09-25 17:54:57 -07001404 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001405static void iwl_irq_handle_error(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001406{
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001407 /* Set the FW error flag -- cleared on iwl_down */
Zhu Yib481de92007-09-25 17:54:57 -07001408 set_bit(STATUS_FW_ERROR, &priv->status);
1409
1410 /* Cancel currently queued command. */
1411 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
1412
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001413#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001414 if (priv->debug_level & IWL_DL_FW_ERRORS) {
Ester Kummerede0cba2008-05-29 16:34:46 +08001415 iwl_dump_nic_error_log(priv);
Ester Kummer189a2b52008-05-15 13:54:18 +08001416 iwl_dump_nic_event_log(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001417 iwl_print_rx_config_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001418 }
1419#endif
1420
1421 wake_up_interruptible(&priv->wait_command_queue);
1422
1423 /* Keep the restart process from trying to send host
1424 * commands by clearing the INIT status bit */
1425 clear_bit(STATUS_READY, &priv->status);
1426
1427 if (!test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Ester Kummerf3d67992008-05-06 11:05:12 +08001428 IWL_DEBUG(IWL_DL_FW_ERRORS,
Zhu Yib481de92007-09-25 17:54:57 -07001429 "Restarting adapter due to uCode error.\n");
1430
Tomas Winkler3109ece2008-03-28 16:33:35 -07001431 if (iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001432 memcpy(&priv->recovery_rxon, &priv->active_rxon,
1433 sizeof(priv->recovery_rxon));
1434 priv->error_recovering = 1;
1435 }
Ester Kummer3a1081e2008-05-06 11:05:14 +08001436 if (priv->cfg->mod_params->restart_fw)
1437 queue_work(priv->workqueue, &priv->restart);
Zhu Yib481de92007-09-25 17:54:57 -07001438 }
1439}
1440
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001441static void iwl_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001442{
1443 unsigned long flags;
1444
1445 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1446 sizeof(priv->staging_rxon));
1447 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001448 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001449
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001450 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07001451
1452 spin_lock_irqsave(&priv->lock, flags);
1453 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1454 priv->error_recovering = 0;
1455 spin_unlock_irqrestore(&priv->lock, flags);
1456}
1457
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001458static void iwl_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001459{
1460 u32 inta, handled = 0;
1461 u32 inta_fh;
1462 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001463#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001464 u32 inta_mask;
1465#endif
1466
1467 spin_lock_irqsave(&priv->lock, flags);
1468
1469 /* Ack/clear/reset pending uCode interrupts.
1470 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1471 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001472 inta = iwl_read32(priv, CSR_INT);
1473 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001474
1475 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1476 * Any new interrupts that happen after this, either while we're
1477 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001478 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1479 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001480
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001481#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001482 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001483 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001484 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Zhu Yib481de92007-09-25 17:54:57 -07001485 IWL_DEBUG_ISR("inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1486 inta, inta_mask, inta_fh);
1487 }
1488#endif
1489
1490 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1491 * atomic, make sure that inta covers all the interrupts that
1492 * we've discovered, even if FH interrupt came in just after
1493 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001494 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001495 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001496 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001497 inta |= CSR_INT_BIT_FH_TX;
1498
1499 /* Now service all interrupt bits discovered above. */
1500 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001501 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001502
1503 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001504 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001505
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001506 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001507
1508 handled |= CSR_INT_BIT_HW_ERR;
1509
1510 spin_unlock_irqrestore(&priv->lock, flags);
1511
1512 return;
1513 }
1514
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001515#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001516 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001517 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001518 if (inta & CSR_INT_BIT_SCD)
1519 IWL_DEBUG_ISR("Scheduler finished to transmit "
1520 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001521
1522 /* Alive notification via Rx interrupt will do the real work */
1523 if (inta & CSR_INT_BIT_ALIVE)
1524 IWL_DEBUG_ISR("Alive interrupt\n");
1525 }
1526#endif
1527 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001528 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001529
Ben Cahill9fbab512007-11-29 11:09:47 +08001530 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001531 if (inta & CSR_INT_BIT_RF_KILL) {
1532 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001533 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001534 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1535 hw_rf_kill = 1;
1536
Ester Kummerf3d67992008-05-06 11:05:12 +08001537 IWL_DEBUG(IWL_DL_RF_KILL, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001538 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001539
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001540 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001541 * the driver allows loading the ucode even if the radio
1542 * is killed. Hence update the killswitch state here. The
1543 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001544 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001545 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1546 if (hw_rf_kill)
1547 set_bit(STATUS_RF_KILL_HW, &priv->status);
1548 else
1549 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1550 queue_work(priv->workqueue, &priv->rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001551 }
Zhu Yib481de92007-09-25 17:54:57 -07001552
1553 handled |= CSR_INT_BIT_RF_KILL;
1554 }
1555
Ben Cahill9fbab512007-11-29 11:09:47 +08001556 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001557 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001558 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001559 handled |= CSR_INT_BIT_CT_KILL;
1560 }
1561
1562 /* Error detected by uCode */
1563 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001564 IWL_ERR(priv, "Microcode SW error detected. "
1565 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001566 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001567 handled |= CSR_INT_BIT_SW_ERR;
1568 }
1569
1570 /* uCode wakes up after power-down sleep */
1571 if (inta & CSR_INT_BIT_WAKEUP) {
1572 IWL_DEBUG_ISR("Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001573 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08001574 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1575 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1576 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1577 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1578 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1579 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001580
1581 handled |= CSR_INT_BIT_WAKEUP;
1582 }
1583
1584 /* All uCode command responses, including Tx command responses,
1585 * Rx "responses" (frame-received notification), and other
1586 * notifications from uCode come through here*/
1587 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001588 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001589 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1590 }
1591
1592 if (inta & CSR_INT_BIT_FH_TX) {
1593 IWL_DEBUG_ISR("Tx interrupt\n");
1594 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001595 /* FH finished to write, send event */
1596 priv->ucode_write_complete = 1;
1597 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001598 }
1599
1600 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001601 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07001602
1603 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001604 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001605 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001606 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001607 }
1608
1609 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001610 /* only Re-enable if diabled by irq */
1611 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001612 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001613
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001614#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001615 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001616 inta = iwl_read32(priv, CSR_INT);
1617 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1618 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07001619 IWL_DEBUG_ISR("End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
1620 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1621 }
1622#endif
1623 spin_unlock_irqrestore(&priv->lock, flags);
1624}
1625
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001626static irqreturn_t iwl_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07001627{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001628 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07001629 u32 inta, inta_mask;
1630 u32 inta_fh;
1631 if (!priv)
1632 return IRQ_NONE;
1633
1634 spin_lock(&priv->lock);
1635
1636 /* Disable (but don't clear!) interrupts here to avoid
1637 * back-to-back ISRs and sporadic interrupts from our NIC.
1638 * If we have something to service, the tasklet will re-enable ints.
1639 * If we *don't* have something, we'll re-enable before leaving here. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001640 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1641 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07001642
1643 /* Discover which interrupts are active/pending */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001644 inta = iwl_read32(priv, CSR_INT);
1645 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07001646
1647 /* Ignore interrupt if there's nothing in NIC to service.
1648 * This may be due to IRQ shared with another device,
1649 * or due to sporadic interrupts thrown from our NIC. */
1650 if (!inta && !inta_fh) {
1651 IWL_DEBUG_ISR("Ignore interrupt, inta == 0, inta_fh == 0\n");
1652 goto none;
1653 }
1654
1655 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
Oliver Neukum66fbb542007-11-15 09:31:10 +08001656 /* Hardware disappeared. It might have already raised
1657 * an interrupt */
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001658 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukum66fbb542007-11-15 09:31:10 +08001659 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07001660 }
1661
1662 IWL_DEBUG_ISR("ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
1663 inta, inta_mask, inta_fh);
1664
Joonwoo Park25c03d82008-01-23 10:15:20 -08001665 inta &= ~CSR_INT_BIT_SCD;
1666
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001667 /* iwl_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001668 if (likely(inta || inta_fh))
1669 tasklet_schedule(&priv->irq_tasklet);
Zhu Yib481de92007-09-25 17:54:57 -07001670
Oliver Neukum66fbb542007-11-15 09:31:10 +08001671 unplugged:
1672 spin_unlock(&priv->lock);
Zhu Yib481de92007-09-25 17:54:57 -07001673 return IRQ_HANDLED;
1674
1675 none:
1676 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001677 /* only Re-enable if diabled by irq */
1678 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001679 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001680 spin_unlock(&priv->lock);
1681 return IRQ_NONE;
1682}
1683
Zhu Yib481de92007-09-25 17:54:57 -07001684/******************************************************************************
1685 *
1686 * uCode download functions
1687 *
1688 ******************************************************************************/
1689
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001690static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001691{
Tomas Winkler98c92212008-01-14 17:46:20 -08001692 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1693 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1694 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1695 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1696 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1697 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001698}
1699
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001700static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001701{
1702 /* Remove all resets to allow NIC to operate */
1703 iwl_write32(priv, CSR_RESET, 0);
1704}
1705
1706
Zhu Yib481de92007-09-25 17:54:57 -07001707/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001708 * iwl_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001709 *
1710 * Copy into buffers for card to fetch via bus-mastering
1711 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001712static int iwl_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001713{
Ron Rindjunsky14b3d332008-06-13 15:44:54 +08001714 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001715 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07001716 const struct firmware *ucode_raw;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001717 const char *name_pre = priv->cfg->fw_name_pre;
1718 const unsigned int api_max = priv->cfg->ucode_api_max;
1719 const unsigned int api_min = priv->cfg->ucode_api_min;
1720 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07001721 u8 *src;
1722 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001723 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07001724
1725 /* Ask kernel firmware_class module to get the boot firmware off disk.
1726 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001727 for (index = api_max; index >= api_min; index--) {
1728 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1729 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1730 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001731 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001732 buf, ret);
1733 if (ret == -ENOENT)
1734 continue;
1735 else
1736 goto error;
1737 } else {
1738 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001739 IWL_ERR(priv, "Loaded firmware %s, "
1740 "which is deprecated. "
1741 "Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001742 buf, api_max);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001743
Reinette Chatrea0987a82008-12-02 12:14:06 -08001744 IWL_DEBUG_INFO("Got firmware '%s' file (%zd bytes) from disk\n",
1745 buf, ucode_raw->size);
1746 break;
1747 }
Zhu Yib481de92007-09-25 17:54:57 -07001748 }
1749
Reinette Chatrea0987a82008-12-02 12:14:06 -08001750 if (ret < 0)
1751 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07001752
1753 /* Make sure that we got at least our header! */
1754 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001755 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001756 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001757 goto err_release;
1758 }
1759
1760 /* Data from ucode file: header followed by uCode images */
1761 ucode = (void *)ucode_raw->data;
1762
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001763 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001764 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001765 inst_size = le32_to_cpu(ucode->inst_size);
1766 data_size = le32_to_cpu(ucode->data_size);
1767 init_size = le32_to_cpu(ucode->init_size);
1768 init_data_size = le32_to_cpu(ucode->init_data_size);
1769 boot_size = le32_to_cpu(ucode->boot_size);
1770
Reinette Chatrea0987a82008-12-02 12:14:06 -08001771 /* api_ver should match the api version forming part of the
1772 * firmware filename ... but we don't check for that and only rely
1773 * on the API version read from firware header from here on forward */
1774
1775 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001776 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001777 "Driver supports v%u, firmware is v%u.\n",
1778 api_max, api_ver);
1779 priv->ucode_ver = 0;
1780 ret = -EINVAL;
1781 goto err_release;
1782 }
1783 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001784 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001785 "got v%u. New firmware can be obtained "
1786 "from http://www.intellinuxwireless.org.\n",
1787 api_max, api_ver);
1788
Tomas Winkler978785a2008-12-19 10:37:31 +08001789 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1790 IWL_UCODE_MAJOR(priv->ucode_ver),
1791 IWL_UCODE_MINOR(priv->ucode_ver),
1792 IWL_UCODE_API(priv->ucode_ver),
1793 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001794
1795 IWL_DEBUG_INFO("f/w package hdr ucode version raw = 0x%x\n",
1796 priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001797 IWL_DEBUG_INFO("f/w package hdr runtime inst size = %u\n",
1798 inst_size);
1799 IWL_DEBUG_INFO("f/w package hdr runtime data size = %u\n",
1800 data_size);
1801 IWL_DEBUG_INFO("f/w package hdr init inst size = %u\n",
1802 init_size);
1803 IWL_DEBUG_INFO("f/w package hdr init data size = %u\n",
1804 init_data_size);
1805 IWL_DEBUG_INFO("f/w package hdr boot inst size = %u\n",
1806 boot_size);
1807
1808 /* Verify size of file vs. image size info in file's header */
1809 if (ucode_raw->size < sizeof(*ucode) +
1810 inst_size + data_size + init_size +
1811 init_data_size + boot_size) {
1812
1813 IWL_DEBUG_INFO("uCode file size %d too small\n",
1814 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001815 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001816 goto err_release;
1817 }
1818
1819 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001820 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08001821 IWL_DEBUG_INFO("uCode instr len %d too large to fit in\n",
1822 inst_size);
1823 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001824 goto err_release;
1825 }
1826
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001827 if (data_size > priv->hw_params.max_data_size) {
Tomas Winkler90e759d2007-11-29 11:09:41 +08001828 IWL_DEBUG_INFO("uCode data len %d too large to fit in\n",
1829 data_size);
1830 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001831 goto err_release;
1832 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001833 if (init_size > priv->hw_params.max_inst_size) {
Zhu Yib481de92007-09-25 17:54:57 -07001834 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08001835 ("uCode init instr len %d too large to fit in\n",
1836 init_size);
1837 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001838 goto err_release;
1839 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001840 if (init_data_size > priv->hw_params.max_data_size) {
Zhu Yib481de92007-09-25 17:54:57 -07001841 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08001842 ("uCode init data len %d too large to fit in\n",
1843 init_data_size);
1844 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001845 goto err_release;
1846 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001847 if (boot_size > priv->hw_params.max_bsm_size) {
Zhu Yib481de92007-09-25 17:54:57 -07001848 IWL_DEBUG_INFO
Tomas Winkler90e759d2007-11-29 11:09:41 +08001849 ("uCode boot instr len %d too large to fit in\n",
1850 boot_size);
1851 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001852 goto err_release;
1853 }
1854
1855 /* Allocate ucode buffers for card's bus-master loading ... */
1856
1857 /* Runtime instructions and 2 copies of data:
1858 * 1) unmodified from disk
1859 * 2) backup cache for save/restore during power-downs */
1860 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001861 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001862
1863 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001864 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001865
1866 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001867 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001868
Zhu, Yi1f304e42009-01-23 13:45:22 -08001869 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1870 !priv->ucode_data_backup.v_addr)
1871 goto err_pci_alloc;
1872
Zhu Yib481de92007-09-25 17:54:57 -07001873 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001874 if (init_size && init_data_size) {
1875 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001876 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001877
Tomas Winkler90e759d2007-11-29 11:09:41 +08001878 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001879 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001880
1881 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1882 goto err_pci_alloc;
1883 }
Zhu Yib481de92007-09-25 17:54:57 -07001884
1885 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001886 if (boot_size) {
1887 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001888 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001889
Tomas Winkler90e759d2007-11-29 11:09:41 +08001890 if (!priv->ucode_boot.v_addr)
1891 goto err_pci_alloc;
1892 }
Zhu Yib481de92007-09-25 17:54:57 -07001893
1894 /* Copy images into buffers for card's bus-master reads ... */
1895
1896 /* Runtime instructions (first block of data in file) */
1897 src = &ucode->data[0];
1898 len = priv->ucode_code.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001899 IWL_DEBUG_INFO("Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001900 memcpy(priv->ucode_code.v_addr, src, len);
1901 IWL_DEBUG_INFO("uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
1902 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1903
1904 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001905 * NOTE: Copy into backup buffer will be done in iwl_up() */
Zhu Yib481de92007-09-25 17:54:57 -07001906 src = &ucode->data[inst_size];
1907 len = priv->ucode_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001908 IWL_DEBUG_INFO("Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001909 memcpy(priv->ucode_data.v_addr, src, len);
1910 memcpy(priv->ucode_data_backup.v_addr, src, len);
1911
1912 /* Initialization instructions (3rd block) */
1913 if (init_size) {
1914 src = &ucode->data[inst_size + data_size];
1915 len = priv->ucode_init.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001916 IWL_DEBUG_INFO("Copying (but not loading) init instr len %Zd\n",
1917 len);
Zhu Yib481de92007-09-25 17:54:57 -07001918 memcpy(priv->ucode_init.v_addr, src, len);
1919 }
1920
1921 /* Initialization data (4th block) */
1922 if (init_data_size) {
1923 src = &ucode->data[inst_size + data_size + init_size];
1924 len = priv->ucode_init_data.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001925 IWL_DEBUG_INFO("Copying (but not loading) init data len %Zd\n",
1926 len);
Zhu Yib481de92007-09-25 17:54:57 -07001927 memcpy(priv->ucode_init_data.v_addr, src, len);
1928 }
1929
1930 /* Bootstrap instructions (5th block) */
1931 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1932 len = priv->ucode_boot.len;
Tomas Winkler90e759d2007-11-29 11:09:41 +08001933 IWL_DEBUG_INFO("Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001934 memcpy(priv->ucode_boot.v_addr, src, len);
1935
1936 /* We have our copies now, allow OS release its copies */
1937 release_firmware(ucode_raw);
1938 return 0;
1939
1940 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001941 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001942 ret = -ENOMEM;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001943 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001944
1945 err_release:
1946 release_firmware(ucode_raw);
1947
1948 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001949 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001950}
1951
Mohamed Abbasada17512008-11-07 09:58:34 -08001952/* temporary */
1953static int iwl_mac_beacon_update(struct ieee80211_hw *hw,
1954 struct sk_buff *skb);
1955
Zhu Yib481de92007-09-25 17:54:57 -07001956/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001957 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001958 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001959 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001960 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001961static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001962{
Tomas Winkler57aab752008-04-14 21:16:03 -07001963 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001964
1965 IWL_DEBUG_INFO("Runtime Alive received.\n");
1966
1967 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1968 /* We had an error bringing up the hardware, so take it
1969 * all the way back down so we can try again */
1970 IWL_DEBUG_INFO("Alive failed.\n");
1971 goto restart;
1972 }
1973
1974 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1975 * This is a paranoid check, because we would not have gotten the
1976 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07001977 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001978 /* Runtime instruction load was bad;
1979 * take it all the way back down so we can try again */
1980 IWL_DEBUG_INFO("Bad runtime uCode load.\n");
1981 goto restart;
1982 }
1983
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001984 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001985 ret = priv->cfg->ops->lib->alive_notify(priv);
1986 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001987 IWL_WARN(priv,
1988 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07001989 goto restart;
1990 }
1991
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001992 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001993 set_bit(STATUS_ALIVE, &priv->status);
1994
Tomas Winklerfee12472008-04-03 16:05:21 -07001995 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001996 return;
1997
Johannes Berg36d68252008-05-15 12:55:26 +02001998 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001999
2000 priv->active_rate = priv->rates_mask;
2001 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
2002
Tomas Winkler3109ece2008-03-28 16:33:35 -07002003 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002004 struct iwl_rxon_cmd *active_rxon =
2005 (struct iwl_rxon_cmd *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07002006
2007 memcpy(&priv->staging_rxon, &priv->active_rxon,
2008 sizeof(priv->staging_rxon));
2009 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2010 } else {
2011 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002012 iwl_connection_init_rx_config(priv, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002013 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
2014 }
2015
Ben Cahill9fbab512007-11-29 11:09:47 +08002016 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002017 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002018
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002019 iwl_reset_run_time_calib(priv);
2020
Zhu Yib481de92007-09-25 17:54:57 -07002021 /* Configure the adapter for unassociated operation */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002022 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002023
2024 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002025 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002026
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002027 iwl_leds_register(priv);
2028
Zhu Yib481de92007-09-25 17:54:57 -07002029 IWL_DEBUG_INFO("ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002030 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002031 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002032
2033 if (priv->error_recovering)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002034 iwl_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002035
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08002036 iwl_power_update_mode(priv, 1);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002037
Mohamed Abbasada17512008-11-07 09:58:34 -08002038 /* reassociate for ADHOC mode */
2039 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
2040 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
2041 priv->vif);
2042 if (beacon)
2043 iwl_mac_beacon_update(priv->hw, beacon);
2044 }
2045
2046
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002047 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002048 iwl_set_mode(priv, priv->iw_mode);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002049
Zhu Yib481de92007-09-25 17:54:57 -07002050 return;
2051
2052 restart:
2053 queue_work(priv->workqueue, &priv->restart);
2054}
2055
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002056static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002057
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002058static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002059{
2060 unsigned long flags;
2061 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002062
2063 IWL_DEBUG_INFO(DRV_NAME " is going down\n");
2064
Zhu Yib481de92007-09-25 17:54:57 -07002065 if (!exit_pending)
2066 set_bit(STATUS_EXIT_PENDING, &priv->status);
2067
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002068 iwl_leds_unregister(priv);
2069
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08002070 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002071
2072 /* Unblock any waiting calls */
2073 wake_up_interruptible_all(&priv->wait_command_queue);
2074
Zhu Yib481de92007-09-25 17:54:57 -07002075 /* Wipe out the EXIT_PENDING status bit if we are not actually
2076 * exiting the module */
2077 if (!exit_pending)
2078 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2079
2080 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002081 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002082
2083 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002084 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002085 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002086 spin_unlock_irqrestore(&priv->lock, flags);
2087 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002088
2089 if (priv->mac80211_registered)
2090 ieee80211_stop_queues(priv->hw);
2091
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002092 /* If we have not previously called iwl_init() then
Zhu Yib481de92007-09-25 17:54:57 -07002093 * clear all bits but the RF Kill and SUSPEND bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002094 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002095 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2096 STATUS_RF_KILL_HW |
2097 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2098 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002099 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2100 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002101 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002102 STATUS_IN_SUSPEND |
2103 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2104 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002105 goto exit;
2106 }
2107
2108 /* ...otherwise clear out all the status bits but the RF Kill and
2109 * SUSPEND bits and continue taking the NIC down. */
2110 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2111 STATUS_RF_KILL_HW |
2112 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
2113 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08002114 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2115 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002116 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
2117 STATUS_IN_SUSPEND |
2118 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002119 STATUS_FW_ERROR |
2120 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2121 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002122
2123 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002124 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08002125 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07002126 spin_unlock_irqrestore(&priv->lock, flags);
2127
Tomas Winklerda1bc452008-05-29 16:35:00 +08002128 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08002129 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002130
2131 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002132 if (!iwl_grab_nic_access(priv)) {
2133 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07002134 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002135 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002136 }
2137 spin_unlock_irqrestore(&priv->lock, flags);
2138
2139 udelay(5);
2140
Tomas Winkler7f066102008-05-29 16:34:57 +08002141 /* FIXME: apm_ops.suspend(priv) */
Gregory Greenmand5353112008-09-03 11:18:49 +08002142 if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
2143 priv->cfg->ops->lib->apm_ops.stop(priv);
2144 else
2145 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002146 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002147 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002148
2149 if (priv->ibss_beacon)
2150 dev_kfree_skb(priv->ibss_beacon);
2151 priv->ibss_beacon = NULL;
2152
2153 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002154 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002155}
2156
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002157static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002158{
2159 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002160 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002161 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08002162
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002163 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002164}
2165
2166#define MAX_HW_RESTARTS 5
2167
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002168static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002169{
Tomas Winkler57aab752008-04-14 21:16:03 -07002170 int i;
2171 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002172
2173 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002174 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07002175 return -EIO;
2176 }
2177
Reinette Chatree903fbd2008-01-30 22:05:15 -08002178 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002179 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08002180 return -EIO;
2181 }
2182
Zhu Yie655b9f2008-01-24 02:19:38 -08002183 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08002184 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08002185 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002186 else
Zhu Yie655b9f2008-01-24 02:19:38 -08002187 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002188
Tomas Winklerc1842d62008-08-04 16:00:43 +08002189 if (iwl_is_rfkill(priv)) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002190 iwl_enable_interrupts(priv);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002191 IWL_WARN(priv, "Radio disabled by %s RF Kill switch\n",
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08002192 test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
Tomas Winklerc1842d62008-08-04 16:00:43 +08002193 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002194 }
2195
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002196 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07002197
Ron Rindjunsky1053d352008-05-05 10:22:43 +08002198 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07002199 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002200 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07002201 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002202 }
2203
2204 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002205 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2206 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07002207 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
2208
2209 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002210 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002211 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002212
2213 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002214 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
2215 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07002216
2217 /* Copy original ucode data image from disk into backup cache.
2218 * This will be used to initialize the on-board processor's
2219 * data SRAM for a clean start when the runtime program first loads. */
2220 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08002221 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07002222
Zhu Yib481de92007-09-25 17:54:57 -07002223 for (i = 0; i < MAX_HW_RESTARTS; i++) {
2224
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08002225 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002226
2227 /* load bootstrap state machine,
2228 * load bootstrap program into processor's memory,
2229 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07002230 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002231
Tomas Winkler57aab752008-04-14 21:16:03 -07002232 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002233 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
2234 ret);
Zhu Yib481de92007-09-25 17:54:57 -07002235 continue;
2236 }
2237
Emmanuel Grumbachf3d5b452008-06-12 09:47:04 +08002238 /* Clear out the uCode error bit if it is set */
2239 clear_bit(STATUS_FW_ERROR, &priv->status);
2240
Zhu Yib481de92007-09-25 17:54:57 -07002241 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002242 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002243
Zhu Yib481de92007-09-25 17:54:57 -07002244 IWL_DEBUG_INFO(DRV_NAME " is coming up\n");
2245
2246 return 0;
2247 }
2248
2249 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002250 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002251 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002252
2253 /* tried to restart and config the device for as long as our
2254 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08002255 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07002256 return -EIO;
2257}
2258
2259
2260/*****************************************************************************
2261 *
2262 * Workqueue callbacks
2263 *
2264 *****************************************************************************/
2265
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002266static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002267{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002268 struct iwl_priv *priv =
2269 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002270
2271 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2272 return;
2273
2274 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08002275 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002276 mutex_unlock(&priv->mutex);
2277}
2278
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002279static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002280{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002281 struct iwl_priv *priv =
2282 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07002283
2284 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2285 return;
2286
2287 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002288 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002289 mutex_unlock(&priv->mutex);
2290}
2291
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08002292static void iwl_bg_run_time_calib_work(struct work_struct *work)
2293{
2294 struct iwl_priv *priv = container_of(work, struct iwl_priv,
2295 run_time_calib_work);
2296
2297 mutex_lock(&priv->mutex);
2298
2299 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
2300 test_bit(STATUS_SCANNING, &priv->status)) {
2301 mutex_unlock(&priv->mutex);
2302 return;
2303 }
2304
2305 if (priv->start_calib) {
2306 iwl_chain_noise_calibration(priv, &priv->statistics);
2307
2308 iwl_sensitivity_calibration(priv, &priv->statistics);
2309 }
2310
2311 mutex_unlock(&priv->mutex);
2312 return;
2313}
2314
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002315static void iwl_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002316{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002317 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002318
2319 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2320 return;
2321
2322 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002323 __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002324 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002325 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002326}
2327
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002328static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002329{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002330 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002331
2332 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2333 return;
2334
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002335 iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002336 queue_work(priv->workqueue, &priv->up);
2337}
2338
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002339static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002340{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002341 struct iwl_priv *priv =
2342 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002343
2344 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2345 return;
2346
2347 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08002348 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002349 mutex_unlock(&priv->mutex);
2350}
2351
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002352#define IWL_DELAY_NEXT_SCAN (HZ*2)
2353
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002354static void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002355{
Zhu Yib481de92007-09-25 17:54:57 -07002356 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07002357 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002358 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002359
Johannes Berg05c914f2008-09-11 00:01:58 +02002360 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002361 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002362 return;
2363 }
2364
Johannes Berge1749612008-10-27 15:59:26 -07002365 IWL_DEBUG_ASSOC("Associated as %d to: %pM\n",
2366 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002367
2368
2369 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2370 return;
2371
Zhu Yib481de92007-09-25 17:54:57 -07002372
Reinette Chatre508e32e2008-04-14 21:16:13 -07002373 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08002374 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002375
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002376 iwl_power_cancel_timeout(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002377 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08002378
Zhu Yib481de92007-09-25 17:54:57 -07002379 conf = ieee80211_get_hw_conf(priv->hw);
2380
2381 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002382 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002383
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002384 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002385 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002386 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002387 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002388 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002389 "Attempting to continue.\n");
2390
2391 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2392
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08002393 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03002394
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002395 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002396 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2397
2398 IWL_DEBUG_ASSOC("assoc id %d beacon interval %d\n",
2399 priv->assoc_id, priv->beacon_int);
2400
2401 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2402 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2403 else
2404 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2405
2406 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2407 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2408 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2409 else
2410 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2411
Johannes Berg05c914f2008-09-11 00:01:58 +02002412 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002413 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2414
2415 }
2416
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002417 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002418
2419 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002420 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002421 break;
2422
Johannes Berg05c914f2008-09-11 00:01:58 +02002423 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002424
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002425 /* assume default assoc id */
2426 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002427
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002428 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002429 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002430
2431 break;
2432
2433 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002434 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002435 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002436 break;
2437 }
2438
Johannes Berg05c914f2008-09-11 00:01:58 +02002439 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002440 priv->assoc_station_added = 1;
2441
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002442 spin_lock_irqsave(&priv->lock, flags);
2443 iwl_activate_qos(priv, 0);
2444 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08002445
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08002446 /* the chain noise calibration will enabled PM upon completion
2447 * If chain noise has already been run, then we need to enable
2448 * power management here */
2449 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
2450 iwl_power_enable_management(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002451
2452 /* Enable Rx differential gain and sensitivity calibrations */
2453 iwl_chain_noise_reset(priv);
2454 priv->start_calib = 1;
2455
Reinette Chatre508e32e2008-04-14 21:16:13 -07002456}
2457
Zhu Yib481de92007-09-25 17:54:57 -07002458/*****************************************************************************
2459 *
2460 * mac80211 entry point functions
2461 *
2462 *****************************************************************************/
2463
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002464#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08002465
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002466static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002467{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002468 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002469 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002470
2471 IWL_DEBUG_MAC80211("enter\n");
2472
2473 /* we should be verifying the device is ready to be opened */
2474 mutex_lock(&priv->mutex);
2475
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002476 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08002477 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
2478 * ucode filename and max sizes are card-specific. */
2479
2480 if (!priv->ucode_code.len) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002481 ret = iwl_read_ucode(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002482 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002483 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002484 mutex_unlock(&priv->mutex);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002485 return ret;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002486 }
2487 }
2488
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002489 ret = __iwl_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002490
Zhu Yib481de92007-09-25 17:54:57 -07002491 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002492
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002493 iwl_rfkill_set_hw_state(priv);
2494
Zhu Yie655b9f2008-01-24 02:19:38 -08002495 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002496 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08002497
Tomas Winklerc1842d62008-08-04 16:00:43 +08002498 if (iwl_is_rfkill(priv))
2499 goto out;
2500
Zhu Yie655b9f2008-01-24 02:19:38 -08002501 IWL_DEBUG_INFO("Start UP work done.\n");
2502
2503 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
2504 return 0;
2505
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002506 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08002507 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002508 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2509 test_bit(STATUS_READY, &priv->status),
2510 UCODE_READY_TIMEOUT);
2511 if (!ret) {
2512 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002513 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002514 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002515 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002516 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002517 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002518
Tomas Winklerc1842d62008-08-04 16:00:43 +08002519out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002520 priv->is_open = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002521 IWL_DEBUG_MAC80211("leave\n");
2522 return 0;
2523}
2524
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002525static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002526{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002527 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002528
2529 IWL_DEBUG_MAC80211("enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002530
Zhu Yie655b9f2008-01-24 02:19:38 -08002531 if (!priv->is_open) {
2532 IWL_DEBUG_MAC80211("leave - skip\n");
2533 return;
2534 }
2535
Zhu Yib481de92007-09-25 17:54:57 -07002536 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002537
Tomas Winklerfee12472008-04-03 16:05:21 -07002538 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002539 /* stop mac, cancel any scan request and clear
2540 * RXON_FILTER_ASSOC_MSK BIT
2541 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08002542 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002543 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002544 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002545 }
2546
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002547 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002548
2549 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002550
2551 /* enable interrupts again in order to receive rfkill changes */
2552 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2553 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002554
Zhu Yib481de92007-09-25 17:54:57 -07002555 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002556}
2557
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002558static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002559{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002560 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002561
Tomas Winklerf3674222008-08-04 16:00:44 +08002562 IWL_DEBUG_MACDUMP("enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002563
Zhu Yib481de92007-09-25 17:54:57 -07002564 IWL_DEBUG_TX("dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002565 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002566
Johannes Berge039fa42008-05-15 12:55:29 +02002567 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002568 dev_kfree_skb_any(skb);
2569
Tomas Winklerf3674222008-08-04 16:00:44 +08002570 IWL_DEBUG_MACDUMP("leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002571 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002572}
2573
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002574static int iwl_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002575 struct ieee80211_if_init_conf *conf)
2576{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002577 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002578 unsigned long flags;
2579
Johannes Berg32bfd352007-12-19 01:31:26 +01002580 IWL_DEBUG_MAC80211("enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07002581
Johannes Berg32bfd352007-12-19 01:31:26 +01002582 if (priv->vif) {
2583 IWL_DEBUG_MAC80211("leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08002584 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07002585 }
2586
2587 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01002588 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07002589 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07002590
2591 spin_unlock_irqrestore(&priv->lock, flags);
2592
2593 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02002594
2595 if (conf->mac_addr) {
Johannes Berge1749612008-10-27 15:59:26 -07002596 IWL_DEBUG_MAC80211("Set %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02002597 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2598 }
Zhu Yib481de92007-09-25 17:54:57 -07002599
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002600 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002601 /* we are not ready, will run again when ready */
2602 set_bit(STATUS_MODE_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002603
Zhu Yib481de92007-09-25 17:54:57 -07002604 mutex_unlock(&priv->mutex);
2605
Zhu Yi5a66926a2008-01-14 17:46:18 -08002606 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002607 return 0;
2608}
2609
2610/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002611 * iwl_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07002612 *
2613 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2614 * be set inappropriately and the driver currently sets the hardware up to
2615 * use it whenever needed.
2616 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002617static int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07002618{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002619 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002620 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02002621 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07002622 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08002623 int ret = 0;
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002624 u16 channel;
Zhu Yib481de92007-09-25 17:54:57 -07002625
2626 mutex_lock(&priv->mutex);
Johannes Berg8318d782008-01-24 19:38:38 +01002627 IWL_DEBUG_MAC80211("enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07002628
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002629 priv->current_ht_config.is_ht = conf_is_ht(conf);
Johannes Bergae5eb022008-10-14 16:58:37 +02002630
Emmanuel Grumbach14a08a7f2008-06-13 15:44:55 +08002631 if (conf->radio_enabled && iwl_radio_kill_sw_enable_radio(priv)) {
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002632 IWL_DEBUG_MAC80211("leave - RF-KILL - waiting for uCode\n");
Emmanuel Grumbach14a08a7f2008-06-13 15:44:55 +08002633 goto out;
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002634 }
2635
Emmanuel Grumbach14a08a7f2008-06-13 15:44:55 +08002636 if (!conf->radio_enabled)
2637 iwl_radio_kill_sw_disable_radio(priv);
2638
Tomas Winklerfee12472008-04-03 16:05:21 -07002639 if (!iwl_is_ready(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002640 IWL_DEBUG_MAC80211("leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002641 ret = -EIO;
2642 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002643 }
2644
Assaf Krauss1ea87392008-03-18 14:57:50 -07002645 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07002646 test_bit(STATUS_SCANNING, &priv->status))) {
Zhu Yia0646472007-12-20 14:10:01 +08002647 IWL_DEBUG_MAC80211("leave - scanning\n");
Zhu Yib481de92007-09-25 17:54:57 -07002648 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08002649 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002650 }
2651
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002652 channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
2653 ch_info = iwl_get_channel_info(priv, conf->channel->band, channel);
Zhu Yib481de92007-09-25 17:54:57 -07002654 if (!is_channel_valid(ch_info)) {
Zhu Yib481de92007-09-25 17:54:57 -07002655 IWL_DEBUG_MAC80211("leave - invalid channel\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002656 ret = -EINVAL;
2657 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002658 }
2659
Johannes Berg05c914f2008-09-11 00:01:58 +02002660 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Assaf Krauss398f9e72008-06-12 09:47:06 +08002661 !is_channel_ibss(ch_info)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002662 IWL_ERR(priv, "channel %d in band %d not IBSS channel\n",
Assaf Krauss398f9e72008-06-12 09:47:06 +08002663 conf->channel->hw_value, conf->channel->band);
2664 ret = -EINVAL;
2665 goto out;
2666 }
2667
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002668 spin_lock_irqsave(&priv->lock, flags);
2669
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002670
Tomas Winkler78330fd2008-02-06 02:37:18 +02002671 /* if we are switching from ht to 2.4 clear flags
Zhu Yib481de92007-09-25 17:54:57 -07002672 * from any ht related info since 2.4 does not
2673 * support ht */
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002674 if ((le16_to_cpu(priv->staging_rxon.channel) != channel)
Zhu Yib481de92007-09-25 17:54:57 -07002675#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2676 && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
2677#endif
2678 )
2679 priv->staging_rxon.flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002680
Tomas Winkler17e72782008-09-03 11:26:26 +08002681 iwl_set_rxon_channel(priv, conf->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002682
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002683 iwl_set_flags_for_band(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07002684
2685 /* The list of supported rates and rate mask can be different
Johannes Berg8318d782008-01-24 19:38:38 +01002686 * for each band; since the band may have changed, reset
Zhu Yib481de92007-09-25 17:54:57 -07002687 * the rate mask to what mac80211 lists */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002688 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002689
2690 spin_unlock_irqrestore(&priv->lock, flags);
2691
2692#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2693 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002694 iwl_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002695 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002696 }
2697#endif
2698
Zhu Yib481de92007-09-25 17:54:57 -07002699 if (!conf->radio_enabled) {
2700 IWL_DEBUG_MAC80211("leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002701 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002702 }
2703
Tomas Winklerfee12472008-04-03 16:05:21 -07002704 if (iwl_is_rfkill(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002705 IWL_DEBUG_MAC80211("leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002706 ret = -EIO;
2707 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002708 }
2709
Ester Kummere602cb12008-09-26 15:09:33 +08002710 if (conf->flags & IEEE80211_CONF_PS)
2711 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2712 else
2713 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2714 if (ret)
2715 IWL_DEBUG_MAC80211("Error setting power level\n");
2716
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002717 IWL_DEBUG_MAC80211("TX Power old=%d new=%d\n",
2718 priv->tx_power_user_lmt, conf->power_level);
2719
2720 iwl_set_tx_power(priv, conf->power_level, false);
2721
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002722 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002723
Rick Farrington7b841722009-01-23 13:45:10 -08002724 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2725 iwl_set_rxon_chain(priv);
2726
Zhu Yib481de92007-09-25 17:54:57 -07002727 if (memcmp(&priv->active_rxon,
2728 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002729 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002730 else
2731 IWL_DEBUG_INFO("No re-sending same RXON configuration.\n");
2732
2733 IWL_DEBUG_MAC80211("leave\n");
2734
Zhu Yia0646472007-12-20 14:10:01 +08002735out:
Zhu Yi5a66926a2008-01-14 17:46:18 -08002736 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002737 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002738}
2739
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002740static void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002741{
Tomas Winkler857485c2008-03-21 13:53:44 -07002742 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002743 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002744
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002745 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002746 return;
2747
2748 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002749 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002750
2751 /* RXON - unassoc (to set timing command) */
2752 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002753 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002754
2755 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002756 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002757 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002758 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002759 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002760 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002761 "Attempting to continue.\n");
2762
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002763 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002764
2765 /* FIXME: what should be the assoc_id for AP? */
2766 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2767 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2768 priv->staging_rxon.flags |=
2769 RXON_FLG_SHORT_PREAMBLE_MSK;
2770 else
2771 priv->staging_rxon.flags &=
2772 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2773
2774 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2775 if (priv->assoc_capability &
2776 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2777 priv->staging_rxon.flags |=
2778 RXON_FLG_SHORT_SLOT_MSK;
2779 else
2780 priv->staging_rxon.flags &=
2781 ~RXON_FLG_SHORT_SLOT_MSK;
2782
Johannes Berg05c914f2008-09-11 00:01:58 +02002783 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002784 priv->staging_rxon.flags &=
2785 ~RXON_FLG_SHORT_SLOT_MSK;
2786 }
2787 /* restore RXON assoc */
2788 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002789 iwl_commit_rxon(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002790 spin_lock_irqsave(&priv->lock, flags);
2791 iwl_activate_qos(priv, 1);
2792 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002793 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08002794 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002795 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002796
2797 /* FIXME - we need to add code here to detect a totally new
2798 * configuration, reset the AP, unassoc, rxon timing, assoc,
2799 * clear sta table, add BCAST sta... */
2800}
2801
Johannes Berg9d139c82008-07-09 14:40:37 +02002802
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002803static int iwl_mac_config_interface(struct ieee80211_hw *hw,
Johannes Berg32bfd352007-12-19 01:31:26 +01002804 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07002805 struct ieee80211_if_conf *conf)
2806{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002807 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002808 int rc;
2809
2810 if (conf == NULL)
2811 return -EIO;
2812
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002813 if (priv->vif != vif) {
2814 IWL_DEBUG_MAC80211("leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002815 return 0;
2816 }
2817
Johannes Berg05c914f2008-09-11 00:01:58 +02002818 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002819 conf->changed & IEEE80211_IFCC_BEACON) {
2820 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2821 if (!beacon)
2822 return -ENOMEM;
Mohamed Abbasada17512008-11-07 09:58:34 -08002823 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002824 rc = iwl_mac_beacon_update(hw, beacon);
Mohamed Abbasada17512008-11-07 09:58:34 -08002825 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02002826 if (rc)
2827 return rc;
2828 }
2829
Tomas Winklerfee12472008-04-03 16:05:21 -07002830 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08002831 return -EAGAIN;
2832
Zhu Yib481de92007-09-25 17:54:57 -07002833 mutex_lock(&priv->mutex);
2834
Zhu Yib481de92007-09-25 17:54:57 -07002835 if (conf->bssid)
Johannes Berge1749612008-10-27 15:59:26 -07002836 IWL_DEBUG_MAC80211("bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002837
Johannes Berg4150c572007-09-17 01:29:23 -04002838/*
2839 * very dubious code was here; the probe filtering flag is never set:
2840 *
Zhu Yib481de92007-09-25 17:54:57 -07002841 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2842 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04002843 */
Zhu Yib481de92007-09-25 17:54:57 -07002844
Johannes Berg05c914f2008-09-11 00:01:58 +02002845 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002846 if (!conf->bssid) {
2847 conf->bssid = priv->mac_addr;
2848 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07002849 IWL_DEBUG_MAC80211("bssid was set to: %pM\n",
2850 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002851 }
2852 if (priv->ibss_beacon)
2853 dev_kfree_skb(priv->ibss_beacon);
2854
Johannes Berg9d139c82008-07-09 14:40:37 +02002855 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07002856 }
2857
Tomas Winklerfee12472008-04-03 16:05:21 -07002858 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002859 goto done;
2860
Zhu Yib481de92007-09-25 17:54:57 -07002861 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2862 !is_multicast_ether_addr(conf->bssid)) {
2863 /* If there is currently a HW scan going on in the background
2864 * then we need to cancel it else the RXON below will fail. */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002865 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002866 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07002867 "after 100ms\n");
2868 IWL_DEBUG_MAC80211("leaving - scan abort failed.\n");
2869 mutex_unlock(&priv->mutex);
2870 return -EAGAIN;
2871 }
2872 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2873
2874 /* TODO: Audit driver for usage of these members and see
2875 * if mac80211 deprecates them (priv->bssid looks like it
2876 * shouldn't be there, but I haven't scanned the IBSS code
2877 * to verify) - jpk */
2878 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
2879
Johannes Berg05c914f2008-09-11 00:01:58 +02002880 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002881 iwl_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002882 else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002883 rc = iwl_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02002884 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002885 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07002886 priv, priv->active_rxon.bssid_addr, 1);
2887 }
2888
2889 } else {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002890 iwl_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07002891 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002892 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002893 }
2894
Mohamed Abbasfde35712007-11-29 11:10:15 +08002895 done:
Zhu Yib481de92007-09-25 17:54:57 -07002896 IWL_DEBUG_MAC80211("leave\n");
2897 mutex_unlock(&priv->mutex);
2898
2899 return 0;
2900}
2901
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002902static void iwl_configure_filter(struct ieee80211_hw *hw,
Johannes Berg4150c572007-09-17 01:29:23 -04002903 unsigned int changed_flags,
2904 unsigned int *total_flags,
2905 int mc_count, struct dev_addr_list *mc_list)
2906{
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08002907 struct iwl_priv *priv = hw->priv;
Zhu, Yi352bc8d2008-11-12 13:14:09 -08002908 __le32 *filter_flags = &priv->staging_rxon.filter_flags;
Rick Farrington25b3f572008-06-30 17:23:28 +08002909
Zhu, Yi352bc8d2008-11-12 13:14:09 -08002910 IWL_DEBUG_MAC80211("Enter: changed: 0x%x, total: 0x%x\n",
2911 changed_flags, *total_flags);
2912
2913 if (changed_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS)) {
2914 if (*total_flags & (FIF_OTHER_BSS | FIF_PROMISC_IN_BSS))
2915 *filter_flags |= RXON_FILTER_PROMISC_MSK;
2916 else
2917 *filter_flags &= ~RXON_FILTER_PROMISC_MSK;
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08002918 }
Zhu, Yi352bc8d2008-11-12 13:14:09 -08002919 if (changed_flags & FIF_ALLMULTI) {
2920 if (*total_flags & FIF_ALLMULTI)
2921 *filter_flags |= RXON_FILTER_ACCEPT_GRP_MSK;
2922 else
2923 *filter_flags &= ~RXON_FILTER_ACCEPT_GRP_MSK;
2924 }
2925 if (changed_flags & FIF_CONTROL) {
2926 if (*total_flags & FIF_CONTROL)
2927 *filter_flags |= RXON_FILTER_CTL2HOST_MSK;
2928 else
2929 *filter_flags &= ~RXON_FILTER_CTL2HOST_MSK;
2930 }
2931 if (changed_flags & FIF_BCN_PRBRESP_PROMISC) {
2932 if (*total_flags & FIF_BCN_PRBRESP_PROMISC)
2933 *filter_flags |= RXON_FILTER_BCON_AWARE_MSK;
2934 else
2935 *filter_flags &= ~RXON_FILTER_BCON_AWARE_MSK;
2936 }
2937
2938 /* We avoid iwl_commit_rxon here to commit the new filter flags
2939 * since mac80211 will call ieee80211_hw_config immediately.
2940 * (mc_list is not supported at this time). Otherwise, we need to
2941 * queue a background iwl_commit_rxon work.
2942 */
2943
2944 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
Rick Farrington25b3f572008-06-30 17:23:28 +08002945 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
Johannes Berg4150c572007-09-17 01:29:23 -04002946}
2947
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002948static void iwl_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002949 struct ieee80211_if_init_conf *conf)
2950{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002951 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002952
2953 IWL_DEBUG_MAC80211("enter\n");
2954
2955 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002956
Tomas Winklerfee12472008-04-03 16:05:21 -07002957 if (iwl_is_ready_rf(priv)) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002958 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002959 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002960 iwl_commit_rxon(priv);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002961 }
Johannes Berg32bfd352007-12-19 01:31:26 +01002962 if (priv->vif == conf->vif) {
2963 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002964 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002965 }
2966 mutex_unlock(&priv->mutex);
2967
2968 IWL_DEBUG_MAC80211("leave\n");
2969
2970}
Johannes Berg471b3ef2007-12-28 14:32:58 +01002971
Tomas Winkler3109ece2008-03-28 16:33:35 -07002972#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002973static void iwl_bss_info_changed(struct ieee80211_hw *hw,
Johannes Berg471b3ef2007-12-28 14:32:58 +01002974 struct ieee80211_vif *vif,
2975 struct ieee80211_bss_conf *bss_conf,
2976 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02002977{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002978 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02002979
Tomas Winkler3109ece2008-03-28 16:33:35 -07002980 IWL_DEBUG_MAC80211("changes = 0x%X\n", changes);
2981
Johannes Berg471b3ef2007-12-28 14:32:58 +01002982 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07002983 IWL_DEBUG_MAC80211("ERP_PREAMBLE %d\n",
2984 bss_conf->use_short_preamble);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002985 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02002986 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2987 else
2988 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2989 }
2990
Johannes Berg471b3ef2007-12-28 14:32:58 +01002991 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07002992 IWL_DEBUG_MAC80211("ERP_CTS %d\n", bss_conf->use_cts_prot);
Johannes Berg8318d782008-01-24 19:38:38 +01002993 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02002994 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2995 else
2996 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2997 }
2998
Tomas Winkler98952d52008-03-28 16:33:33 -07002999 if (changes & BSS_CHANGED_HT) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003000 iwl_ht_conf(priv, bss_conf);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003001 iwl_set_rxon_chain(priv);
Tomas Winkler98952d52008-03-28 16:33:33 -07003002 }
3003
Johannes Berg471b3ef2007-12-28 14:32:58 +01003004 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winkler3109ece2008-03-28 16:33:35 -07003005 IWL_DEBUG_MAC80211("ASSOC %d\n", bss_conf->assoc);
Reinette Chatre508e32e2008-04-14 21:16:13 -07003006 /* This should never happen as this function should
3007 * never be called from interrupt context. */
3008 if (WARN_ON_ONCE(in_interrupt()))
3009 return;
Tomas Winkler3109ece2008-03-28 16:33:35 -07003010 if (bss_conf->assoc) {
3011 priv->assoc_id = bss_conf->aid;
3012 priv->beacon_int = bss_conf->beacon_int;
Tomas Winklerb5d7be52008-07-19 04:41:24 +03003013 priv->power_data.dtim_period = bss_conf->dtim_period;
Tomas Winkler3109ece2008-03-28 16:33:35 -07003014 priv->timestamp = bss_conf->timestamp;
3015 priv->assoc_capability = bss_conf->assoc_capability;
Tomas Winkler9ccacb82008-09-16 14:01:03 +08003016
3017 /* we have just associated, don't start scan too early
3018 * leave time for EAPOL exchange to complete
3019 */
Tomas Winkler3109ece2008-03-28 16:33:35 -07003020 priv->next_scan_jiffies = jiffies +
3021 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Reinette Chatre508e32e2008-04-14 21:16:13 -07003022 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003023 iwl_post_associate(priv);
Reinette Chatre508e32e2008-04-14 21:16:13 -07003024 mutex_unlock(&priv->mutex);
Tomas Winkler3109ece2008-03-28 16:33:35 -07003025 } else {
3026 priv->assoc_id = 0;
3027 IWL_DEBUG_MAC80211("DISASSOC %d\n", bss_conf->assoc);
3028 }
3029 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
3030 IWL_DEBUG_MAC80211("Associated Changes %d\n", changes);
Tomas Winkler7e8c5192008-04-15 16:01:43 -07003031 iwl_send_rxon_assoc(priv);
Johannes Berg471b3ef2007-12-28 14:32:58 +01003032 }
3033
Tomas Winkler220173b2007-10-16 00:50:25 +02003034}
Zhu Yib481de92007-09-25 17:54:57 -07003035
Tomas Winklercb43dc22008-09-03 11:26:23 +08003036static int iwl_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t ssid_len)
Zhu Yib481de92007-09-25 17:54:57 -07003037{
Zhu Yib481de92007-09-25 17:54:57 -07003038 unsigned long flags;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003039 struct iwl_priv *priv = hw->priv;
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003040 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003041
3042 IWL_DEBUG_MAC80211("enter\n");
3043
mabbas052c4b92007-10-25 17:15:43 +08003044 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07003045 spin_lock_irqsave(&priv->lock, flags);
3046
Tomas Winklerfee12472008-04-03 16:05:21 -07003047 if (!iwl_is_ready_rf(priv)) {
Tomas Winklercb43dc22008-09-03 11:26:23 +08003048 ret = -EIO;
Zhu Yib481de92007-09-25 17:54:57 -07003049 IWL_DEBUG_MAC80211("leave - not ready or exit pending\n");
3050 goto out_unlock;
3051 }
3052
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003053 /* We don't schedule scan within next_scan_jiffies period.
3054 * Avoid scanning during possible EAPOL exchange, return
3055 * success immediately.
3056 */
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003057 if (priv->next_scan_jiffies &&
Tomas Winklercb43dc22008-09-03 11:26:23 +08003058 time_after(priv->next_scan_jiffies, jiffies)) {
Ron Rindjunsky681c0052008-09-03 11:26:25 +08003059 IWL_DEBUG_SCAN("scan rejected: within next scan period\n");
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003060 queue_work(priv->workqueue, &priv->scan_completed);
3061 ret = 0;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003062 goto out_unlock;
3063 }
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003064
Zhu Yib481de92007-09-25 17:54:57 -07003065 /* if we just finished scan ask for delay */
Ron Rindjunsky681c0052008-09-03 11:26:25 +08003066 if (iwl_is_associated(priv) && priv->last_scan_jiffies &&
Tomas Winklercb43dc22008-09-03 11:26:23 +08003067 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN, jiffies)) {
Ron Rindjunsky681c0052008-09-03 11:26:25 +08003068 IWL_DEBUG_SCAN("scan rejected: within previous scan period\n");
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003069 queue_work(priv->workqueue, &priv->scan_completed);
3070 ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003071 goto out_unlock;
3072 }
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08003073
Tomas Winklercb43dc22008-09-03 11:26:23 +08003074 if (ssid_len) {
Zhu Yib481de92007-09-25 17:54:57 -07003075 priv->one_direct_scan = 1;
Tomas Winklercb43dc22008-09-03 11:26:23 +08003076 priv->direct_ssid_len = min_t(u8, ssid_len, IW_ESSID_MAX_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07003077 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Tomas Winklercb43dc22008-09-03 11:26:23 +08003078 } else {
Mohamed Abbas948c1712007-10-25 17:15:45 +08003079 priv->one_direct_scan = 0;
Tomas Winklercb43dc22008-09-03 11:26:23 +08003080 }
Zhu Yib481de92007-09-25 17:54:57 -07003081
Tomas Winklercb43dc22008-09-03 11:26:23 +08003082 ret = iwl_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003083
3084 IWL_DEBUG_MAC80211("leave\n");
3085
3086out_unlock:
3087 spin_unlock_irqrestore(&priv->lock, flags);
mabbas052c4b92007-10-25 17:15:43 +08003088 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07003089
Tomas Winklercb43dc22008-09-03 11:26:23 +08003090 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003091}
3092
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003093static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003094 struct ieee80211_key_conf *keyconf, const u8 *addr,
3095 u32 iv32, u16 *phase1key)
3096{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003097
Tomas Winkler9f586712008-11-12 13:14:05 -08003098 struct iwl_priv *priv = hw->priv;
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003099 IWL_DEBUG_MAC80211("enter\n");
3100
Tomas Winkler9f586712008-11-12 13:14:05 -08003101 iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003102
3103 IWL_DEBUG_MAC80211("leave\n");
3104}
3105
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003106static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003107 struct ieee80211_vif *vif,
3108 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07003109 struct ieee80211_key_conf *key)
3110{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003111 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08003112 const u8 *addr;
3113 int ret;
3114 u8 sta_id;
3115 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07003116
3117 IWL_DEBUG_MAC80211("enter\n");
3118
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07003119 if (priv->hw_params.sw_crypto) {
Zhu Yib481de92007-09-25 17:54:57 -07003120 IWL_DEBUG_MAC80211("leave - hwcrypto disabled\n");
3121 return -EOPNOTSUPP;
3122 }
Winkler, Tomas42986792009-01-19 15:30:22 -08003123 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winkler947b13a2008-04-16 16:34:48 -07003124 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003125 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07003126 IWL_DEBUG_MAC80211("leave - %pM not in station map.\n",
3127 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003128 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003129
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003130 }
Zhu Yib481de92007-09-25 17:54:57 -07003131
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003132 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003133 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003134 mutex_unlock(&priv->mutex);
3135
3136 /* If we are getting WEP group key and we didn't receive any key mapping
3137 * so far, we are in legacy wep mode (group key only), otherwise we are
3138 * in 1X mode.
3139 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07003140 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02003141 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003142 if (cmd == SET_KEY)
3143 is_default_wep_key = !priv->key_mapping_key;
3144 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003145 is_default_wep_key =
3146 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003147 }
mabbas052c4b92007-10-25 17:15:43 +08003148
Zhu Yib481de92007-09-25 17:54:57 -07003149 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003150 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003151 if (is_default_wep_key)
3152 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003153 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07003154 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003155
3156 IWL_DEBUG_MAC80211("enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003157 break;
3158 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003159 if (is_default_wep_key)
3160 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003161 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07003162 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003163
3164 IWL_DEBUG_MAC80211("disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003165 break;
3166 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003167 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003168 }
3169
3170 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003171
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003172 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003173}
3174
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003175static int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07003176 const struct ieee80211_tx_queue_params *params)
3177{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003178 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003179 unsigned long flags;
3180 int q;
Zhu Yib481de92007-09-25 17:54:57 -07003181
3182 IWL_DEBUG_MAC80211("enter\n");
3183
Tomas Winklerfee12472008-04-03 16:05:21 -07003184 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003185 IWL_DEBUG_MAC80211("leave - RF not ready\n");
3186 return -EIO;
3187 }
3188
3189 if (queue >= AC_NUM) {
3190 IWL_DEBUG_MAC80211("leave - queue >= AC_NUM %d\n", queue);
3191 return 0;
3192 }
3193
Zhu Yib481de92007-09-25 17:54:57 -07003194 q = AC_NUM - 1 - queue;
3195
3196 spin_lock_irqsave(&priv->lock, flags);
3197
3198 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
3199 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
3200 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
3201 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01003202 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07003203
3204 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
3205 priv->qos_data.qos_active = 1;
3206
Johannes Berg05c914f2008-09-11 00:01:58 +02003207 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08003208 iwl_activate_qos(priv, 1);
Tomas Winkler3109ece2008-03-28 16:33:35 -07003209 else if (priv->assoc_id && iwl_is_associated(priv))
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08003210 iwl_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003211
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08003212 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07003213
Zhu Yib481de92007-09-25 17:54:57 -07003214 IWL_DEBUG_MAC80211("leave\n");
3215 return 0;
3216}
3217
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003218static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Tomas Winklerd783b062008-07-18 13:53:02 +08003219 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02003220 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003221{
3222 struct iwl_priv *priv = hw->priv;
Tomas Winklerd783b062008-07-18 13:53:02 +08003223
Johannes Berge1749612008-10-27 15:59:26 -07003224 IWL_DEBUG_HT("A-MPDU action on addr %pM tid %d\n",
3225 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003226
3227 if (!(priv->cfg->sku & IWL_SKU_N))
3228 return -EACCES;
3229
3230 switch (action) {
3231 case IEEE80211_AMPDU_RX_START:
3232 IWL_DEBUG_HT("start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08003233 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08003234 case IEEE80211_AMPDU_RX_STOP:
3235 IWL_DEBUG_HT("stop Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08003236 return iwl_sta_rx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003237 case IEEE80211_AMPDU_TX_START:
3238 IWL_DEBUG_HT("start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02003239 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08003240 case IEEE80211_AMPDU_TX_STOP:
3241 IWL_DEBUG_HT("stop Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02003242 return iwl_tx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003243 default:
3244 IWL_DEBUG_HT("unknown\n");
3245 return -EINVAL;
3246 break;
3247 }
3248 return 0;
3249}
Tomas Winkler9f586712008-11-12 13:14:05 -08003250
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003251static int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07003252 struct ieee80211_tx_queue_stats *stats)
3253{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003254 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003255 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08003256 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08003257 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07003258 unsigned long flags;
3259
3260 IWL_DEBUG_MAC80211("enter\n");
3261
Tomas Winklerfee12472008-04-03 16:05:21 -07003262 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003263 IWL_DEBUG_MAC80211("leave - RF not ready\n");
3264 return -EIO;
3265 }
3266
3267 spin_lock_irqsave(&priv->lock, flags);
3268
3269 for (i = 0; i < AC_NUM; i++) {
3270 txq = &priv->txq[i];
3271 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08003272 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07003273
Johannes Berg57ffc582008-04-29 17:18:59 +02003274 stats[i].len = q->n_window - avail;
3275 stats[i].limit = q->n_window - q->high_mark;
3276 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07003277
3278 }
3279 spin_unlock_irqrestore(&priv->lock, flags);
3280
3281 IWL_DEBUG_MAC80211("leave\n");
3282
3283 return 0;
3284}
3285
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003286static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07003287 struct ieee80211_low_level_stats *stats)
3288{
Ester Kummerbf403db2008-05-05 10:22:40 +08003289 struct iwl_priv *priv = hw->priv;
3290
3291 priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003292 IWL_DEBUG_MAC80211("enter\n");
3293 IWL_DEBUG_MAC80211("leave\n");
3294
3295 return 0;
3296}
3297
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003298static void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003299{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003300 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003301 unsigned long flags;
3302
3303 mutex_lock(&priv->mutex);
3304 IWL_DEBUG_MAC80211("enter\n");
3305
Zhu Yib481de92007-09-25 17:54:57 -07003306 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02003307 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07003308 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07003309
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003310 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003311
Zhu Yib481de92007-09-25 17:54:57 -07003312 spin_lock_irqsave(&priv->lock, flags);
3313 priv->assoc_id = 0;
3314 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003315 priv->assoc_station_added = 0;
3316
3317 /* new association get rid of ibss beacon skb */
3318 if (priv->ibss_beacon)
3319 dev_kfree_skb(priv->ibss_beacon);
3320
3321 priv->ibss_beacon = NULL;
3322
3323 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07003324 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02003325 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07003326 priv->beacon_int = 0;
3327
3328 spin_unlock_irqrestore(&priv->lock, flags);
3329
Tomas Winklerfee12472008-04-03 16:05:21 -07003330 if (!iwl_is_ready_rf(priv)) {
Mohamed Abbasfde35712007-11-29 11:10:15 +08003331 IWL_DEBUG_MAC80211("leave - not ready\n");
3332 mutex_unlock(&priv->mutex);
3333 return;
3334 }
3335
mabbas052c4b92007-10-25 17:15:43 +08003336 /* we are restarting association process
3337 * clear RXON_FILTER_ASSOC_MSK bit
3338 */
Johannes Berg05c914f2008-09-11 00:01:58 +02003339 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08003340 iwl_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08003341 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003342 iwl_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08003343 }
3344
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003345 iwl_power_update_mode(priv, 0);
3346
Zhu Yib481de92007-09-25 17:54:57 -07003347 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02003348 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
mabbas052c4b92007-10-25 17:15:43 +08003349
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003350 /* switch to CAM during association period.
3351 * the ucode will block any association/authentication
3352 * frome during assiciation period if it can not hear
3353 * the AP because of PM. the timer enable PM back is
3354 * association do not complete
3355 */
3356 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
3357 IEEE80211_CHAN_RADAR))
3358 iwl_power_disable_management(priv, 3000);
3359
Zhu Yib481de92007-09-25 17:54:57 -07003360 IWL_DEBUG_MAC80211("leave - not in IBSS\n");
3361 mutex_unlock(&priv->mutex);
3362 return;
3363 }
3364
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003365 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003366
3367 mutex_unlock(&priv->mutex);
3368
3369 IWL_DEBUG_MAC80211("leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003370}
3371
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003372static int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003373{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003374 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003375 unsigned long flags;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08003376 __le64 timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07003377
Zhu Yib481de92007-09-25 17:54:57 -07003378 IWL_DEBUG_MAC80211("enter\n");
3379
Tomas Winklerfee12472008-04-03 16:05:21 -07003380 if (!iwl_is_ready_rf(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07003381 IWL_DEBUG_MAC80211("leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07003382 return -EIO;
3383 }
3384
Johannes Berg05c914f2008-09-11 00:01:58 +02003385 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Zhu Yib481de92007-09-25 17:54:57 -07003386 IWL_DEBUG_MAC80211("leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07003387 return -EIO;
3388 }
3389
3390 spin_lock_irqsave(&priv->lock, flags);
3391
3392 if (priv->ibss_beacon)
3393 dev_kfree_skb(priv->ibss_beacon);
3394
3395 priv->ibss_beacon = skb;
3396
3397 priv->assoc_id = 0;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08003398 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Assaf Kraussb94d8ee2008-09-03 11:18:42 +08003399 priv->timestamp = le64_to_cpu(timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07003400
3401 IWL_DEBUG_MAC80211("leave\n");
3402 spin_unlock_irqrestore(&priv->lock, flags);
3403
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003404 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003405
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003406 iwl_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003407
Zhu Yib481de92007-09-25 17:54:57 -07003408
3409 return 0;
3410}
3411
Zhu Yib481de92007-09-25 17:54:57 -07003412/*****************************************************************************
3413 *
3414 * sysfs attributes
3415 *
3416 *****************************************************************************/
3417
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003418#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003419
3420/*
3421 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08003422 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07003423 * used for controlling the debug level.
3424 *
3425 * See the level definitions in iwl for details.
3426 */
3427
Ester Kummer8cf769c2008-05-06 11:05:11 +08003428static ssize_t show_debug_level(struct device *d,
3429 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003430{
Ester Kummer8cf769c2008-05-06 11:05:11 +08003431 struct iwl_priv *priv = d->driver_data;
3432
3433 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003434}
Ester Kummer8cf769c2008-05-06 11:05:11 +08003435static ssize_t store_debug_level(struct device *d,
3436 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003437 const char *buf, size_t count)
3438{
Ester Kummer8cf769c2008-05-06 11:05:11 +08003439 struct iwl_priv *priv = d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003440 unsigned long val;
3441 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003442
Tomas Winkler9257746f2008-09-03 11:26:32 +08003443 ret = strict_strtoul(buf, 0, &val);
3444 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003445 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003446 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08003447 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07003448
3449 return strnlen(buf, count);
3450}
3451
Ester Kummer8cf769c2008-05-06 11:05:11 +08003452static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3453 show_debug_level, store_debug_level);
3454
Zhu Yib481de92007-09-25 17:54:57 -07003455
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003456#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003457
Zhu Yib481de92007-09-25 17:54:57 -07003458
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003459static ssize_t show_version(struct device *d,
3460 struct device_attribute *attr, char *buf)
3461{
3462 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08003463 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerf236a262008-06-30 17:23:02 +08003464 ssize_t pos = 0;
3465 u16 eeprom_ver;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003466
3467 if (palive->is_valid)
Tomas Winklerf236a262008-06-30 17:23:02 +08003468 pos += sprintf(buf + pos,
3469 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
3470 "fw type: 0x%01X 0x%01X\n",
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003471 palive->ucode_major, palive->ucode_minor,
3472 palive->sw_rev[0], palive->sw_rev[1],
3473 palive->ver_type, palive->ver_subtype);
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003474 else
Tomas Winklerf236a262008-06-30 17:23:02 +08003475 pos += sprintf(buf + pos, "fw not loaded\n");
3476
3477 if (priv->eeprom) {
3478 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
3479 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
3480 eeprom_ver);
3481 } else {
3482 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
3483 }
3484
3485 return pos;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003486}
3487
3488static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
3489
Zhu Yib481de92007-09-25 17:54:57 -07003490static ssize_t show_temperature(struct device *d,
3491 struct device_attribute *attr, char *buf)
3492{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003493 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003494
Tomas Winklerfee12472008-04-03 16:05:21 -07003495 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003496 return -EAGAIN;
3497
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08003498 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07003499}
3500
3501static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3502
Zhu Yib481de92007-09-25 17:54:57 -07003503static ssize_t show_tx_power(struct device *d,
3504 struct device_attribute *attr, char *buf)
3505{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003506 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Jay Sternberg91f39e82008-12-17 16:52:34 +08003507
3508 if (!iwl_is_ready_rf(priv))
3509 return sprintf(buf, "off\n");
3510 else
3511 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003512}
3513
3514static ssize_t store_tx_power(struct device *d,
3515 struct device_attribute *attr,
3516 const char *buf, size_t count)
3517{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003518 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003519 unsigned long val;
3520 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003521
Tomas Winkler9257746f2008-09-03 11:26:32 +08003522 ret = strict_strtoul(buf, 10, &val);
3523 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003524 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003525 else
Tomas Winkler630fe9b2008-06-12 09:47:08 +08003526 iwl_set_tx_power(priv, val, false);
Zhu Yib481de92007-09-25 17:54:57 -07003527
3528 return count;
3529}
3530
3531static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3532
3533static ssize_t show_flags(struct device *d,
3534 struct device_attribute *attr, char *buf)
3535{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003536 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003537
3538 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
3539}
3540
3541static ssize_t store_flags(struct device *d,
3542 struct device_attribute *attr,
3543 const char *buf, size_t count)
3544{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003545 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003546 unsigned long val;
3547 u32 flags;
3548 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003549 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003550 return ret;
3551 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003552
3553 mutex_lock(&priv->mutex);
3554 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
3555 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003556 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003557 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003558 else {
Tomas Winkler9257746f2008-09-03 11:26:32 +08003559 IWL_DEBUG_INFO("Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07003560 priv->staging_rxon.flags = cpu_to_le32(flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003561 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003562 }
3563 }
3564 mutex_unlock(&priv->mutex);
3565
3566 return count;
3567}
3568
3569static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3570
3571static ssize_t show_filter_flags(struct device *d,
3572 struct device_attribute *attr, char *buf)
3573{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003574 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003575
3576 return sprintf(buf, "0x%04X\n",
3577 le32_to_cpu(priv->active_rxon.filter_flags));
3578}
3579
3580static ssize_t store_filter_flags(struct device *d,
3581 struct device_attribute *attr,
3582 const char *buf, size_t count)
3583{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003584 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003585 unsigned long val;
3586 u32 filter_flags;
3587 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003588 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003589 return ret;
3590 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003591
3592 mutex_lock(&priv->mutex);
3593 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3594 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003595 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003596 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003597 else {
3598 IWL_DEBUG_INFO("Committing rxon.filter_flags = "
3599 "0x%04X\n", filter_flags);
3600 priv->staging_rxon.filter_flags =
3601 cpu_to_le32(filter_flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003602 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003603 }
3604 }
3605 mutex_unlock(&priv->mutex);
3606
3607 return count;
3608}
3609
3610static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3611 store_filter_flags);
3612
Zhu Yib481de92007-09-25 17:54:57 -07003613static ssize_t store_power_level(struct device *d,
3614 struct device_attribute *attr,
3615 const char *buf, size_t count)
3616{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003617 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003618 int ret;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003619 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003620
Tomas Winkler9257746f2008-09-03 11:26:32 +08003621
Zhu Yib481de92007-09-25 17:54:57 -07003622 mutex_lock(&priv->mutex);
3623
Tomas Winklerfee12472008-04-03 16:05:21 -07003624 if (!iwl_is_ready(priv)) {
Esti Kummer298df1f2008-07-18 13:52:58 +08003625 ret = -EAGAIN;
Zhu Yib481de92007-09-25 17:54:57 -07003626 goto out;
3627 }
3628
Tomas Winkler9257746f2008-09-03 11:26:32 +08003629 ret = strict_strtoul(buf, 10, &mode);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003630 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003631 goto out;
3632
Esti Kummer298df1f2008-07-18 13:52:58 +08003633 ret = iwl_power_set_user_mode(priv, mode);
3634 if (ret) {
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003635 IWL_DEBUG_MAC80211("failed setting power mode.\n");
3636 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003637 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003638 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003639
3640 out:
3641 mutex_unlock(&priv->mutex);
Esti Kummer298df1f2008-07-18 13:52:58 +08003642 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003643}
3644
Zhu Yib481de92007-09-25 17:54:57 -07003645static ssize_t show_power_level(struct device *d,
3646 struct device_attribute *attr, char *buf)
3647{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003648 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003649 int mode = priv->power_data.user_power_setting;
3650 int system = priv->power_data.system_power_setting;
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003651 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07003652 char *p = buf;
3653
Esti Kummer298df1f2008-07-18 13:52:58 +08003654 switch (system) {
3655 case IWL_POWER_SYS_AUTO:
3656 p += sprintf(p, "SYSTEM:auto");
Zhu Yib481de92007-09-25 17:54:57 -07003657 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003658 case IWL_POWER_SYS_AC:
3659 p += sprintf(p, "SYSTEM:ac");
Zhu Yib481de92007-09-25 17:54:57 -07003660 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003661 case IWL_POWER_SYS_BATTERY:
3662 p += sprintf(p, "SYSTEM:battery");
3663 break;
Zhu Yib481de92007-09-25 17:54:57 -07003664 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003665
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003666 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
3667 "fixed" : "auto");
Esti Kummer298df1f2008-07-18 13:52:58 +08003668 p += sprintf(p, "\tINDEX:%d", level);
3669 p += sprintf(p, "\n");
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003670 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07003671}
3672
3673static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
3674 store_power_level);
3675
Zhu Yib481de92007-09-25 17:54:57 -07003676
3677static ssize_t show_statistics(struct device *d,
3678 struct device_attribute *attr, char *buf)
3679{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003680 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08003681 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003682 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003683 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003684 int rc = 0;
3685
Tomas Winklerfee12472008-04-03 16:05:21 -07003686 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003687 return -EAGAIN;
3688
3689 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07003690 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003691 mutex_unlock(&priv->mutex);
3692
3693 if (rc) {
3694 len = sprintf(buf,
3695 "Error sending statistics request: 0x%08X\n", rc);
3696 return len;
3697 }
3698
3699 while (size && (PAGE_SIZE - len)) {
3700 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3701 PAGE_SIZE - len, 1);
3702 len = strlen(buf);
3703 if (PAGE_SIZE - len)
3704 buf[len++] = '\n';
3705
3706 ofs += 16;
3707 size -= min(size, 16U);
3708 }
3709
3710 return len;
3711}
3712
3713static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3714
Zhu Yib481de92007-09-25 17:54:57 -07003715
Zhu Yib481de92007-09-25 17:54:57 -07003716/*****************************************************************************
3717 *
3718 * driver setup and teardown
3719 *
3720 *****************************************************************************/
3721
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003722static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003723{
3724 priv->workqueue = create_workqueue(DRV_NAME);
3725
3726 init_waitqueue_head(&priv->wait_command_queue);
3727
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003728 INIT_WORK(&priv->up, iwl_bg_up);
3729 INIT_WORK(&priv->restart, iwl_bg_restart);
3730 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
3731 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
3732 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003733 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003734 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3735 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003736
Tomas Winkler2a421b92008-06-12 09:47:10 +08003737 iwl_setup_scan_deferred_work(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003738 iwl_setup_power_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003739
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003740 if (priv->cfg->ops->lib->setup_deferred_work)
3741 priv->cfg->ops->lib->setup_deferred_work(priv);
3742
3743 init_timer(&priv->statistics_periodic);
3744 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003745 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003746
3747 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003748 iwl_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003749}
3750
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003751static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003752{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003753 if (priv->cfg->ops->lib->cancel_deferred_work)
3754 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003755
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003756 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003757 cancel_delayed_work(&priv->scan_check);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003758 cancel_delayed_work_sync(&priv->set_power_save);
Zhu Yib481de92007-09-25 17:54:57 -07003759 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003760 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003761 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07003762}
3763
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003764static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003765 &dev_attr_flags.attr,
3766 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003767 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003768 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003769 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003770 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003771#ifdef CONFIG_IWLWIFI_DEBUG
3772 &dev_attr_debug_level.attr,
3773#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003774 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003775
3776 NULL
3777};
3778
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003779static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003780 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003781 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003782};
3783
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003784static struct ieee80211_ops iwl_hw_ops = {
3785 .tx = iwl_mac_tx,
3786 .start = iwl_mac_start,
3787 .stop = iwl_mac_stop,
3788 .add_interface = iwl_mac_add_interface,
3789 .remove_interface = iwl_mac_remove_interface,
3790 .config = iwl_mac_config,
3791 .config_interface = iwl_mac_config_interface,
3792 .configure_filter = iwl_configure_filter,
3793 .set_key = iwl_mac_set_key,
3794 .update_tkip_key = iwl_mac_update_tkip_key,
3795 .get_stats = iwl_mac_get_stats,
3796 .get_tx_stats = iwl_mac_get_tx_stats,
3797 .conf_tx = iwl_mac_conf_tx,
3798 .reset_tsf = iwl_mac_reset_tsf,
3799 .bss_info_changed = iwl_bss_info_changed,
3800 .ampdu_action = iwl_mac_ampdu_action,
Tomas Winklercb43dc22008-09-03 11:26:23 +08003801 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003802};
3803
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003804static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003805{
3806 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003807 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003808 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003809 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003810 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003811 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003812
Assaf Krauss316c30d2008-03-14 10:38:46 -07003813 /************************
3814 * 1. Allocating HW data
3815 ************************/
3816
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003817 /* Disabling hardware scan means that mac80211 will perform scans
3818 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003819 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08003820 if (cfg->mod_params->debug & IWL_DL_INFO)
3821 dev_printk(KERN_DEBUG, &(pdev->dev),
3822 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003823 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003824 }
3825
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003826 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003827 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003828 err = -ENOMEM;
3829 goto out;
3830 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003831 priv = hw->priv;
3832 /* At this point both hw and priv are allocated. */
3833
Zhu Yib481de92007-09-25 17:54:57 -07003834 SET_IEEE80211_DEV(hw, &pdev->dev);
3835
3836 IWL_DEBUG_INFO("*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003837 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003838 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003839
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003840#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08003841 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07003842 atomic_set(&priv->restrict_refcnt, 0);
3843#endif
Zhu Yib481de92007-09-25 17:54:57 -07003844
Assaf Krauss316c30d2008-03-14 10:38:46 -07003845 /**************************
3846 * 2. Initializing PCI bus
3847 **************************/
3848 if (pci_enable_device(pdev)) {
3849 err = -ENODEV;
3850 goto out_ieee80211_free_hw;
3851 }
3852
3853 pci_set_master(pdev);
3854
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003855 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003856 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003857 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003858 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003859 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003860 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003861 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003862 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003863 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003864 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003865 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003866 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003867 }
3868
3869 err = pci_request_regions(pdev, DRV_NAME);
3870 if (err)
3871 goto out_pci_disable_device;
3872
3873 pci_set_drvdata(pdev, priv);
3874
Assaf Krauss316c30d2008-03-14 10:38:46 -07003875
3876 /***********************
3877 * 3. Read REV register
3878 ***********************/
3879 priv->hw_base = pci_iomap(pdev, 0, 0);
3880 if (!priv->hw_base) {
3881 err = -ENODEV;
3882 goto out_pci_release_regions;
3883 }
3884
3885 IWL_DEBUG_INFO("pci_resource_len = 0x%08llx\n",
3886 (unsigned long long) pci_resource_len(pdev, 0));
3887 IWL_DEBUG_INFO("pci_resource_base = %p\n", priv->hw_base);
3888
Tomas Winklerb661c812008-04-23 17:14:54 -07003889 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003890 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003891 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003892
Tomas Winklere7b63582008-09-03 11:26:49 +08003893 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3894 * PCI Tx retries from interfering with C3 CPU state */
3895 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3896
Tomas Winkler91238712008-04-23 17:14:53 -07003897 /* amp init */
3898 err = priv->cfg->ops->lib->apm_ops.init(priv);
3899 if (err < 0) {
3900 IWL_DEBUG_INFO("Failed to init APMG\n");
3901 goto out_iounmap;
3902 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003903 /*****************
3904 * 4. Read EEPROM
3905 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003906 /* Read the EEPROM */
3907 err = iwl_eeprom_init(priv);
3908 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003909 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003910 goto out_iounmap;
3911 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003912 err = iwl_eeprom_check_version(priv);
3913 if (err)
3914 goto out_iounmap;
3915
Ron Rindjunsky02883012008-05-15 13:53:53 +08003916 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003917 iwl_eeprom_get_mac(priv, priv->mac_addr);
Johannes Berge1749612008-10-27 15:59:26 -07003918 IWL_DEBUG_INFO("MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003919 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3920
3921 /************************
3922 * 5. Setup HW constants
3923 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08003924 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003925 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003926 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003927 }
3928
3929 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003930 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003931 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003932
Tomas Winkler6ba87952008-05-15 13:54:17 +08003933 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003934 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003935 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003936 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003937
3938 /**********************************
3939 * 7. Initialize module parameters
3940 **********************************/
3941
3942 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003943 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07003944 set_bit(STATUS_RF_KILL_SW, &priv->status);
3945 IWL_DEBUG_INFO("Radio disabled.\n");
3946 }
3947
Assaf Krauss316c30d2008-03-14 10:38:46 -07003948 /********************
3949 * 8. Setup services
3950 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003951 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003952 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003953 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003954
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003955 pci_enable_msi(priv->pci_dev);
3956
3957 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
3958 DRV_NAME, priv);
3959 if (err) {
3960 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3961 goto out_disable_msi;
3962 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003963 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003964 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003965 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003966 goto out_uninit_drv;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003967 }
3968
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003969 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003970 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003971
Tomas Winkler6ba87952008-05-15 13:54:17 +08003972 /**********************************
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003973 * 9. Setup and register mac80211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003974 **********************************/
3975
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003976 /* enable interrupts if needed: hw bug w/a */
3977 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3978 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3979 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3980 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3981 }
3982
3983 iwl_enable_interrupts(priv);
3984
Tomas Winkler6ba87952008-05-15 13:54:17 +08003985 err = iwl_setup_mac(priv);
3986 if (err)
3987 goto out_remove_sysfs;
3988
3989 err = iwl_dbgfs_register(priv, DRV_NAME);
3990 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003991 IWL_ERR(priv, "failed to create debugfs files\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003992
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003993 /* If platform's RF_KILL switch is NOT set to KILL */
3994 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3995 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3996 else
3997 set_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003998
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003999 err = iwl_rfkill_init(priv);
4000 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08004001 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004002 "Ignoring error: %d\n", err);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004003 else
4004 iwl_rfkill_set_hw_state(priv);
4005
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004006 iwl_power_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004007 return 0;
4008
Assaf Krauss316c30d2008-03-14 10:38:46 -07004009 out_remove_sysfs:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004010 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004011 out_disable_msi:
4012 pci_disable_msi(priv->pci_dev);
4013 pci_disable_device(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004014 out_uninit_drv:
4015 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004016 out_free_eeprom:
4017 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004018 out_iounmap:
4019 pci_iounmap(pdev, priv->hw_base);
4020 out_pci_release_regions:
4021 pci_release_regions(pdev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004022 pci_set_drvdata(pdev, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07004023 out_pci_disable_device:
4024 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004025 out_ieee80211_free_hw:
4026 ieee80211_free_hw(priv->hw);
4027 out:
4028 return err;
4029}
4030
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004031static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004032{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004033 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004034 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004035
4036 if (!priv)
4037 return;
4038
4039 IWL_DEBUG_INFO("*** UNLOAD DRIVER ***\n");
4040
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004041 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004042 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004043
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004044 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4045 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08004046 * we need to set STATUS_EXIT_PENDING bit.
4047 */
4048 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004049 if (priv->mac80211_registered) {
4050 ieee80211_unregister_hw(priv->hw);
4051 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004052 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004053 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004054 }
4055
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004056 /* make sure we flush any pending irq or
4057 * tasklet for the driver
4058 */
4059 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004060 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004061 spin_unlock_irqrestore(&priv->lock, flags);
4062
4063 iwl_synchronize_irq(priv);
4064
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004065 iwl_rfkill_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004066 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004067
4068 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08004069 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08004070 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004071
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08004072 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004073 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004074
Zhu Yib481de92007-09-25 17:54:57 -07004075
Mohamed Abbas948c1712007-10-25 17:15:45 +08004076 /*netif_stop_queue(dev); */
4077 flush_workqueue(priv->workqueue);
4078
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004079 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004080 * priv->workqueue... so we can't take down the workqueue
4081 * until now... */
4082 destroy_workqueue(priv->workqueue);
4083 priv->workqueue = NULL;
4084
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004085 free_irq(priv->pci_dev->irq, priv);
4086 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07004087 pci_iounmap(pdev, priv->hw_base);
4088 pci_release_regions(pdev);
4089 pci_disable_device(pdev);
4090 pci_set_drvdata(pdev, NULL);
4091
Tomas Winkler6ba87952008-05-15 13:54:17 +08004092 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004093
4094 if (priv->ibss_beacon)
4095 dev_kfree_skb(priv->ibss_beacon);
4096
4097 ieee80211_free_hw(priv->hw);
4098}
4099
4100#ifdef CONFIG_PM
4101
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004102static int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07004103{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004104 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004105
Zhu Yie655b9f2008-01-24 02:19:38 -08004106 if (priv->is_open) {
4107 set_bit(STATUS_IN_SUSPEND, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004108 iwl_mac_stop(priv->hw);
Zhu Yie655b9f2008-01-24 02:19:38 -08004109 priv->is_open = 1;
4110 }
Zhu Yib481de92007-09-25 17:54:57 -07004111
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004112 pci_save_state(pdev);
4113 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004114 pci_set_power_state(pdev, PCI_D3hot);
4115
Zhu Yib481de92007-09-25 17:54:57 -07004116 return 0;
4117}
4118
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004119static int iwl_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004120{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004121 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004122
Zhu Yib481de92007-09-25 17:54:57 -07004123 pci_set_power_state(pdev, PCI_D0);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004124 pci_enable_device(pdev);
4125 pci_restore_state(pdev);
4126 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004127
Zhu Yie655b9f2008-01-24 02:19:38 -08004128 if (priv->is_open)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004129 iwl_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004130
Zhu Yie655b9f2008-01-24 02:19:38 -08004131 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07004132 return 0;
4133}
4134
4135#endif /* CONFIG_PM */
4136
4137/*****************************************************************************
4138 *
4139 * driver and module entry point
4140 *
4141 *****************************************************************************/
4142
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004143/* Hardware specific file defines the PCI IDs table for that hardware module */
4144static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004145#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004146 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4147 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004148#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004149#ifdef CONFIG_IWL5000
Esti Kummer47408632008-07-11 11:53:30 +08004150 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
4151 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
4152 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
4153 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
4154 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
4155 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004156 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
Esti Kummer47408632008-07-11 11:53:30 +08004157 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
4158 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
4159 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
Tomas Winklere96a8492008-09-11 11:45:20 +08004160/* 5350 WiFi/WiMax */
4161 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
4162 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
4163 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
Tomas Winkler7100e922008-12-01 16:32:18 -08004164/* 5150 Wifi/WiMax */
4165 {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)},
4166 {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08004167/* 6000/6050 Series */
4168 {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)},
4169 {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)},
4170 {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)},
4171 {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)},
4172 {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)},
4173 {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)},
4174 {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)},
4175 {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)},
4176 {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)},
4177 {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)},
4178 {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)},
Jay Sternbergc5d05692009-01-19 15:30:35 -08004179/* 100 Series WiFi */
4180 {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID, iwl100_bgn_cfg)},
4181 {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID, iwl100_bgn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004182#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08004183
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004184 {0}
4185};
4186MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4187
4188static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004189 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004190 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004191 .probe = iwl_pci_probe,
4192 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004193#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004194 .suspend = iwl_pci_suspend,
4195 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004196#endif
4197};
4198
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004199static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004200{
4201
4202 int ret;
4203 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
4204 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004205
Tomas Winklere227cea2008-07-18 13:53:05 +08004206 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004207 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004208 printk(KERN_ERR DRV_NAME
4209 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004210 return ret;
4211 }
4212
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004213 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004214 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08004215 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004216 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004217 }
Zhu Yib481de92007-09-25 17:54:57 -07004218
4219 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004220
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004221error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004222 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004223 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004224}
4225
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004226static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004227{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004228 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004229 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004230}
4231
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004232module_exit(iwl_exit);
4233module_init(iwl_init);