blob: c196abc6db7aa8ab5d26ddfd0a00e4587092a69a [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project, as well
6 * as portions of the ieee80211 subsystem header files.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of version 2 of the GNU General Public License as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 *
21 * The full GNU General Public License is included in this distribution in the
22 * file called LICENSE.
23 *
24 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 *****************************************************************************/
29
Zhu Yib481de92007-09-25 17:54:57 -070030#include <linux/kernel.h>
31#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/init.h>
33#include <linux/pci.h>
34#include <linux/dma-mapping.h>
35#include <linux/delay.h>
36#include <linux/skbuff.h>
37#include <linux/netdevice.h>
38#include <linux/wireless.h>
39#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070040#include <linux/etherdevice.h>
41#include <linux/if_arp.h>
42
Zhu Yib481de92007-09-25 17:54:57 -070043#include <net/mac80211.h>
44
45#include <asm/div64.h>
46
Samuel Ortiza3139c52008-12-19 10:37:09 +080047#define DRV_NAME "iwlagn"
48
Assaf Krauss6bc913b2008-03-11 16:17:18 -070049#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070050#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070051#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070052#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070053#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070054#include "iwl-sta.h"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070055#include "iwl-calib.h"
Zhu Yib481de92007-09-25 17:54:57 -070056
Christoph Hellwig416e1432007-10-25 17:15:49 +080057
Zhu Yib481de92007-09-25 17:54:57 -070058/******************************************************************************
59 *
60 * module boiler plate
61 *
62 ******************************************************************************/
63
Zhu Yib481de92007-09-25 17:54:57 -070064/*
65 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070066 */
Tomas Winklerd783b062008-07-18 13:53:02 +080067#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
Zhu Yib481de92007-09-25 17:54:57 -070068
Tomas Winkler0a6857e2008-03-12 16:58:49 -070069#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070070#define VD "d"
71#else
72#define VD
73#endif
74
Tomas Winkler4fc22b22008-07-21 18:54:42 +030075#ifdef CONFIG_IWLAGN_SPECTRUM_MEASUREMENT
Zhu Yib481de92007-09-25 17:54:57 -070076#define VS "s"
77#else
78#define VS
79#endif
80
Tomas Winklerdf48c322008-03-06 10:40:19 -080081#define DRV_VERSION IWLWIFI_VERSION VD VS
Zhu Yib481de92007-09-25 17:54:57 -070082
Zhu Yib481de92007-09-25 17:54:57 -070083
84MODULE_DESCRIPTION(DRV_DESCRIPTION);
85MODULE_VERSION(DRV_VERSION);
Tomas Winklera7b75202008-12-11 10:33:41 -080086MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
Zhu Yib481de92007-09-25 17:54:57 -070087MODULE_LICENSE("GPL");
Tomas Winkler4fc22b22008-07-21 18:54:42 +030088MODULE_ALIAS("iwl4965");
Zhu Yib481de92007-09-25 17:54:57 -070089
Zhu Yib481de92007-09-25 17:54:57 -070090/*************** STATION TABLE MANAGEMENT ****
Ben Cahill9fbab512007-11-29 11:09:47 +080091 * mac80211 should be examined to determine if sta_info is duplicating
Zhu Yib481de92007-09-25 17:54:57 -070092 * the functionality provided here
93 */
94
95/**************************************************************/
96
Zhu Yib481de92007-09-25 17:54:57 -070097/**
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),
447 PCI_DMA_TODEVICE);
448
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
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700534static void iwl_ht_conf(struct iwl_priv *priv,
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700535 struct ieee80211_bss_conf *bss_conf)
536{
Johannes Bergae5eb022008-10-14 16:58:37 +0200537 struct ieee80211_sta_ht_cap *ht_conf;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700538 struct iwl_ht_info *iwl_conf = &priv->current_ht_config;
Johannes Bergae5eb022008-10-14 16:58:37 +0200539 struct ieee80211_sta *sta;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700540
Tomas Winklere1623442009-01-27 14:27:56 -0800541 IWL_DEBUG_MAC80211(priv, "enter: \n");
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700542
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700543 if (!iwl_conf->is_ht)
544 return;
545
Johannes Bergae5eb022008-10-14 16:58:37 +0200546
547 /*
548 * It is totally wrong to base global information on something
549 * that is valid only when associated, alas, this driver works
550 * that way and I don't know how to fix it.
551 */
552
553 rcu_read_lock();
554 sta = ieee80211_find_sta(priv->hw, priv->bssid);
555 if (!sta) {
556 rcu_read_unlock();
557 return;
558 }
559 ht_conf = &sta->ht_cap;
560
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700561 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_20)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800562 iwl_conf->sgf |= HT_SHORT_GI_20MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700563 if (ht_conf->cap & IEEE80211_HT_CAP_SGI_40)
Emmanuel Grumbacha9841012008-05-15 13:54:08 +0800564 iwl_conf->sgf |= HT_SHORT_GI_40MHZ;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700565
566 iwl_conf->is_green_field = !!(ht_conf->cap & IEEE80211_HT_CAP_GRN_FLD);
567 iwl_conf->max_amsdu_size =
568 !!(ht_conf->cap & IEEE80211_HT_CAP_MAX_AMSDU);
569
570 iwl_conf->supported_chan_width =
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200571 !!(ht_conf->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40);
Johannes Bergae5eb022008-10-14 16:58:37 +0200572
Sujith094d05d2008-12-12 11:57:43 +0530573 /*
574 * XXX: The HT configuration needs to be moved into iwl_mac_config()
575 * to be done there correctly.
576 */
577
578 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
Luis R. Rodriguezde27e642008-12-23 15:58:44 -0800579 if (conf_is_ht40_minus(&priv->hw->conf))
Sujith094d05d2008-12-12 11:57:43 +0530580 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Luis R. Rodriguezde27e642008-12-23 15:58:44 -0800581 else if (conf_is_ht40_plus(&priv->hw->conf))
Sujith094d05d2008-12-12 11:57:43 +0530582 iwl_conf->extension_chan_offset = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
583
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700584 /* If no above or below channel supplied disable FAT channel */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200585 if (iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_ABOVE &&
Sujith094d05d2008-12-12 11:57:43 +0530586 iwl_conf->extension_chan_offset != IEEE80211_HT_PARAM_CHA_SEC_BELOW)
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700587 iwl_conf->supported_chan_width = 0;
588
Ron Rindjunsky12837be2008-09-03 11:26:47 +0800589 iwl_conf->sm_ps = (u8)((ht_conf->cap & IEEE80211_HT_CAP_SM_PS) >> 2);
590
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200591 memcpy(&iwl_conf->mcs, &ht_conf->mcs, 16);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700592
Sujith094d05d2008-12-12 11:57:43 +0530593 iwl_conf->tx_chan_width = iwl_conf->supported_chan_width != 0;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700594 iwl_conf->ht_protection =
Johannes Bergae5eb022008-10-14 16:58:37 +0200595 bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_PROTECTION;
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700596 iwl_conf->non_GF_STA_present =
Johannes Bergae5eb022008-10-14 16:58:37 +0200597 !!(bss_conf->ht.operation_mode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT);
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700598
Johannes Bergae5eb022008-10-14 16:58:37 +0200599 rcu_read_unlock();
600
Tomas Winklere1623442009-01-27 14:27:56 -0800601 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachd1141df2008-04-21 15:42:00 -0700602}
603
Zhu Yib481de92007-09-25 17:54:57 -0700604/*
605 * QoS support
606*/
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800607static void iwl_activate_qos(struct iwl_priv *priv, u8 force)
Zhu Yib481de92007-09-25 17:54:57 -0700608{
Zhu Yib481de92007-09-25 17:54:57 -0700609 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
610 return;
611
Zhu Yib481de92007-09-25 17:54:57 -0700612 priv->qos_data.def_qos_parm.qos_flags = 0;
613
614 if (priv->qos_data.qos_cap.q_AP.queue_request &&
615 !priv->qos_data.qos_cap.q_AP.txop_request)
616 priv->qos_data.def_qos_parm.qos_flags |=
617 QOS_PARAM_FLG_TXOP_TYPE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700618 if (priv->qos_data.qos_active)
619 priv->qos_data.def_qos_parm.qos_flags |=
620 QOS_PARAM_FLG_UPDATE_EDCA_MSK;
621
Ron Rindjunskyfd105e72007-11-26 16:14:39 +0200622 if (priv->current_ht_config.is_ht)
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800623 priv->qos_data.def_qos_parm.qos_flags |= QOS_PARAM_FLG_TGN_MSK;
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800624
Tomas Winkler3109ece2008-03-28 16:33:35 -0700625 if (force || iwl_is_associated(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800626 IWL_DEBUG_QOS(priv, "send QoS cmd with Qos active=%d FLAGS=0x%X\n",
Tomas Winklerf1f1f5c2007-10-25 17:15:26 +0800627 priv->qos_data.qos_active,
628 priv->qos_data.def_qos_parm.qos_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700629
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +0800630 iwl_send_cmd_pdu_async(priv, REPLY_QOS_PARAM,
631 sizeof(struct iwl_qosparam_cmd),
632 &priv->qos_data.def_qos_parm, NULL);
Zhu Yib481de92007-09-25 17:54:57 -0700633 }
634}
635
Zhu Yib481de92007-09-25 17:54:57 -0700636#define MAX_UCODE_BEACON_INTERVAL 4096
Zhu Yib481de92007-09-25 17:54:57 -0700637
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800638static u16 iwl_adjust_beacon_interval(u16 beacon_val)
Zhu Yib481de92007-09-25 17:54:57 -0700639{
640 u16 new_val = 0;
641 u16 beacon_factor = 0;
642
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800643 beacon_factor = (beacon_val + MAX_UCODE_BEACON_INTERVAL)
644 / MAX_UCODE_BEACON_INTERVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700645 new_val = beacon_val / beacon_factor;
646
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800647 return new_val;
Zhu Yib481de92007-09-25 17:54:57 -0700648}
649
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800650static void iwl_setup_rxon_timing(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700651{
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800652 u64 tsf;
653 s32 interval_tm, rem;
Zhu Yib481de92007-09-25 17:54:57 -0700654 unsigned long flags;
655 struct ieee80211_conf *conf = NULL;
656 u16 beacon_int = 0;
657
658 conf = ieee80211_get_hw_conf(priv->hw);
659
660 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800661 priv->rxon_timing.timestamp = cpu_to_le64(priv->timestamp);
Tomas Winklerb5d7be52008-07-19 04:41:24 +0300662 priv->rxon_timing.listen_interval = cpu_to_le16(conf->listen_interval);
Zhu Yib481de92007-09-25 17:54:57 -0700663
Johannes Berg05c914f2008-09-11 00:01:58 +0200664 if (priv->iw_mode == NL80211_IFTYPE_STATION) {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800665 beacon_int = iwl_adjust_beacon_interval(priv->beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700666 priv->rxon_timing.atim_window = 0;
667 } else {
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800668 beacon_int = iwl_adjust_beacon_interval(conf->beacon_int);
669
Zhu Yib481de92007-09-25 17:54:57 -0700670 /* TODO: we need to get atim_window from upper stack
671 * for now we set to 0 */
672 priv->rxon_timing.atim_window = 0;
673 }
674
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800675 priv->rxon_timing.beacon_interval = cpu_to_le16(beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -0700676
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800677 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */
678 interval_tm = beacon_int * 1024;
679 rem = do_div(tsf, interval_tm);
680 priv->rxon_timing.beacon_init_val = cpu_to_le32(interval_tm - rem);
681
682 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winklere1623442009-01-27 14:27:56 -0800683 IWL_DEBUG_ASSOC(priv, "beacon interval %d beacon timer %d beacon tim %d\n",
Tomas Winkler3195c1f2008-10-08 09:37:30 +0800684 le16_to_cpu(priv->rxon_timing.beacon_interval),
685 le32_to_cpu(priv->rxon_timing.beacon_init_val),
686 le16_to_cpu(priv->rxon_timing.atim_window));
Zhu Yib481de92007-09-25 17:54:57 -0700687}
688
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700689static int iwl_set_mode(struct iwl_priv *priv, int mode)
Zhu Yib481de92007-09-25 17:54:57 -0700690{
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700691 iwl_connection_init_rx_config(priv, mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -0800692 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700693 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
694
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800695 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700696
Mohamed Abbasfde35712007-11-29 11:10:15 +0800697 /* dont commit rxon if rf-kill is on*/
Tomas Winklerfee12472008-04-03 16:05:21 -0700698 if (!iwl_is_ready_rf(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +0800699 return -EAGAIN;
700
701 cancel_delayed_work(&priv->scan_check);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800702 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800703 IWL_WARN(priv, "Aborted scan still in progress after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -0800704 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +0800705 return -EAGAIN;
706 }
707
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700708 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700709
710 return 0;
711}
712
Zhu Yib481de92007-09-25 17:54:57 -0700713/******************************************************************************
714 *
715 * Generic RX handler implementations
716 *
717 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800718static void iwl_rx_reply_alive(struct iwl_priv *priv,
719 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700720{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800721 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler885ba202008-05-29 16:34:55 +0800722 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700723 struct delayed_work *pwork;
724
725 palive = &pkt->u.alive_frame;
726
Tomas Winklere1623442009-01-27 14:27:56 -0800727 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700728 "0x%01X 0x%01X\n",
729 palive->is_valid, palive->ver_type,
730 palive->ver_subtype);
731
732 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800733 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700734 memcpy(&priv->card_alive_init,
735 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800736 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700737 pwork = &priv->init_alive_start;
738 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800739 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700740 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800741 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700742 pwork = &priv->alive_start;
743 }
744
745 /* We delay the ALIVE response by 5ms to
746 * give the HW RF Kill time to activate... */
747 if (palive->is_valid == UCODE_VALID_OK)
748 queue_delayed_work(priv->workqueue, pwork,
749 msecs_to_jiffies(5));
750 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800751 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700752}
753
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700754static void iwl_rx_reply_error(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800755 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700756{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800757 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700758
Winkler, Tomas15b16872008-12-19 10:37:33 +0800759 IWL_ERR(priv, "Error Reply type 0x%08X cmd %s (0x%02X) "
Zhu Yib481de92007-09-25 17:54:57 -0700760 "seq 0x%04X ser 0x%08X\n",
761 le32_to_cpu(pkt->u.err_resp.error_type),
762 get_cmd_string(pkt->u.err_resp.cmd_id),
763 pkt->u.err_resp.cmd_id,
764 le16_to_cpu(pkt->u.err_resp.bad_cmd_seq_num),
765 le32_to_cpu(pkt->u.err_resp.error_info));
766}
767
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700768static void iwl_rx_pm_sleep_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800769 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700770{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700771#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +0800772 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800773 struct iwl_sleep_notification *sleep = &(pkt->u.sleep_notif);
Tomas Winklere1623442009-01-27 14:27:56 -0800774 IWL_DEBUG_RX(priv, "sleep mode: %d, src: %d\n",
Zhu Yib481de92007-09-25 17:54:57 -0700775 sleep->pm_sleep_mode, sleep->pm_wakeup_src);
776#endif
777}
778
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700779static void iwl_rx_pm_debug_statistics_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800780 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700781{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800782 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winklere1623442009-01-27 14:27:56 -0800783 IWL_DEBUG_RADIO(priv, "Dumping %d bytes of unhandled "
Zhu Yib481de92007-09-25 17:54:57 -0700784 "notification for %s:\n",
785 le32_to_cpu(pkt->len), get_cmd_string(pkt->hdr.cmd));
Ester Kummerbf403db2008-05-05 10:22:40 +0800786 iwl_print_hex_dump(priv, IWL_DL_RADIO, pkt->u.raw, le32_to_cpu(pkt->len));
Zhu Yib481de92007-09-25 17:54:57 -0700787}
788
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700789static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700790{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700791 struct iwl_priv *priv =
792 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700793 struct sk_buff *beacon;
794
795 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
Johannes Berge039fa42008-05-15 12:55:29 +0200796 beacon = ieee80211_beacon_get(priv->hw, priv->vif);
Zhu Yib481de92007-09-25 17:54:57 -0700797
798 if (!beacon) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800799 IWL_ERR(priv, "update beacon failed\n");
Zhu Yib481de92007-09-25 17:54:57 -0700800 return;
801 }
802
803 mutex_lock(&priv->mutex);
804 /* new beacon skb is allocated every time; dispose previous.*/
805 if (priv->ibss_beacon)
806 dev_kfree_skb(priv->ibss_beacon);
807
808 priv->ibss_beacon = beacon;
809 mutex_unlock(&priv->mutex);
810
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700811 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700812}
813
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800814/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700815 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800816 *
817 * This callback is provided in order to send a statistics request.
818 *
819 * This timer function is continually reset to execute within
820 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
821 * was received. We need to ensure we receive the statistics in order
822 * to update the temperature used for calibrating the TXPOWER.
823 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700824static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800825{
826 struct iwl_priv *priv = (struct iwl_priv *)data;
827
828 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
829 return;
830
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700831 /* dont send host command if rf-kill is on */
832 if (!iwl_is_ready_rf(priv))
833 return;
834
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800835 iwl_send_statistics_request(priv, CMD_ASYNC);
836}
837
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700838static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800839 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700840{
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700841#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklerdb11d632008-05-05 10:22:33 +0800842 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800843 struct iwl4965_beacon_notif *beacon =
844 (struct iwl4965_beacon_notif *)pkt->u.raw;
Tomas Winklere7d326a2008-06-12 09:47:11 +0800845 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700846
Tomas Winklere1623442009-01-27 14:27:56 -0800847 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700848 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800849 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700850 beacon->beacon_notify_hdr.failure_frame,
851 le32_to_cpu(beacon->ibss_mgr_status),
852 le32_to_cpu(beacon->high_tsf),
853 le32_to_cpu(beacon->low_tsf), rate);
854#endif
855
Johannes Berg05c914f2008-09-11 00:01:58 +0200856 if ((priv->iw_mode == NL80211_IFTYPE_AP) &&
Zhu Yib481de92007-09-25 17:54:57 -0700857 (!test_bit(STATUS_EXIT_PENDING, &priv->status)))
858 queue_work(priv->workqueue, &priv->beacon_update);
859}
860
Zhu Yib481de92007-09-25 17:54:57 -0700861/* Handle notification from uCode that card's power state is changing
862 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700863static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800864 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700865{
Tomas Winklerdb11d632008-05-05 10:22:33 +0800866 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -0700867 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
868 unsigned long status = priv->status;
869
Tomas Winklere1623442009-01-27 14:27:56 -0800870 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700871 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
872 (flags & SW_CARD_DISABLED) ? "Kill" : "On");
873
874 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
875 RF_CARD_DISABLED)) {
876
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700877 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700878 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
879
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700880 if (!iwl_grab_nic_access(priv)) {
881 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700882 priv, HBUS_TARG_MBX_C,
883 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
884
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700885 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700886 }
887
888 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700889 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700890 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700891 if (!iwl_grab_nic_access(priv)) {
892 iwl_write_direct32(
Zhu Yib481de92007-09-25 17:54:57 -0700893 priv, HBUS_TARG_MBX_C,
894 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
895
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700896 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700897 }
898 }
899
900 if (flags & RF_CARD_DISABLED) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700901 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700902 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700903 iwl_read32(priv, CSR_UCODE_DRV_GP1);
904 if (!iwl_grab_nic_access(priv))
905 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700906 }
907 }
908
909 if (flags & HW_CARD_DISABLED)
910 set_bit(STATUS_RF_KILL_HW, &priv->status);
911 else
912 clear_bit(STATUS_RF_KILL_HW, &priv->status);
913
914
915 if (flags & SW_CARD_DISABLED)
916 set_bit(STATUS_RF_KILL_SW, &priv->status);
917 else
918 clear_bit(STATUS_RF_KILL_SW, &priv->status);
919
920 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800921 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700922
923 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
924 test_bit(STATUS_RF_KILL_HW, &priv->status)) ||
925 (test_bit(STATUS_RF_KILL_SW, &status) !=
926 test_bit(STATUS_RF_KILL_SW, &priv->status)))
927 queue_work(priv->workqueue, &priv->rf_kill);
928 else
929 wake_up_interruptible(&priv->wait_command_queue);
930}
931
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700932int iwl_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Tomas Winklere2e3c572008-07-18 13:53:04 +0800933{
934 int ret;
935 unsigned long flags;
936
937 spin_lock_irqsave(&priv->lock, flags);
938 ret = iwl_grab_nic_access(priv);
939 if (ret)
940 goto err;
941
942 if (src == IWL_PWR_SRC_VAUX) {
943 u32 val;
Tomas Winklere7b63582008-09-03 11:26:49 +0800944 ret = pci_read_config_dword(priv->pci_dev, PCI_CFG_POWER_SOURCE,
Tomas Winklere2e3c572008-07-18 13:53:04 +0800945 &val);
946
947 if (val & PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT)
948 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
949 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
950 ~APMG_PS_CTRL_MSK_PWR_SRC);
951 } else {
952 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
953 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
954 ~APMG_PS_CTRL_MSK_PWR_SRC);
955 }
956
957 iwl_release_nic_access(priv);
958err:
959 spin_unlock_irqrestore(&priv->lock, flags);
960 return ret;
961}
962
Zhu Yib481de92007-09-25 17:54:57 -0700963/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700964 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700965 *
966 * Setup the RX handlers for each of the reply types sent from the uCode
967 * to the host.
968 *
969 * This function chains into the hardware specific files for them to setup
970 * any hardware specific handlers as well.
971 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800972static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700973{
Tomas Winkler885ba202008-05-29 16:34:55 +0800974 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700975 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
976 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700977 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700978 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700979 iwl_rx_pm_debug_statistics_notif;
980 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700981
Ben Cahill9fbab512007-11-29 11:09:47 +0800982 /*
983 * The same handler is used for both the REPLY to a discrete
984 * statistics request from the host as well as for the periodic
985 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700986 */
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800987 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_rx_statistics;
988 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800989
Tomas Winkler21c339b2008-11-07 09:58:41 -0800990 iwl_setup_spectrum_handlers(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +0800991 iwl_setup_rx_scan_handlers(priv);
992
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800993 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700994 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700995
Tomas Winklerc1354752008-05-29 16:35:04 +0800996 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
997 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800998 /* Rx handlers */
Emmanuel Grumbach1781a072008-06-30 17:23:09 +0800999 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl_rx_reply_rx_phy;
1000 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08001001 /* block ack */
1002 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +08001003 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07001004 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001005}
1006
Zhu Yib481de92007-09-25 17:54:57 -07001007/**
Tomas Winklera55360e2008-05-05 10:22:28 +08001008 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001009 *
1010 * Uses the priv->rx_handlers callback function array to invoke
1011 * the appropriate handlers, including command responses,
1012 * frame-received notifications, and other notifications.
1013 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001014void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001015{
Tomas Winklera55360e2008-05-05 10:22:28 +08001016 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001017 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001018 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001019 u32 r, i;
1020 int reclaim;
1021 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001022 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001023 u32 count = 8;
Zhu Yib481de92007-09-25 17:54:57 -07001024
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001025 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1026 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -08001027 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001028 i = rxq->read;
1029
1030 /* Rx interrupt, but nothing sent from uCode */
1031 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001032 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001033
Tomas Winklera55360e2008-05-05 10:22:28 +08001034 if (iwl_rx_queue_space(rxq) > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001035 fill_rx = 1;
1036
Zhu Yib481de92007-09-25 17:54:57 -07001037 while (i != r) {
1038 rxb = rxq->queue[i];
1039
Ben Cahill9fbab512007-11-29 11:09:47 +08001040 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001041 * then a bug has been introduced in the queue refilling
1042 * routines -- catch it here */
1043 BUG_ON(rxb == NULL);
1044
1045 rxq->queue[i] = NULL;
1046
Johannes Berge91af0a2008-11-19 01:22:51 +01001047 dma_sync_single_range_for_cpu(
1048 &priv->pci_dev->dev, rxb->real_dma_addr,
1049 rxb->aligned_dma_addr - rxb->real_dma_addr,
1050 priv->hw_params.rx_buf_size,
1051 PCI_DMA_FROMDEVICE);
Tomas Winklerdb11d632008-05-05 10:22:33 +08001052 pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07001053
1054 /* Reclaim a command buffer only if this packet is a response
1055 * to a (driver-originated) command.
1056 * If the packet (e.g. Rx frame) originated from uCode,
1057 * there is no command buffer to reclaim.
1058 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1059 * but apparently a few don't get set; catch them here. */
1060 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1061 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001062 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001063 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001064 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001065 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1066 (pkt->hdr.cmd != REPLY_TX);
1067
1068 /* Based on type of command response or notification,
1069 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001070 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001071 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001072 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001073 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001074 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
1075 } else {
1076 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001077 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001078 "r %d i %d No handler needed for %s, 0x%02x\n",
1079 r, i, get_cmd_string(pkt->hdr.cmd),
1080 pkt->hdr.cmd);
1081 }
1082
1083 if (reclaim) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001084 /* Invoke any callbacks, transfer the skb to caller, and
Tomas Winkler857485c2008-03-21 13:53:44 -07001085 * fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001086 * as we reclaim the driver command queue */
1087 if (rxb && rxb->skb)
Tomas Winkler17b88922008-05-29 16:35:12 +08001088 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001089 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001090 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001091 }
1092
1093 /* For now we just don't re-use anything. We can tweak this
1094 * later to try and re-use notification packets and SKBs that
1095 * fail to Rx correctly */
1096 if (rxb->skb != NULL) {
1097 priv->alloc_rxb_skb--;
1098 dev_kfree_skb_any(rxb->skb);
1099 rxb->skb = NULL;
1100 }
1101
Johannes Berg40185172008-11-18 01:47:21 +01001102 pci_unmap_single(priv->pci_dev, rxb->real_dma_addr,
1103 priv->hw_params.rx_buf_size + 256,
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02001104 PCI_DMA_FROMDEVICE);
Zhu Yib481de92007-09-25 17:54:57 -07001105 spin_lock_irqsave(&rxq->lock, flags);
1106 list_add_tail(&rxb->list, &priv->rxq.rx_used);
1107 spin_unlock_irqrestore(&rxq->lock, flags);
1108 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001109 /* If there are a lot of unused frames,
1110 * restock the Rx queue so ucode wont assert. */
1111 if (fill_rx) {
1112 count++;
1113 if (count >= 8) {
1114 priv->rxq.read = i;
Zhu Yif1bc4ac2008-12-17 16:52:33 +08001115 iwl_rx_queue_restock(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001116 count = 0;
1117 }
1118 }
Zhu Yib481de92007-09-25 17:54:57 -07001119 }
1120
1121 /* Backtrack one entry */
1122 priv->rxq.read = i;
Tomas Winklera55360e2008-05-05 10:22:28 +08001123 iwl_rx_queue_restock(priv);
1124}
Tomas Winklera55360e2008-05-05 10:22:28 +08001125
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001126/* call this function to flush any scheduled tasklet */
1127static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1128{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001129 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001130 synchronize_irq(priv->pci_dev->irq);
1131 tasklet_kill(&priv->irq_tasklet);
1132}
1133
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001134static void iwl_error_recovery(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001135{
1136 unsigned long flags;
1137
1138 memcpy(&priv->staging_rxon, &priv->recovery_rxon,
1139 sizeof(priv->staging_rxon));
1140 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001141 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001142
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08001143 iwl_rxon_add_station(priv, priv->bssid, 1);
Zhu Yib481de92007-09-25 17:54:57 -07001144
1145 spin_lock_irqsave(&priv->lock, flags);
1146 priv->assoc_id = le16_to_cpu(priv->staging_rxon.assoc_id);
1147 priv->error_recovering = 0;
1148 spin_unlock_irqrestore(&priv->lock, flags);
1149}
1150
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001151static void iwl_irq_tasklet(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001152{
1153 u32 inta, handled = 0;
1154 u32 inta_fh;
1155 unsigned long flags;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001156#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001157 u32 inta_mask;
1158#endif
1159
1160 spin_lock_irqsave(&priv->lock, flags);
1161
1162 /* Ack/clear/reset pending uCode interrupts.
1163 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1164 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001165 inta = iwl_read32(priv, CSR_INT);
1166 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001167
1168 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1169 * Any new interrupts that happen after this, either while we're
1170 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001171 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1172 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001173
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001174#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001175 if (priv->debug_level & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001176 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001177 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001178 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001179 inta, inta_mask, inta_fh);
1180 }
1181#endif
1182
1183 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1184 * atomic, make sure that inta covers all the interrupts that
1185 * we've discovered, even if FH interrupt came in just after
1186 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001187 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001188 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001189 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001190 inta |= CSR_INT_BIT_FH_TX;
1191
1192 /* Now service all interrupt bits discovered above. */
1193 if (inta & CSR_INT_BIT_HW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001194 IWL_ERR(priv, "Microcode HW error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001195
1196 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001197 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001198
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001199 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001200
1201 handled |= CSR_INT_BIT_HW_ERR;
1202
1203 spin_unlock_irqrestore(&priv->lock, flags);
1204
1205 return;
1206 }
1207
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001208#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001209 if (priv->debug_level & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001210 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001211 if (inta & CSR_INT_BIT_SCD)
Tomas Winklere1623442009-01-27 14:27:56 -08001212 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001213 "the frame/frames.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001214
1215 /* Alive notification via Rx interrupt will do the real work */
1216 if (inta & CSR_INT_BIT_ALIVE)
Tomas Winklere1623442009-01-27 14:27:56 -08001217 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001218 }
1219#endif
1220 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001221 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001222
Ben Cahill9fbab512007-11-29 11:09:47 +08001223 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001224 if (inta & CSR_INT_BIT_RF_KILL) {
1225 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001226 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001227 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1228 hw_rf_kill = 1;
1229
Tomas Winklere1623442009-01-27 14:27:56 -08001230 IWL_DEBUG_RF_KILL(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001231 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001232
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001233 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001234 * the driver allows loading the ucode even if the radio
1235 * is killed. Hence update the killswitch state here. The
1236 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001237 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001238 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1239 if (hw_rf_kill)
1240 set_bit(STATUS_RF_KILL_HW, &priv->status);
1241 else
1242 clear_bit(STATUS_RF_KILL_HW, &priv->status);
1243 queue_work(priv->workqueue, &priv->rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001244 }
Zhu Yib481de92007-09-25 17:54:57 -07001245
1246 handled |= CSR_INT_BIT_RF_KILL;
1247 }
1248
Ben Cahill9fbab512007-11-29 11:09:47 +08001249 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001250 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001251 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001252 handled |= CSR_INT_BIT_CT_KILL;
1253 }
1254
1255 /* Error detected by uCode */
1256 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001257 IWL_ERR(priv, "Microcode SW error detected. "
1258 " Restarting 0x%X.\n", inta);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001259 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001260 handled |= CSR_INT_BIT_SW_ERR;
1261 }
1262
1263 /* uCode wakes up after power-down sleep */
1264 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001265 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001266 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Tomas Winklerbabcebf2008-05-15 13:54:00 +08001267 iwl_txq_update_write_ptr(priv, &priv->txq[0]);
1268 iwl_txq_update_write_ptr(priv, &priv->txq[1]);
1269 iwl_txq_update_write_ptr(priv, &priv->txq[2]);
1270 iwl_txq_update_write_ptr(priv, &priv->txq[3]);
1271 iwl_txq_update_write_ptr(priv, &priv->txq[4]);
1272 iwl_txq_update_write_ptr(priv, &priv->txq[5]);
Zhu Yib481de92007-09-25 17:54:57 -07001273
1274 handled |= CSR_INT_BIT_WAKEUP;
1275 }
1276
1277 /* All uCode command responses, including Tx command responses,
1278 * Rx "responses" (frame-received notification), and other
1279 * notifications from uCode come through here*/
1280 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001281 iwl_rx_handle(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001282 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1283 }
1284
1285 if (inta & CSR_INT_BIT_FH_TX) {
Tomas Winklere1623442009-01-27 14:27:56 -08001286 IWL_DEBUG_ISR(priv, "Tx interrupt\n");
Zhu Yib481de92007-09-25 17:54:57 -07001287 handled |= CSR_INT_BIT_FH_TX;
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001288 /* FH finished to write, send event */
1289 priv->ucode_write_complete = 1;
1290 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001291 }
1292
1293 if (inta & ~handled)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001294 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Zhu Yib481de92007-09-25 17:54:57 -07001295
1296 if (inta & ~CSR_INI_SET_MASK) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001297 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Zhu Yib481de92007-09-25 17:54:57 -07001298 inta & ~CSR_INI_SET_MASK);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001299 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001300 }
1301
1302 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001303 /* only Re-enable if diabled by irq */
1304 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001305 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001306
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001307#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08001308 if (priv->debug_level & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001309 inta = iwl_read32(priv, CSR_INT);
1310 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1311 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001312 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001313 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1314 }
1315#endif
1316 spin_unlock_irqrestore(&priv->lock, flags);
1317}
1318
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001319static irqreturn_t iwl_isr(int irq, void *data)
Zhu Yib481de92007-09-25 17:54:57 -07001320{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001321 struct iwl_priv *priv = data;
Zhu Yib481de92007-09-25 17:54:57 -07001322 u32 inta, inta_mask;
1323 u32 inta_fh;
1324 if (!priv)
1325 return IRQ_NONE;
1326
1327 spin_lock(&priv->lock);
1328
1329 /* Disable (but don't clear!) interrupts here to avoid
1330 * back-to-back ISRs and sporadic interrupts from our NIC.
1331 * If we have something to service, the tasklet will re-enable ints.
1332 * If we *don't* have something, we'll re-enable before leaving here. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001333 inta_mask = iwl_read32(priv, CSR_INT_MASK); /* just for debug */
1334 iwl_write32(priv, CSR_INT_MASK, 0x00000000);
Zhu Yib481de92007-09-25 17:54:57 -07001335
1336 /* Discover which interrupts are active/pending */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001337 inta = iwl_read32(priv, CSR_INT);
1338 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Zhu Yib481de92007-09-25 17:54:57 -07001339
1340 /* Ignore interrupt if there's nothing in NIC to service.
1341 * This may be due to IRQ shared with another device,
1342 * or due to sporadic interrupts thrown from our NIC. */
1343 if (!inta && !inta_fh) {
Tomas Winklere1623442009-01-27 14:27:56 -08001344 IWL_DEBUG_ISR(priv, "Ignore interrupt, inta == 0, inta_fh == 0\n");
Zhu Yib481de92007-09-25 17:54:57 -07001345 goto none;
1346 }
1347
1348 if ((inta == 0xFFFFFFFF) || ((inta & 0xFFFFFFF0) == 0xa5a5a5a0)) {
Oliver Neukum66fbb542007-11-15 09:31:10 +08001349 /* Hardware disappeared. It might have already raised
1350 * an interrupt */
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001351 IWL_WARN(priv, "HARDWARE GONE?? INTA == 0x%08x\n", inta);
Oliver Neukum66fbb542007-11-15 09:31:10 +08001352 goto unplugged;
Zhu Yib481de92007-09-25 17:54:57 -07001353 }
1354
Tomas Winklere1623442009-01-27 14:27:56 -08001355 IWL_DEBUG_ISR(priv, "ISR inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001356 inta, inta_mask, inta_fh);
1357
Joonwoo Park25c03d82008-01-23 10:15:20 -08001358 inta &= ~CSR_INT_BIT_SCD;
1359
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001360 /* iwl_irq_tasklet() will service interrupts and re-enable them */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001361 if (likely(inta || inta_fh))
1362 tasklet_schedule(&priv->irq_tasklet);
Zhu Yib481de92007-09-25 17:54:57 -07001363
Oliver Neukum66fbb542007-11-15 09:31:10 +08001364 unplugged:
1365 spin_unlock(&priv->lock);
Zhu Yib481de92007-09-25 17:54:57 -07001366 return IRQ_HANDLED;
1367
1368 none:
1369 /* re-enable interrupts here since we don't have anything to service. */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001370 /* only Re-enable if diabled by irq */
1371 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001372 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001373 spin_unlock(&priv->lock);
1374 return IRQ_NONE;
1375}
1376
Zhu Yib481de92007-09-25 17:54:57 -07001377/******************************************************************************
1378 *
1379 * uCode download functions
1380 *
1381 ******************************************************************************/
1382
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001383static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001384{
Tomas Winkler98c92212008-01-14 17:46:20 -08001385 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1386 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1387 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1388 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1389 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1390 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001391}
1392
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001393static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001394{
1395 /* Remove all resets to allow NIC to operate */
1396 iwl_write32(priv, CSR_RESET, 0);
1397}
1398
1399
Zhu Yib481de92007-09-25 17:54:57 -07001400/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001401 * iwl_read_ucode - Read uCode images from disk file.
Zhu Yib481de92007-09-25 17:54:57 -07001402 *
1403 * Copy into buffers for card to fetch via bus-mastering
1404 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001405static int iwl_read_ucode(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001406{
Ron Rindjunsky14b3d332008-06-13 15:44:54 +08001407 struct iwl_ucode *ucode;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001408 int ret = -EINVAL, index;
Zhu Yib481de92007-09-25 17:54:57 -07001409 const struct firmware *ucode_raw;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001410 const char *name_pre = priv->cfg->fw_name_pre;
1411 const unsigned int api_max = priv->cfg->ucode_api_max;
1412 const unsigned int api_min = priv->cfg->ucode_api_min;
1413 char buf[25];
Zhu Yib481de92007-09-25 17:54:57 -07001414 u8 *src;
1415 size_t len;
Reinette Chatrea0987a82008-12-02 12:14:06 -08001416 u32 api_ver, inst_size, data_size, init_size, init_data_size, boot_size;
Zhu Yib481de92007-09-25 17:54:57 -07001417
1418 /* Ask kernel firmware_class module to get the boot firmware off disk.
1419 * request_firmware() is synchronous, file is in memory on return. */
Reinette Chatrea0987a82008-12-02 12:14:06 -08001420 for (index = api_max; index >= api_min; index--) {
1421 sprintf(buf, "%s%d%s", name_pre, index, ".ucode");
1422 ret = request_firmware(&ucode_raw, buf, &priv->pci_dev->dev);
1423 if (ret < 0) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001424 IWL_ERR(priv, "%s firmware file req failed: %d\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001425 buf, ret);
1426 if (ret == -ENOENT)
1427 continue;
1428 else
1429 goto error;
1430 } else {
1431 if (index < api_max)
Winkler, Tomas15b16872008-12-19 10:37:33 +08001432 IWL_ERR(priv, "Loaded firmware %s, "
1433 "which is deprecated. "
1434 "Please use API v%u instead.\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001435 buf, api_max);
Winkler, Tomas15b16872008-12-19 10:37:33 +08001436
Tomas Winklere1623442009-01-27 14:27:56 -08001437 IWL_DEBUG_INFO(priv, "Got firmware '%s' file (%zd bytes) from disk\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001438 buf, ucode_raw->size);
1439 break;
1440 }
Zhu Yib481de92007-09-25 17:54:57 -07001441 }
1442
Reinette Chatrea0987a82008-12-02 12:14:06 -08001443 if (ret < 0)
1444 goto error;
Zhu Yib481de92007-09-25 17:54:57 -07001445
1446 /* Make sure that we got at least our header! */
1447 if (ucode_raw->size < sizeof(*ucode)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001448 IWL_ERR(priv, "File size way too small!\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001449 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001450 goto err_release;
1451 }
1452
1453 /* Data from ucode file: header followed by uCode images */
1454 ucode = (void *)ucode_raw->data;
1455
Chatre, Reinettec02b3ac2008-12-02 12:14:05 -08001456 priv->ucode_ver = le32_to_cpu(ucode->ver);
Reinette Chatrea0987a82008-12-02 12:14:06 -08001457 api_ver = IWL_UCODE_API(priv->ucode_ver);
Zhu Yib481de92007-09-25 17:54:57 -07001458 inst_size = le32_to_cpu(ucode->inst_size);
1459 data_size = le32_to_cpu(ucode->data_size);
1460 init_size = le32_to_cpu(ucode->init_size);
1461 init_data_size = le32_to_cpu(ucode->init_data_size);
1462 boot_size = le32_to_cpu(ucode->boot_size);
1463
Reinette Chatrea0987a82008-12-02 12:14:06 -08001464 /* api_ver should match the api version forming part of the
1465 * firmware filename ... but we don't check for that and only rely
1466 * on the API version read from firware header from here on forward */
1467
1468 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001469 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001470 "Driver supports v%u, firmware is v%u.\n",
1471 api_max, api_ver);
1472 priv->ucode_ver = 0;
1473 ret = -EINVAL;
1474 goto err_release;
1475 }
1476 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08001477 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08001478 "got v%u. New firmware can be obtained "
1479 "from http://www.intellinuxwireless.org.\n",
1480 api_max, api_ver);
1481
Tomas Winkler978785a2008-12-19 10:37:31 +08001482 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u\n",
1483 IWL_UCODE_MAJOR(priv->ucode_ver),
1484 IWL_UCODE_MINOR(priv->ucode_ver),
1485 IWL_UCODE_API(priv->ucode_ver),
1486 IWL_UCODE_SERIAL(priv->ucode_ver));
Reinette Chatrea0987a82008-12-02 12:14:06 -08001487
Tomas Winklere1623442009-01-27 14:27:56 -08001488 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001489 priv->ucode_ver);
Tomas Winklere1623442009-01-27 14:27:56 -08001490 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001491 inst_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001492 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001493 data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001494 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001495 init_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001496 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001497 init_data_size);
Tomas Winklere1623442009-01-27 14:27:56 -08001498 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %u\n",
Zhu Yib481de92007-09-25 17:54:57 -07001499 boot_size);
1500
1501 /* Verify size of file vs. image size info in file's header */
1502 if (ucode_raw->size < sizeof(*ucode) +
1503 inst_size + data_size + init_size +
1504 init_data_size + boot_size) {
1505
Tomas Winklere1623442009-01-27 14:27:56 -08001506 IWL_DEBUG_INFO(priv, "uCode file size %d too small\n",
Zhu Yib481de92007-09-25 17:54:57 -07001507 (int)ucode_raw->size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001508 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001509 goto err_release;
1510 }
1511
1512 /* Verify that uCode images will fit in card's SRAM */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001513 if (inst_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001514 IWL_DEBUG_INFO(priv, "uCode instr len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001515 inst_size);
1516 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001517 goto err_release;
1518 }
1519
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001520 if (data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001521 IWL_DEBUG_INFO(priv, "uCode data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001522 data_size);
1523 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001524 goto err_release;
1525 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001526 if (init_size > priv->hw_params.max_inst_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001527 IWL_INFO(priv, "uCode init instr len %d too large to fit in\n",
1528 init_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001529 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001530 goto err_release;
1531 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001532 if (init_data_size > priv->hw_params.max_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001533 IWL_INFO(priv, "uCode init data len %d too large to fit in\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001534 init_data_size);
1535 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001536 goto err_release;
1537 }
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001538 if (boot_size > priv->hw_params.max_bsm_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08001539 IWL_INFO(priv, "uCode boot instr len %d too large to fit in\n",
1540 boot_size);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001541 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07001542 goto err_release;
1543 }
1544
1545 /* Allocate ucode buffers for card's bus-master loading ... */
1546
1547 /* Runtime instructions and 2 copies of data:
1548 * 1) unmodified from disk
1549 * 2) backup cache for save/restore during power-downs */
1550 priv->ucode_code.len = inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001551 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07001552
1553 priv->ucode_data.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001554 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07001555
1556 priv->ucode_data_backup.len = data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001557 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07001558
Zhu, Yi1f304e42009-01-23 13:45:22 -08001559 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
1560 !priv->ucode_data_backup.v_addr)
1561 goto err_pci_alloc;
1562
Zhu Yib481de92007-09-25 17:54:57 -07001563 /* Initialization instructions and data */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001564 if (init_size && init_data_size) {
1565 priv->ucode_init.len = init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001566 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07001567
Tomas Winkler90e759d2007-11-29 11:09:41 +08001568 priv->ucode_init_data.len = init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001569 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08001570
1571 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
1572 goto err_pci_alloc;
1573 }
Zhu Yib481de92007-09-25 17:54:57 -07001574
1575 /* Bootstrap (instructions only, no data) */
Tomas Winkler90e759d2007-11-29 11:09:41 +08001576 if (boot_size) {
1577 priv->ucode_boot.len = boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08001578 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001579
Tomas Winkler90e759d2007-11-29 11:09:41 +08001580 if (!priv->ucode_boot.v_addr)
1581 goto err_pci_alloc;
1582 }
Zhu Yib481de92007-09-25 17:54:57 -07001583
1584 /* Copy images into buffers for card's bus-master reads ... */
1585
1586 /* Runtime instructions (first block of data in file) */
1587 src = &ucode->data[0];
1588 len = priv->ucode_code.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001589 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001590 memcpy(priv->ucode_code.v_addr, src, len);
Tomas Winklere1623442009-01-27 14:27:56 -08001591 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001592 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
1593
1594 /* Runtime data (2nd block)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001595 * NOTE: Copy into backup buffer will be done in iwl_up() */
Zhu Yib481de92007-09-25 17:54:57 -07001596 src = &ucode->data[inst_size];
1597 len = priv->ucode_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001598 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001599 memcpy(priv->ucode_data.v_addr, src, len);
1600 memcpy(priv->ucode_data_backup.v_addr, src, len);
1601
1602 /* Initialization instructions (3rd block) */
1603 if (init_size) {
1604 src = &ucode->data[inst_size + data_size];
1605 len = priv->ucode_init.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001606 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001607 len);
Zhu Yib481de92007-09-25 17:54:57 -07001608 memcpy(priv->ucode_init.v_addr, src, len);
1609 }
1610
1611 /* Initialization data (4th block) */
1612 if (init_data_size) {
1613 src = &ucode->data[inst_size + data_size + init_size];
1614 len = priv->ucode_init_data.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001615 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Tomas Winkler90e759d2007-11-29 11:09:41 +08001616 len);
Zhu Yib481de92007-09-25 17:54:57 -07001617 memcpy(priv->ucode_init_data.v_addr, src, len);
1618 }
1619
1620 /* Bootstrap instructions (5th block) */
1621 src = &ucode->data[inst_size + data_size + init_size + init_data_size];
1622 len = priv->ucode_boot.len;
Tomas Winklere1623442009-01-27 14:27:56 -08001623 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07001624 memcpy(priv->ucode_boot.v_addr, src, len);
1625
1626 /* We have our copies now, allow OS release its copies */
1627 release_firmware(ucode_raw);
1628 return 0;
1629
1630 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08001631 IWL_ERR(priv, "failed to allocate pci memory\n");
Tomas Winkler90e759d2007-11-29 11:09:41 +08001632 ret = -ENOMEM;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001633 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001634
1635 err_release:
1636 release_firmware(ucode_raw);
1637
1638 error:
Tomas Winkler90e759d2007-11-29 11:09:41 +08001639 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001640}
1641
Mohamed Abbasada17512008-11-07 09:58:34 -08001642/* temporary */
1643static int iwl_mac_beacon_update(struct ieee80211_hw *hw,
1644 struct sk_buff *skb);
1645
Zhu Yib481de92007-09-25 17:54:57 -07001646/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001647 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07001648 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001649 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07001650 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001651static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001652{
Tomas Winkler57aab752008-04-14 21:16:03 -07001653 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001654
Tomas Winklere1623442009-01-27 14:27:56 -08001655 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001656
1657 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
1658 /* We had an error bringing up the hardware, so take it
1659 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001660 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001661 goto restart;
1662 }
1663
1664 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
1665 * This is a paranoid check, because we would not have gotten the
1666 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07001667 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001668 /* Runtime instruction load was bad;
1669 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08001670 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001671 goto restart;
1672 }
1673
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001674 iwl_clear_stations_table(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001675 ret = priv->cfg->ops->lib->alive_notify(priv);
1676 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001677 IWL_WARN(priv,
1678 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07001679 goto restart;
1680 }
1681
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001682 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001683 set_bit(STATUS_ALIVE, &priv->status);
1684
Tomas Winklerfee12472008-04-03 16:05:21 -07001685 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07001686 return;
1687
Johannes Berg36d68252008-05-15 12:55:26 +02001688 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07001689
1690 priv->active_rate = priv->rates_mask;
1691 priv->active_rate_basic = priv->rates_mask & IWL_BASIC_RATES_MASK;
1692
Tomas Winkler3109ece2008-03-28 16:33:35 -07001693 if (iwl_is_associated(priv)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001694 struct iwl_rxon_cmd *active_rxon =
1695 (struct iwl_rxon_cmd *)&priv->active_rxon;
Zhu Yib481de92007-09-25 17:54:57 -07001696
1697 memcpy(&priv->staging_rxon, &priv->active_rxon,
1698 sizeof(priv->staging_rxon));
1699 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
1700 } else {
1701 /* Initialize our rx_config data */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001702 iwl_connection_init_rx_config(priv, priv->iw_mode);
Samuel Ortiz8ccde882009-01-27 14:27:52 -08001703 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001704 memcpy(priv->staging_rxon.node_addr, priv->mac_addr, ETH_ALEN);
1705 }
1706
Ben Cahill9fbab512007-11-29 11:09:47 +08001707 /* Configure Bluetooth device coexistence support */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001708 iwl_send_bt_config(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001709
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001710 iwl_reset_run_time_calib(priv);
1711
Zhu Yib481de92007-09-25 17:54:57 -07001712 /* Configure the adapter for unassociated operation */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001713 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001714
1715 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08001716 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001717
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07001718 iwl_leds_register(priv);
1719
Tomas Winklere1623442009-01-27 14:27:56 -08001720 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07001721 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08001722 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001723
1724 if (priv->error_recovering)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001725 iwl_error_recovery(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001726
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08001727 iwl_power_update_mode(priv, 1);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001728
Mohamed Abbasada17512008-11-07 09:58:34 -08001729 /* reassociate for ADHOC mode */
1730 if (priv->vif && (priv->iw_mode == NL80211_IFTYPE_ADHOC)) {
1731 struct sk_buff *beacon = ieee80211_beacon_get(priv->hw,
1732 priv->vif);
1733 if (beacon)
1734 iwl_mac_beacon_update(priv->hw, beacon);
1735 }
1736
1737
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001738 if (test_and_clear_bit(STATUS_MODE_PENDING, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001739 iwl_set_mode(priv, priv->iw_mode);
Assaf Kraussc46fbef2008-06-12 09:47:05 +08001740
Zhu Yib481de92007-09-25 17:54:57 -07001741 return;
1742
1743 restart:
1744 queue_work(priv->workqueue, &priv->restart);
1745}
1746
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001747static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07001748
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001749static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001750{
1751 unsigned long flags;
1752 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001753
Tomas Winklere1623442009-01-27 14:27:56 -08001754 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07001755
Zhu Yib481de92007-09-25 17:54:57 -07001756 if (!exit_pending)
1757 set_bit(STATUS_EXIT_PENDING, &priv->status);
1758
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001759 iwl_leds_unregister(priv);
1760
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001761 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001762
1763 /* Unblock any waiting calls */
1764 wake_up_interruptible_all(&priv->wait_command_queue);
1765
Zhu Yib481de92007-09-25 17:54:57 -07001766 /* Wipe out the EXIT_PENDING status bit if we are not actually
1767 * exiting the module */
1768 if (!exit_pending)
1769 clear_bit(STATUS_EXIT_PENDING, &priv->status);
1770
1771 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001772 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07001773
1774 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001775 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001776 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001777 spin_unlock_irqrestore(&priv->lock, flags);
1778 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001779
1780 if (priv->mac80211_registered)
1781 ieee80211_stop_queues(priv->hw);
1782
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001783 /* If we have not previously called iwl_init() then
Zhu Yib481de92007-09-25 17:54:57 -07001784 * clear all bits but the RF Kill and SUSPEND bits and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07001785 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07001786 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1787 STATUS_RF_KILL_HW |
1788 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1789 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001790 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1791 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001792 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001793 STATUS_IN_SUSPEND |
1794 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1795 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001796 goto exit;
1797 }
1798
1799 /* ...otherwise clear out all the status bits but the RF Kill and
1800 * SUSPEND bits and continue taking the NIC down. */
1801 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
1802 STATUS_RF_KILL_HW |
1803 test_bit(STATUS_RF_KILL_SW, &priv->status) <<
1804 STATUS_RF_KILL_SW |
Reinette Chatre97888642008-02-06 11:20:38 -08001805 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
1806 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07001807 test_bit(STATUS_IN_SUSPEND, &priv->status) <<
1808 STATUS_IN_SUSPEND |
1809 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08001810 STATUS_FW_ERROR |
1811 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
1812 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07001813
1814 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001815 iwl_clear_bit(priv, CSR_GP_CNTRL,
Ben Cahill9fbab512007-11-29 11:09:47 +08001816 CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Zhu Yib481de92007-09-25 17:54:57 -07001817 spin_unlock_irqrestore(&priv->lock, flags);
1818
Tomas Winklerda1bc452008-05-29 16:35:00 +08001819 iwl_txq_ctx_stop(priv);
Tomas Winklerb3bbacb2008-05-29 16:35:01 +08001820 iwl_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001821
1822 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001823 if (!iwl_grab_nic_access(priv)) {
1824 iwl_write_prph(priv, APMG_CLK_DIS_REG,
Zhu Yib481de92007-09-25 17:54:57 -07001825 APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001826 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001827 }
1828 spin_unlock_irqrestore(&priv->lock, flags);
1829
1830 udelay(5);
1831
Tomas Winkler7f066102008-05-29 16:34:57 +08001832 /* FIXME: apm_ops.suspend(priv) */
Gregory Greenmand5353112008-09-03 11:18:49 +08001833 if (exit_pending || test_bit(STATUS_IN_SUSPEND, &priv->status))
1834 priv->cfg->ops->lib->apm_ops.stop(priv);
1835 else
1836 priv->cfg->ops->lib->apm_ops.reset(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001837 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08001838 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07001839
1840 if (priv->ibss_beacon)
1841 dev_kfree_skb(priv->ibss_beacon);
1842 priv->ibss_beacon = NULL;
1843
1844 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08001845 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001846}
1847
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001848static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001849{
1850 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001851 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001852 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08001853
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08001854 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001855}
1856
1857#define MAX_HW_RESTARTS 5
1858
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001859static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001860{
Tomas Winkler57aab752008-04-14 21:16:03 -07001861 int i;
1862 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001863
1864 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001865 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001866 return -EIO;
1867 }
1868
Reinette Chatree903fbd2008-01-30 22:05:15 -08001869 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001870 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08001871 return -EIO;
1872 }
1873
Zhu Yie655b9f2008-01-24 02:19:38 -08001874 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08001875 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08001876 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001877 else
Zhu Yie655b9f2008-01-24 02:19:38 -08001878 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001879
Tomas Winklerc1842d62008-08-04 16:00:43 +08001880 if (iwl_is_rfkill(priv)) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001881 iwl_enable_interrupts(priv);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001882 IWL_WARN(priv, "Radio disabled by %s RF Kill switch\n",
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08001883 test_bit(STATUS_RF_KILL_HW, &priv->status) ? "HW" : "SW");
Tomas Winklerc1842d62008-08-04 16:00:43 +08001884 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001885 }
1886
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001887 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07001888
Ron Rindjunsky1053d352008-05-05 10:22:43 +08001889 ret = iwl_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07001890 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001891 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07001892 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001893 }
1894
1895 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001896 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1897 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07001898 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
1899
1900 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001901 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001902 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001903
1904 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001905 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
1906 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07001907
1908 /* Copy original ucode data image from disk into backup cache.
1909 * This will be used to initialize the on-board processor's
1910 * data SRAM for a clean start when the runtime program first loads. */
1911 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08001912 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07001913
Zhu Yib481de92007-09-25 17:54:57 -07001914 for (i = 0; i < MAX_HW_RESTARTS; i++) {
1915
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08001916 iwl_clear_stations_table(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001917
1918 /* load bootstrap state machine,
1919 * load bootstrap program into processor's memory,
1920 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07001921 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001922
Tomas Winkler57aab752008-04-14 21:16:03 -07001923 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001924 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
1925 ret);
Zhu Yib481de92007-09-25 17:54:57 -07001926 continue;
1927 }
1928
Emmanuel Grumbachf3d5b452008-06-12 09:47:04 +08001929 /* Clear out the uCode error bit if it is set */
1930 clear_bit(STATUS_FW_ERROR, &priv->status);
1931
Zhu Yib481de92007-09-25 17:54:57 -07001932 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001933 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001934
Tomas Winklere1623442009-01-27 14:27:56 -08001935 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07001936
1937 return 0;
1938 }
1939
1940 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001941 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08001942 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07001943
1944 /* tried to restart and config the device for as long as our
1945 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08001946 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07001947 return -EIO;
1948}
1949
1950
1951/*****************************************************************************
1952 *
1953 * Workqueue callbacks
1954 *
1955 *****************************************************************************/
1956
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001957static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001958{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001959 struct iwl_priv *priv =
1960 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001961
1962 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1963 return;
1964
1965 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08001966 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001967 mutex_unlock(&priv->mutex);
1968}
1969
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001970static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07001971{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001972 struct iwl_priv *priv =
1973 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07001974
1975 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
1976 return;
1977
1978 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08001979 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001980 mutex_unlock(&priv->mutex);
1981}
1982
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08001983static void iwl_bg_run_time_calib_work(struct work_struct *work)
1984{
1985 struct iwl_priv *priv = container_of(work, struct iwl_priv,
1986 run_time_calib_work);
1987
1988 mutex_lock(&priv->mutex);
1989
1990 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
1991 test_bit(STATUS_SCANNING, &priv->status)) {
1992 mutex_unlock(&priv->mutex);
1993 return;
1994 }
1995
1996 if (priv->start_calib) {
1997 iwl_chain_noise_calibration(priv, &priv->statistics);
1998
1999 iwl_sensitivity_calibration(priv, &priv->statistics);
2000 }
2001
2002 mutex_unlock(&priv->mutex);
2003 return;
2004}
2005
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002006static void iwl_bg_up(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002007{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002008 struct iwl_priv *priv = container_of(data, struct iwl_priv, up);
Zhu Yib481de92007-09-25 17:54:57 -07002009
2010 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2011 return;
2012
2013 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002014 __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002015 mutex_unlock(&priv->mutex);
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002016 iwl_rfkill_set_hw_state(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002017}
2018
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002019static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002020{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002021 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07002022
2023 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2024 return;
2025
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002026 iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002027 queue_work(priv->workqueue, &priv->up);
2028}
2029
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002030static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07002031{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002032 struct iwl_priv *priv =
2033 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07002034
2035 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2036 return;
2037
2038 mutex_lock(&priv->mutex);
Tomas Winklera55360e2008-05-05 10:22:28 +08002039 iwl_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002040 mutex_unlock(&priv->mutex);
2041}
2042
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002043#define IWL_DELAY_NEXT_SCAN (HZ*2)
2044
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002045static void iwl_post_associate(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002046{
Zhu Yib481de92007-09-25 17:54:57 -07002047 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07002048 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002049 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002050
Johannes Berg05c914f2008-09-11 00:01:58 +02002051 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002052 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07002053 return;
2054 }
2055
Tomas Winklere1623442009-01-27 14:27:56 -08002056 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002057 priv->assoc_id, priv->active_rxon.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -07002058
2059
2060 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
2061 return;
2062
Zhu Yib481de92007-09-25 17:54:57 -07002063
Reinette Chatre508e32e2008-04-14 21:16:13 -07002064 if (!priv->vif || !priv->is_open)
Mohamed Abbas948c1712007-10-25 17:15:45 +08002065 return;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002066
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002067 iwl_power_cancel_timeout(priv);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002068 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08002069
Zhu Yib481de92007-09-25 17:54:57 -07002070 conf = ieee80211_get_hw_conf(priv->hw);
2071
2072 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002073 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002074
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002075 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002076 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002077 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002078 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002079 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002080 "Attempting to continue.\n");
2081
2082 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
2083
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08002084 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03002085
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002086 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002087 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2088
Tomas Winklere1623442009-01-27 14:27:56 -08002089 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07002090 priv->assoc_id, priv->beacon_int);
2091
2092 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2093 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2094 else
2095 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2096
2097 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2098 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_SLOT_TIME)
2099 priv->staging_rxon.flags |= RXON_FLG_SHORT_SLOT_MSK;
2100 else
2101 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2102
Johannes Berg05c914f2008-09-11 00:01:58 +02002103 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002104 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
2105
2106 }
2107
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002108 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002109
2110 switch (priv->iw_mode) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002111 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07002112 break;
2113
Johannes Berg05c914f2008-09-11 00:01:58 +02002114 case NL80211_IFTYPE_ADHOC:
Zhu Yib481de92007-09-25 17:54:57 -07002115
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002116 /* assume default assoc id */
2117 priv->assoc_id = 1;
Zhu Yib481de92007-09-25 17:54:57 -07002118
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002119 iwl_rxon_add_station(priv, priv->bssid, 0);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002120 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002121
2122 break;
2123
2124 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002125 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002126 __func__, priv->iw_mode);
Zhu Yib481de92007-09-25 17:54:57 -07002127 break;
2128 }
2129
Johannes Berg05c914f2008-09-11 00:01:58 +02002130 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002131 priv->assoc_station_added = 1;
2132
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002133 spin_lock_irqsave(&priv->lock, flags);
2134 iwl_activate_qos(priv, 0);
2135 spin_unlock_irqrestore(&priv->lock, flags);
Ron Rindjunsky292ae172008-02-06 11:20:39 -08002136
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08002137 /* the chain noise calibration will enabled PM upon completion
2138 * If chain noise has already been run, then we need to enable
2139 * power management here */
2140 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
2141 iwl_power_enable_management(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002142
2143 /* Enable Rx differential gain and sensitivity calibrations */
2144 iwl_chain_noise_reset(priv);
2145 priv->start_calib = 1;
2146
Reinette Chatre508e32e2008-04-14 21:16:13 -07002147}
2148
Zhu Yib481de92007-09-25 17:54:57 -07002149/*****************************************************************************
2150 *
2151 * mac80211 entry point functions
2152 *
2153 *****************************************************************************/
2154
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002155#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08002156
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002157static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002158{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002159 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002160 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002161
Tomas Winklere1623442009-01-27 14:27:56 -08002162 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002163
2164 /* we should be verifying the device is ready to be opened */
2165 mutex_lock(&priv->mutex);
2166
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002167 memset(&priv->staging_rxon, 0, sizeof(struct iwl_rxon_cmd));
Zhu Yi5a66926a2008-01-14 17:46:18 -08002168 /* fetch ucode file from disk, alloc and copy to bus-master buffers ...
2169 * ucode filename and max sizes are card-specific. */
2170
2171 if (!priv->ucode_code.len) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002172 ret = iwl_read_ucode(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002173 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002174 IWL_ERR(priv, "Could not read microcode: %d\n", ret);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002175 mutex_unlock(&priv->mutex);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002176 return ret;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002177 }
2178 }
2179
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002180 ret = __iwl_up(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002181
Zhu Yib481de92007-09-25 17:54:57 -07002182 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002183
Adel Gadllah80fcc9e2008-07-01 17:49:50 +02002184 iwl_rfkill_set_hw_state(priv);
2185
Zhu Yie655b9f2008-01-24 02:19:38 -08002186 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002187 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08002188
Tomas Winklerc1842d62008-08-04 16:00:43 +08002189 if (iwl_is_rfkill(priv))
2190 goto out;
2191
Tomas Winklere1623442009-01-27 14:27:56 -08002192 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002193
2194 if (test_bit(STATUS_IN_SUSPEND, &priv->status))
2195 return 0;
2196
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002197 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08002198 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002199 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
2200 test_bit(STATUS_READY, &priv->status),
2201 UCODE_READY_TIMEOUT);
2202 if (!ret) {
2203 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002204 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08002205 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002206 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002207 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08002208 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002209
Tomas Winklerc1842d62008-08-04 16:00:43 +08002210out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08002211 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08002212 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002213 return 0;
2214}
2215
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002216static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002217{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002218 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002219
Tomas Winklere1623442009-01-27 14:27:56 -08002220 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08002221
Zhu Yie655b9f2008-01-24 02:19:38 -08002222 if (!priv->is_open) {
Tomas Winklere1623442009-01-27 14:27:56 -08002223 IWL_DEBUG_MAC80211(priv, "leave - skip\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08002224 return;
2225 }
2226
Zhu Yib481de92007-09-25 17:54:57 -07002227 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08002228
Tomas Winklerfee12472008-04-03 16:05:21 -07002229 if (iwl_is_ready_rf(priv)) {
Zhu Yie655b9f2008-01-24 02:19:38 -08002230 /* stop mac, cancel any scan request and clear
2231 * RXON_FILTER_ASSOC_MSK BIT
2232 */
Zhu Yi5a66926a2008-01-14 17:46:18 -08002233 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002234 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002235 mutex_unlock(&priv->mutex);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002236 }
2237
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002238 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002239
2240 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01002241
2242 /* enable interrupts again in order to receive rfkill changes */
2243 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
2244 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002245
Tomas Winklere1623442009-01-27 14:27:56 -08002246 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002247}
2248
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002249static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07002250{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002251 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002252
Tomas Winklere1623442009-01-27 14:27:56 -08002253 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002254
Tomas Winklere1623442009-01-27 14:27:56 -08002255 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02002256 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07002257
Johannes Berge039fa42008-05-15 12:55:29 +02002258 if (iwl_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07002259 dev_kfree_skb_any(skb);
2260
Tomas Winklere1623442009-01-27 14:27:56 -08002261 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08002262 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07002263}
2264
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002265static int iwl_mac_add_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002266 struct ieee80211_if_init_conf *conf)
2267{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002268 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002269 unsigned long flags;
2270
Tomas Winklere1623442009-01-27 14:27:56 -08002271 IWL_DEBUG_MAC80211(priv, "enter: type %d\n", conf->type);
Zhu Yib481de92007-09-25 17:54:57 -07002272
Johannes Berg32bfd352007-12-19 01:31:26 +01002273 if (priv->vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002274 IWL_DEBUG_MAC80211(priv, "leave - vif != NULL\n");
Reinette Chatre75849d22008-01-23 10:15:17 -08002275 return -EOPNOTSUPP;
Zhu Yib481de92007-09-25 17:54:57 -07002276 }
2277
2278 spin_lock_irqsave(&priv->lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +01002279 priv->vif = conf->vif;
Zhu, Yi60294de2008-10-29 14:05:45 -07002280 priv->iw_mode = conf->type;
Zhu Yib481de92007-09-25 17:54:57 -07002281
2282 spin_unlock_irqrestore(&priv->lock, flags);
2283
2284 mutex_lock(&priv->mutex);
Tomas Winkler864792e2007-11-27 21:00:52 +02002285
2286 if (conf->mac_addr) {
Tomas Winklere1623442009-01-27 14:27:56 -08002287 IWL_DEBUG_MAC80211(priv, "Set %pM\n", conf->mac_addr);
Tomas Winkler864792e2007-11-27 21:00:52 +02002288 memcpy(priv->mac_addr, conf->mac_addr, ETH_ALEN);
2289 }
Zhu Yib481de92007-09-25 17:54:57 -07002290
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002291 if (iwl_set_mode(priv, conf->type) == -EAGAIN)
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002292 /* we are not ready, will run again when ready */
2293 set_bit(STATUS_MODE_PENDING, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002294
Zhu Yib481de92007-09-25 17:54:57 -07002295 mutex_unlock(&priv->mutex);
2296
Tomas Winklere1623442009-01-27 14:27:56 -08002297 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002298 return 0;
2299}
2300
2301/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002302 * iwl_mac_config - mac80211 config callback
Zhu Yib481de92007-09-25 17:54:57 -07002303 *
2304 * We ignore conf->flags & IEEE80211_CONF_SHORT_SLOT_TIME since it seems to
2305 * be set inappropriately and the driver currently sets the hardware up to
2306 * use it whenever needed.
2307 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002308static int iwl_mac_config(struct ieee80211_hw *hw, u32 changed)
Zhu Yib481de92007-09-25 17:54:57 -07002309{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002310 struct iwl_priv *priv = hw->priv;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07002311 const struct iwl_channel_info *ch_info;
Johannes Berge8975582008-10-09 12:18:51 +02002312 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07002313 unsigned long flags;
Zhu Yi76bb77e2007-11-22 10:53:22 +08002314 int ret = 0;
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002315 u16 channel;
Zhu Yib481de92007-09-25 17:54:57 -07002316
2317 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002318 IWL_DEBUG_MAC80211(priv, "enter to channel %d\n", conf->channel->hw_value);
Zhu Yib481de92007-09-25 17:54:57 -07002319
Luis R. Rodriguezde27e642008-12-23 15:58:44 -08002320 priv->current_ht_config.is_ht = conf_is_ht(conf);
Johannes Bergae5eb022008-10-14 16:58:37 +02002321
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002322 if (conf->radio_enabled && iwl_radio_kill_sw_enable_radio(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002323 IWL_DEBUG_MAC80211(priv, "leave - RF-KILL - waiting for uCode\n");
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002324 goto out;
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08002325 }
2326
Emmanuel Grumbach14a08a72008-06-13 15:44:55 +08002327 if (!conf->radio_enabled)
2328 iwl_radio_kill_sw_disable_radio(priv);
2329
Tomas Winklerfee12472008-04-03 16:05:21 -07002330 if (!iwl_is_ready(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002331 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002332 ret = -EIO;
2333 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002334 }
2335
Assaf Krauss1ea87392008-03-18 14:57:50 -07002336 if (unlikely(!priv->cfg->mod_params->disable_hw_scan &&
Zhu Yib481de92007-09-25 17:54:57 -07002337 test_bit(STATUS_SCANNING, &priv->status))) {
Tomas Winklere1623442009-01-27 14:27:56 -08002338 IWL_DEBUG_MAC80211(priv, "leave - scanning\n");
Zhu Yib481de92007-09-25 17:54:57 -07002339 mutex_unlock(&priv->mutex);
Zhu Yia0646472007-12-20 14:10:01 +08002340 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07002341 }
2342
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002343 channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
2344 ch_info = iwl_get_channel_info(priv, conf->channel->band, channel);
Zhu Yib481de92007-09-25 17:54:57 -07002345 if (!is_channel_valid(ch_info)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002346 IWL_DEBUG_MAC80211(priv, "leave - invalid channel\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002347 ret = -EINVAL;
2348 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002349 }
2350
Johannes Berg05c914f2008-09-11 00:01:58 +02002351 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Assaf Krauss398f9e72008-06-12 09:47:06 +08002352 !is_channel_ibss(ch_info)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002353 IWL_ERR(priv, "channel %d in band %d not IBSS channel\n",
Assaf Krauss398f9e72008-06-12 09:47:06 +08002354 conf->channel->hw_value, conf->channel->band);
2355 ret = -EINVAL;
2356 goto out;
2357 }
2358
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002359 spin_lock_irqsave(&priv->lock, flags);
2360
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002361
Tomas Winkler78330fd2008-02-06 02:37:18 +02002362 /* if we are switching from ht to 2.4 clear flags
Zhu Yib481de92007-09-25 17:54:57 -07002363 * from any ht related info since 2.4 does not
2364 * support ht */
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002365 if ((le16_to_cpu(priv->staging_rxon.channel) != channel)
Zhu Yib481de92007-09-25 17:54:57 -07002366#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2367 && !(conf->flags & IEEE80211_CONF_CHANNEL_SWITCH)
2368#endif
2369 )
2370 priv->staging_rxon.flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002371
Tomas Winkler17e72782008-09-03 11:26:26 +08002372 iwl_set_rxon_channel(priv, conf->channel);
Zhu Yib481de92007-09-25 17:54:57 -07002373
Tomas Winkler82a66bb2008-05-29 16:35:28 +08002374 iwl_set_flags_for_band(priv, conf->channel->band);
Zhu Yib481de92007-09-25 17:54:57 -07002375
2376 /* The list of supported rates and rate mask can be different
Johannes Berg8318d782008-01-24 19:38:38 +01002377 * for each band; since the band may have changed, reset
Zhu Yib481de92007-09-25 17:54:57 -07002378 * the rate mask to what mac80211 lists */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002379 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002380
2381 spin_unlock_irqrestore(&priv->lock, flags);
2382
2383#ifdef IEEE80211_CONF_CHANNEL_SWITCH
2384 if (conf->flags & IEEE80211_CONF_CHANNEL_SWITCH) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002385 iwl_hw_channel_switch(priv, conf->channel);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002386 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002387 }
2388#endif
2389
Zhu Yib481de92007-09-25 17:54:57 -07002390 if (!conf->radio_enabled) {
Tomas Winklere1623442009-01-27 14:27:56 -08002391 IWL_DEBUG_MAC80211(priv, "leave - radio disabled\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002392 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002393 }
2394
Tomas Winklerfee12472008-04-03 16:05:21 -07002395 if (iwl_is_rfkill(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002396 IWL_DEBUG_MAC80211(priv, "leave - RF kill\n");
Zhu Yi76bb77e2007-11-22 10:53:22 +08002397 ret = -EIO;
2398 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07002399 }
2400
Ester Kummere602cb12008-09-26 15:09:33 +08002401 if (conf->flags & IEEE80211_CONF_PS)
2402 ret = iwl_power_set_user_mode(priv, IWL_POWER_INDEX_3);
2403 else
2404 ret = iwl_power_set_user_mode(priv, IWL_POWER_MODE_CAM);
2405 if (ret)
Tomas Winklere1623442009-01-27 14:27:56 -08002406 IWL_DEBUG_MAC80211(priv, "Error setting power level\n");
Ester Kummere602cb12008-09-26 15:09:33 +08002407
Tomas Winklere1623442009-01-27 14:27:56 -08002408 IWL_DEBUG_MAC80211(priv, "TX Power old=%d new=%d\n",
Tomas Winkler630fe9b2008-06-12 09:47:08 +08002409 priv->tx_power_user_lmt, conf->power_level);
2410
2411 iwl_set_tx_power(priv, conf->power_level, false);
2412
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002413 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002414
Rick Farrington7b841722009-01-23 13:45:10 -08002415 /* call to ensure that 4965 rx_chain is set properly in monitor mode */
2416 iwl_set_rxon_chain(priv);
2417
Zhu Yib481de92007-09-25 17:54:57 -07002418 if (memcmp(&priv->active_rxon,
2419 &priv->staging_rxon, sizeof(priv->staging_rxon)))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002420 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002421 else
Tomas Winklere1623442009-01-27 14:27:56 -08002422 IWL_DEBUG_INFO(priv, "No re-sending same RXON configuration.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002423
Tomas Winklere1623442009-01-27 14:27:56 -08002424 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002425
Zhu Yia0646472007-12-20 14:10:01 +08002426out:
Zhu Yi5a66926a2008-01-14 17:46:18 -08002427 mutex_unlock(&priv->mutex);
Zhu Yi76bb77e2007-11-22 10:53:22 +08002428 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002429}
2430
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002431static void iwl_config_ap(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002432{
Tomas Winkler857485c2008-03-21 13:53:44 -07002433 int ret = 0;
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002434 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07002435
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08002436 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07002437 return;
2438
2439 /* The following should be done only at AP bring up */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002440 if (!iwl_is_associated(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002441
2442 /* RXON - unassoc (to set timing command) */
2443 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002444 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002445
2446 /* RXON Timing */
Tomas Winkler3195c1f2008-10-08 09:37:30 +08002447 iwl_setup_rxon_timing(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -07002448 ret = iwl_send_cmd_pdu(priv, REPLY_RXON_TIMING,
Zhu Yib481de92007-09-25 17:54:57 -07002449 sizeof(priv->rxon_timing), &priv->rxon_timing);
Tomas Winkler857485c2008-03-21 13:53:44 -07002450 if (ret)
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002451 IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
Zhu Yib481de92007-09-25 17:54:57 -07002452 "Attempting to continue.\n");
2453
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002454 iwl_set_rxon_chain(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002455
2456 /* FIXME: what should be the assoc_id for AP? */
2457 priv->staging_rxon.assoc_id = cpu_to_le16(priv->assoc_id);
2458 if (priv->assoc_capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
2459 priv->staging_rxon.flags |=
2460 RXON_FLG_SHORT_PREAMBLE_MSK;
2461 else
2462 priv->staging_rxon.flags &=
2463 ~RXON_FLG_SHORT_PREAMBLE_MSK;
2464
2465 if (priv->staging_rxon.flags & RXON_FLG_BAND_24G_MSK) {
2466 if (priv->assoc_capability &
2467 WLAN_CAPABILITY_SHORT_SLOT_TIME)
2468 priv->staging_rxon.flags |=
2469 RXON_FLG_SHORT_SLOT_MSK;
2470 else
2471 priv->staging_rxon.flags &=
2472 ~RXON_FLG_SHORT_SLOT_MSK;
2473
Johannes Berg05c914f2008-09-11 00:01:58 +02002474 if (priv->iw_mode == NL80211_IFTYPE_ADHOC)
Zhu Yib481de92007-09-25 17:54:57 -07002475 priv->staging_rxon.flags &=
2476 ~RXON_FLG_SHORT_SLOT_MSK;
2477 }
2478 /* restore RXON assoc */
2479 priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002480 iwl_commit_rxon(priv);
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002481 spin_lock_irqsave(&priv->lock, flags);
2482 iwl_activate_qos(priv, 1);
2483 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002484 iwl_rxon_add_station(priv, iwl_bcast_addr, 0);
Zhu Yie1493de2007-09-27 11:27:32 +08002485 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002486 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002487
2488 /* FIXME - we need to add code here to detect a totally new
2489 * configuration, reset the AP, unassoc, rxon timing, assoc,
2490 * clear sta table, add BCAST sta... */
2491}
2492
Johannes Berg9d139c82008-07-09 14:40:37 +02002493
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002494static int iwl_mac_config_interface(struct ieee80211_hw *hw,
Johannes Berg32bfd352007-12-19 01:31:26 +01002495 struct ieee80211_vif *vif,
Zhu Yib481de92007-09-25 17:54:57 -07002496 struct ieee80211_if_conf *conf)
2497{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002498 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002499 int rc;
2500
2501 if (conf == NULL)
2502 return -EIO;
2503
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002504 if (priv->vif != vif) {
Tomas Winklere1623442009-01-27 14:27:56 -08002505 IWL_DEBUG_MAC80211(priv, "leave - priv->vif != vif\n");
Emmanuel Grumbachb716bb92008-03-04 18:09:32 -08002506 return 0;
2507 }
2508
Johannes Berg05c914f2008-09-11 00:01:58 +02002509 if (priv->iw_mode == NL80211_IFTYPE_ADHOC &&
Johannes Berg9d139c82008-07-09 14:40:37 +02002510 conf->changed & IEEE80211_IFCC_BEACON) {
2511 struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
2512 if (!beacon)
2513 return -ENOMEM;
Mohamed Abbasada17512008-11-07 09:58:34 -08002514 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002515 rc = iwl_mac_beacon_update(hw, beacon);
Mohamed Abbasada17512008-11-07 09:58:34 -08002516 mutex_unlock(&priv->mutex);
Johannes Berg9d139c82008-07-09 14:40:37 +02002517 if (rc)
2518 return rc;
2519 }
2520
Tomas Winklerfee12472008-04-03 16:05:21 -07002521 if (!iwl_is_alive(priv))
Zhu Yi5a66926a2008-01-14 17:46:18 -08002522 return -EAGAIN;
2523
Zhu Yib481de92007-09-25 17:54:57 -07002524 mutex_lock(&priv->mutex);
2525
Zhu Yib481de92007-09-25 17:54:57 -07002526 if (conf->bssid)
Tomas Winklere1623442009-01-27 14:27:56 -08002527 IWL_DEBUG_MAC80211(priv, "bssid: %pM\n", conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002528
Johannes Berg4150c572007-09-17 01:29:23 -04002529/*
2530 * very dubious code was here; the probe filtering flag is never set:
2531 *
Zhu Yib481de92007-09-25 17:54:57 -07002532 if (unlikely(test_bit(STATUS_SCANNING, &priv->status)) &&
2533 !(priv->hw->flags & IEEE80211_HW_NO_PROBE_FILTERING)) {
Johannes Berg4150c572007-09-17 01:29:23 -04002534 */
Zhu Yib481de92007-09-25 17:54:57 -07002535
Johannes Berg05c914f2008-09-11 00:01:58 +02002536 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Zhu Yib481de92007-09-25 17:54:57 -07002537 if (!conf->bssid) {
2538 conf->bssid = priv->mac_addr;
2539 memcpy(priv->bssid, priv->mac_addr, ETH_ALEN);
Tomas Winklere1623442009-01-27 14:27:56 -08002540 IWL_DEBUG_MAC80211(priv, "bssid was set to: %pM\n",
Johannes Berge1749612008-10-27 15:59:26 -07002541 conf->bssid);
Zhu Yib481de92007-09-25 17:54:57 -07002542 }
2543 if (priv->ibss_beacon)
2544 dev_kfree_skb(priv->ibss_beacon);
2545
Johannes Berg9d139c82008-07-09 14:40:37 +02002546 priv->ibss_beacon = ieee80211_beacon_get(hw, vif);
Zhu Yib481de92007-09-25 17:54:57 -07002547 }
2548
Tomas Winklerfee12472008-04-03 16:05:21 -07002549 if (iwl_is_rfkill(priv))
Mohamed Abbasfde35712007-11-29 11:10:15 +08002550 goto done;
2551
Zhu Yib481de92007-09-25 17:54:57 -07002552 if (conf->bssid && !is_zero_ether_addr(conf->bssid) &&
2553 !is_multicast_ether_addr(conf->bssid)) {
2554 /* If there is currently a HW scan going on in the background
2555 * then we need to cancel it else the RXON below will fail. */
Tomas Winkler2a421b92008-06-12 09:47:10 +08002556 if (iwl_scan_cancel_timeout(priv, 100)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002557 IWL_WARN(priv, "Aborted scan still in progress "
Zhu Yib481de92007-09-25 17:54:57 -07002558 "after 100ms\n");
Tomas Winklere1623442009-01-27 14:27:56 -08002559 IWL_DEBUG_MAC80211(priv, "leaving - scan abort failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002560 mutex_unlock(&priv->mutex);
2561 return -EAGAIN;
2562 }
2563 memcpy(priv->staging_rxon.bssid_addr, conf->bssid, ETH_ALEN);
2564
2565 /* TODO: Audit driver for usage of these members and see
2566 * if mac80211 deprecates them (priv->bssid looks like it
2567 * shouldn't be there, but I haven't scanned the IBSS code
2568 * to verify) - jpk */
2569 memcpy(priv->bssid, conf->bssid, ETH_ALEN);
2570
Johannes Berg05c914f2008-09-11 00:01:58 +02002571 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002572 iwl_config_ap(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002573 else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002574 rc = iwl_commit_rxon(priv);
Johannes Berg05c914f2008-09-11 00:01:58 +02002575 if ((priv->iw_mode == NL80211_IFTYPE_STATION) && rc)
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002576 iwl_rxon_add_station(
Zhu Yib481de92007-09-25 17:54:57 -07002577 priv, priv->active_rxon.bssid_addr, 1);
2578 }
2579
2580 } else {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002581 iwl_scan_cancel_timeout(priv, 100);
Zhu Yib481de92007-09-25 17:54:57 -07002582 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002583 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002584 }
2585
Mohamed Abbasfde35712007-11-29 11:10:15 +08002586 done:
Tomas Winklere1623442009-01-27 14:27:56 -08002587 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002588 mutex_unlock(&priv->mutex);
2589
2590 return 0;
2591}
2592
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002593static void iwl_mac_remove_interface(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002594 struct ieee80211_if_init_conf *conf)
2595{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002596 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002597
Tomas Winklere1623442009-01-27 14:27:56 -08002598 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002599
2600 mutex_lock(&priv->mutex);
Mohamed Abbas948c1712007-10-25 17:15:45 +08002601
Tomas Winklerfee12472008-04-03 16:05:21 -07002602 if (iwl_is_ready_rf(priv)) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002603 iwl_scan_cancel_timeout(priv, 100);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002604 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002605 iwl_commit_rxon(priv);
Mohamed Abbasfde35712007-11-29 11:10:15 +08002606 }
Johannes Berg32bfd352007-12-19 01:31:26 +01002607 if (priv->vif == conf->vif) {
2608 priv->vif = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002609 memset(priv->bssid, 0, ETH_ALEN);
Zhu Yib481de92007-09-25 17:54:57 -07002610 }
2611 mutex_unlock(&priv->mutex);
2612
Tomas Winklere1623442009-01-27 14:27:56 -08002613 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002614
2615}
Johannes Berg471b3ef2007-12-28 14:32:58 +01002616
Tomas Winkler3109ece2008-03-28 16:33:35 -07002617#define IWL_DELAY_NEXT_SCAN_AFTER_ASSOC (HZ*6)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002618static void iwl_bss_info_changed(struct ieee80211_hw *hw,
Johannes Berg471b3ef2007-12-28 14:32:58 +01002619 struct ieee80211_vif *vif,
2620 struct ieee80211_bss_conf *bss_conf,
2621 u32 changes)
Tomas Winkler220173b2007-10-16 00:50:25 +02002622{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002623 struct iwl_priv *priv = hw->priv;
Tomas Winkler220173b2007-10-16 00:50:25 +02002624
Tomas Winklere1623442009-01-27 14:27:56 -08002625 IWL_DEBUG_MAC80211(priv, "changes = 0x%X\n", changes);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002626
Johannes Berg471b3ef2007-12-28 14:32:58 +01002627 if (changes & BSS_CHANGED_ERP_PREAMBLE) {
Tomas Winklere1623442009-01-27 14:27:56 -08002628 IWL_DEBUG_MAC80211(priv, "ERP_PREAMBLE %d\n",
Tomas Winkler3109ece2008-03-28 16:33:35 -07002629 bss_conf->use_short_preamble);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002630 if (bss_conf->use_short_preamble)
Tomas Winkler220173b2007-10-16 00:50:25 +02002631 priv->staging_rxon.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
2632 else
2633 priv->staging_rxon.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
2634 }
2635
Johannes Berg471b3ef2007-12-28 14:32:58 +01002636 if (changes & BSS_CHANGED_ERP_CTS_PROT) {
Tomas Winklere1623442009-01-27 14:27:56 -08002637 IWL_DEBUG_MAC80211(priv, "ERP_CTS %d\n", bss_conf->use_cts_prot);
Johannes Berg8318d782008-01-24 19:38:38 +01002638 if (bss_conf->use_cts_prot && (priv->band != IEEE80211_BAND_5GHZ))
Tomas Winkler220173b2007-10-16 00:50:25 +02002639 priv->staging_rxon.flags |= RXON_FLG_TGG_PROTECT_MSK;
2640 else
2641 priv->staging_rxon.flags &= ~RXON_FLG_TGG_PROTECT_MSK;
2642 }
2643
Tomas Winkler98952d52008-03-28 16:33:33 -07002644 if (changes & BSS_CHANGED_HT) {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002645 iwl_ht_conf(priv, bss_conf);
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002646 iwl_set_rxon_chain(priv);
Tomas Winkler98952d52008-03-28 16:33:33 -07002647 }
2648
Johannes Berg471b3ef2007-12-28 14:32:58 +01002649 if (changes & BSS_CHANGED_ASSOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08002650 IWL_DEBUG_MAC80211(priv, "ASSOC %d\n", bss_conf->assoc);
Reinette Chatre508e32e2008-04-14 21:16:13 -07002651 /* This should never happen as this function should
2652 * never be called from interrupt context. */
2653 if (WARN_ON_ONCE(in_interrupt()))
2654 return;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002655 if (bss_conf->assoc) {
2656 priv->assoc_id = bss_conf->aid;
2657 priv->beacon_int = bss_conf->beacon_int;
Tomas Winklerb5d7be52008-07-19 04:41:24 +03002658 priv->power_data.dtim_period = bss_conf->dtim_period;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002659 priv->timestamp = bss_conf->timestamp;
2660 priv->assoc_capability = bss_conf->assoc_capability;
Tomas Winkler9ccacb82008-09-16 14:01:03 +08002661
2662 /* we have just associated, don't start scan too early
2663 * leave time for EAPOL exchange to complete
2664 */
Tomas Winkler3109ece2008-03-28 16:33:35 -07002665 priv->next_scan_jiffies = jiffies +
2666 IWL_DELAY_NEXT_SCAN_AFTER_ASSOC;
Reinette Chatre508e32e2008-04-14 21:16:13 -07002667 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002668 iwl_post_associate(priv);
Reinette Chatre508e32e2008-04-14 21:16:13 -07002669 mutex_unlock(&priv->mutex);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002670 } else {
2671 priv->assoc_id = 0;
Tomas Winklere1623442009-01-27 14:27:56 -08002672 IWL_DEBUG_MAC80211(priv, "DISASSOC %d\n", bss_conf->assoc);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002673 }
2674 } else if (changes && iwl_is_associated(priv) && priv->assoc_id) {
Tomas Winklere1623442009-01-27 14:27:56 -08002675 IWL_DEBUG_MAC80211(priv, "Associated Changes %d\n", changes);
Tomas Winkler7e8c5192008-04-15 16:01:43 -07002676 iwl_send_rxon_assoc(priv);
Johannes Berg471b3ef2007-12-28 14:32:58 +01002677 }
2678
Tomas Winkler220173b2007-10-16 00:50:25 +02002679}
Zhu Yib481de92007-09-25 17:54:57 -07002680
Tomas Winklercb43dc22008-09-03 11:26:23 +08002681static int iwl_mac_hw_scan(struct ieee80211_hw *hw, u8 *ssid, size_t ssid_len)
Zhu Yib481de92007-09-25 17:54:57 -07002682{
Zhu Yib481de92007-09-25 17:54:57 -07002683 unsigned long flags;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002684 struct iwl_priv *priv = hw->priv;
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002685 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07002686
Tomas Winklere1623442009-01-27 14:27:56 -08002687 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002688
mabbas052c4b92007-10-25 17:15:43 +08002689 mutex_lock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07002690 spin_lock_irqsave(&priv->lock, flags);
2691
Tomas Winklerfee12472008-04-03 16:05:21 -07002692 if (!iwl_is_ready_rf(priv)) {
Tomas Winklercb43dc22008-09-03 11:26:23 +08002693 ret = -EIO;
Tomas Winklere1623442009-01-27 14:27:56 -08002694 IWL_DEBUG_MAC80211(priv, "leave - not ready or exit pending\n");
Zhu Yib481de92007-09-25 17:54:57 -07002695 goto out_unlock;
2696 }
2697
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002698 /* We don't schedule scan within next_scan_jiffies period.
2699 * Avoid scanning during possible EAPOL exchange, return
2700 * success immediately.
2701 */
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002702 if (priv->next_scan_jiffies &&
Tomas Winklercb43dc22008-09-03 11:26:23 +08002703 time_after(priv->next_scan_jiffies, jiffies)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002704 IWL_DEBUG_SCAN(priv, "scan rejected: within next scan period\n");
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002705 queue_work(priv->workqueue, &priv->scan_completed);
2706 ret = 0;
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002707 goto out_unlock;
2708 }
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002709
Zhu Yib481de92007-09-25 17:54:57 -07002710 /* if we just finished scan ask for delay */
Ron Rindjunsky681c0052008-09-03 11:26:25 +08002711 if (iwl_is_associated(priv) && priv->last_scan_jiffies &&
Tomas Winklercb43dc22008-09-03 11:26:23 +08002712 time_after(priv->last_scan_jiffies + IWL_DELAY_NEXT_SCAN, jiffies)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002713 IWL_DEBUG_SCAN(priv, "scan rejected: within previous scan period\n");
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002714 queue_work(priv->workqueue, &priv->scan_completed);
2715 ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002716 goto out_unlock;
2717 }
Tomas Winkler8d09a5e2008-09-24 13:57:46 +08002718
Tomas Winklercb43dc22008-09-03 11:26:23 +08002719 if (ssid_len) {
Zhu Yib481de92007-09-25 17:54:57 -07002720 priv->one_direct_scan = 1;
Tomas Winklercb43dc22008-09-03 11:26:23 +08002721 priv->direct_ssid_len = min_t(u8, ssid_len, IW_ESSID_MAX_SIZE);
Zhu Yib481de92007-09-25 17:54:57 -07002722 memcpy(priv->direct_ssid, ssid, priv->direct_ssid_len);
Tomas Winklercb43dc22008-09-03 11:26:23 +08002723 } else {
Mohamed Abbas948c1712007-10-25 17:15:45 +08002724 priv->one_direct_scan = 0;
Tomas Winklercb43dc22008-09-03 11:26:23 +08002725 }
Zhu Yib481de92007-09-25 17:54:57 -07002726
Tomas Winklercb43dc22008-09-03 11:26:23 +08002727 ret = iwl_scan_initiate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002728
Tomas Winklere1623442009-01-27 14:27:56 -08002729 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002730
2731out_unlock:
2732 spin_unlock_irqrestore(&priv->lock, flags);
mabbas052c4b92007-10-25 17:15:43 +08002733 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -07002734
Tomas Winklercb43dc22008-09-03 11:26:23 +08002735 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002736}
2737
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002738static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002739 struct ieee80211_key_conf *keyconf, const u8 *addr,
2740 u32 iv32, u16 *phase1key)
2741{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002742
Tomas Winkler9f586712008-11-12 13:14:05 -08002743 struct iwl_priv *priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002744 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002745
Tomas Winkler9f586712008-11-12 13:14:05 -08002746 iwl_update_tkip_key(priv, keyconf, addr, iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002747
Tomas Winklere1623442009-01-27 14:27:56 -08002748 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02002749}
2750
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002751static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01002752 struct ieee80211_vif *vif,
2753 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07002754 struct ieee80211_key_conf *key)
2755{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002756 struct iwl_priv *priv = hw->priv;
Winkler, Tomas42986792009-01-19 15:30:22 -08002757 const u8 *addr;
2758 int ret;
2759 u8 sta_id;
2760 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07002761
Tomas Winklere1623442009-01-27 14:27:56 -08002762 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002763
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002764 if (priv->hw_params.sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08002765 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07002766 return -EOPNOTSUPP;
2767 }
Winkler, Tomas42986792009-01-19 15:30:22 -08002768 addr = sta ? sta->addr : iwl_bcast_addr;
Tomas Winkler947b13a2008-04-16 16:34:48 -07002769 sta_id = iwl_find_station(priv, addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002770 if (sta_id == IWL_INVALID_STATION) {
Tomas Winklere1623442009-01-27 14:27:56 -08002771 IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
Johannes Berge1749612008-10-27 15:59:26 -07002772 addr);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002773 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002774
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002775 }
Zhu Yib481de92007-09-25 17:54:57 -07002776
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002777 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08002778 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002779 mutex_unlock(&priv->mutex);
2780
2781 /* If we are getting WEP group key and we didn't receive any key mapping
2782 * so far, we are in legacy wep mode (group key only), otherwise we are
2783 * in 1X mode.
2784 * In legacy wep mode, we use another host command to the uCode */
Tomas Winkler5425e492008-04-15 16:01:38 -07002785 if (key->alg == ALG_WEP && sta_id == priv->hw_params.bcast_sta_id &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002786 priv->iw_mode != NL80211_IFTYPE_AP) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002787 if (cmd == SET_KEY)
2788 is_default_wep_key = !priv->key_mapping_key;
2789 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002790 is_default_wep_key =
2791 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002792 }
mabbas052c4b92007-10-25 17:15:43 +08002793
Zhu Yib481de92007-09-25 17:54:57 -07002794 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002795 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002796 if (is_default_wep_key)
2797 ret = iwl_set_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002798 else
Emmanuel Grumbach74805132008-04-14 21:16:09 -07002799 ret = iwl_set_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002800
Tomas Winklere1623442009-01-27 14:27:56 -08002801 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002802 break;
2803 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07002804 if (is_default_wep_key)
2805 ret = iwl_remove_default_wep_key(priv, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002806 else
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002807 ret = iwl_remove_dynamic_key(priv, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002808
Tomas Winklere1623442009-01-27 14:27:56 -08002809 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07002810 break;
2811 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002812 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07002813 }
2814
Tomas Winklere1623442009-01-27 14:27:56 -08002815 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002816
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07002817 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07002818}
2819
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002820static int iwl_mac_conf_tx(struct ieee80211_hw *hw, u16 queue,
Zhu Yib481de92007-09-25 17:54:57 -07002821 const struct ieee80211_tx_queue_params *params)
2822{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002823 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002824 unsigned long flags;
2825 int q;
Zhu Yib481de92007-09-25 17:54:57 -07002826
Tomas Winklere1623442009-01-27 14:27:56 -08002827 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002828
Tomas Winklerfee12472008-04-03 16:05:21 -07002829 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002830 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002831 return -EIO;
2832 }
2833
2834 if (queue >= AC_NUM) {
Tomas Winklere1623442009-01-27 14:27:56 -08002835 IWL_DEBUG_MAC80211(priv, "leave - queue >= AC_NUM %d\n", queue);
Zhu Yib481de92007-09-25 17:54:57 -07002836 return 0;
2837 }
2838
Zhu Yib481de92007-09-25 17:54:57 -07002839 q = AC_NUM - 1 - queue;
2840
2841 spin_lock_irqsave(&priv->lock, flags);
2842
2843 priv->qos_data.def_qos_parm.ac[q].cw_min = cpu_to_le16(params->cw_min);
2844 priv->qos_data.def_qos_parm.ac[q].cw_max = cpu_to_le16(params->cw_max);
2845 priv->qos_data.def_qos_parm.ac[q].aifsn = params->aifs;
2846 priv->qos_data.def_qos_parm.ac[q].edca_txop =
Johannes Berg3330d7b2008-02-10 16:49:38 +01002847 cpu_to_le16((params->txop * 32));
Zhu Yib481de92007-09-25 17:54:57 -07002848
2849 priv->qos_data.def_qos_parm.ac[q].reserved1 = 0;
2850 priv->qos_data.qos_active = 1;
2851
Johannes Berg05c914f2008-09-11 00:01:58 +02002852 if (priv->iw_mode == NL80211_IFTYPE_AP)
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002853 iwl_activate_qos(priv, 1);
Tomas Winkler3109ece2008-03-28 16:33:35 -07002854 else if (priv->assoc_id && iwl_is_associated(priv))
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002855 iwl_activate_qos(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002856
Emmanuel Grumbach1ff50bd2008-07-11 11:53:34 +08002857 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002858
Tomas Winklere1623442009-01-27 14:27:56 -08002859 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002860 return 0;
2861}
2862
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002863static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Tomas Winklerd783b062008-07-18 13:53:02 +08002864 enum ieee80211_ampdu_mlme_action action,
Johannes Berg17741cd2008-09-11 00:02:02 +02002865 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08002866{
2867 struct iwl_priv *priv = hw->priv;
Tomas Winklerd783b062008-07-18 13:53:02 +08002868
Tomas Winklere1623442009-01-27 14:27:56 -08002869 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07002870 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002871
2872 if (!(priv->cfg->sku & IWL_SKU_N))
2873 return -EACCES;
2874
2875 switch (action) {
2876 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002877 IWL_DEBUG_HT(priv, "start Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002878 return iwl_sta_rx_agg_start(priv, sta->addr, tid, *ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002879 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002880 IWL_DEBUG_HT(priv, "stop Rx\n");
Tomas Winkler9f586712008-11-12 13:14:05 -08002881 return iwl_sta_rx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002882 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08002883 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002884 return iwl_tx_agg_start(priv, sta->addr, tid, ssn);
Tomas Winklerd783b062008-07-18 13:53:02 +08002885 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08002886 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg17741cd2008-09-11 00:02:02 +02002887 return iwl_tx_agg_stop(priv, sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08002888 default:
Tomas Winklere1623442009-01-27 14:27:56 -08002889 IWL_DEBUG_HT(priv, "unknown\n");
Tomas Winklerd783b062008-07-18 13:53:02 +08002890 return -EINVAL;
2891 break;
2892 }
2893 return 0;
2894}
Tomas Winkler9f586712008-11-12 13:14:05 -08002895
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002896static int iwl_mac_get_tx_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002897 struct ieee80211_tx_queue_stats *stats)
2898{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002899 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002900 int i, avail;
Ron Rindjunsky16466902008-05-05 10:22:50 +08002901 struct iwl_tx_queue *txq;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002902 struct iwl_queue *q;
Zhu Yib481de92007-09-25 17:54:57 -07002903 unsigned long flags;
2904
Tomas Winklere1623442009-01-27 14:27:56 -08002905 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002906
Tomas Winklerfee12472008-04-03 16:05:21 -07002907 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002908 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07002909 return -EIO;
2910 }
2911
2912 spin_lock_irqsave(&priv->lock, flags);
2913
2914 for (i = 0; i < AC_NUM; i++) {
2915 txq = &priv->txq[i];
2916 q = &txq->q;
Tomas Winkler443cfd42008-05-15 13:53:57 +08002917 avail = iwl_queue_space(q);
Zhu Yib481de92007-09-25 17:54:57 -07002918
Johannes Berg57ffc582008-04-29 17:18:59 +02002919 stats[i].len = q->n_window - avail;
2920 stats[i].limit = q->n_window - q->high_mark;
2921 stats[i].count = q->n_window;
Zhu Yib481de92007-09-25 17:54:57 -07002922
2923 }
2924 spin_unlock_irqrestore(&priv->lock, flags);
2925
Tomas Winklere1623442009-01-27 14:27:56 -08002926 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002927
2928 return 0;
2929}
2930
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002931static int iwl_mac_get_stats(struct ieee80211_hw *hw,
Zhu Yib481de92007-09-25 17:54:57 -07002932 struct ieee80211_low_level_stats *stats)
2933{
Ester Kummerbf403db2008-05-05 10:22:40 +08002934 struct iwl_priv *priv = hw->priv;
2935
2936 priv = hw->priv;
Tomas Winklere1623442009-01-27 14:27:56 -08002937 IWL_DEBUG_MAC80211(priv, "enter\n");
2938 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07002939
2940 return 0;
2941}
2942
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002943static void iwl_mac_reset_tsf(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07002944{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002945 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002946 unsigned long flags;
2947
2948 mutex_lock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08002949 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07002950
Zhu Yib481de92007-09-25 17:54:57 -07002951 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyfd105e72007-11-26 16:14:39 +02002952 memset(&priv->current_ht_config, 0, sizeof(struct iwl_ht_info));
Zhu Yib481de92007-09-25 17:54:57 -07002953 spin_unlock_irqrestore(&priv->lock, flags);
Zhu Yib481de92007-09-25 17:54:57 -07002954
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07002955 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002956
Zhu Yib481de92007-09-25 17:54:57 -07002957 spin_lock_irqsave(&priv->lock, flags);
2958 priv->assoc_id = 0;
2959 priv->assoc_capability = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002960 priv->assoc_station_added = 0;
2961
2962 /* new association get rid of ibss beacon skb */
2963 if (priv->ibss_beacon)
2964 dev_kfree_skb(priv->ibss_beacon);
2965
2966 priv->ibss_beacon = NULL;
2967
2968 priv->beacon_int = priv->hw->conf.beacon_int;
Tomas Winkler3109ece2008-03-28 16:33:35 -07002969 priv->timestamp = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002970 if ((priv->iw_mode == NL80211_IFTYPE_STATION))
Zhu Yib481de92007-09-25 17:54:57 -07002971 priv->beacon_int = 0;
2972
2973 spin_unlock_irqrestore(&priv->lock, flags);
2974
Tomas Winklerfee12472008-04-03 16:05:21 -07002975 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08002976 IWL_DEBUG_MAC80211(priv, "leave - not ready\n");
Mohamed Abbasfde35712007-11-29 11:10:15 +08002977 mutex_unlock(&priv->mutex);
2978 return;
2979 }
2980
mabbas052c4b92007-10-25 17:15:43 +08002981 /* we are restarting association process
2982 * clear RXON_FILTER_ASSOC_MSK bit
2983 */
Johannes Berg05c914f2008-09-11 00:01:58 +02002984 if (priv->iw_mode != NL80211_IFTYPE_AP) {
Tomas Winkler2a421b92008-06-12 09:47:10 +08002985 iwl_scan_cancel_timeout(priv, 100);
mabbas052c4b92007-10-25 17:15:43 +08002986 priv->staging_rxon.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002987 iwl_commit_rxon(priv);
mabbas052c4b92007-10-25 17:15:43 +08002988 }
2989
Mohamed Abbas5da4b552008-04-21 15:41:51 -07002990 iwl_power_update_mode(priv, 0);
2991
Zhu Yib481de92007-09-25 17:54:57 -07002992 /* Per mac80211.h: This is only used in IBSS mode... */
Johannes Berg05c914f2008-09-11 00:01:58 +02002993 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
mabbas052c4b92007-10-25 17:15:43 +08002994
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08002995 /* switch to CAM during association period.
2996 * the ucode will block any association/authentication
2997 * frome during assiciation period if it can not hear
2998 * the AP because of PM. the timer enable PM back is
2999 * association do not complete
3000 */
3001 if (priv->hw->conf.channel->flags & (IEEE80211_CHAN_PASSIVE_SCAN |
3002 IEEE80211_CHAN_RADAR))
3003 iwl_power_disable_management(priv, 3000);
3004
Tomas Winklere1623442009-01-27 14:27:56 -08003005 IWL_DEBUG_MAC80211(priv, "leave - not in IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07003006 mutex_unlock(&priv->mutex);
3007 return;
3008 }
3009
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003010 iwl_set_rate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003011
3012 mutex_unlock(&priv->mutex);
3013
Tomas Winklere1623442009-01-27 14:27:56 -08003014 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003015}
3016
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003017static int iwl_mac_beacon_update(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003018{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003019 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003020 unsigned long flags;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08003021 __le64 timestamp;
Zhu Yib481de92007-09-25 17:54:57 -07003022
Tomas Winklere1623442009-01-27 14:27:56 -08003023 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003024
Tomas Winklerfee12472008-04-03 16:05:21 -07003025 if (!iwl_is_ready_rf(priv)) {
Tomas Winklere1623442009-01-27 14:27:56 -08003026 IWL_DEBUG_MAC80211(priv, "leave - RF not ready\n");
Zhu Yib481de92007-09-25 17:54:57 -07003027 return -EIO;
3028 }
3029
Johannes Berg05c914f2008-09-11 00:01:58 +02003030 if (priv->iw_mode != NL80211_IFTYPE_ADHOC) {
Tomas Winklere1623442009-01-27 14:27:56 -08003031 IWL_DEBUG_MAC80211(priv, "leave - not IBSS\n");
Zhu Yib481de92007-09-25 17:54:57 -07003032 return -EIO;
3033 }
3034
3035 spin_lock_irqsave(&priv->lock, flags);
3036
3037 if (priv->ibss_beacon)
3038 dev_kfree_skb(priv->ibss_beacon);
3039
3040 priv->ibss_beacon = skb;
3041
3042 priv->assoc_id = 0;
Assaf Krauss2ff75b72008-06-30 17:23:17 +08003043 timestamp = ((struct ieee80211_mgmt *)skb->data)->u.beacon.timestamp;
Assaf Kraussb94d8ee2008-09-03 11:18:42 +08003044 priv->timestamp = le64_to_cpu(timestamp);
Zhu Yib481de92007-09-25 17:54:57 -07003045
Tomas Winklere1623442009-01-27 14:27:56 -08003046 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003047 spin_unlock_irqrestore(&priv->lock, flags);
3048
Ron Rindjunskyc7de35c2008-04-23 17:15:05 -07003049 iwl_reset_qos(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003050
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003051 iwl_post_associate(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003052
Zhu Yib481de92007-09-25 17:54:57 -07003053
3054 return 0;
3055}
3056
Zhu Yib481de92007-09-25 17:54:57 -07003057/*****************************************************************************
3058 *
3059 * sysfs attributes
3060 *
3061 *****************************************************************************/
3062
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003063#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07003064
3065/*
3066 * The following adds a new attribute to the sysfs representation
Wu, Fengguangc3a739f2008-12-17 16:52:29 +08003067 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
Zhu Yib481de92007-09-25 17:54:57 -07003068 * used for controlling the debug level.
3069 *
3070 * See the level definitions in iwl for details.
3071 */
3072
Ester Kummer8cf769c2008-05-06 11:05:11 +08003073static ssize_t show_debug_level(struct device *d,
3074 struct device_attribute *attr, char *buf)
Zhu Yib481de92007-09-25 17:54:57 -07003075{
Ester Kummer8cf769c2008-05-06 11:05:11 +08003076 struct iwl_priv *priv = d->driver_data;
3077
3078 return sprintf(buf, "0x%08X\n", priv->debug_level);
Zhu Yib481de92007-09-25 17:54:57 -07003079}
Ester Kummer8cf769c2008-05-06 11:05:11 +08003080static ssize_t store_debug_level(struct device *d,
3081 struct device_attribute *attr,
Zhu Yib481de92007-09-25 17:54:57 -07003082 const char *buf, size_t count)
3083{
Ester Kummer8cf769c2008-05-06 11:05:11 +08003084 struct iwl_priv *priv = d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003085 unsigned long val;
3086 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003087
Tomas Winkler9257746f2008-09-03 11:26:32 +08003088 ret = strict_strtoul(buf, 0, &val);
3089 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003090 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003091 else
Ester Kummer8cf769c2008-05-06 11:05:11 +08003092 priv->debug_level = val;
Zhu Yib481de92007-09-25 17:54:57 -07003093
3094 return strnlen(buf, count);
3095}
3096
Ester Kummer8cf769c2008-05-06 11:05:11 +08003097static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
3098 show_debug_level, store_debug_level);
3099
Zhu Yib481de92007-09-25 17:54:57 -07003100
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003101#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -07003102
Zhu Yib481de92007-09-25 17:54:57 -07003103
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003104static ssize_t show_version(struct device *d,
3105 struct device_attribute *attr, char *buf)
3106{
3107 struct iwl_priv *priv = d->driver_data;
Tomas Winkler885ba202008-05-29 16:34:55 +08003108 struct iwl_alive_resp *palive = &priv->card_alive;
Tomas Winklerf236a262008-06-30 17:23:02 +08003109 ssize_t pos = 0;
3110 u16 eeprom_ver;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003111
3112 if (palive->is_valid)
Tomas Winklerf236a262008-06-30 17:23:02 +08003113 pos += sprintf(buf + pos,
3114 "fw version: 0x%01X.0x%01X.0x%01X.0x%01X\n"
3115 "fw type: 0x%01X 0x%01X\n",
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003116 palive->ucode_major, palive->ucode_minor,
3117 palive->sw_rev[0], palive->sw_rev[1],
3118 palive->ver_type, palive->ver_subtype);
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003119 else
Tomas Winklerf236a262008-06-30 17:23:02 +08003120 pos += sprintf(buf + pos, "fw not loaded\n");
3121
3122 if (priv->eeprom) {
3123 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
3124 pos += sprintf(buf + pos, "EEPROM version: 0x%x\n",
3125 eeprom_ver);
3126 } else {
3127 pos += sprintf(buf + pos, "EEPROM not initialzed\n");
3128 }
3129
3130 return pos;
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003131}
3132
3133static DEVICE_ATTR(version, S_IWUSR | S_IRUGO, show_version, NULL);
3134
Zhu Yib481de92007-09-25 17:54:57 -07003135static ssize_t show_temperature(struct device *d,
3136 struct device_attribute *attr, char *buf)
3137{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003138 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003139
Tomas Winklerfee12472008-04-03 16:05:21 -07003140 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003141 return -EAGAIN;
3142
Emmanuel Grumbach91dbc5b2008-06-12 09:47:14 +08003143 return sprintf(buf, "%d\n", priv->temperature);
Zhu Yib481de92007-09-25 17:54:57 -07003144}
3145
3146static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
3147
Zhu Yib481de92007-09-25 17:54:57 -07003148static ssize_t show_tx_power(struct device *d,
3149 struct device_attribute *attr, char *buf)
3150{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003151 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Jay Sternberg91f39e82008-12-17 16:52:34 +08003152
3153 if (!iwl_is_ready_rf(priv))
3154 return sprintf(buf, "off\n");
3155 else
3156 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
Zhu Yib481de92007-09-25 17:54:57 -07003157}
3158
3159static ssize_t store_tx_power(struct device *d,
3160 struct device_attribute *attr,
3161 const char *buf, size_t count)
3162{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003163 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003164 unsigned long val;
3165 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003166
Tomas Winkler9257746f2008-09-03 11:26:32 +08003167 ret = strict_strtoul(buf, 10, &val);
3168 if (ret)
Tomas Winkler978785a2008-12-19 10:37:31 +08003169 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
Zhu Yib481de92007-09-25 17:54:57 -07003170 else
Tomas Winkler630fe9b2008-06-12 09:47:08 +08003171 iwl_set_tx_power(priv, val, false);
Zhu Yib481de92007-09-25 17:54:57 -07003172
3173 return count;
3174}
3175
3176static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
3177
3178static ssize_t show_flags(struct device *d,
3179 struct device_attribute *attr, char *buf)
3180{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003181 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003182
3183 return sprintf(buf, "0x%04X\n", priv->active_rxon.flags);
3184}
3185
3186static ssize_t store_flags(struct device *d,
3187 struct device_attribute *attr,
3188 const char *buf, size_t count)
3189{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003190 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003191 unsigned long val;
3192 u32 flags;
3193 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003194 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003195 return ret;
3196 flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003197
3198 mutex_lock(&priv->mutex);
3199 if (le32_to_cpu(priv->staging_rxon.flags) != flags) {
3200 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003201 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003202 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003203 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003204 IWL_DEBUG_INFO(priv, "Commit rxon.flags = 0x%04X\n", flags);
Zhu Yib481de92007-09-25 17:54:57 -07003205 priv->staging_rxon.flags = cpu_to_le32(flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003206 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003207 }
3208 }
3209 mutex_unlock(&priv->mutex);
3210
3211 return count;
3212}
3213
3214static DEVICE_ATTR(flags, S_IWUSR | S_IRUGO, show_flags, store_flags);
3215
3216static ssize_t show_filter_flags(struct device *d,
3217 struct device_attribute *attr, char *buf)
3218{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003219 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Zhu Yib481de92007-09-25 17:54:57 -07003220
3221 return sprintf(buf, "0x%04X\n",
3222 le32_to_cpu(priv->active_rxon.filter_flags));
3223}
3224
3225static ssize_t store_filter_flags(struct device *d,
3226 struct device_attribute *attr,
3227 const char *buf, size_t count)
3228{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003229 struct iwl_priv *priv = (struct iwl_priv *)d->driver_data;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003230 unsigned long val;
3231 u32 filter_flags;
3232 int ret = strict_strtoul(buf, 0, &val);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003233 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003234 return ret;
3235 filter_flags = (u32)val;
Zhu Yib481de92007-09-25 17:54:57 -07003236
3237 mutex_lock(&priv->mutex);
3238 if (le32_to_cpu(priv->staging_rxon.filter_flags) != filter_flags) {
3239 /* Cancel any currently running scans... */
Tomas Winkler2a421b92008-06-12 09:47:10 +08003240 if (iwl_scan_cancel_timeout(priv, 100))
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003241 IWL_WARN(priv, "Could not cancel scan.\n");
Zhu Yib481de92007-09-25 17:54:57 -07003242 else {
Tomas Winklere1623442009-01-27 14:27:56 -08003243 IWL_DEBUG_INFO(priv, "Committing rxon.filter_flags = "
Zhu Yib481de92007-09-25 17:54:57 -07003244 "0x%04X\n", filter_flags);
3245 priv->staging_rxon.filter_flags =
3246 cpu_to_le32(filter_flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003247 iwl_commit_rxon(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003248 }
3249 }
3250 mutex_unlock(&priv->mutex);
3251
3252 return count;
3253}
3254
3255static DEVICE_ATTR(filter_flags, S_IWUSR | S_IRUGO, show_filter_flags,
3256 store_filter_flags);
3257
Zhu Yib481de92007-09-25 17:54:57 -07003258static ssize_t store_power_level(struct device *d,
3259 struct device_attribute *attr,
3260 const char *buf, size_t count)
3261{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003262 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003263 int ret;
Tomas Winkler9257746f2008-09-03 11:26:32 +08003264 unsigned long mode;
Zhu Yib481de92007-09-25 17:54:57 -07003265
Tomas Winkler9257746f2008-09-03 11:26:32 +08003266
Zhu Yib481de92007-09-25 17:54:57 -07003267 mutex_lock(&priv->mutex);
3268
Tomas Winklerfee12472008-04-03 16:05:21 -07003269 if (!iwl_is_ready(priv)) {
Esti Kummer298df1f2008-07-18 13:52:58 +08003270 ret = -EAGAIN;
Zhu Yib481de92007-09-25 17:54:57 -07003271 goto out;
3272 }
3273
Tomas Winkler9257746f2008-09-03 11:26:32 +08003274 ret = strict_strtoul(buf, 10, &mode);
Emmanuel Grumbach926f0b22008-09-03 11:26:39 +08003275 if (ret)
Tomas Winkler9257746f2008-09-03 11:26:32 +08003276 goto out;
3277
Esti Kummer298df1f2008-07-18 13:52:58 +08003278 ret = iwl_power_set_user_mode(priv, mode);
3279 if (ret) {
Tomas Winklere1623442009-01-27 14:27:56 -08003280 IWL_DEBUG_MAC80211(priv, "failed setting power mode.\n");
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003281 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07003282 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003283 ret = count;
Zhu Yib481de92007-09-25 17:54:57 -07003284
3285 out:
3286 mutex_unlock(&priv->mutex);
Esti Kummer298df1f2008-07-18 13:52:58 +08003287 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003288}
3289
Zhu Yib481de92007-09-25 17:54:57 -07003290static ssize_t show_power_level(struct device *d,
3291 struct device_attribute *attr, char *buf)
3292{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003293 struct iwl_priv *priv = dev_get_drvdata(d);
Esti Kummer298df1f2008-07-18 13:52:58 +08003294 int mode = priv->power_data.user_power_setting;
3295 int system = priv->power_data.system_power_setting;
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003296 int level = priv->power_data.power_mode;
Zhu Yib481de92007-09-25 17:54:57 -07003297 char *p = buf;
3298
Esti Kummer298df1f2008-07-18 13:52:58 +08003299 switch (system) {
3300 case IWL_POWER_SYS_AUTO:
3301 p += sprintf(p, "SYSTEM:auto");
Zhu Yib481de92007-09-25 17:54:57 -07003302 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003303 case IWL_POWER_SYS_AC:
3304 p += sprintf(p, "SYSTEM:ac");
Zhu Yib481de92007-09-25 17:54:57 -07003305 break;
Esti Kummer298df1f2008-07-18 13:52:58 +08003306 case IWL_POWER_SYS_BATTERY:
3307 p += sprintf(p, "SYSTEM:battery");
3308 break;
Zhu Yib481de92007-09-25 17:54:57 -07003309 }
Esti Kummer298df1f2008-07-18 13:52:58 +08003310
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08003311 p += sprintf(p, "\tMODE:%s", (mode < IWL_POWER_AUTO) ?
3312 "fixed" : "auto");
Esti Kummer298df1f2008-07-18 13:52:58 +08003313 p += sprintf(p, "\tINDEX:%d", level);
3314 p += sprintf(p, "\n");
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003315 return p - buf + 1;
Zhu Yib481de92007-09-25 17:54:57 -07003316}
3317
3318static DEVICE_ATTR(power_level, S_IWUSR | S_IRUSR, show_power_level,
3319 store_power_level);
3320
Zhu Yib481de92007-09-25 17:54:57 -07003321
3322static ssize_t show_statistics(struct device *d,
3323 struct device_attribute *attr, char *buf)
3324{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003325 struct iwl_priv *priv = dev_get_drvdata(d);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08003326 u32 size = sizeof(struct iwl_notif_statistics);
Zhu Yib481de92007-09-25 17:54:57 -07003327 u32 len = 0, ofs = 0;
Tomas Winkler3ac7f142008-07-21 02:40:14 +03003328 u8 *data = (u8 *)&priv->statistics;
Zhu Yib481de92007-09-25 17:54:57 -07003329 int rc = 0;
3330
Tomas Winklerfee12472008-04-03 16:05:21 -07003331 if (!iwl_is_alive(priv))
Zhu Yib481de92007-09-25 17:54:57 -07003332 return -EAGAIN;
3333
3334 mutex_lock(&priv->mutex);
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -07003335 rc = iwl_send_statistics_request(priv, 0);
Zhu Yib481de92007-09-25 17:54:57 -07003336 mutex_unlock(&priv->mutex);
3337
3338 if (rc) {
3339 len = sprintf(buf,
3340 "Error sending statistics request: 0x%08X\n", rc);
3341 return len;
3342 }
3343
3344 while (size && (PAGE_SIZE - len)) {
3345 hex_dump_to_buffer(data + ofs, size, 16, 1, buf + len,
3346 PAGE_SIZE - len, 1);
3347 len = strlen(buf);
3348 if (PAGE_SIZE - len)
3349 buf[len++] = '\n';
3350
3351 ofs += 16;
3352 size -= min(size, 16U);
3353 }
3354
3355 return len;
3356}
3357
3358static DEVICE_ATTR(statistics, S_IRUGO, show_statistics, NULL);
3359
Zhu Yib481de92007-09-25 17:54:57 -07003360
Zhu Yib481de92007-09-25 17:54:57 -07003361/*****************************************************************************
3362 *
3363 * driver setup and teardown
3364 *
3365 *****************************************************************************/
3366
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003367static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003368{
3369 priv->workqueue = create_workqueue(DRV_NAME);
3370
3371 init_waitqueue_head(&priv->wait_command_queue);
3372
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003373 INIT_WORK(&priv->up, iwl_bg_up);
3374 INIT_WORK(&priv->restart, iwl_bg_restart);
3375 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
3376 INIT_WORK(&priv->rf_kill, iwl_bg_rf_kill);
3377 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003378 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003379 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
3380 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003381
Tomas Winkler2a421b92008-06-12 09:47:10 +08003382 iwl_setup_scan_deferred_work(priv);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003383 iwl_setup_power_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003384
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003385 if (priv->cfg->ops->lib->setup_deferred_work)
3386 priv->cfg->ops->lib->setup_deferred_work(priv);
3387
3388 init_timer(&priv->statistics_periodic);
3389 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003390 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07003391
3392 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003393 iwl_irq_tasklet, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07003394}
3395
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003396static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003397{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003398 if (priv->cfg->ops->lib->cancel_deferred_work)
3399 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003400
Joonwoo Park3ae6a052007-11-29 10:43:16 +09003401 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003402 cancel_delayed_work(&priv->scan_check);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003403 cancel_delayed_work_sync(&priv->set_power_save);
Zhu Yib481de92007-09-25 17:54:57 -07003404 cancel_delayed_work(&priv->alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07003405 cancel_work_sync(&priv->beacon_update);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003406 del_timer_sync(&priv->statistics_periodic);
Zhu Yib481de92007-09-25 17:54:57 -07003407}
3408
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003409static struct attribute *iwl_sysfs_entries[] = {
Zhu Yib481de92007-09-25 17:54:57 -07003410 &dev_attr_flags.attr,
3411 &dev_attr_filter_flags.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003412 &dev_attr_power_level.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003413 &dev_attr_statistics.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003414 &dev_attr_temperature.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003415 &dev_attr_tx_power.attr,
Ester Kummer8cf769c2008-05-06 11:05:11 +08003416#ifdef CONFIG_IWLWIFI_DEBUG
3417 &dev_attr_debug_level.attr,
3418#endif
Tomas Winklerbc6f59b2008-05-06 11:05:13 +08003419 &dev_attr_version.attr,
Zhu Yib481de92007-09-25 17:54:57 -07003420
3421 NULL
3422};
3423
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003424static struct attribute_group iwl_attribute_group = {
Zhu Yib481de92007-09-25 17:54:57 -07003425 .name = NULL, /* put in device directory */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003426 .attrs = iwl_sysfs_entries,
Zhu Yib481de92007-09-25 17:54:57 -07003427};
3428
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003429static struct ieee80211_ops iwl_hw_ops = {
3430 .tx = iwl_mac_tx,
3431 .start = iwl_mac_start,
3432 .stop = iwl_mac_stop,
3433 .add_interface = iwl_mac_add_interface,
3434 .remove_interface = iwl_mac_remove_interface,
3435 .config = iwl_mac_config,
3436 .config_interface = iwl_mac_config_interface,
3437 .configure_filter = iwl_configure_filter,
3438 .set_key = iwl_mac_set_key,
3439 .update_tkip_key = iwl_mac_update_tkip_key,
3440 .get_stats = iwl_mac_get_stats,
3441 .get_tx_stats = iwl_mac_get_tx_stats,
3442 .conf_tx = iwl_mac_conf_tx,
3443 .reset_tsf = iwl_mac_reset_tsf,
3444 .bss_info_changed = iwl_bss_info_changed,
3445 .ampdu_action = iwl_mac_ampdu_action,
Tomas Winklercb43dc22008-09-03 11:26:23 +08003446 .hw_scan = iwl_mac_hw_scan
Zhu Yib481de92007-09-25 17:54:57 -07003447};
3448
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003449static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07003450{
3451 int err = 0;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003452 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07003453 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08003454 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003455 unsigned long flags;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003456 u16 pci_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07003457
Assaf Krauss316c30d2008-03-14 10:38:46 -07003458 /************************
3459 * 1. Allocating HW data
3460 ************************/
3461
Cahill, Ben M6440adb2007-11-29 11:09:55 +08003462 /* Disabling hardware scan means that mac80211 will perform scans
3463 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003464 if (cfg->mod_params->disable_hw_scan) {
Ester Kummerbf403db2008-05-05 10:22:40 +08003465 if (cfg->mod_params->debug & IWL_DL_INFO)
3466 dev_printk(KERN_DEBUG, &(pdev->dev),
3467 "Disabling hw_scan\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003468 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07003469 }
3470
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003471 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003472 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07003473 err = -ENOMEM;
3474 goto out;
3475 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07003476 priv = hw->priv;
3477 /* At this point both hw and priv are allocated. */
3478
Zhu Yib481de92007-09-25 17:54:57 -07003479 SET_IEEE80211_DEV(hw, &pdev->dev);
3480
Tomas Winklere1623442009-01-27 14:27:56 -08003481 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08003482 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07003483 priv->pci_dev = pdev;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003484
Tomas Winkler0a6857e2008-03-12 16:58:49 -07003485#ifdef CONFIG_IWLWIFI_DEBUG
Ester Kummerbf403db2008-05-05 10:22:40 +08003486 priv->debug_level = priv->cfg->mod_params->debug;
Zhu Yib481de92007-09-25 17:54:57 -07003487 atomic_set(&priv->restrict_refcnt, 0);
3488#endif
Zhu Yib481de92007-09-25 17:54:57 -07003489
Assaf Krauss316c30d2008-03-14 10:38:46 -07003490 /**************************
3491 * 2. Initializing PCI bus
3492 **************************/
3493 if (pci_enable_device(pdev)) {
3494 err = -ENODEV;
3495 goto out_ieee80211_free_hw;
3496 }
3497
3498 pci_set_master(pdev);
3499
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003500 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07003501 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003502 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003503 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003504 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003505 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08003506 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003507 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003508 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08003509 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003510 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07003511 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003512 }
3513
3514 err = pci_request_regions(pdev, DRV_NAME);
3515 if (err)
3516 goto out_pci_disable_device;
3517
3518 pci_set_drvdata(pdev, priv);
3519
Assaf Krauss316c30d2008-03-14 10:38:46 -07003520
3521 /***********************
3522 * 3. Read REV register
3523 ***********************/
3524 priv->hw_base = pci_iomap(pdev, 0, 0);
3525 if (!priv->hw_base) {
3526 err = -ENODEV;
3527 goto out_pci_release_regions;
3528 }
3529
Tomas Winklere1623442009-01-27 14:27:56 -08003530 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07003531 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08003532 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003533
Tomas Winklerb661c812008-04-23 17:14:54 -07003534 iwl_hw_detect(priv);
Tomas Winkler978785a2008-12-19 10:37:31 +08003535 IWL_INFO(priv, "Detected Intel Wireless WiFi Link %s REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07003536 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003537
Tomas Winklere7b63582008-09-03 11:26:49 +08003538 /* We disable the RETRY_TIMEOUT register (0x41) to keep
3539 * PCI Tx retries from interfering with C3 CPU state */
3540 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
3541
Tomas Winkler91238712008-04-23 17:14:53 -07003542 /* amp init */
3543 err = priv->cfg->ops->lib->apm_ops.init(priv);
3544 if (err < 0) {
Tomas Winklere1623442009-01-27 14:27:56 -08003545 IWL_DEBUG_INFO(priv, "Failed to init APMG\n");
Tomas Winkler91238712008-04-23 17:14:53 -07003546 goto out_iounmap;
3547 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07003548 /*****************
3549 * 4. Read EEPROM
3550 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07003551 /* Read the EEPROM */
3552 err = iwl_eeprom_init(priv);
3553 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003554 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003555 goto out_iounmap;
3556 }
Tomas Winkler8614f362008-04-23 17:14:55 -07003557 err = iwl_eeprom_check_version(priv);
3558 if (err)
3559 goto out_iounmap;
3560
Ron Rindjunsky02883012008-05-15 13:53:53 +08003561 /* extract MAC Address */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003562 iwl_eeprom_get_mac(priv, priv->mac_addr);
Tomas Winklere1623442009-01-27 14:27:56 -08003563 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->mac_addr);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003564 SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr);
3565
3566 /************************
3567 * 5. Setup HW constants
3568 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08003569 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003570 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07003571 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003572 }
3573
3574 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08003575 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07003576 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07003577
Tomas Winkler6ba87952008-05-15 13:54:17 +08003578 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003579 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003580 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07003581 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07003582
3583 /**********************************
3584 * 7. Initialize module parameters
3585 **********************************/
3586
3587 /* Disable radio (SW RF KILL) via parameter when loading driver */
Assaf Krauss1ea87392008-03-18 14:57:50 -07003588 if (priv->cfg->mod_params->disable) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07003589 set_bit(STATUS_RF_KILL_SW, &priv->status);
Tomas Winklere1623442009-01-27 14:27:56 -08003590 IWL_DEBUG_INFO(priv, "Radio disabled.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07003591 }
3592
Assaf Krauss316c30d2008-03-14 10:38:46 -07003593 /********************
3594 * 8. Setup services
3595 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003596 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003597 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003598 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003599
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003600 pci_enable_msi(priv->pci_dev);
3601
3602 err = request_irq(priv->pci_dev->irq, iwl_isr, IRQF_SHARED,
3603 DRV_NAME, priv);
3604 if (err) {
3605 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
3606 goto out_disable_msi;
3607 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003608 err = sysfs_create_group(&pdev->dev.kobj, &iwl_attribute_group);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003609 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003610 IWL_ERR(priv, "failed to create sysfs device attributes\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003611 goto out_uninit_drv;
Assaf Krauss316c30d2008-03-14 10:38:46 -07003612 }
3613
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003614 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08003615 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003616
Tomas Winkler6ba87952008-05-15 13:54:17 +08003617 /**********************************
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003618 * 9. Setup and register mac80211
Tomas Winkler6ba87952008-05-15 13:54:17 +08003619 **********************************/
3620
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003621 /* enable interrupts if needed: hw bug w/a */
3622 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
3623 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
3624 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
3625 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
3626 }
3627
3628 iwl_enable_interrupts(priv);
3629
Tomas Winkler6ba87952008-05-15 13:54:17 +08003630 err = iwl_setup_mac(priv);
3631 if (err)
3632 goto out_remove_sysfs;
3633
3634 err = iwl_dbgfs_register(priv, DRV_NAME);
3635 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003636 IWL_ERR(priv, "failed to create debugfs files\n");
Tomas Winkler6ba87952008-05-15 13:54:17 +08003637
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003638 /* If platform's RF_KILL switch is NOT set to KILL */
3639 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
3640 clear_bit(STATUS_RF_KILL_HW, &priv->status);
3641 else
3642 set_bit(STATUS_RF_KILL_HW, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003643
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003644 err = iwl_rfkill_init(priv);
3645 if (err)
Winkler, Tomas15b16872008-12-19 10:37:33 +08003646 IWL_ERR(priv, "Unable to initialize RFKILL system. "
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003647 "Ignoring error: %d\n", err);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003648 else
3649 iwl_rfkill_set_hw_state(priv);
3650
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003651 iwl_power_initialize(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003652 return 0;
3653
Assaf Krauss316c30d2008-03-14 10:38:46 -07003654 out_remove_sysfs:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003655 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003656 out_disable_msi:
3657 pci_disable_msi(priv->pci_dev);
3658 pci_disable_device(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08003659 out_uninit_drv:
3660 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003661 out_free_eeprom:
3662 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003663 out_iounmap:
3664 pci_iounmap(pdev, priv->hw_base);
3665 out_pci_release_regions:
3666 pci_release_regions(pdev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07003667 pci_set_drvdata(pdev, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07003668 out_pci_disable_device:
3669 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003670 out_ieee80211_free_hw:
3671 ieee80211_free_hw(priv->hw);
3672 out:
3673 return err;
3674}
3675
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003676static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003677{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003678 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003679 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07003680
3681 if (!priv)
3682 return;
3683
Tomas Winklere1623442009-01-27 14:27:56 -08003684 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07003685
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003686 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003687 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08003688
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003689 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
3690 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08003691 * we need to set STATUS_EXIT_PENDING bit.
3692 */
3693 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003694 if (priv->mac80211_registered) {
3695 ieee80211_unregister_hw(priv->hw);
3696 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08003697 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003698 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07003699 }
3700
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003701 /* make sure we flush any pending irq or
3702 * tasklet for the driver
3703 */
3704 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003705 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07003706 spin_unlock_irqrestore(&priv->lock, flags);
3707
3708 iwl_synchronize_irq(priv);
3709
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08003710 iwl_rfkill_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003711 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003712
3713 if (priv->rxq.bd)
Tomas Winklera55360e2008-05-05 10:22:28 +08003714 iwl_rx_queue_free(priv, &priv->rxq);
Ron Rindjunsky1053d352008-05-05 10:22:43 +08003715 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003716
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +08003717 iwl_clear_stations_table(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07003718 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003719
Zhu Yib481de92007-09-25 17:54:57 -07003720
Mohamed Abbas948c1712007-10-25 17:15:45 +08003721 /*netif_stop_queue(dev); */
3722 flush_workqueue(priv->workqueue);
3723
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003724 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07003725 * priv->workqueue... so we can't take down the workqueue
3726 * until now... */
3727 destroy_workqueue(priv->workqueue);
3728 priv->workqueue = NULL;
3729
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003730 free_irq(priv->pci_dev->irq, priv);
3731 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07003732 pci_iounmap(pdev, priv->hw_base);
3733 pci_release_regions(pdev);
3734 pci_disable_device(pdev);
3735 pci_set_drvdata(pdev, NULL);
3736
Tomas Winkler6ba87952008-05-15 13:54:17 +08003737 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003738
3739 if (priv->ibss_beacon)
3740 dev_kfree_skb(priv->ibss_beacon);
3741
3742 ieee80211_free_hw(priv->hw);
3743}
3744
3745#ifdef CONFIG_PM
3746
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003747static int iwl_pci_suspend(struct pci_dev *pdev, pm_message_t state)
Zhu Yib481de92007-09-25 17:54:57 -07003748{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003749 struct iwl_priv *priv = pci_get_drvdata(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003750
Zhu Yie655b9f2008-01-24 02:19:38 -08003751 if (priv->is_open) {
3752 set_bit(STATUS_IN_SUSPEND, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003753 iwl_mac_stop(priv->hw);
Zhu Yie655b9f2008-01-24 02:19:38 -08003754 priv->is_open = 1;
3755 }
Zhu Yib481de92007-09-25 17:54:57 -07003756
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003757 pci_save_state(pdev);
3758 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07003759 pci_set_power_state(pdev, PCI_D3hot);
3760
Zhu Yib481de92007-09-25 17:54:57 -07003761 return 0;
3762}
3763
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003764static int iwl_pci_resume(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07003765{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003766 struct iwl_priv *priv = pci_get_drvdata(pdev);
Winkler, Tomas450154e2009-01-27 14:27:55 -08003767 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003768
Zhu Yib481de92007-09-25 17:54:57 -07003769 pci_set_power_state(pdev, PCI_D0);
Winkler, Tomas450154e2009-01-27 14:27:55 -08003770 ret = pci_enable_device(pdev);
3771 if (ret)
3772 return ret;
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003773 pci_restore_state(pdev);
3774 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003775
Zhu Yie655b9f2008-01-24 02:19:38 -08003776 if (priv->is_open)
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003777 iwl_mac_start(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07003778
Zhu Yie655b9f2008-01-24 02:19:38 -08003779 clear_bit(STATUS_IN_SUSPEND, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003780 return 0;
3781}
3782
3783#endif /* CONFIG_PM */
3784
3785/*****************************************************************************
3786 *
3787 * driver and module entry point
3788 *
3789 *****************************************************************************/
3790
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003791/* Hardware specific file defines the PCI IDs table for that hardware module */
3792static struct pci_device_id iwl_hw_card_ids[] = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003793#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003794 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
3795 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03003796#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003797#ifdef CONFIG_IWL5000
Esti Kummer47408632008-07-11 11:53:30 +08003798 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bg_cfg)},
3799 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bg_cfg)},
3800 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)},
3801 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)},
3802 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)},
3803 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003804 {IWL_PCI_DEVICE(0x4232, PCI_ANY_ID, iwl5100_agn_cfg)},
Esti Kummer47408632008-07-11 11:53:30 +08003805 {IWL_PCI_DEVICE(0x4235, PCI_ANY_ID, iwl5300_agn_cfg)},
3806 {IWL_PCI_DEVICE(0x4236, PCI_ANY_ID, iwl5300_agn_cfg)},
3807 {IWL_PCI_DEVICE(0x4237, PCI_ANY_ID, iwl5100_agn_cfg)},
Tomas Winklere96a8492008-09-11 11:45:20 +08003808/* 5350 WiFi/WiMax */
3809 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)},
3810 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)},
3811 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)},
Tomas Winkler7100e922008-12-01 16:32:18 -08003812/* 5150 Wifi/WiMax */
3813 {IWL_PCI_DEVICE(0x423C, PCI_ANY_ID, iwl5150_agn_cfg)},
3814 {IWL_PCI_DEVICE(0x423D, PCI_ANY_ID, iwl5150_agn_cfg)},
Jay Sternberge1228372009-01-19 15:30:34 -08003815/* 6000/6050 Series */
3816 {IWL_PCI_DEVICE(0x0082, 0x1102, iwl6000_2ag_cfg)},
3817 {IWL_PCI_DEVICE(0x0085, 0x1112, iwl6000_2ag_cfg)},
3818 {IWL_PCI_DEVICE(0x0082, 0x1122, iwl6000_2ag_cfg)},
3819 {IWL_PCI_DEVICE(0x422B, PCI_ANY_ID, iwl6000_3agn_cfg)},
3820 {IWL_PCI_DEVICE(0x4238, PCI_ANY_ID, iwl6000_3agn_cfg)},
3821 {IWL_PCI_DEVICE(0x0082, PCI_ANY_ID, iwl6000_2agn_cfg)},
3822 {IWL_PCI_DEVICE(0x0085, PCI_ANY_ID, iwl6000_3agn_cfg)},
3823 {IWL_PCI_DEVICE(0x0086, PCI_ANY_ID, iwl6050_3agn_cfg)},
3824 {IWL_PCI_DEVICE(0x0087, PCI_ANY_ID, iwl6050_2agn_cfg)},
3825 {IWL_PCI_DEVICE(0x0088, PCI_ANY_ID, iwl6050_3agn_cfg)},
3826 {IWL_PCI_DEVICE(0x0089, PCI_ANY_ID, iwl6050_2agn_cfg)},
Jay Sternbergc5d05692009-01-19 15:30:35 -08003827/* 100 Series WiFi */
3828 {IWL_PCI_DEVICE(0x0083, PCI_ANY_ID, iwl100_bgn_cfg)},
3829 {IWL_PCI_DEVICE(0x0084, PCI_ANY_ID, iwl100_bgn_cfg)},
Tomas Winkler5a6a2562008-04-24 11:55:23 -07003830#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08003831
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003832 {0}
3833};
3834MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
3835
3836static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07003837 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003838 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003839 .probe = iwl_pci_probe,
3840 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07003841#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003842 .suspend = iwl_pci_suspend,
3843 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07003844#endif
3845};
3846
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003847static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07003848{
3849
3850 int ret;
3851 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
3852 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003853
Tomas Winklere227cea2008-07-18 13:53:05 +08003854 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003855 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003856 printk(KERN_ERR DRV_NAME
3857 "Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003858 return ret;
3859 }
3860
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003861 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07003862 if (ret) {
Samuel Ortiza3139c52008-12-19 10:37:09 +08003863 printk(KERN_ERR DRV_NAME "Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003864 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07003865 }
Zhu Yib481de92007-09-25 17:54:57 -07003866
3867 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003868
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003869error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08003870 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07003871 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003872}
3873
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003874static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07003875{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003876 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08003877 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07003878}
3879
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003880module_exit(iwl_exit);
3881module_init(iwl_init);