blob: d14146fa751fb514d9dbd4bf3e5a00dc4c0a6bb5 [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
Reinette Chatre80bc5392009-02-13 11:51:19 -080075#ifdef CONFIG_IWLWIFI_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/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -070098 * iwl_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -070099 *
Ian Schram01ebd062007-10-25 17:15:22 +0800100 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -0700101 * the active_rxon structure is updated with the new data. This
102 * function correctly transitions out of the RXON_ASSOC_MSK state if
103 * a HW tune is required based on the RXON structure changes.
104 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700105static int iwl_commit_rxon(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700106{
107 /* cast away the const for active_rxon in this function */
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800108 struct iwl_rxon_cmd *active_rxon = (void *)&priv->active_rxon;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800109 int ret;
110 bool new_assoc =
111 !!(priv->staging_rxon.filter_flags & RXON_FILTER_ASSOC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700112
Tomas Winklerfee12472008-04-03 16:05:21 -0700113 if (!iwl_is_alive(priv))
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800114 return -EBUSY;
Zhu Yib481de92007-09-25 17:54:57 -0700115
116 /* always get timestamp with Rx frame */
117 priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK;
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800118 /* allow CTS-to-self if possible. this is relevant only for
119 * 5000, but will not damage 4965 */
120 priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN;
Zhu Yib481de92007-09-25 17:54:57 -0700121
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800122 ret = iwl_check_rxon_cmd(priv);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800123 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800124 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700125 return -EINVAL;
126 }
127
128 /* If we don't need to send a full RXON, we can use
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700129 * iwl_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700130 * and other flags for the current radio configuration. */
Mohamed Abbas54559702008-09-03 11:18:44 +0800131 if (!iwl_full_rxon_required(priv)) {
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800132 ret = iwl_send_rxon_assoc(priv);
133 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800134 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800135 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700136 }
137
138 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700139 return 0;
140 }
141
142 /* station table will be cleared */
143 priv->assoc_station_added = 0;
144
Zhu Yib481de92007-09-25 17:54:57 -0700145 /* If we are currently associated and the new config requires
146 * an RXON_ASSOC and the new config wants the associated mask enabled,
147 * we must clear the associated from the active configuration
148 * before we apply the new config */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800149 if (iwl_is_associated(priv) && new_assoc) {
Tomas Winklere1623442009-01-27 14:27:56 -0800150 IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n");
Zhu Yib481de92007-09-25 17:54:57 -0700151 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
152
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800153 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800154 sizeof(struct iwl_rxon_cmd),
Zhu Yib481de92007-09-25 17:54:57 -0700155 &priv->active_rxon);
156
157 /* If the mask clearing failed then we set
158 * active_rxon back to what it was previously */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800159 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700160 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800161 IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800162 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700163 }
Zhu Yib481de92007-09-25 17:54:57 -0700164 }
165
Tomas Winklere1623442009-01-27 14:27:56 -0800166 IWL_DEBUG_INFO(priv, "Sending RXON\n"
Zhu Yib481de92007-09-25 17:54:57 -0700167 "* with%s RXON_FILTER_ASSOC_MSK\n"
168 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700169 "* bssid = %pM\n",
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800170 (new_assoc ? "" : "out"),
Zhu Yib481de92007-09-25 17:54:57 -0700171 le16_to_cpu(priv->staging_rxon.channel),
Johannes Berge1749612008-10-27 15:59:26 -0700172 priv->staging_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700173
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700174 iwl_set_rxon_hwcrypto(priv, !priv->hw_params.sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800175
176 /* Apply the new configuration
177 * RXON unassoc clears the station table in uCode, send it before
178 * we add the bcast station. If assoc bit is set, we will send RXON
179 * after having added the bcast and bssid station.
180 */
181 if (!new_assoc) {
182 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +0800183 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800184 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800185 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800186 return ret;
187 }
188 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700189 }
190
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800191 iwl_clear_stations_table(priv);
Zhu Yi556f8db2007-09-27 11:27:33 +0800192
Zhu Yib481de92007-09-25 17:54:57 -0700193 if (!priv->error_recovering)
194 priv->start_calib = 0;
195
Zhu Yib481de92007-09-25 17:54:57 -0700196 /* Add the broadcast address so we can send broadcast frames */
Tomas Winkler4f40e4d2008-05-15 13:54:04 +0800197 if (iwl_rxon_add_station(priv, iwl_bcast_addr, 0) ==
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800198 IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800199 IWL_ERR(priv, "Error adding BROADCAST address for transmit.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700200 return -EIO;
201 }
202
203 /* If we have set the ASSOC_MSK and we are in BSS mode then
204 * add the IWL_AP_ID to the station rate table */
Tomas Winkler91851592008-06-30 17:23:14 +0800205 if (new_assoc) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200206 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler91851592008-06-30 17:23:14 +0800207 ret = iwl_rxon_add_station(priv,
208 priv->active_rxon.bssid_addr, 1);
209 if (ret == IWL_INVALID_STATION) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800210 IWL_ERR(priv,
211 "Error adding AP address for TX.\n");
Tomas Winkler91851592008-06-30 17:23:14 +0800212 return -EIO;
213 }
214 priv->assoc_station_added = 1;
215 if (priv->default_wep_key &&
216 iwl_send_static_wepkey_cmd(priv, 0))
Winkler, Tomas15b16872008-12-19 10:37:33 +0800217 IWL_ERR(priv,
218 "Could not send WEP static key.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700219 }
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800220
221 /* Apply the new configuration
222 * RXON assoc doesn't clear the station table in uCode,
223 */
224 ret = iwl_send_cmd_pdu(priv, REPLY_RXON,
225 sizeof(struct iwl_rxon_cmd), &priv->staging_rxon);
226 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800227 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800228 return ret;
229 }
230 memcpy(active_rxon, &priv->staging_rxon, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700231 }
232
Zhu Yi36da7d72008-07-11 11:53:40 +0800233 iwl_init_sensitivity(priv);
234
235 /* If we issue a new RXON command which required a tune then we must
236 * send a new TXPOWER command or we won't be able to Tx any frames */
237 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
238 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800239 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800240 return ret;
241 }
242
Zhu Yib481de92007-09-25 17:54:57 -0700243 return 0;
244}
245
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700246void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700247{
248
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -0700249 iwl_set_rxon_chain(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700250 iwl_commit_rxon(priv);
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700251}
252
Tomas Winklerfcab4232008-05-15 13:54:01 +0800253static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700254{
255 struct list_head *element;
256
Tomas Winklere1623442009-01-27 14:27:56 -0800257 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700258 priv->frames_count);
259
260 while (!list_empty(&priv->free_frames)) {
261 element = priv->free_frames.next;
262 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800263 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700264 priv->frames_count--;
265 }
266
267 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800268 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700269 priv->frames_count);
270 priv->frames_count = 0;
271 }
272}
273
Tomas Winklerfcab4232008-05-15 13:54:01 +0800274static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700275{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800276 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700277 struct list_head *element;
278 if (list_empty(&priv->free_frames)) {
279 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
280 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800281 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700282 return NULL;
283 }
284
285 priv->frames_count++;
286 return frame;
287 }
288
289 element = priv->free_frames.next;
290 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800291 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700292}
293
Tomas Winklerfcab4232008-05-15 13:54:01 +0800294static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700295{
296 memset(frame, 0, sizeof(*frame));
297 list_add(&frame->list, &priv->free_frames);
298}
299
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800300static unsigned int iwl_fill_beacon_frame(struct iwl_priv *priv,
301 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200302 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700303{
Tomas Winkler3109ece2008-03-28 16:33:35 -0700304 if (!iwl_is_associated(priv) || !priv->ibss_beacon ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200305 ((priv->iw_mode != NL80211_IFTYPE_ADHOC) &&
306 (priv->iw_mode != NL80211_IFTYPE_AP)))
Zhu Yib481de92007-09-25 17:54:57 -0700307 return 0;
308
309 if (priv->ibss_beacon->len > left)
310 return 0;
311
312 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
313
314 return priv->ibss_beacon->len;
315}
316
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700317static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800318 struct iwl_frame *frame, u8 rate)
319{
320 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
321 unsigned int frame_size;
322
323 tx_beacon_cmd = &frame->u.beacon;
324 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
325
326 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
327 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
328
329 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800330 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
331
332 BUG_ON(frame_size > MAX_MPDU_SIZE);
333 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
334
335 if ((rate == IWL_RATE_1M_PLCP) || (rate >= IWL_RATE_2M_PLCP))
336 tx_beacon_cmd->tx.rate_n_flags =
337 iwl_hw_set_rate_n_flags(rate, RATE_MCS_CCK_MSK);
338 else
339 tx_beacon_cmd->tx.rate_n_flags =
340 iwl_hw_set_rate_n_flags(rate, 0);
341
342 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
343 TX_CMD_FLG_TSF_MSK |
344 TX_CMD_FLG_STA_RATE_MSK;
345
346 return sizeof(*tx_beacon_cmd) + frame_size;
347}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700348static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700349{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800350 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700351 unsigned int frame_size;
352 int rc;
353 u8 rate;
354
Tomas Winklerfcab4232008-05-15 13:54:01 +0800355 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700356
357 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800358 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700359 "command.\n");
360 return -ENOMEM;
361 }
362
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700363 rate = iwl_rate_get_lowest_plcp(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700364
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700365 frame_size = iwl_hw_get_beacon_cmd(priv, frame, rate);
Zhu Yib481de92007-09-25 17:54:57 -0700366
Tomas Winkler857485c2008-03-21 13:53:44 -0700367 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700368 &frame->u.cmd[0]);
369
Tomas Winklerfcab4232008-05-15 13:54:01 +0800370 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700371
372 return rc;
373}
374
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800375static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
376{
377 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
378
379 dma_addr_t addr = get_unaligned_le32(&tb->lo);
380 if (sizeof(dma_addr_t) > sizeof(u32))
381 addr |=
382 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
383
384 return addr;
385}
386
387static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
388{
389 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
390
391 return le16_to_cpu(tb->hi_n_len) >> 4;
392}
393
394static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
395 dma_addr_t addr, u16 len)
396{
397 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
398 u16 hi_n_len = len << 4;
399
400 put_unaligned_le32(addr, &tb->lo);
401 if (sizeof(dma_addr_t) > sizeof(u32))
402 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
403
404 tb->hi_n_len = cpu_to_le16(hi_n_len);
405
406 tfd->num_tbs = idx + 1;
407}
408
409static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
410{
411 return tfd->num_tbs & 0x1f;
412}
413
414/**
415 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
416 * @priv - driver private data
417 * @txq - tx queue
418 *
419 * Does NOT advance any TFD circular buffer read/write indexes
420 * Does NOT free the TFD itself (which is within circular buffer)
421 */
422void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
423{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800424 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800425 struct iwl_tfd *tfd;
426 struct pci_dev *dev = priv->pci_dev;
427 int index = txq->q.read_ptr;
428 int i;
429 int num_tbs;
430
431 tfd = &tfd_tmp[index];
432
433 /* Sanity check on number of chunks */
434 num_tbs = iwl_tfd_get_num_tbs(tfd);
435
436 if (num_tbs >= IWL_NUM_OF_TBS) {
437 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
438 /* @todo issue fatal error, it is quite serious situation */
439 return;
440 }
441
442 /* Unmap tx_cmd */
443 if (num_tbs)
444 pci_unmap_single(dev,
445 pci_unmap_addr(&txq->cmd[index]->meta, mapping),
446 pci_unmap_len(&txq->cmd[index]->meta, len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800447 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800448
449 /* Unmap chunks, if any. */
450 for (i = 1; i < num_tbs; i++) {
451 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
452 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
453
454 if (txq->txb) {
455 dev_kfree_skb(txq->txb[txq->q.read_ptr].skb[i - 1]);
456 txq->txb[txq->q.read_ptr].skb[i - 1] = NULL;
457 }
458 }
459}
460
461int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
462 struct iwl_tx_queue *txq,
463 dma_addr_t addr, u16 len,
464 u8 reset, u8 pad)
465{
466 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800467 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800468 u32 num_tbs;
469
470 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800471 tfd_tmp = (struct iwl_tfd *)txq->tfds;
472 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800473
474 if (reset)
475 memset(tfd, 0, sizeof(*tfd));
476
477 num_tbs = iwl_tfd_get_num_tbs(tfd);
478
479 /* Each TFD can point to a maximum 20 Tx buffers */
480 if (num_tbs >= IWL_NUM_OF_TBS) {
481 IWL_ERR(priv, "Error can not send more than %d chunks\n",
482 IWL_NUM_OF_TBS);
483 return -EINVAL;
484 }
485
486 BUG_ON(addr & ~DMA_BIT_MASK(36));
487 if (unlikely(addr & ~IWL_TX_DMA_MASK))
488 IWL_ERR(priv, "Unaligned address = %llx\n",
489 (unsigned long long)addr);
490
491 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
492
493 return 0;
494}
495
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800496/*
497 * Tell nic where to find circular buffer of Tx Frame Descriptors for
498 * given Tx queue, and enable the DMA channel used for that queue.
499 *
500 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
501 * channels supported in hardware.
502 */
503int iwl_hw_tx_queue_init(struct iwl_priv *priv,
504 struct iwl_tx_queue *txq)
505{
506 int ret;
507 unsigned long flags;
508 int txq_id = txq->q.id;
509
510 spin_lock_irqsave(&priv->lock, flags);
511 ret = iwl_grab_nic_access(priv);
512 if (ret) {
513 spin_unlock_irqrestore(&priv->lock, flags);
514 return ret;
515 }
516
517 /* Circular buffer (TFD queue in DRAM) physical base address */
518 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
519 txq->q.dma_addr >> 8);
520
521 iwl_release_nic_access(priv);
522 spin_unlock_irqrestore(&priv->lock, flags);
523
524 return 0;
525}
526
527
Zhu Yib481de92007-09-25 17:54:57 -0700528/******************************************************************************
529 *
Zhu Yib481de92007-09-25 17:54:57 -0700530 * Misc. internal state and helper functions
531 *
532 ******************************************************************************/
Zhu Yib481de92007-09-25 17:54:57 -0700533
Zhu Yib481de92007-09-25 17:54:57 -0700534#define MAX_UCODE_BEACON_INTERVAL 4096
Zhu Yib481de92007-09-25 17:54:57 -0700535
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800536static u16 iwl_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700537{
538 u16 new_val = 0;
539 u16 beacon_factor = 0;
540
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800541 beacon_factor = (beacon_val + MAX_UCODE_BEACON_INTERVAL)
542 / MAX_UCODE_BEACON_INTERVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700543 new_val = beacon_val / beacon_factor;
544
John W. Linville41d2f292009-02-20 19:03:31 -0500545 if (!new_val)
546 new_val = MAX_UCODE_BEACON_INTERVAL;
547
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800548 return new_val;
Zhu Yib481de92007-09-25 17:54:57 -0700549}
550
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800551static void iwl_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700552{
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800553 u64 tsf;
554 s32 interval_tm, rem;
Zhu Yib481de92007-09-25 17:54:57 -0700555 unsigned long flags;
556 struct ieee80211_conf *conf = NULL;
557 u16 beacon_int = 0;
558
559 conf = ieee80211_get_hw_conf(priv->hw);
560
561 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800562 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Tomas Winklerb5d7be52008-07-19 04:41:24 +0300563 priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
Zhu Yib481de92007-09-25 17:54:57 -0700564
Johannes Berg05c914f2008-09-11 00:01:58 +0200565 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800566 beacon_int = iwl_adjust_beacon_interval(priv->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700567 priv->rxon_timing.atim_window = 0;
568 } else {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800569 beacon_int = iwl_adjust_beacon_interval(conf->beacon_int);
570
Zhu Yib481de92007-09-25 17:54:57 -0700571 /* TODO: we need to get atim_window from upper stack
572 * for now we set to 0 */
573 priv->rxon_timing.atim_window = 0;
574 }
575
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800576 priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700577
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800578 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
579 interval_tm = beacon_int * 1024;
580 rem = do_div(tsf, interval_tm);
581 priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
582
583 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winklere1623442009-01-27 14:27:56 -0800584 IWL_DEBUG_ASSOC(priv, "beacon interval %d beacon timer %d beacon tim %d\n",
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800585 le16_to_cpu(priv->rxon_timing.beacon_interval),
586 le32_to_cpu(priv->rxon_timing.beacon_init_val),
587 le16_to_cpu(priv->rxon_timing.atim_window));
Zhu Yib481de92007-09-25 17:54:57 -0700588}
589
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700590static int iwl_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700591{
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700592 iwl_connection_init_rx_config(priv, mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800593 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700594 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
595
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800596 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700597
Mohamed Abbasfde35712007-11-29 11:10:15 +0800598 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -0700599 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +0800600 return -EAGAIN;
601
602 cancel_delayed_work(&priv->scan_check);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800603 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800604 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -0800605 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +0800606 return -EAGAIN;
607 }
608
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700609 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700610
611 return 0;
612}
613
Zhu Yib481de92007-09-25 17:54:57 -0700614/******************************************************************************
615 *
616 * Generic RX handler implementations
617 *
618 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800619static void iwl_rx_reply_alive(struct iwl_priv *priv,
620 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700621{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800622 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +0800623 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700624 struct delayed_work *pwork;
625
626 palive = &pkt->u.alive_frame;
627
Tomas Winklere1623442009-01-27 14:27:56 -0800628 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700629 "0x%01X 0x%01X\n",
630 palive->is_valid, palive->ver_type,
631 palive->ver_subtype);
632
633 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800634 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700635 memcpy(&priv->card_alive_init,
636 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800637 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700638 pwork = &priv->init_alive_start;
639 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800640 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700641 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800642 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700643 pwork = &priv->alive_start;
644 }
645
646 /* We delay the ALIVE response by 5ms to
647 * give the HW RF Kill time to activate... */
648 if (palive->is_valid == UCODE_VALID_OK)
649 queue_delayed_work(priv->workqueue, pwork,
650 msecs_to_jiffies(5));
651 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800652 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700653}
654
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700655static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700656{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700657 struct iwl_priv *priv =
658 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700659 struct sk_buff *beacon;
660
661 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200662 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700663
664 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800665 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700666 return;
667 }
668
669 mutex_lock(&priv->mutex);
670 /* new beacon skb is allocated every time; dispose previous.*/
671 if (priv->ibss_beacon)
672 dev_kfree_skb(priv->ibss_beacon);
673
674 priv->ibss_beacon = beacon;
675 mutex_unlock(&priv->mutex);
676
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700677 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700678}
679
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800680/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700681 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800682 *
683 * This callback is provided in order to send a statistics request.
684 *
685 * This timer function is continually reset to execute within
686 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
687 * was received. We need to ensure we receive the statistics in order
688 * to update the temperature used for calibrating the TXPOWER.
689 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700690static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800691{
692 struct iwl_priv *priv = (struct iwl_priv *)data;
693
694 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
695 return;
696
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700697 /* dont send host command if rf-kill is on */
698 if (!iwl_is_ready_rf(priv))
699 return;
700
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800701 iwl_send_statistics_request(priv, CMD_ASYNC);
702}
703
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700704static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800705 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700706{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700707#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +0800708 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800709 struct iwl4965_beacon_notif *beacon =
710 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800711 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700712
Tomas Winklere1623442009-01-27 14:27:56 -0800713 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700714 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800715 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700716 beacon->beacon_notify_hdr.failure_frame,
717 le32_to_cpu(beacon->ibss_mgr_status),
718 le32_to_cpu(beacon->high_tsf),
719 le32_to_cpu(beacon->low_tsf), rate);
720#endif
721
Johannes Berg05c914f2008-09-11 00:01:58 +0200722 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700723 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
724 queue_work(priv->workqueue, &priv->beacon_update);
725}
726
Zhu Yib481de92007-09-25 17:54:57 -0700727/* Handle notification from uCode that card's power state is changing
728 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700729static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800730 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700731{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800732 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700733 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
734 unsigned long status = priv->status;
735
Tomas Winklere1623442009-01-27 14:27:56 -0800736 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700737 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
738 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
739
740 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
741 RF_CARD_DISABLED)) {
742
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700743 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700744 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
745
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700746 if (!iwl_grab_nic_access(priv)) {
747 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700748 priv, HBUS_TARG_MBX_C,
749 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
750
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700751 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700752 }
753
754 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700755 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700756 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700757 if (!iwl_grab_nic_access(priv)) {
758 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700759 priv, HBUS_TARG_MBX_C,
760 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
761
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700762 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700763 }
764 }
765
766 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700767 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700768 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700769 iwl_read32(priv, CSR_UCODE_DRV_GP1);
770 if (!iwl_grab_nic_access(priv))
771 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700772 }
773 }
774
775 if (flags & HW_CARD_DISABLED)
776 set_bit(STATUS_RF_KILL_HW, &priv->status);
777 else
778 clear_bit(STATUS_RF_KILL_HW, &priv->status);
779
780
781 if (flags & SW_CARD_DISABLED)
782 set_bit(STATUS_RF_KILL_SW, &priv->status);
783 else
784 clear_bit(STATUS_RF_KILL_SW, &priv->status);
785
786 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800787 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700788
789 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
790 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
791 (test_bit(STATUS_RF_KILL_SW, &status) !=
792 test_bit(STATUS_RF_KILL_SW, &priv->status)))
793 queue_work(priv->workqueue, &priv->rf_kill);
794 else
795 wake_up_interruptible(&priv->wait_command_queue);
796}
797
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700798int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800799{
800 int ret;
801 unsigned long flags;
802
803 spin_lock_irqsave(&priv->lock, flags);
804 ret = iwl_grab_nic_access(priv);
805 if (ret)
806 goto err;
807
808 if (src == IWL_PWR_SRC_VAUX) {
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800809 if (pci_pme_capable(priv->pci_dev, PCI_D3cold))
Tomas Winklere2e3c572008-07-18 13:53:04 +0800810 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
811 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
812 ~APMG_PS_CTRL_MSK_PWR_SRC);
813 } else {
814 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
815 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
816 ~APMG_PS_CTRL_MSK_PWR_SRC);
817 }
818
819 iwl_release_nic_access(priv);
820err:
821 spin_unlock_irqrestore(&priv->lock, flags);
822 return ret;
823}
824
Zhu Yib481de92007-09-25 17:54:57 -0700825/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700826 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700827 *
828 * Setup the RX handlers for each of the reply types sent from the uCode
829 * to the host.
830 *
831 * This function chains into the hardware specific files for them to setup
832 * any hardware specific handlers as well.
833 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800834static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700835{
Tomas Winkler885ba202008-05-29 16:34:55 +0800836 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700837 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
838 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700839 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700840 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700841 iwl_rx_pm_debug_statistics_notif;
842 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700843
Ben Cahill9fbab512007-11-29 11:09:47 +0800844 /*
845 * The same handler is used for both the REPLY to a discrete
846 * statistics request from the host as well as for the periodic
847 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700848 */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800849 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
850 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800851
Tomas Winkler21c339b2008-11-07 09:58:41 -0800852 iwl_setup_spectrum_handlers(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800853 iwl_setup_rx_scan_handlers(priv);
854
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800855 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700856 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700857
Tomas Winklerc1354752008-05-29 16:35:04 +0800858 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
859 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800860 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +0800861 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
862 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800863 /* block ack */
864 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800865 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700866 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700867}
868
Zhu Yib481de92007-09-25 17:54:57 -0700869/**
Tomas Winklera55360e2008-05-05 10:22:28 +0800870 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -0700871 *
872 * Uses the priv->rx_handlers callback function array to invoke
873 * the appropriate handlers, including command responses,
874 * frame-received notifications, and other notifications.
875 */
Tomas Winklera55360e2008-05-05 10:22:28 +0800876void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700877{
Tomas Winklera55360e2008-05-05 10:22:28 +0800878 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +0800879 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +0800880 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -0700881 u32 r, i;
882 int reclaim;
883 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800884 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -0800885 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -0700886
Cahill, Ben M6440adb2007-11-29 11:09:55 +0800887 /* uCode's read index (stored in shared DRAM) indicates the last Rx
888 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -0800889 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -0700890 i = rxq->read;
891
892 /* Rx interrupt, but nothing sent from uCode */
893 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -0800894 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -0700895
Tomas Winklera55360e2008-05-05 10:22:28 +0800896 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800897 fill_rx = 1;
898
Zhu Yib481de92007-09-25 17:54:57 -0700899 while (i != r) {
900 rxb = rxq->queue[i];
901
Ben Cahill9fbab512007-11-29 11:09:47 +0800902 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -0700903 * then a bug has been introduced in the queue refilling
904 * routines -- catch it here */
905 BUG_ON(rxb == NULL);
906
907 rxq->queue[i] = NULL;
908
Johannes Berge91af0a2008-11-19 01:22:51 +0100909 dma_sync_single_range_for_cpu(
910 &priv->pci_dev->dev, rxb->real_dma_addr,
911 rxb->aligned_dma_addr - rxb->real_dma_addr,
912 priv->hw_params.rx_buf_size,
913 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +0800914 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700915
916 /* Reclaim a command buffer only if this packet is a response
917 * to a (driver-originated) command.
918 * If the packet (e.g. Rx frame) originated from uCode,
919 * there is no command buffer to reclaim.
920 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
921 * but apparently a few don't get set; catch them here. */
922 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
923 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -0700924 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -0700925 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +0800926 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -0700927 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
928 (pkt->hdr.cmd != REPLY_TX);
929
930 /* Based on type of command response or notification,
931 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700932 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -0700933 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -0800934 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +0800935 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -0700936 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
937 } else {
938 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -0800939 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -0700940 "r %d i %d No handler needed for %s, 0x%02x\n",
941 r, i, get_cmd_string(pkt->hdr.cmd),
942 pkt->hdr.cmd);
943 }
944
945 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +0800946 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -0700947 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -0700948 * as we reclaim the driver command queue */
949 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +0800950 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700951 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800952 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -0700953 }
954
955 /* For now we just don't re-use anything. We can tweak this
956 * later to try and re-use notification packets and SKBs that
957 * fail to Rx correctly */
958 if (rxb->skb != NULL) {
959 priv->alloc_rxb_skb--;
960 dev_kfree_skb_any(rxb->skb);
961 rxb->skb = NULL;
962 }
963
Johannes Berg40185172008-11-18 01:47:21 +0100964 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
965 priv->hw_params.rx_buf_size + 256,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +0200966 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -0700967 spin_lock_irqsave(&rxq->lock, flags);
968 list_add_tail(&rxb->list, &priv->rxq.rx_used);
969 spin_unlock_irqrestore(&rxq->lock, flags);
970 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800971 /* If there are a lot of unused frames,
972 * restock the Rx queue so ucode wont assert. */
973 if (fill_rx) {
974 count++;
975 if (count >= 8) {
976 priv->rxq.read = i;
Zhu Yif1bc4ac2008-12-17 16:52:33 +0800977 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +0800978 count = 0;
979 }
980 }
Zhu Yib481de92007-09-25 17:54:57 -0700981 }
982
983 /* Backtrack one entry */
984 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +0800985 iwl_rx_queue_restock(priv);
986}
Tomas Winklera55360e2008-05-05 10:22:28 +0800987
Mohamed Abbas0359fac2008-03-28 16:21:08 -0700988/* call this function to flush any scheduled tasklet */
989static inline void iwl_synchronize_irq(struct iwl_priv *priv)
990{
Tomas Winklera96a27f2008-10-23 23:48:56 -0700991 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -0700992 synchronize_irq(priv->pci_dev->irq);
993 tasklet_kill(&priv->irq_tasklet);
994}
995
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700996static void iwl_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700997{
998 unsigned long flags;
999
1000 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1001 sizeof(priv->staging_rxon));
1002 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001003 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001004
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001005 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07001006
1007 spin_lock_irqsave(&priv->lock, flags);
1008 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1009 priv->error_recovering = 0;
1010 spin_unlock_irqrestore(&priv->lock, flags);
1011}
1012
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001013static void iwl_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001014{
1015 u32 inta, handled = 0;
1016 u32 inta_fh;
1017 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001018#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001019 u32 inta_mask;
1020#endif
1021
1022 spin_lock_irqsave(&priv->lock, flags);
1023
1024 /* Ack/clear/reset pending uCode interrupts.
1025 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1026 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001027 inta = iwl_read32(priv, CSR_INT);
1028 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001029
1030 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1031 * Any new interrupts that happen after this, either while we're
1032 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001033 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1034 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001035
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001036#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001037 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001038 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001039 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001040 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001041 inta, inta_mask, inta_fh);
1042 }
1043#endif
1044
1045 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1046 * atomic, make sure that inta covers all the interrupts that
1047 * we've discovered, even if FH interrupt came in just after
1048 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001049 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001050 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001051 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001052 inta |= CSR_INT_BIT_FH_TX;
1053
1054 /* Now service all interrupt bits discovered above. */
1055 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001056 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001057
1058 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001059 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001060
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001061 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001062
1063 handled |= CSR_INT_BIT_HW_ERR;
1064
1065 spin_unlock_irqrestore(&priv->lock, flags);
1066
1067 return;
1068 }
1069
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001070#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001071 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001072 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001073 if (inta & CSR_INT_BIT_SCD)
Tomas Winklere1623442009-01-27 14:27:56 -08001074 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001075 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001076
1077 /* Alive notification via Rx interrupt will do the real work */
1078 if (inta & CSR_INT_BIT_ALIVE)
Tomas Winklere1623442009-01-27 14:27:56 -08001079 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001080 }
1081#endif
1082 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001083 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001084
Ben Cahill9fbab512007-11-29 11:09:47 +08001085 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001086 if (inta & CSR_INT_BIT_RF_KILL) {
1087 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001088 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001089 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1090 hw_rf_kill = 1;
1091
Tomas Winklere1623442009-01-27 14:27:56 -08001092 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001093 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001094
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001095 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001096 * the driver allows loading the ucode even if the radio
1097 * is killed. Hence update the killswitch state here. The
1098 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001099 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001100 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1101 if (hw_rf_kill)
1102 set_bit(STATUS_RF_KILL_HW, &priv->status);
1103 else
1104 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1105 queue_work(priv->workqueue, &priv->rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001106 }
Zhu Yib481de92007-09-25 17:54:57 -07001107
1108 handled |= CSR_INT_BIT_RF_KILL;
1109 }
1110
Ben Cahill9fbab512007-11-29 11:09:47 +08001111 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001112 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001113 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001114 handled |= CSR_INT_BIT_CT_KILL;
1115 }
1116
1117 /* Error detected by uCode */
1118 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001119 IWL_ERR(priv, "Microcode SW error detected. "
1120 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001121 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001122 handled |= CSR_INT_BIT_SW_ERR;
1123 }
1124
1125 /* uCode wakes up after power-down sleep */
1126 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001127 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001128 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08001129 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1130 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1131 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1132 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1133 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1134 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001135
1136 handled |= CSR_INT_BIT_WAKEUP;
1137 }
1138
1139 /* All uCode command responses, including Tx command responses,
1140 * Rx "responses" (frame-received notification), and other
1141 * notifications from uCode come through here*/
1142 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001143 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001144 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1145 }
1146
1147 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001148 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001149 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001150 /* FH finished to write, send event */
1151 priv->ucode_write_complete = 1;
1152 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001153 }
1154
1155 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001156 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07001157
1158 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001159 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001160 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001161 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001162 }
1163
1164 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001165 /* only Re-enable if diabled by irq */
1166 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001167 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001168
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001169#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001170 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001171 inta = iwl_read32(priv, CSR_INT);
1172 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1173 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001174 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001175 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1176 }
1177#endif
1178 spin_unlock_irqrestore(&priv->lock, flags);
1179}
1180
Zhu Yib481de92007-09-25 17:54:57 -07001181/******************************************************************************
1182 *
1183 * uCode download functions
1184 *
1185 ******************************************************************************/
1186
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001187static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001188{
Tomas Winkler98c92212008-01-14 17:46:20 -08001189 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1190 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1191 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1192 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1193 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1194 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001195}
1196
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001197static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001198{
1199 /* Remove all resets to allow NIC to operate */
1200 iwl_write32(priv, CSR_RESET, 0);
1201}
1202
1203
Zhu Yib481de92007-09-25 17:54:57 -07001204/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001205 * iwl_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001206 *
1207 * Copy into buffers for card to fetch via bus-mastering
1208 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001209static int iwl_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001210{
Ron Rindjunsky14b3d332008-06-13 15:44:54 +08001211 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001212 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07001213 const struct firmware *ucode_raw;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001214 const char *name_pre = priv->cfg->fw_name_pre;
1215 const unsigned int api_max = priv->cfg->ucode_api_max;
1216 const unsigned int api_min = priv->cfg->ucode_api_min;
1217 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07001218 u8 *src;
1219 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001220 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07001221
1222 /* Ask kernel firmware_class module to get the boot firmware off disk.
1223 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001224 for (index = api_max; index >= api_min; index--) {
1225 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1226 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1227 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001228 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001229 buf, ret);
1230 if (ret == -ENOENT)
1231 continue;
1232 else
1233 goto error;
1234 } else {
1235 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001236 IWL_ERR(priv, "Loaded firmware %s, "
1237 "which is deprecated. "
1238 "Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001239 buf, api_max);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001240
Tomas Winklere1623442009-01-27 14:27:56 -08001241 IWL_DEBUG_INFO(priv, "Got firmware '%s' file (%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001242 buf, ucode_raw->size);
1243 break;
1244 }
Zhu Yib481de92007-09-25 17:54:57 -07001245 }
1246
Reinette Chatrea0987a82008-12-02 12:14:06 -08001247 if (ret < 0)
1248 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07001249
1250 /* Make sure that we got at least our header! */
1251 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001252 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001253 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001254 goto err_release;
1255 }
1256
1257 /* Data from ucode file: header followed by uCode images */
1258 ucode = (void *)ucode_raw->data;
1259
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001260 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001261 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001262 inst_size = le32_to_cpu(ucode->inst_size);
1263 data_size = le32_to_cpu(ucode->data_size);
1264 init_size = le32_to_cpu(ucode->init_size);
1265 init_data_size = le32_to_cpu(ucode->init_data_size);
1266 boot_size = le32_to_cpu(ucode->boot_size);
1267
Reinette Chatrea0987a82008-12-02 12:14:06 -08001268 /* api_ver should match the api version forming part of the
1269 * firmware filename ... but we don't check for that and only rely
Nick Andrew877d0312009-01-26 11:06:57 +01001270 * on the API version read from firmware header from here on forward */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001271
1272 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001273 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001274 "Driver supports v%u, firmware is v%u.\n",
1275 api_max, api_ver);
1276 priv->ucode_ver = 0;
1277 ret = -EINVAL;
1278 goto err_release;
1279 }
1280 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001281 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001282 "got v%u. New firmware can be obtained "
1283 "from http://www.intellinuxwireless.org.\n",
1284 api_max, api_ver);
1285
Tomas Winkler978785a2008-12-19 10:37:31 +08001286 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1287 IWL_UCODE_MAJOR(priv->ucode_ver),
1288 IWL_UCODE_MINOR(priv->ucode_ver),
1289 IWL_UCODE_API(priv->ucode_ver),
1290 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001291
Tomas Winklere1623442009-01-27 14:27:56 -08001292 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001293 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08001294 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001295 inst_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001296 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001297 data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001298 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001299 init_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001300 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001301 init_data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001302 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001303 boot_size);
1304
1305 /* Verify size of file vs. image size info in file's header */
1306 if (ucode_raw->size < sizeof(*ucode) +
1307 inst_size + data_size + init_size +
1308 init_data_size + boot_size) {
1309
Tomas Winklere1623442009-01-27 14:27:56 -08001310 IWL_DEBUG_INFO(priv, "uCode file size %d too small\n",
Zhu Yib481de92007-09-25 17:54:57 -07001311 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001312 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001313 goto err_release;
1314 }
1315
1316 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001317 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001318 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001319 inst_size);
1320 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001321 goto err_release;
1322 }
1323
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001324 if (data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001325 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001326 data_size);
1327 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001328 goto err_release;
1329 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001330 if (init_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001331 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1332 init_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001333 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001334 goto err_release;
1335 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001336 if (init_data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001337 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001338 init_data_size);
1339 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001340 goto err_release;
1341 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001342 if (boot_size > priv->hw_params.max_bsm_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001343 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1344 boot_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001345 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001346 goto err_release;
1347 }
1348
1349 /* Allocate ucode buffers for card's bus-master loading ... */
1350
1351 /* Runtime instructions and 2 copies of data:
1352 * 1) unmodified from disk
1353 * 2) backup cache for save/restore during power-downs */
1354 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001355 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001356
1357 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001358 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001359
1360 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001361 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001362
Zhu, Yi1f304e42009-01-23 13:45:22 -08001363 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1364 !priv->ucode_data_backup.v_addr)
1365 goto err_pci_alloc;
1366
Zhu Yib481de92007-09-25 17:54:57 -07001367 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001368 if (init_size && init_data_size) {
1369 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001370 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001371
Tomas Winkler90e759d2007-11-29 11:09:41 +08001372 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001373 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001374
1375 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1376 goto err_pci_alloc;
1377 }
Zhu Yib481de92007-09-25 17:54:57 -07001378
1379 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001380 if (boot_size) {
1381 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001382 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001383
Tomas Winkler90e759d2007-11-29 11:09:41 +08001384 if (!priv->ucode_boot.v_addr)
1385 goto err_pci_alloc;
1386 }
Zhu Yib481de92007-09-25 17:54:57 -07001387
1388 /* Copy images into buffers for card's bus-master reads ... */
1389
1390 /* Runtime instructions (first block of data in file) */
1391 src = &ucode->data[0];
1392 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001393 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001394 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08001395 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001396 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1397
1398 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001399 * NOTE: Copy into backup buffer will be done in iwl_up() */
Zhu Yib481de92007-09-25 17:54:57 -07001400 src = &ucode->data[inst_size];
1401 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001402 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001403 memcpy(priv->ucode_data.v_addr, src, len);
1404 memcpy(priv->ucode_data_backup.v_addr, src, len);
1405
1406 /* Initialization instructions (3rd block) */
1407 if (init_size) {
1408 src = &ucode->data[inst_size + data_size];
1409 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001410 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001411 len);
Zhu Yib481de92007-09-25 17:54:57 -07001412 memcpy(priv->ucode_init.v_addr, src, len);
1413 }
1414
1415 /* Initialization data (4th block) */
1416 if (init_data_size) {
1417 src = &ucode->data[inst_size + data_size + init_size];
1418 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001419 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001420 len);
Zhu Yib481de92007-09-25 17:54:57 -07001421 memcpy(priv->ucode_init_data.v_addr, src, len);
1422 }
1423
1424 /* Bootstrap instructions (5th block) */
1425 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1426 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001427 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001428 memcpy(priv->ucode_boot.v_addr, src, len);
1429
1430 /* We have our copies now, allow OS release its copies */
1431 release_firmware(ucode_raw);
1432 return 0;
1433
1434 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001435 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001436 ret = -ENOMEM;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001437 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001438
1439 err_release:
1440 release_firmware(ucode_raw);
1441
1442 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001443 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001444}
1445
Mohamed Abbasada17512008-11-07 09:58:34 -08001446/* temporary */
1447static int iwl_mac_beacon_update(struct ieee80211_hw *hw,
1448 struct sk_buff *skb);
1449
Zhu Yib481de92007-09-25 17:54:57 -07001450/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001451 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001452 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001453 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001454 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001455static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001456{
Tomas Winkler57aab752008-04-14 21:16:03 -07001457 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001458
Tomas Winklere1623442009-01-27 14:27:56 -08001459 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001460
1461 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1462 /* We had an error bringing up the hardware, so take it
1463 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001464 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001465 goto restart;
1466 }
1467
1468 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1469 * This is a paranoid check, because we would not have gotten the
1470 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07001471 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001472 /* Runtime instruction load was bad;
1473 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001474 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001475 goto restart;
1476 }
1477
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001478 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001479 ret = priv->cfg->ops->lib->alive_notify(priv);
1480 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001481 IWL_WARN(priv,
1482 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07001483 goto restart;
1484 }
1485
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001486 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001487 set_bit(STATUS_ALIVE, &priv->status);
1488
Tomas Winklerfee12472008-04-03 16:05:21 -07001489 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001490 return;
1491
Johannes Berg36d68252008-05-15 12:55:26 +02001492 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001493
1494 priv->active_rate = priv->rates_mask;
1495 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1496
Tomas Winkler3109ece2008-03-28 16:33:35 -07001497 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001498 struct iwl_rxon_cmd *active_rxon =
1499 (struct iwl_rxon_cmd *)&priv->active_rxon;
Mohamed Abbas019fb972009-03-17 21:59:18 -07001500 /* apply any changes in staging */
1501 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07001502 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1503 } else {
1504 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001505 iwl_connection_init_rx_config(priv, priv->iw_mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001506 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001507 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1508 }
1509
Ben Cahill9fbab512007-11-29 11:09:47 +08001510 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001511 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001512
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001513 iwl_reset_run_time_calib(priv);
1514
Zhu Yib481de92007-09-25 17:54:57 -07001515 /* Configure the adapter for unassociated operation */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001516 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001517
1518 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08001519 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001520
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07001521 iwl_leds_register(priv);
1522
Tomas Winklere1623442009-01-27 14:27:56 -08001523 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07001524 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001525 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001526
1527 if (priv->error_recovering)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001528 iwl_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001529
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08001530 iwl_power_update_mode(priv, 1);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001531
Mohamed Abbasada17512008-11-07 09:58:34 -08001532 /* reassociate for ADHOC mode */
1533 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
1534 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
1535 priv->vif);
1536 if (beacon)
1537 iwl_mac_beacon_update(priv->hw, beacon);
1538 }
1539
1540
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001541 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001542 iwl_set_mode(priv, priv->iw_mode);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001543
Zhu Yib481de92007-09-25 17:54:57 -07001544 return;
1545
1546 restart:
1547 queue_work(priv->workqueue, &priv->restart);
1548}
1549
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001550static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07001551
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001552static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001553{
1554 unsigned long flags;
1555 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001556
Tomas Winklere1623442009-01-27 14:27:56 -08001557 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07001558
Zhu Yib481de92007-09-25 17:54:57 -07001559 if (!exit_pending)
1560 set_bit(STATUS_EXIT_PENDING, &priv->status);
1561
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001562 iwl_leds_unregister(priv);
1563
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001564 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001565
1566 /* Unblock any waiting calls */
1567 wake_up_interruptible_all(&priv->wait_command_queue);
1568
Zhu Yib481de92007-09-25 17:54:57 -07001569 /* Wipe out the EXIT_PENDING status bit if we are not actually
1570 * exiting the module */
1571 if (!exit_pending)
1572 clear_bit(STATUS_EXIT_PENDING, &priv->status);
1573
1574 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001575 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07001576
1577 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001578 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001579 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001580 spin_unlock_irqrestore(&priv->lock, flags);
1581 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001582
1583 if (priv->mac80211_registered)
1584 ieee80211_stop_queues(priv->hw);
1585
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001586 /* If we have not previously called iwl_init() then
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07001587 * clear all bits but the RF Kill bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07001588 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001589 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1590 STATUS_RF_KILL_HW |
1591 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1592 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001593 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1594 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001595 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1596 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001597 goto exit;
1598 }
1599
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07001600 /* ...otherwise clear out all the status bits but the RF Kill
1601 * bits and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07001602 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1603 STATUS_RF_KILL_HW |
1604 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1605 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001606 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1607 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001608 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001609 STATUS_FW_ERROR |
1610 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1611 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001612
1613 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001614 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08001615 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07001616 spin_unlock_irqrestore(&priv->lock, flags);
1617
Tomas Winklerda1bc452008-05-29 16:35:00 +08001618 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08001619 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001620
1621 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001622 if (!iwl_grab_nic_access(priv)) {
1623 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07001624 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001625 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001626 }
1627 spin_unlock_irqrestore(&priv->lock, flags);
1628
1629 udelay(5);
1630
Tomas Winkler7f066102008-05-29 16:34:57 +08001631 /* FIXME: apm_ops.suspend(priv) */
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07001632 if (exit_pending)
Gregory Greenmand5353112008-09-03 11:18:49 +08001633 priv->cfg->ops->lib->apm_ops.stop(priv);
1634 else
1635 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001636 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08001637 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001638
1639 if (priv->ibss_beacon)
1640 dev_kfree_skb(priv->ibss_beacon);
1641 priv->ibss_beacon = NULL;
1642
1643 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08001644 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001645}
1646
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001647static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001648{
1649 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001650 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001651 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08001652
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001653 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001654}
1655
1656#define MAX_HW_RESTARTS 5
1657
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001658static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001659{
Tomas Winkler57aab752008-04-14 21:16:03 -07001660 int i;
1661 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001662
1663 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001664 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001665 return -EIO;
1666 }
1667
Reinette Chatree903fbd2008-01-30 22:05:15 -08001668 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001669 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08001670 return -EIO;
1671 }
1672
Zhu Yie655b9f2008-01-24 02:19:38 -08001673 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08001674 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08001675 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001676 else
Zhu Yie655b9f2008-01-24 02:19:38 -08001677 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001678
Tomas Winklerc1842d62008-08-04 16:00:43 +08001679 if (iwl_is_rfkill(priv)) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001680 iwl_enable_interrupts(priv);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001681 IWL_WARN(priv, "Radio disabled by %s RF Kill switch\n",
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001682 test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
Tomas Winklerc1842d62008-08-04 16:00:43 +08001683 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001684 }
1685
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001686 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07001687
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001688 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001689 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001690 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07001691 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001692 }
1693
1694 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001695 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1696 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001697 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1698
1699 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001700 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001701 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001702
1703 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001704 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1705 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07001706
1707 /* Copy original ucode data image from disk into backup cache.
1708 * This will be used to initialize the on-board processor's
1709 * data SRAM for a clean start when the runtime program first loads. */
1710 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08001711 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07001712
Zhu Yib481de92007-09-25 17:54:57 -07001713 for (i = 0; i < MAX_HW_RESTARTS; i++) {
1714
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001715 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001716
1717 /* load bootstrap state machine,
1718 * load bootstrap program into processor's memory,
1719 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07001720 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001721
Tomas Winkler57aab752008-04-14 21:16:03 -07001722 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001723 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
1724 ret);
Zhu Yib481de92007-09-25 17:54:57 -07001725 continue;
1726 }
1727
Emmanuel Grumbachf3d5b452008-06-12 09:47:04 +08001728 /* Clear out the uCode error bit if it is set */
1729 clear_bit(STATUS_FW_ERROR, &priv->status);
1730
Zhu Yib481de92007-09-25 17:54:57 -07001731 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001732 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001733
Tomas Winklere1623442009-01-27 14:27:56 -08001734 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001735
1736 return 0;
1737 }
1738
1739 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001740 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08001741 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001742
1743 /* tried to restart and config the device for as long as our
1744 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001745 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07001746 return -EIO;
1747}
1748
1749
1750/*****************************************************************************
1751 *
1752 * Workqueue callbacks
1753 *
1754 *****************************************************************************/
1755
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001756static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001757{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001758 struct iwl_priv *priv =
1759 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001760
1761 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1762 return;
1763
1764 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08001765 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001766 mutex_unlock(&priv->mutex);
1767}
1768
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001769static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001770{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001771 struct iwl_priv *priv =
1772 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001773
1774 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1775 return;
1776
1777 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001778 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001779 mutex_unlock(&priv->mutex);
1780}
1781
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08001782static void iwl_bg_run_time_calib_work(struct work_struct *work)
1783{
1784 struct iwl_priv *priv = container_of(work, struct iwl_priv,
1785 run_time_calib_work);
1786
1787 mutex_lock(&priv->mutex);
1788
1789 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
1790 test_bit(STATUS_SCANNING, &priv->status)) {
1791 mutex_unlock(&priv->mutex);
1792 return;
1793 }
1794
1795 if (priv->start_calib) {
1796 iwl_chain_noise_calibration(priv, &priv->statistics);
1797
1798 iwl_sensitivity_calibration(priv, &priv->statistics);
1799 }
1800
1801 mutex_unlock(&priv->mutex);
1802 return;
1803}
1804
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001805static void iwl_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001806{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001807 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07001808
1809 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1810 return;
1811
1812 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001813 __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001814 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02001815 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001816}
1817
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001818static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001819{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001820 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07001821
1822 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1823 return;
1824
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001825 iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001826 queue_work(priv->workqueue, &priv->up);
1827}
1828
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001829static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001830{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001831 struct iwl_priv *priv =
1832 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07001833
1834 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1835 return;
1836
1837 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08001838 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001839 mutex_unlock(&priv->mutex);
1840}
1841
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08001842#define IWL_DELAY_NEXT_SCAN (HZ*2)
1843
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07001844void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001845{
Zhu Yib481de92007-09-25 17:54:57 -07001846 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07001847 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08001848 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07001849
Johannes Berg05c914f2008-09-11 00:01:58 +02001850 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001851 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07001852 return;
1853 }
1854
Tomas Winklere1623442009-01-27 14:27:56 -08001855 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07001856 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07001857
1858
1859 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1860 return;
1861
Zhu Yib481de92007-09-25 17:54:57 -07001862
Reinette Chatre508e32e2008-04-14 21:16:13 -07001863 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08001864 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07001865
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08001866 iwl_power_cancel_timeout(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08001867 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08001868
Zhu Yib481de92007-09-25 17:54:57 -07001869 conf = ieee80211_get_hw_conf(priv->hw);
1870
1871 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001872 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001873
Tomas Winkler3195c1f2008-10-08 09:37:30 +08001874 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07001875 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07001876 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07001877 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001878 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07001879 "Attempting to continue.\n");
1880
1881 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
1882
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08001883 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001884
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07001885 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001886 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
1887
Tomas Winklere1623442009-01-27 14:27:56 -08001888 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07001889 priv->assoc_id, priv->beacon_int);
1890
1891 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
1892 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
1893 else
1894 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
1895
1896 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
1897 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
1898 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
1899 else
1900 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1901
Johannes Berg05c914f2008-09-11 00:01:58 +02001902 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07001903 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
1904
1905 }
1906
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001907 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001908
1909 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001910 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07001911 break;
1912
Johannes Berg05c914f2008-09-11 00:01:58 +02001913 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07001914
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001915 /* assume default assoc id */
1916 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001917
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001918 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001919 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001920
1921 break;
1922
1923 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001924 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001925 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07001926 break;
1927 }
1928
Johannes Berg05c914f2008-09-11 00:01:58 +02001929 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07001930 priv->assoc_station_added = 1;
1931
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08001932 spin_lock_irqsave(&priv->lock, flags);
1933 iwl_activate_qos(priv, 0);
1934 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08001935
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08001936 /* the chain noise calibration will enabled PM upon completion
1937 * If chain noise has already been run, then we need to enable
1938 * power management here */
1939 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
1940 iwl_power_enable_management(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08001941
1942 /* Enable Rx differential gain and sensitivity calibrations */
1943 iwl_chain_noise_reset(priv);
1944 priv->start_calib = 1;
1945
Reinette Chatre508e32e2008-04-14 21:16:13 -07001946}
1947
Zhu Yib481de92007-09-25 17:54:57 -07001948/*****************************************************************************
1949 *
1950 * mac80211 entry point functions
1951 *
1952 *****************************************************************************/
1953
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08001954#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08001955
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001956static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07001957{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001958 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08001959 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001960
Tomas Winklere1623442009-01-27 14:27:56 -08001961 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07001962
1963 /* we should be verifying the device is ready to be opened */
1964 mutex_lock(&priv->mutex);
1965
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001966 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08001967 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
1968 * ucode filename and max sizes are card-specific. */
1969
1970 if (!priv->ucode_code.len) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001971 ret = iwl_read_ucode(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001972 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001973 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001974 mutex_unlock(&priv->mutex);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001975 return ret;
Zhu Yi5a66926a2008-01-14 17:46:18 -08001976 }
1977 }
1978
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001979 ret = __iwl_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001980
Zhu Yib481de92007-09-25 17:54:57 -07001981 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001982
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02001983 iwl_rfkill_set_hw_state(priv);
1984
Zhu Yie655b9f2008-01-24 02:19:38 -08001985 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001986 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08001987
Tomas Winklerc1842d62008-08-04 16:00:43 +08001988 if (iwl_is_rfkill(priv))
1989 goto out;
1990
Tomas Winklere1623442009-01-27 14:27:56 -08001991 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08001992
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08001993 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08001994 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08001995 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
1996 test_bit(STATUS_READY, &priv->status),
1997 UCODE_READY_TIMEOUT);
1998 if (!ret) {
1999 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002000 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002001 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002002 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002003 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002004 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002005
Tomas Winklerc1842d62008-08-04 16:00:43 +08002006out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002007 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002008 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002009 return 0;
2010}
2011
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002012static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002013{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002014 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002015
Tomas Winklere1623442009-01-27 14:27:56 -08002016 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002017
Zhu Yie655b9f2008-01-24 02:19:38 -08002018 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08002019 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002020 return;
2021 }
2022
Zhu Yib481de92007-09-25 17:54:57 -07002023 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002024
Tomas Winklerfee12472008-04-03 16:05:21 -07002025 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002026 /* stop mac, cancel any scan request and clear
2027 * RXON_FILTER_ASSOC_MSK BIT
2028 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08002029 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002030 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002031 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002032 }
2033
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002034 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002035
2036 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002037
2038 /* enable interrupts again in order to receive rfkill changes */
2039 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2040 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002041
Tomas Winklere1623442009-01-27 14:27:56 -08002042 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002043}
2044
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002045static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002046{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002047 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002048
Tomas Winklere1623442009-01-27 14:27:56 -08002049 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002050
Tomas Winklere1623442009-01-27 14:27:56 -08002051 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002052 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002053
Johannes Berge039fa42008-05-15 12:55:29 +02002054 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002055 dev_kfree_skb_any(skb);
2056
Tomas Winklere1623442009-01-27 14:27:56 -08002057 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002058 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002059}
2060
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002061static int iwl_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002062 struct ieee80211_if_init_conf *conf)
2063{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002064 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002065 unsigned long flags;
2066
Tomas Winklere1623442009-01-27 14:27:56 -08002067 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07002068
Johannes Berg32bfd352007-12-19 01:31:26 +01002069 if (priv->vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002070 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08002071 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07002072 }
2073
2074 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01002075 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07002076 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07002077
2078 spin_unlock_irqrestore(&priv->lock, flags);
2079
2080 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02002081
2082 if (conf->mac_addr) {
Tomas Winklere1623442009-01-27 14:27:56 -08002083 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02002084 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2085 }
Zhu Yib481de92007-09-25 17:54:57 -07002086
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002087 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002088 /* we are not ready, will run again when ready */
2089 set_bit(STATUS_MODE_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002090
Zhu Yib481de92007-09-25 17:54:57 -07002091 mutex_unlock(&priv->mutex);
2092
Tomas Winklere1623442009-01-27 14:27:56 -08002093 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002094 return 0;
2095}
2096
2097/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002098 * iwl_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07002099 *
2100 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2101 * be set inappropriately and the driver currently sets the hardware up to
2102 * use it whenever needed.
2103 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002104static int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07002105{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002106 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002107 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02002108 struct ieee80211_conf *conf = &hw->conf;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002109 unsigned long flags = 0;
Zhu Yi76bb77e2007-11-22 10:53:22 +08002110 int ret = 0;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002111 u16 ch;
2112 int scan_active = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002113
2114 mutex_lock(&priv->mutex);
Mohamed Abbas019fb972009-03-17 21:59:18 -07002115 IWL_DEBUG_MAC80211(priv, "enter to channel %d changed 0x%X\n",
2116 conf->channel->hw_value, changed);
Zhu Yib481de92007-09-25 17:54:57 -07002117
Assaf Krauss1ea87392008-03-18 14:57:50 -07002118 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Mohamed Abbas019fb972009-03-17 21:59:18 -07002119 test_bit(STATUS_SCANNING, &priv->status))) {
2120 scan_active = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002121 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
Zhu Yib481de92007-09-25 17:54:57 -07002122 }
2123
Mohamed Abbas019fb972009-03-17 21:59:18 -07002124
2125 /* during scanning mac80211 will delay channel setting until
2126 * scan finish with changed = 0
2127 */
2128 if (!changed || (changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
2129 if (scan_active)
2130 goto set_ch_out;
2131
2132 ch = ieee80211_frequency_to_channel(conf->channel->center_freq);
2133 ch_info = iwl_get_channel_info(priv, conf->channel->band, ch);
2134 if (!is_channel_valid(ch_info)) {
2135 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
2136 ret = -EINVAL;
2137 goto set_ch_out;
2138 }
2139
2140 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
2141 !is_channel_ibss(ch_info)) {
2142 IWL_ERR(priv, "channel %d in band %d not "
2143 "IBSS channel\n",
2144 conf->channel->hw_value, conf->channel->band);
2145 ret = -EINVAL;
2146 goto set_ch_out;
2147 }
2148
2149 priv->current_ht_config.is_ht = conf_is_ht(conf);
2150
2151 spin_lock_irqsave(&priv->lock, flags);
2152
2153
2154 /* if we are switching from ht to 2.4 clear flags
2155 * from any ht related info since 2.4 does not
2156 * support ht */
2157 if ((le16_to_cpu(priv->staging_rxon.channel) != ch))
2158 priv->staging_rxon.flags = 0;
2159
2160 iwl_set_rxon_channel(priv, conf->channel);
2161
2162 iwl_set_flags_for_band(priv, conf->channel->band);
2163 spin_unlock_irqrestore(&priv->lock, flags);
2164 set_ch_out:
2165 /* The list of supported rates and rate mask can be different
2166 * for each band; since the band may have changed, reset
2167 * the rate mask to what mac80211 lists */
2168 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002169 }
2170
Mohamed Abbas019fb972009-03-17 21:59:18 -07002171 if (changed & IEEE80211_CONF_CHANGE_PS) {
2172 if (conf->flags & IEEE80211_CONF_PS)
2173 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2174 else
2175 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2176 if (ret)
2177 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
2178
Assaf Krauss398f9e72008-06-12 09:47:06 +08002179 }
2180
Mohamed Abbas019fb972009-03-17 21:59:18 -07002181 if (changed & IEEE80211_CONF_CHANGE_POWER) {
2182 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
2183 priv->tx_power_user_lmt, conf->power_level);
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002184
Mohamed Abbas019fb972009-03-17 21:59:18 -07002185 iwl_set_tx_power(priv, conf->power_level, false);
Zhu Yib481de92007-09-25 17:54:57 -07002186 }
Mohamed Abbas019fb972009-03-17 21:59:18 -07002187
2188 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2189 iwl_set_rxon_chain(priv);
2190
2191 if (changed & IEEE80211_CONF_CHANGE_RADIO_ENABLED) {
2192 if (conf->radio_enabled &&
2193 iwl_radio_kill_sw_enable_radio(priv)) {
2194 IWL_DEBUG_MAC80211(priv, "leave - RF-KILL - "
2195 "waiting for uCode\n");
2196 goto out;
2197 }
2198
2199 if (!conf->radio_enabled)
2200 iwl_radio_kill_sw_disable_radio(priv);
2201 }
Zhu Yib481de92007-09-25 17:54:57 -07002202
Zhu Yib481de92007-09-25 17:54:57 -07002203 if (!conf->radio_enabled) {
Tomas Winklere1623442009-01-27 14:27:56 -08002204 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002205 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002206 }
2207
Mohamed Abbas019fb972009-03-17 21:59:18 -07002208 if (!iwl_is_ready(priv)) {
2209 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002210 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002211 }
2212
Mohamed Abbas019fb972009-03-17 21:59:18 -07002213 if (scan_active)
2214 goto out;
Rick Farrington7b841722009-01-23 13:45:10 -08002215
Zhu Yib481de92007-09-25 17:54:57 -07002216 if (memcmp(&priv->active_rxon,
2217 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002218 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002219 else
Tomas Winklere1623442009-01-27 14:27:56 -08002220 IWL_DEBUG_INFO(priv, "No re-sending same RXON configuration.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002221
Zhu Yib481de92007-09-25 17:54:57 -07002222
Zhu Yia0646472007-12-20 14:10:01 +08002223out:
Mohamed Abbas019fb972009-03-17 21:59:18 -07002224 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yi5a66926a2008-01-14 17:46:18 -08002225 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002226 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002227}
2228
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002229static void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002230{
Tomas Winkler857485c2008-03-21 13:53:44 -07002231 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002232 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002233
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002234 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002235 return;
2236
2237 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002238 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002239
2240 /* RXON - unassoc (to set timing command) */
2241 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002242 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002243
2244 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002245 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002246 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002247 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002248 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002249 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002250 "Attempting to continue.\n");
2251
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002252 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002253
2254 /* FIXME: what should be the assoc_id for AP? */
2255 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2256 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2257 priv->staging_rxon.flags |=
2258 RXON_FLG_SHORT_PREAMBLE_MSK;
2259 else
2260 priv->staging_rxon.flags &=
2261 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2262
2263 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2264 if (priv->assoc_capability &
2265 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2266 priv->staging_rxon.flags |=
2267 RXON_FLG_SHORT_SLOT_MSK;
2268 else
2269 priv->staging_rxon.flags &=
2270 ~RXON_FLG_SHORT_SLOT_MSK;
2271
Johannes Berg05c914f2008-09-11 00:01:58 +02002272 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002273 priv->staging_rxon.flags &=
2274 ~RXON_FLG_SHORT_SLOT_MSK;
2275 }
2276 /* restore RXON assoc */
2277 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002278 iwl_commit_rxon(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002279 spin_lock_irqsave(&priv->lock, flags);
2280 iwl_activate_qos(priv, 1);
2281 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002282 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08002283 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002284 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002285
2286 /* FIXME - we need to add code here to detect a totally new
2287 * configuration, reset the AP, unassoc, rxon timing, assoc,
2288 * clear sta table, add BCAST sta... */
2289}
2290
Johannes Berg9d139c82008-07-09 14:40:37 +02002291
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002292static int iwl_mac_config_interface(struct ieee80211_hw *hw,
Johannes Berg32bfd352007-12-19 01:31:26 +01002293 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07002294 struct ieee80211_if_conf *conf)
2295{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002296 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002297 int rc;
2298
2299 if (conf == NULL)
2300 return -EIO;
2301
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002302 if (priv->vif != vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002303 IWL_DEBUG_MAC80211(priv, "leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002304 return 0;
2305 }
2306
Johannes Berg05c914f2008-09-11 00:01:58 +02002307 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002308 conf->changed & IEEE80211_IFCC_BEACON) {
2309 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2310 if (!beacon)
2311 return -ENOMEM;
Mohamed Abbasada17512008-11-07 09:58:34 -08002312 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002313 rc = iwl_mac_beacon_update(hw, beacon);
Mohamed Abbasada17512008-11-07 09:58:34 -08002314 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02002315 if (rc)
2316 return rc;
2317 }
2318
Tomas Winklerfee12472008-04-03 16:05:21 -07002319 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08002320 return -EAGAIN;
2321
Zhu Yib481de92007-09-25 17:54:57 -07002322 mutex_lock(&priv->mutex);
2323
Zhu Yib481de92007-09-25 17:54:57 -07002324 if (conf->bssid)
Tomas Winklere1623442009-01-27 14:27:56 -08002325 IWL_DEBUG_MAC80211(priv, "bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002326
Johannes Berg4150c572007-09-17 01:29:23 -04002327/*
2328 * very dubious code was here; the probe filtering flag is never set:
2329 *
Zhu Yib481de92007-09-25 17:54:57 -07002330 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2331 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04002332 */
Zhu Yib481de92007-09-25 17:54:57 -07002333
Johannes Berg05c914f2008-09-11 00:01:58 +02002334 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002335 if (!conf->bssid) {
2336 conf->bssid = priv->mac_addr;
2337 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08002338 IWL_DEBUG_MAC80211(priv, "bssid was set to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002339 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002340 }
2341 if (priv->ibss_beacon)
2342 dev_kfree_skb(priv->ibss_beacon);
2343
Johannes Berg9d139c82008-07-09 14:40:37 +02002344 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07002345 }
2346
Tomas Winklerfee12472008-04-03 16:05:21 -07002347 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002348 goto done;
2349
Zhu Yib481de92007-09-25 17:54:57 -07002350 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2351 !is_multicast_ether_addr(conf->bssid)) {
2352 /* If there is currently a HW scan going on in the background
2353 * then we need to cancel it else the RXON below will fail. */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002354 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002355 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07002356 "after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002357 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002358 mutex_unlock(&priv->mutex);
2359 return -EAGAIN;
2360 }
2361 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2362
2363 /* TODO: Audit driver for usage of these members and see
2364 * if mac80211 deprecates them (priv->bssid looks like it
2365 * shouldn't be there, but I haven't scanned the IBSS code
2366 * to verify) - jpk */
2367 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
2368
Johannes Berg05c914f2008-09-11 00:01:58 +02002369 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002370 iwl_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002371 else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002372 rc = iwl_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02002373 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002374 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07002375 priv, priv->active_rxon.bssid_addr, 1);
2376 }
2377
2378 } else {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002379 iwl_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07002380 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002381 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002382 }
2383
Mohamed Abbasfde35712007-11-29 11:10:15 +08002384 done:
Tomas Winklere1623442009-01-27 14:27:56 -08002385 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002386 mutex_unlock(&priv->mutex);
2387
2388 return 0;
2389}
2390
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002391static void iwl_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002392 struct ieee80211_if_init_conf *conf)
2393{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002394 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002395
Tomas Winklere1623442009-01-27 14:27:56 -08002396 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002397
2398 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002399
Tomas Winklerfee12472008-04-03 16:05:21 -07002400 if (iwl_is_ready_rf(priv)) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002401 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002402 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002403 iwl_commit_rxon(priv);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002404 }
Johannes Berg32bfd352007-12-19 01:31:26 +01002405 if (priv->vif == conf->vif) {
2406 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002407 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002408 }
2409 mutex_unlock(&priv->mutex);
2410
Tomas Winklere1623442009-01-27 14:27:56 -08002411 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002412
2413}
Johannes Berg471b3ef2007-12-28 14:32:58 +01002414
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002415static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002416 struct ieee80211_key_conf *keyconf, const u8 *addr,
2417 u32 iv32, u16 *phase1key)
2418{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002419
Tomas Winkler9f586712008-11-12 13:14:05 -08002420 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002421 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002422
Tomas Winkler9f586712008-11-12 13:14:05 -08002423 iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002424
Tomas Winklere1623442009-01-27 14:27:56 -08002425 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002426}
2427
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002428static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002429 struct ieee80211_vif *vif,
2430 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07002431 struct ieee80211_key_conf *key)
2432{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002433 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08002434 const u8 *addr;
2435 int ret;
2436 u8 sta_id;
2437 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07002438
Tomas Winklere1623442009-01-27 14:27:56 -08002439 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002440
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002441 if (priv->hw_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08002442 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07002443 return -EOPNOTSUPP;
2444 }
Winkler, Tomas42986792009-01-19 15:30:22 -08002445 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winkler947b13a2008-04-16 16:34:48 -07002446 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002447 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002448 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07002449 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002450 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002451
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002452 }
Zhu Yib481de92007-09-25 17:54:57 -07002453
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002454 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002455 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002456 mutex_unlock(&priv->mutex);
2457
2458 /* If we are getting WEP group key and we didn't receive any key mapping
2459 * so far, we are in legacy wep mode (group key only), otherwise we are
2460 * in 1X mode.
2461 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07002462 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002463 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002464 if (cmd == SET_KEY)
2465 is_default_wep_key = !priv->key_mapping_key;
2466 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002467 is_default_wep_key =
2468 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002469 }
mabbas052c4b92007-10-25 17:15:43 +08002470
Zhu Yib481de92007-09-25 17:54:57 -07002471 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002472 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002473 if (is_default_wep_key)
2474 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002475 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07002476 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002477
Tomas Winklere1623442009-01-27 14:27:56 -08002478 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002479 break;
2480 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002481 if (is_default_wep_key)
2482 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002483 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002484 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002485
Tomas Winklere1623442009-01-27 14:27:56 -08002486 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002487 break;
2488 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002489 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002490 }
2491
Tomas Winklere1623442009-01-27 14:27:56 -08002492 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002493
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002494 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002495}
2496
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002497static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Tomas Winklerd783b062008-07-18 13:53:02 +08002498 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002499 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08002500{
2501 struct iwl_priv *priv = hw->priv;
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002502 int ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002503
Tomas Winklere1623442009-01-27 14:27:56 -08002504 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07002505 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002506
2507 if (!(priv->cfg->sku & IWL_SKU_N))
2508 return -EACCES;
2509
2510 switch (action) {
2511 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002512 IWL_DEBUG_HT(priv, "start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002513 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002514 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002515 IWL_DEBUG_HT(priv, "stop Rx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002516 ret = iwl_sta_rx_agg_stop(priv, sta->addr, tid);
2517 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2518 return 0;
2519 else
2520 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002521 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002522 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002523 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002524 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002525 IWL_DEBUG_HT(priv, "stop Tx\n");
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07002526 ret = iwl_tx_agg_stop(priv, sta->addr, tid);
2527 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2528 return 0;
2529 else
2530 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08002531 default:
Tomas Winklere1623442009-01-27 14:27:56 -08002532 IWL_DEBUG_HT(priv, "unknown\n");
Tomas Winklerd783b062008-07-18 13:53:02 +08002533 return -EINVAL;
2534 break;
2535 }
2536 return 0;
2537}
Tomas Winkler9f586712008-11-12 13:14:05 -08002538
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002539static int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002540 struct ieee80211_tx_queue_stats *stats)
2541{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002542 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002543 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08002544 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002545 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07002546 unsigned long flags;
2547
Tomas Winklere1623442009-01-27 14:27:56 -08002548 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002549
Tomas Winklerfee12472008-04-03 16:05:21 -07002550 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002551 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002552 return -EIO;
2553 }
2554
2555 spin_lock_irqsave(&priv->lock, flags);
2556
2557 for (i = 0; i < AC_NUM; i++) {
2558 txq = &priv->txq[i];
2559 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002560 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07002561
Johannes Berg57ffc582008-04-29 17:18:59 +02002562 stats[i].len = q->n_window - avail;
2563 stats[i].limit = q->n_window - q->high_mark;
2564 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07002565
2566 }
2567 spin_unlock_irqrestore(&priv->lock, flags);
2568
Tomas Winklere1623442009-01-27 14:27:56 -08002569 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002570
2571 return 0;
2572}
2573
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002574static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002575 struct ieee80211_low_level_stats *stats)
2576{
Ester Kummerbf403db2008-05-05 10:22:40 +08002577 struct iwl_priv *priv = hw->priv;
2578
2579 priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002580 IWL_DEBUG_MAC80211(priv, "enter\n");
2581 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002582
2583 return 0;
2584}
2585
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002586static void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002587{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002588 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002589 unsigned long flags;
2590
2591 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002592 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002593
Zhu Yib481de92007-09-25 17:54:57 -07002594 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02002595 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07002596 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002597
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002598 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002599
Zhu Yib481de92007-09-25 17:54:57 -07002600 spin_lock_irqsave(&priv->lock, flags);
2601 priv->assoc_id = 0;
2602 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002603 priv->assoc_station_added = 0;
2604
2605 /* new association get rid of ibss beacon skb */
2606 if (priv->ibss_beacon)
2607 dev_kfree_skb(priv->ibss_beacon);
2608
2609 priv->ibss_beacon = NULL;
2610
2611 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002612 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002613 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07002614 priv->beacon_int = 0;
2615
2616 spin_unlock_irqrestore(&priv->lock, flags);
2617
Tomas Winklerfee12472008-04-03 16:05:21 -07002618 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002619 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002620 mutex_unlock(&priv->mutex);
2621 return;
2622 }
2623
mabbas052c4b92007-10-25 17:15:43 +08002624 /* we are restarting association process
2625 * clear RXON_FILTER_ASSOC_MSK bit
2626 */
Johannes Berg05c914f2008-09-11 00:01:58 +02002627 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002628 iwl_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08002629 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002630 iwl_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08002631 }
2632
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002633 iwl_power_update_mode(priv, 0);
2634
Zhu Yib481de92007-09-25 17:54:57 -07002635 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02002636 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
mabbas052c4b92007-10-25 17:15:43 +08002637
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002638 /* switch to CAM during association period.
2639 * the ucode will block any association/authentication
2640 * frome during assiciation period if it can not hear
2641 * the AP because of PM. the timer enable PM back is
2642 * association do not complete
2643 */
2644 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
2645 IEEE80211_CHAN_RADAR))
2646 iwl_power_disable_management(priv, 3000);
2647
Tomas Winklere1623442009-01-27 14:27:56 -08002648 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07002649 mutex_unlock(&priv->mutex);
2650 return;
2651 }
2652
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002653 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002654
2655 mutex_unlock(&priv->mutex);
2656
Tomas Winklere1623442009-01-27 14:27:56 -08002657 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002658}
2659
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002660static int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002661{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002662 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002663 unsigned long flags;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08002664 __le64 timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07002665
Tomas Winklere1623442009-01-27 14:27:56 -08002666 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002667
Tomas Winklerfee12472008-04-03 16:05:21 -07002668 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002669 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002670 return -EIO;
2671 }
2672
Johannes Berg05c914f2008-09-11 00:01:58 +02002673 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08002674 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07002675 return -EIO;
2676 }
2677
2678 spin_lock_irqsave(&priv->lock, flags);
2679
2680 if (priv->ibss_beacon)
2681 dev_kfree_skb(priv->ibss_beacon);
2682
2683 priv->ibss_beacon = skb;
2684
2685 priv->assoc_id = 0;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08002686 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Assaf Kraussb94d8ee2008-09-03 11:18:42 +08002687 priv->timestamp = le64_to_cpu(timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07002688
Tomas Winklere1623442009-01-27 14:27:56 -08002689 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002690 spin_unlock_irqrestore(&priv->lock, flags);
2691
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002692 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002693
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07002694 priv->cfg->ops->lib->post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002695
Zhu Yib481de92007-09-25 17:54:57 -07002696
2697 return 0;
2698}
2699
Zhu Yib481de92007-09-25 17:54:57 -07002700/*****************************************************************************
2701 *
2702 * sysfs attributes
2703 *
2704 *****************************************************************************/
2705
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002706#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07002707
2708/*
2709 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08002710 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07002711 * used for controlling the debug level.
2712 *
2713 * See the level definitions in iwl for details.
2714 */
2715
Ester Kummer8cf769c2008-05-06 11:05:11 +08002716static ssize_t show_debug_level(struct device *d,
2717 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07002718{
Ester Kummer8cf769c2008-05-06 11:05:11 +08002719 struct iwl_priv *priv = d->driver_data;
2720
2721 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07002722}
Ester Kummer8cf769c2008-05-06 11:05:11 +08002723static ssize_t store_debug_level(struct device *d,
2724 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07002725 const char *buf, size_t count)
2726{
Ester Kummer8cf769c2008-05-06 11:05:11 +08002727 struct iwl_priv *priv = d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002728 unsigned long val;
2729 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002730
Tomas Winkler9257746f2008-09-03 11:26:32 +08002731 ret = strict_strtoul(buf, 0, &val);
2732 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002733 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07002734 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08002735 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07002736
2737 return strnlen(buf, count);
2738}
2739
Ester Kummer8cf769c2008-05-06 11:05:11 +08002740static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
2741 show_debug_level, store_debug_level);
2742
Zhu Yib481de92007-09-25 17:54:57 -07002743
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002744#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07002745
Zhu Yib481de92007-09-25 17:54:57 -07002746
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002747static ssize_t show_version(struct device *d,
2748 struct device_attribute *attr, char *buf)
2749{
2750 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08002751 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerf236a262008-06-30 17:23:02 +08002752 ssize_t pos = 0;
2753 u16 eeprom_ver;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002754
2755 if (palive->is_valid)
Tomas Winklerf236a262008-06-30 17:23:02 +08002756 pos += sprintf(buf + pos,
2757 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
2758 "fw type: 0x%01X 0x%01X\n",
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002759 palive->ucode_major, palive->ucode_minor,
2760 palive->sw_rev[0], palive->sw_rev[1],
2761 palive->ver_type, palive->ver_subtype);
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002762 else
Tomas Winklerf236a262008-06-30 17:23:02 +08002763 pos += sprintf(buf + pos, "fw not loaded\n");
2764
2765 if (priv->eeprom) {
2766 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
2767 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
2768 eeprom_ver);
2769 } else {
2770 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
2771 }
2772
2773 return pos;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08002774}
2775
2776static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
2777
Zhu Yib481de92007-09-25 17:54:57 -07002778static ssize_t show_temperature(struct device *d,
2779 struct device_attribute *attr, char *buf)
2780{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002781 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002782
Tomas Winklerfee12472008-04-03 16:05:21 -07002783 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002784 return -EAGAIN;
2785
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08002786 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07002787}
2788
2789static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
2790
Zhu Yib481de92007-09-25 17:54:57 -07002791static ssize_t show_tx_power(struct device *d,
2792 struct device_attribute *attr, char *buf)
2793{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002794 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Jay Sternberg91f39e82008-12-17 16:52:34 +08002795
2796 if (!iwl_is_ready_rf(priv))
2797 return sprintf(buf, "off\n");
2798 else
2799 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07002800}
2801
2802static ssize_t store_tx_power(struct device *d,
2803 struct device_attribute *attr,
2804 const char *buf, size_t count)
2805{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002806 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002807 unsigned long val;
2808 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002809
Tomas Winkler9257746f2008-09-03 11:26:32 +08002810 ret = strict_strtoul(buf, 10, &val);
2811 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08002812 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07002813 else
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002814 iwl_set_tx_power(priv, val, false);
Zhu Yib481de92007-09-25 17:54:57 -07002815
2816 return count;
2817}
2818
2819static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
2820
2821static ssize_t show_flags(struct device *d,
2822 struct device_attribute *attr, char *buf)
2823{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002824 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002825
2826 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
2827}
2828
2829static ssize_t store_flags(struct device *d,
2830 struct device_attribute *attr,
2831 const char *buf, size_t count)
2832{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002833 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002834 unsigned long val;
2835 u32 flags;
2836 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08002837 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08002838 return ret;
2839 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07002840
2841 mutex_lock(&priv->mutex);
2842 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
2843 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002844 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002845 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002846 else {
Tomas Winklere1623442009-01-27 14:27:56 -08002847 IWL_DEBUG_INFO(priv, "Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07002848 priv->staging_rxon.flags = cpu_to_le32(flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002849 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002850 }
2851 }
2852 mutex_unlock(&priv->mutex);
2853
2854 return count;
2855}
2856
2857static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
2858
2859static ssize_t show_filter_flags(struct device *d,
2860 struct device_attribute *attr, char *buf)
2861{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002862 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07002863
2864 return sprintf(buf, "0x%04X\n",
2865 le32_to_cpu(priv->active_rxon.filter_flags));
2866}
2867
2868static ssize_t store_filter_flags(struct device *d,
2869 struct device_attribute *attr,
2870 const char *buf, size_t count)
2871{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002872 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002873 unsigned long val;
2874 u32 filter_flags;
2875 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08002876 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08002877 return ret;
2878 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07002879
2880 mutex_lock(&priv->mutex);
2881 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
2882 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002883 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002884 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002885 else {
Tomas Winklere1623442009-01-27 14:27:56 -08002886 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07002887 "0x%04X\n", filter_flags);
2888 priv->staging_rxon.filter_flags =
2889 cpu_to_le32(filter_flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002890 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002891 }
2892 }
2893 mutex_unlock(&priv->mutex);
2894
2895 return count;
2896}
2897
2898static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
2899 store_filter_flags);
2900
Zhu Yib481de92007-09-25 17:54:57 -07002901static ssize_t store_power_level(struct device *d,
2902 struct device_attribute *attr,
2903 const char *buf, size_t count)
2904{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002905 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08002906 int ret;
Tomas Winkler9257746f2008-09-03 11:26:32 +08002907 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07002908
Tomas Winkler9257746f2008-09-03 11:26:32 +08002909
Zhu Yib481de92007-09-25 17:54:57 -07002910 mutex_lock(&priv->mutex);
2911
Tomas Winkler9257746f2008-09-03 11:26:32 +08002912 ret = strict_strtoul(buf, 10, &mode);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08002913 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08002914 goto out;
2915
Esti Kummer298df1f2008-07-18 13:52:58 +08002916 ret = iwl_power_set_user_mode(priv, mode);
2917 if (ret) {
Tomas Winklere1623442009-01-27 14:27:56 -08002918 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002919 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002920 }
Esti Kummer298df1f2008-07-18 13:52:58 +08002921 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07002922
2923 out:
2924 mutex_unlock(&priv->mutex);
Esti Kummer298df1f2008-07-18 13:52:58 +08002925 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002926}
2927
Zhu Yib481de92007-09-25 17:54:57 -07002928static ssize_t show_power_level(struct device *d,
2929 struct device_attribute *attr, char *buf)
2930{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002931 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08002932 int mode = priv->power_data.user_power_setting;
2933 int system = priv->power_data.system_power_setting;
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002934 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07002935 char *p = buf;
2936
Esti Kummer298df1f2008-07-18 13:52:58 +08002937 switch (system) {
2938 case IWL_POWER_SYS_AUTO:
2939 p += sprintf(p, "SYSTEM:auto");
Zhu Yib481de92007-09-25 17:54:57 -07002940 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08002941 case IWL_POWER_SYS_AC:
2942 p += sprintf(p, "SYSTEM:ac");
Zhu Yib481de92007-09-25 17:54:57 -07002943 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08002944 case IWL_POWER_SYS_BATTERY:
2945 p += sprintf(p, "SYSTEM:battery");
2946 break;
Zhu Yib481de92007-09-25 17:54:57 -07002947 }
Esti Kummer298df1f2008-07-18 13:52:58 +08002948
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08002949 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
2950 "fixed" : "auto");
Esti Kummer298df1f2008-07-18 13:52:58 +08002951 p += sprintf(p, "\tINDEX:%d", level);
2952 p += sprintf(p, "\n");
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002953 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07002954}
2955
2956static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
2957 store_power_level);
2958
Zhu Yib481de92007-09-25 17:54:57 -07002959
2960static ssize_t show_statistics(struct device *d,
2961 struct device_attribute *attr, char *buf)
2962{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002963 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08002964 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07002965 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002966 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07002967 int rc = 0;
2968
Tomas Winklerfee12472008-04-03 16:05:21 -07002969 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002970 return -EAGAIN;
2971
2972 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07002973 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002974 mutex_unlock(&priv->mutex);
2975
2976 if (rc) {
2977 len = sprintf(buf,
2978 "Error sending statistics request: 0x%08X\n", rc);
2979 return len;
2980 }
2981
2982 while (size && (PAGE_SIZE - len)) {
2983 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
2984 PAGE_SIZE - len, 1);
2985 len = strlen(buf);
2986 if (PAGE_SIZE - len)
2987 buf[len++] = '\n';
2988
2989 ofs += 16;
2990 size -= min(size, 16U);
2991 }
2992
2993 return len;
2994}
2995
2996static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
2997
Zhu Yib481de92007-09-25 17:54:57 -07002998
Zhu Yib481de92007-09-25 17:54:57 -07002999/*****************************************************************************
3000 *
3001 * driver setup and teardown
3002 *
3003 *****************************************************************************/
3004
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003005static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003006{
Reinette Chatred21050c2009-02-13 11:51:18 -08003007 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07003008
3009 init_waitqueue_head(&priv->wait_command_queue);
3010
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003011 INIT_WORK(&priv->up, iwl_bg_up);
3012 INIT_WORK(&priv->restart, iwl_bg_restart);
3013 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
3014 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
3015 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003016 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003017 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3018 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003019
Tomas Winkler2a421b92008-06-12 09:47:10 +08003020 iwl_setup_scan_deferred_work(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003021 iwl_setup_power_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003022
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003023 if (priv->cfg->ops->lib->setup_deferred_work)
3024 priv->cfg->ops->lib->setup_deferred_work(priv);
3025
3026 init_timer(&priv->statistics_periodic);
3027 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003028 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003029
3030 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003031 iwl_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003032}
3033
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003034static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003035{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003036 if (priv->cfg->ops->lib->cancel_deferred_work)
3037 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003038
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003039 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003040 cancel_delayed_work(&priv->scan_check);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003041 cancel_delayed_work_sync(&priv->set_power_save);
Zhu Yib481de92007-09-25 17:54:57 -07003042 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003043 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003044 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07003045}
3046
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003047static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003048 &dev_attr_flags.attr,
3049 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003050 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003051 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003052 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003053 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003054#ifdef CONFIG_IWLWIFI_DEBUG
3055 &dev_attr_debug_level.attr,
3056#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003057 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003058
3059 NULL
3060};
3061
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003062static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003063 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003064 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003065};
3066
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003067static struct ieee80211_ops iwl_hw_ops = {
3068 .tx = iwl_mac_tx,
3069 .start = iwl_mac_start,
3070 .stop = iwl_mac_stop,
3071 .add_interface = iwl_mac_add_interface,
3072 .remove_interface = iwl_mac_remove_interface,
3073 .config = iwl_mac_config,
3074 .config_interface = iwl_mac_config_interface,
3075 .configure_filter = iwl_configure_filter,
3076 .set_key = iwl_mac_set_key,
3077 .update_tkip_key = iwl_mac_update_tkip_key,
3078 .get_stats = iwl_mac_get_stats,
3079 .get_tx_stats = iwl_mac_get_tx_stats,
3080 .conf_tx = iwl_mac_conf_tx,
3081 .reset_tsf = iwl_mac_reset_tsf,
3082 .bss_info_changed = iwl_bss_info_changed,
3083 .ampdu_action = iwl_mac_ampdu_action,
Tomas Winklercb43dc22008-09-03 11:26:23 +08003084 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003085};
3086
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003087static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003088{
3089 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003090 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003091 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003092 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003093 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003094 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003095
Assaf Krauss316c30d2008-03-14 10:38:46 -07003096 /************************
3097 * 1. Allocating HW data
3098 ************************/
3099
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003100 /* Disabling hardware scan means that mac80211 will perform scans
3101 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003102 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08003103 if (cfg->mod_params->debug & IWL_DL_INFO)
3104 dev_printk(KERN_DEBUG, &(pdev->dev),
3105 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003106 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003107 }
3108
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003109 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003110 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003111 err = -ENOMEM;
3112 goto out;
3113 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003114 priv = hw->priv;
3115 /* At this point both hw and priv are allocated. */
3116
Zhu Yib481de92007-09-25 17:54:57 -07003117 SET_IEEE80211_DEV(hw, &pdev->dev);
3118
Tomas Winklere1623442009-01-27 14:27:56 -08003119 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003120 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003121 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003122
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003123#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08003124 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07003125 atomic_set(&priv->restrict_refcnt, 0);
3126#endif
Zhu Yib481de92007-09-25 17:54:57 -07003127
Assaf Krauss316c30d2008-03-14 10:38:46 -07003128 /**************************
3129 * 2. Initializing PCI bus
3130 **************************/
3131 if (pci_enable_device(pdev)) {
3132 err = -ENODEV;
3133 goto out_ieee80211_free_hw;
3134 }
3135
3136 pci_set_master(pdev);
3137
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003138 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003139 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003140 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003141 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003142 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003143 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003144 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003145 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003146 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003147 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003148 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003149 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003150 }
3151
3152 err = pci_request_regions(pdev, DRV_NAME);
3153 if (err)
3154 goto out_pci_disable_device;
3155
3156 pci_set_drvdata(pdev, priv);
3157
Assaf Krauss316c30d2008-03-14 10:38:46 -07003158
3159 /***********************
3160 * 3. Read REV register
3161 ***********************/
3162 priv->hw_base = pci_iomap(pdev, 0, 0);
3163 if (!priv->hw_base) {
3164 err = -ENODEV;
3165 goto out_pci_release_regions;
3166 }
3167
Tomas Winklere1623442009-01-27 14:27:56 -08003168 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07003169 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003170 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003171
Tomas Winklerb661c812008-04-23 17:14:54 -07003172 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003173 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003174 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003175
Tomas Winklere7b63582008-09-03 11:26:49 +08003176 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3177 * PCI Tx retries from interfering with C3 CPU state */
3178 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3179
Tomas Winkler91238712008-04-23 17:14:53 -07003180 /* amp init */
3181 err = priv->cfg->ops->lib->apm_ops.init(priv);
3182 if (err < 0) {
Reinette Chatre808ff692009-03-11 11:18:01 -07003183 IWL_ERR(priv, "Failed to init APMG\n");
Tomas Winkler91238712008-04-23 17:14:53 -07003184 goto out_iounmap;
3185 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003186 /*****************
3187 * 4. Read EEPROM
3188 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003189 /* Read the EEPROM */
3190 err = iwl_eeprom_init(priv);
3191 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003192 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003193 goto out_iounmap;
3194 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003195 err = iwl_eeprom_check_version(priv);
3196 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08003197 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07003198
Ron Rindjunsky02883012008-05-15 13:53:53 +08003199 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003200 iwl_eeprom_get_mac(priv, priv->mac_addr);
Tomas Winklere1623442009-01-27 14:27:56 -08003201 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003202 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3203
3204 /************************
3205 * 5. Setup HW constants
3206 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08003207 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003208 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003209 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003210 }
3211
3212 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003213 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003214 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003215
Tomas Winkler6ba87952008-05-15 13:54:17 +08003216 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003217 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003218 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003219 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003220
3221 /**********************************
3222 * 7. Initialize module parameters
3223 **********************************/
3224
3225 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003226 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07003227 set_bit(STATUS_RF_KILL_SW, &priv->status);
Tomas Winklere1623442009-01-27 14:27:56 -08003228 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003229 }
3230
Assaf Krauss316c30d2008-03-14 10:38:46 -07003231 /********************
3232 * 8. Setup services
3233 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003234 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003235 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003236 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003237
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003238 pci_enable_msi(priv->pci_dev);
3239
3240 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
3241 DRV_NAME, priv);
3242 if (err) {
3243 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3244 goto out_disable_msi;
3245 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003246 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003247 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003248 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003249 goto out_free_irq;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003250 }
3251
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003252 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003253 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003254
Tomas Winkler6ba87952008-05-15 13:54:17 +08003255 /**********************************
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003256 * 9. Setup and register mac80211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003257 **********************************/
3258
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003259 /* enable interrupts if needed: hw bug w/a */
3260 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3261 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3262 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3263 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3264 }
3265
3266 iwl_enable_interrupts(priv);
3267
Tomas Winkler6ba87952008-05-15 13:54:17 +08003268 err = iwl_setup_mac(priv);
3269 if (err)
3270 goto out_remove_sysfs;
3271
3272 err = iwl_dbgfs_register(priv, DRV_NAME);
3273 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003274 IWL_ERR(priv, "failed to create debugfs files\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003275
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003276 /* If platform's RF_KILL switch is NOT set to KILL */
3277 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3278 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3279 else
3280 set_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003281
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003282 err = iwl_rfkill_init(priv);
3283 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003284 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003285 "Ignoring error: %d\n", err);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003286 else
3287 iwl_rfkill_set_hw_state(priv);
3288
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003289 iwl_power_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003290 return 0;
3291
Assaf Krauss316c30d2008-03-14 10:38:46 -07003292 out_remove_sysfs:
Reinette Chatrec8f16132009-02-27 16:21:22 -08003293 destroy_workqueue(priv->workqueue);
3294 priv->workqueue = NULL;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003295 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa795cc0a2009-02-12 18:51:03 +01003296 out_free_irq:
3297 free_irq(priv->pci_dev->irq, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003298 out_disable_msi:
3299 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003300 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003301 out_free_eeprom:
3302 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003303 out_iounmap:
3304 pci_iounmap(pdev, priv->hw_base);
3305 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07003306 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08003307 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003308 out_pci_disable_device:
3309 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003310 out_ieee80211_free_hw:
3311 ieee80211_free_hw(priv->hw);
3312 out:
3313 return err;
3314}
3315
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003316static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003317{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003318 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003319 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003320
3321 if (!priv)
3322 return;
3323
Tomas Winklere1623442009-01-27 14:27:56 -08003324 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07003325
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003326 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003327 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003328
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003329 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3330 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08003331 * we need to set STATUS_EXIT_PENDING bit.
3332 */
3333 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003334 if (priv->mac80211_registered) {
3335 ieee80211_unregister_hw(priv->hw);
3336 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08003337 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003338 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003339 }
3340
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003341 /* make sure we flush any pending irq or
3342 * tasklet for the driver
3343 */
3344 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003345 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003346 spin_unlock_irqrestore(&priv->lock, flags);
3347
3348 iwl_synchronize_irq(priv);
3349
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003350 iwl_rfkill_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003351 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003352
3353 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08003354 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003355 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003356
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08003357 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003358 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003359
Zhu Yib481de92007-09-25 17:54:57 -07003360
Mohamed Abbas948c1712007-10-25 17:15:45 +08003361 /*netif_stop_queue(dev); */
3362 flush_workqueue(priv->workqueue);
3363
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003364 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07003365 * priv->workqueue... so we can't take down the workqueue
3366 * until now... */
3367 destroy_workqueue(priv->workqueue);
3368 priv->workqueue = NULL;
3369
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003370 free_irq(priv->pci_dev->irq, priv);
3371 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07003372 pci_iounmap(pdev, priv->hw_base);
3373 pci_release_regions(pdev);
3374 pci_disable_device(pdev);
3375 pci_set_drvdata(pdev, NULL);
3376
Tomas Winkler6ba87952008-05-15 13:54:17 +08003377 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003378
3379 if (priv->ibss_beacon)
3380 dev_kfree_skb(priv->ibss_beacon);
3381
3382 ieee80211_free_hw(priv->hw);
3383}
3384
Zhu Yib481de92007-09-25 17:54:57 -07003385
3386/*****************************************************************************
3387 *
3388 * driver and module entry point
3389 *
3390 *****************************************************************************/
3391
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003392/* Hardware specific file defines the PCI IDs table for that hardware module */
3393static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003394#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003395 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3396 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003397#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003398#ifdef CONFIG_IWL5000
Esti Kummer47408632008-07-11 11:53:30 +08003399 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
3400 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
3401 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
3402 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
3403 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
3404 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003405 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
Esti Kummer47408632008-07-11 11:53:30 +08003406 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
3407 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
3408 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
Tomas Winklere96a8492008-09-11 11:45:20 +08003409/* 5350 WiFi/WiMax */
3410 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
3411 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
3412 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
Tomas Winkler7100e922008-12-01 16:32:18 -08003413/* 5150 Wifi/WiMax */
3414 {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)},
3415 {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08003416/* 6000/6050 Series */
3417 {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)},
3418 {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)},
3419 {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)},
3420 {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)},
3421 {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)},
3422 {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)},
3423 {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)},
3424 {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)},
3425 {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)},
3426 {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)},
3427 {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)},
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08003428/* 1000 Series WiFi */
3429 {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID, iwl1000_bgn_cfg)},
3430 {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID, iwl1000_bgn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003431#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08003432
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003433 {0}
3434};
3435MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3436
3437static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07003438 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003439 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003440 .probe = iwl_pci_probe,
3441 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07003442#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003443 .suspend = iwl_pci_suspend,
3444 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07003445#endif
3446};
3447
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003448static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07003449{
3450
3451 int ret;
3452 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3453 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003454
Tomas Winklere227cea2008-07-18 13:53:05 +08003455 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003456 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003457 printk(KERN_ERR DRV_NAME
3458 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003459 return ret;
3460 }
3461
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003462 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07003463 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003464 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003465 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07003466 }
Zhu Yib481de92007-09-25 17:54:57 -07003467
3468 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003469
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003470error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08003471 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003472 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003473}
3474
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003475static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07003476{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003477 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08003478 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07003479}
3480
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003481module_exit(iwl_exit);
3482module_init(iwl_init);