blob: 763a93d832f873c3815ee49ca478007e10fd600a [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre1f447802010-01-15 13:43:41 -08003 * Copyright(c) 2003 - 2010 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
Joe Perchesc96c31e2010-07-26 14:39:58 -070030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
Zhu Yib481de92007-09-25 17:54:57 -070032#include <linux/kernel.h>
33#include <linux/module.h>
Zhu Yib481de92007-09-25 17:54:57 -070034#include <linux/init.h>
35#include <linux/pci.h>
John W. Linville1a7123c2010-08-05 14:39:31 -040036#include <linux/pci-aspm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Zhu Yib481de92007-09-25 17:54:57 -070038#include <linux/dma-mapping.h>
39#include <linux/delay.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040040#include <linux/sched.h>
Zhu Yib481de92007-09-25 17:54:57 -070041#include <linux/skbuff.h>
42#include <linux/netdevice.h>
43#include <linux/wireless.h>
44#include <linux/firmware.h>
Zhu Yib481de92007-09-25 17:54:57 -070045#include <linux/etherdevice.h>
46#include <linux/if_arp.h>
47
Zhu Yib481de92007-09-25 17:54:57 -070048#include <net/mac80211.h>
49
50#include <asm/div64.h>
51
Samuel Ortiza3139c52008-12-19 10:37:09 +080052#define DRV_NAME "iwlagn"
53
Assaf Krauss6bc913b2008-03-11 16:17:18 -070054#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070055#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070056#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070057#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070058#include "iwl-helpers.h"
Emmanuel Grumbach6974e362008-04-14 21:16:06 -070059#include "iwl-sta.h"
Johannes Berg0de76732010-09-22 18:02:11 +020060#include "iwl-agn-calib.h"
Johannes Berga1175122010-01-21 06:21:10 -080061#include "iwl-agn.h"
Zhu Yib481de92007-09-25 17:54:57 -070062
Christoph Hellwig416e1432007-10-25 17:15:49 +080063
Zhu Yib481de92007-09-25 17:54:57 -070064/******************************************************************************
65 *
66 * module boiler plate
67 *
68 ******************************************************************************/
69
Zhu Yib481de92007-09-25 17:54:57 -070070/*
71 * module name, copyright, version, etc.
Zhu Yib481de92007-09-25 17:54:57 -070072 */
Tomas Winklerd783b062008-07-18 13:53:02 +080073#define DRV_DESCRIPTION "Intel(R) Wireless WiFi Link AGN driver for Linux"
Zhu Yib481de92007-09-25 17:54:57 -070074
Tomas Winkler0a6857e2008-03-12 16:58:49 -070075#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -070076#define VD "d"
77#else
78#define VD
79#endif
80
Reinette Chatre81963d62010-01-22 14:22:57 -080081#define DRV_VERSION IWLWIFI_VERSION VD
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
Wey-Yi Guybee008b2010-08-23 07:57:04 -070090static int iwlagn_ant_coupling;
Wey-Yi Guyf37837c2010-08-23 07:57:12 -070091static bool iwlagn_bt_ch_announce = 1;
Wey-Yi Guybee008b2010-08-23 07:57:04 -070092
Zhu Yib481de92007-09-25 17:54:57 -070093/**
Johannes Berg7314c2b2010-09-22 18:01:55 +020094 * iwlagn_commit_rxon - commit staging_rxon to hardware
Zhu Yib481de92007-09-25 17:54:57 -070095 *
Ian Schram01ebd062007-10-25 17:15:22 +080096 * The RXON command in staging_rxon is committed to the hardware and
Zhu Yib481de92007-09-25 17:54:57 -070097 * the active_rxon structure is updated with the new data. This
98 * function correctly transitions out of the RXON_ASSOC_MSK state if
99 * a HW tune is required based on the RXON structure changes.
100 */
Johannes Berg7314c2b2010-09-22 18:01:55 +0200101int iwlagn_commit_rxon(struct iwl_priv *priv, struct iwl_rxon_context *ctx)
Zhu Yib481de92007-09-25 17:54:57 -0700102{
103 /* cast away the const for active_rxon in this function */
Johannes Berg246ed352010-08-23 10:46:32 +0200104 struct iwl_rxon_cmd *active_rxon = (void *)&ctx->active;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800105 int ret;
106 bool new_assoc =
Johannes Berg246ed352010-08-23 10:46:32 +0200107 !!(ctx->staging.filter_flags & RXON_FILTER_ASSOC_MSK);
Johannes Bergb01efe42010-08-23 10:46:56 +0200108 bool old_assoc = !!(ctx->active.filter_flags & RXON_FILTER_ASSOC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700109
Tomas Winklerfee12472008-04-03 16:05:21 -0700110 if (!iwl_is_alive(priv))
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800111 return -EBUSY;
Zhu Yib481de92007-09-25 17:54:57 -0700112
Johannes Berg763cc3b2010-09-03 06:32:21 -0700113 if (!ctx->is_active)
114 return 0;
115
Zhu Yib481de92007-09-25 17:54:57 -0700116 /* always get timestamp with Rx frame */
Johannes Berg246ed352010-08-23 10:46:32 +0200117 ctx->staging.flags |= RXON_FLG_TSF2HOST_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700118
Johannes Berg246ed352010-08-23 10:46:32 +0200119 ret = iwl_check_rxon_cmd(priv, ctx);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800120 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800121 IWL_ERR(priv, "Invalid RXON configuration. Not committing.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700122 return -EINVAL;
123 }
124
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800125 /*
126 * receive commit_rxon request
127 * abort any previous channel switch if still in process
128 */
129 if (priv->switch_rxon.switch_in_progress &&
Johannes Berg246ed352010-08-23 10:46:32 +0200130 (priv->switch_rxon.channel != ctx->staging.channel)) {
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800131 IWL_DEBUG_11H(priv, "abort channel switch on %d\n",
132 le16_to_cpu(priv->switch_rxon.channel));
Wey-Yi Guy79d07322010-05-06 08:54:11 -0700133 iwl_chswitch_done(priv, false);
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800134 }
135
Zhu Yib481de92007-09-25 17:54:57 -0700136 /* If we don't need to send a full RXON, we can use
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700137 * iwl_rxon_assoc_cmd which is used to reconfigure filter
Zhu Yib481de92007-09-25 17:54:57 -0700138 * and other flags for the current radio configuration. */
Johannes Berg246ed352010-08-23 10:46:32 +0200139 if (!iwl_full_rxon_required(priv, ctx)) {
140 ret = iwl_send_rxon_assoc(priv, ctx);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800141 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800142 IWL_ERR(priv, "Error setting RXON_ASSOC (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800143 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700144 }
145
Johannes Berg246ed352010-08-23 10:46:32 +0200146 memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon));
147 iwl_print_rx_config_cmd(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -0700148 return 0;
149 }
150
Zhu Yib481de92007-09-25 17:54:57 -0700151 /* If we are currently associated and the new config requires
152 * an RXON_ASSOC and the new config wants the associated mask enabled,
153 * we must clear the associated from the active configuration
154 * before we apply the new config */
Johannes Berg246ed352010-08-23 10:46:32 +0200155 if (iwl_is_associated_ctx(ctx) && new_assoc) {
Tomas Winklere1623442009-01-27 14:27:56 -0800156 IWL_DEBUG_INFO(priv, "Toggling associated bit on current RXON\n");
Zhu Yib481de92007-09-25 17:54:57 -0700157 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
158
Johannes Berg8f2d3d22010-08-23 10:46:37 +0200159 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
Johannes Berg246ed352010-08-23 10:46:32 +0200160 sizeof(struct iwl_rxon_cmd),
161 active_rxon);
Zhu Yib481de92007-09-25 17:54:57 -0700162
163 /* If the mask clearing failed then we set
164 * active_rxon back to what it was previously */
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800165 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700166 active_rxon->filter_flags |= RXON_FILTER_ASSOC_MSK;
Winkler, Tomas15b16872008-12-19 10:37:33 +0800167 IWL_ERR(priv, "Error clearing ASSOC_MSK (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800168 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700169 }
Johannes Bergdcef7322010-08-27 08:55:52 -0700170 iwl_clear_ucode_stations(priv, ctx);
171 iwl_restore_stations(priv, ctx);
Johannes Bergc10afb62010-08-23 10:46:43 +0200172 ret = iwl_restore_default_wep_keys(priv, ctx);
Johannes Berg335348b2010-03-30 10:11:46 -0700173 if (ret) {
174 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
175 return ret;
176 }
Zhu Yib481de92007-09-25 17:54:57 -0700177 }
178
Tomas Winklere1623442009-01-27 14:27:56 -0800179 IWL_DEBUG_INFO(priv, "Sending RXON\n"
Zhu Yib481de92007-09-25 17:54:57 -0700180 "* with%s RXON_FILTER_ASSOC_MSK\n"
181 "* channel = %d\n"
Johannes Berge1749612008-10-27 15:59:26 -0700182 "* bssid = %pM\n",
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800183 (new_assoc ? "" : "out"),
Johannes Berg246ed352010-08-23 10:46:32 +0200184 le16_to_cpu(ctx->staging.channel),
185 ctx->staging.bssid_addr);
Zhu Yib481de92007-09-25 17:54:57 -0700186
Johannes Berg246ed352010-08-23 10:46:32 +0200187 iwl_set_rxon_hwcrypto(priv, ctx, !priv->cfg->mod_params->sw_crypto);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800188
Johannes Bergb01efe42010-08-23 10:46:56 +0200189 if (!old_assoc) {
Johannes Berg2491fa42010-08-23 10:46:52 +0200190 /*
191 * First of all, before setting associated, we need to
192 * send RXON timing so the device knows about the DTIM
193 * period and other timing values
194 */
Johannes Berg47313e32010-08-23 10:46:55 +0200195 ret = iwl_send_rxon_timing(priv, ctx);
Johannes Berg2491fa42010-08-23 10:46:52 +0200196 if (ret) {
197 IWL_ERR(priv, "Error setting RXON timing!\n");
198 return ret;
199 }
200 }
201
Johannes Berg52a02d12010-08-27 09:44:50 -0700202 if (priv->cfg->ops->hcmd->set_pan_params) {
203 ret = priv->cfg->ops->hcmd->set_pan_params(priv);
204 if (ret)
205 return ret;
206 }
207
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800208 /* Apply the new configuration
Reinette Chatre7e246192010-02-18 22:58:32 -0800209 * RXON unassoc clears the station table in uCode so restoration of
210 * stations is needed after it (the RXON command) completes
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800211 */
212 if (!new_assoc) {
Johannes Berg8f2d3d22010-08-23 10:46:37 +0200213 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
Johannes Berg246ed352010-08-23 10:46:32 +0200214 sizeof(struct iwl_rxon_cmd), &ctx->staging);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800215 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800216 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800217 return ret;
218 }
Frans Pop91dd6c22010-03-24 14:19:58 -0700219 IWL_DEBUG_INFO(priv, "Return from !new_assoc RXON.\n");
Johannes Berg246ed352010-08-23 10:46:32 +0200220 memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon));
Johannes Bergdcef7322010-08-27 08:55:52 -0700221 iwl_clear_ucode_stations(priv, ctx);
222 iwl_restore_stations(priv, ctx);
Johannes Bergc10afb62010-08-23 10:46:43 +0200223 ret = iwl_restore_default_wep_keys(priv, ctx);
Johannes Berg335348b2010-03-30 10:11:46 -0700224 if (ret) {
225 IWL_ERR(priv, "Failed to restore WEP keys (%d)\n", ret);
226 return ret;
227 }
Zhu Yib481de92007-09-25 17:54:57 -0700228 }
Tomas Winkler91851592008-06-30 17:23:14 +0800229 if (new_assoc) {
Wey-Yi Guy8f1d9682010-09-03 11:42:04 -0700230 priv->start_calib = 0;
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800231 /* Apply the new configuration
232 * RXON assoc doesn't clear the station table in uCode,
233 */
Johannes Berg8f2d3d22010-08-23 10:46:37 +0200234 ret = iwl_send_cmd_pdu(priv, ctx->rxon_cmd,
Johannes Berg246ed352010-08-23 10:46:32 +0200235 sizeof(struct iwl_rxon_cmd), &ctx->staging);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800236 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800237 IWL_ERR(priv, "Error setting new RXON (%d)\n", ret);
Emmanuel Grumbach43d59b32008-06-30 17:23:06 +0800238 return ret;
239 }
Johannes Berg246ed352010-08-23 10:46:32 +0200240 memcpy(active_rxon, &ctx->staging, sizeof(*active_rxon));
Zhu Yib481de92007-09-25 17:54:57 -0700241 }
Johannes Berg246ed352010-08-23 10:46:32 +0200242 iwl_print_rx_config_cmd(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -0700243
Zhu Yi36da7d72008-07-11 11:53:40 +0800244 iwl_init_sensitivity(priv);
245
246 /* If we issue a new RXON command which required a tune then we must
247 * send a new TXPOWER command or we won't be able to Tx any frames */
248 ret = iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
249 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800250 IWL_ERR(priv, "Error sending TX power (%d)\n", ret);
Zhu Yi36da7d72008-07-11 11:53:40 +0800251 return ret;
252 }
253
Zhu Yib481de92007-09-25 17:54:57 -0700254 return 0;
255}
256
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700257void iwl_update_chain_flags(struct iwl_priv *priv)
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700258{
Johannes Berg246ed352010-08-23 10:46:32 +0200259 struct iwl_rxon_context *ctx;
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700260
Johannes Berg246ed352010-08-23 10:46:32 +0200261 if (priv->cfg->ops->hcmd->set_rxon_chain) {
262 for_each_context(priv, ctx) {
263 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
264 iwlcore_commit_rxon(priv, ctx);
265 }
266 }
Mohamed Abbas5da4b552008-04-21 15:41:51 -0700267}
268
Tomas Winklerfcab4232008-05-15 13:54:01 +0800269static void iwl_clear_free_frames(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700270{
271 struct list_head *element;
272
Tomas Winklere1623442009-01-27 14:27:56 -0800273 IWL_DEBUG_INFO(priv, "%d frames on pre-allocated heap on clear.\n",
Zhu Yib481de92007-09-25 17:54:57 -0700274 priv->frames_count);
275
276 while (!list_empty(&priv->free_frames)) {
277 element = priv->free_frames.next;
278 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800279 kfree(list_entry(element, struct iwl_frame, list));
Zhu Yib481de92007-09-25 17:54:57 -0700280 priv->frames_count--;
281 }
282
283 if (priv->frames_count) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800284 IWL_WARN(priv, "%d frames still in use. Did we lose one?\n",
Zhu Yib481de92007-09-25 17:54:57 -0700285 priv->frames_count);
286 priv->frames_count = 0;
287 }
288}
289
Tomas Winklerfcab4232008-05-15 13:54:01 +0800290static struct iwl_frame *iwl_get_free_frame(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700291{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800292 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700293 struct list_head *element;
294 if (list_empty(&priv->free_frames)) {
295 frame = kzalloc(sizeof(*frame), GFP_KERNEL);
296 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800297 IWL_ERR(priv, "Could not allocate frame!\n");
Zhu Yib481de92007-09-25 17:54:57 -0700298 return NULL;
299 }
300
301 priv->frames_count++;
302 return frame;
303 }
304
305 element = priv->free_frames.next;
306 list_del(element);
Tomas Winklerfcab4232008-05-15 13:54:01 +0800307 return list_entry(element, struct iwl_frame, list);
Zhu Yib481de92007-09-25 17:54:57 -0700308}
309
Tomas Winklerfcab4232008-05-15 13:54:01 +0800310static void iwl_free_frame(struct iwl_priv *priv, struct iwl_frame *frame)
Zhu Yib481de92007-09-25 17:54:57 -0700311{
312 memset(frame, 0, sizeof(*frame));
313 list_add(&frame->list, &priv->free_frames);
314}
315
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800316static u32 iwl_fill_beacon_frame(struct iwl_priv *priv,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800317 struct ieee80211_hdr *hdr,
Rami Rosen73ec1cc2008-12-16 09:37:07 +0200318 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700319{
Johannes Berg6abbe552010-07-15 05:59:07 -0700320 if (!priv->ibss_beacon)
Zhu Yib481de92007-09-25 17:54:57 -0700321 return 0;
322
323 if (priv->ibss_beacon->len > left)
324 return 0;
325
326 memcpy(hdr, priv->ibss_beacon->data, priv->ibss_beacon->len);
327
328 return priv->ibss_beacon->len;
329}
330
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800331/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
332static void iwl_set_beacon_tim(struct iwl_priv *priv,
333 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
334 u8 *beacon, u32 frame_size)
335{
336 u16 tim_idx;
337 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
338
339 /*
340 * The index is relative to frame start but we start looking at the
341 * variable-length part of the beacon.
342 */
343 tim_idx = mgmt->u.beacon.variable - beacon;
344
345 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
346 while ((tim_idx < (frame_size - 2)) &&
347 (beacon[tim_idx] != WLAN_EID_TIM))
348 tim_idx += beacon[tim_idx+1] + 2;
349
350 /* If TIM field was found, set variables */
351 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
352 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
353 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
354 } else
355 IWL_WARN(priv, "Unable to find TIM Element in beacon\n");
356}
357
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700358static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800359 struct iwl_frame *frame)
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800360{
361 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800362 u32 frame_size;
363 u32 rate_flags;
364 u32 rate;
365 /*
366 * We have to set up the TX command, the TX Beacon command, and the
367 * beacon contents.
368 */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800369
Johannes Berg76d04812010-08-23 10:46:47 +0200370 lockdep_assert_held(&priv->mutex);
371
372 if (!priv->beacon_ctx) {
373 IWL_ERR(priv, "trying to build beacon w/o beacon context!\n");
Julia Lawall950094c2010-09-05 21:00:26 +0200374 return 0;
Johannes Berg76d04812010-08-23 10:46:47 +0200375 }
376
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800377 /* Initialize memory */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800378 tx_beacon_cmd = &frame->u.beacon;
379 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
380
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800381 /* Set up TX beacon contents */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800382 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800383 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800384 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
385 return 0;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800386
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800387 /* Set up TX command fields */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800388 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Johannes Berg76d04812010-08-23 10:46:47 +0200389 tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800390 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800391 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800392 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
393
394 /* Set up TX beacon command fields */
395 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
396 frame_size);
397
398 /* Set up packet rate and flags */
Johannes Berg76d04812010-08-23 10:46:47 +0200399 rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx);
Johannes Berg0e1654f2010-05-18 02:48:36 -0700400 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
401 priv->hw_params.valid_tx_ant);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800402 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
403 if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE))
404 rate_flags |= RATE_MCS_CCK_MSK;
405 tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate,
406 rate_flags);
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800407
408 return sizeof(*tx_beacon_cmd) + frame_size;
409}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700410static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700411{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800412 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700413 unsigned int frame_size;
414 int rc;
Zhu Yib481de92007-09-25 17:54:57 -0700415
Tomas Winklerfcab4232008-05-15 13:54:01 +0800416 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700417 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800418 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700419 "command.\n");
420 return -ENOMEM;
421 }
422
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800423 frame_size = iwl_hw_get_beacon_cmd(priv, frame);
424 if (!frame_size) {
425 IWL_ERR(priv, "Error configuring the beacon command\n");
426 iwl_free_frame(priv, frame);
427 return -EINVAL;
428 }
Zhu Yib481de92007-09-25 17:54:57 -0700429
Tomas Winkler857485c2008-03-21 13:53:44 -0700430 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700431 &frame->u.cmd[0]);
432
Tomas Winklerfcab4232008-05-15 13:54:01 +0800433 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700434
435 return rc;
436}
437
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800438static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
439{
440 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
441
442 dma_addr_t addr = get_unaligned_le32(&tb->lo);
443 if (sizeof(dma_addr_t) > sizeof(u32))
444 addr |=
445 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
446
447 return addr;
448}
449
450static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
451{
452 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
453
454 return le16_to_cpu(tb->hi_n_len) >> 4;
455}
456
457static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
458 dma_addr_t addr, u16 len)
459{
460 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
461 u16 hi_n_len = len << 4;
462
463 put_unaligned_le32(addr, &tb->lo);
464 if (sizeof(dma_addr_t) > sizeof(u32))
465 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
466
467 tb->hi_n_len = cpu_to_le16(hi_n_len);
468
469 tfd->num_tbs = idx + 1;
470}
471
472static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
473{
474 return tfd->num_tbs & 0x1f;
475}
476
477/**
478 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
479 * @priv - driver private data
480 * @txq - tx queue
481 *
482 * Does NOT advance any TFD circular buffer read/write indexes
483 * Does NOT free the TFD itself (which is within circular buffer)
484 */
485void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
486{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800487 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800488 struct iwl_tfd *tfd;
489 struct pci_dev *dev = priv->pci_dev;
490 int index = txq->q.read_ptr;
491 int i;
492 int num_tbs;
493
494 tfd = &tfd_tmp[index];
495
496 /* Sanity check on number of chunks */
497 num_tbs = iwl_tfd_get_num_tbs(tfd);
498
499 if (num_tbs >= IWL_NUM_OF_TBS) {
500 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
501 /* @todo issue fatal error, it is quite serious situation */
502 return;
503 }
504
505 /* Unmap tx_cmd */
506 if (num_tbs)
507 pci_unmap_single(dev,
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900508 dma_unmap_addr(&txq->meta[index], mapping),
509 dma_unmap_len(&txq->meta[index], len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800510 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800511
512 /* Unmap chunks, if any. */
Johannes Bergff0d91c2010-05-17 02:37:34 -0700513 for (i = 1; i < num_tbs; i++)
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800514 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
515 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
516
Johannes Bergff0d91c2010-05-17 02:37:34 -0700517 /* free SKB */
518 if (txq->txb) {
519 struct sk_buff *skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700520
Johannes Bergff0d91c2010-05-17 02:37:34 -0700521 skb = txq->txb[txq->q.read_ptr].skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700522
Johannes Bergff0d91c2010-05-17 02:37:34 -0700523 /* can be called from irqs-disabled context */
524 if (skb) {
525 dev_kfree_skb_any(skb);
526 txq->txb[txq->q.read_ptr].skb = NULL;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800527 }
528 }
529}
530
531int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
532 struct iwl_tx_queue *txq,
533 dma_addr_t addr, u16 len,
534 u8 reset, u8 pad)
535{
536 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800537 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800538 u32 num_tbs;
539
540 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800541 tfd_tmp = (struct iwl_tfd *)txq->tfds;
542 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800543
544 if (reset)
545 memset(tfd, 0, sizeof(*tfd));
546
547 num_tbs = iwl_tfd_get_num_tbs(tfd);
548
549 /* Each TFD can point to a maximum 20 Tx buffers */
550 if (num_tbs >= IWL_NUM_OF_TBS) {
551 IWL_ERR(priv, "Error can not send more than %d chunks\n",
552 IWL_NUM_OF_TBS);
553 return -EINVAL;
554 }
555
556 BUG_ON(addr & ~DMA_BIT_MASK(36));
557 if (unlikely(addr & ~IWL_TX_DMA_MASK))
558 IWL_ERR(priv, "Unaligned address = %llx\n",
559 (unsigned long long)addr);
560
561 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
562
563 return 0;
564}
565
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800566/*
567 * Tell nic where to find circular buffer of Tx Frame Descriptors for
568 * given Tx queue, and enable the DMA channel used for that queue.
569 *
570 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
571 * channels supported in hardware.
572 */
573int iwl_hw_tx_queue_init(struct iwl_priv *priv,
574 struct iwl_tx_queue *txq)
575{
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800576 int txq_id = txq->q.id;
577
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800578 /* Circular buffer (TFD queue in DRAM) physical base address */
579 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
580 txq->q.dma_addr >> 8);
581
Samuel Ortiza8e74e272009-01-23 13:45:14 -0800582 return 0;
583}
584
Zhu Yib481de92007-09-25 17:54:57 -0700585/******************************************************************************
586 *
587 * Generic RX handler implementations
588 *
589 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800590static void iwl_rx_reply_alive(struct iwl_priv *priv,
591 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700592{
Zhu Yi2f301222009-10-09 17:19:45 +0800593 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler885ba202008-05-29 16:34:55 +0800594 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700595 struct delayed_work *pwork;
596
597 palive = &pkt->u.alive_frame;
598
Tomas Winklere1623442009-01-27 14:27:56 -0800599 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700600 "0x%01X 0x%01X\n",
601 palive->is_valid, palive->ver_type,
602 palive->ver_subtype);
603
604 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800605 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700606 memcpy(&priv->card_alive_init,
607 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800608 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700609 pwork = &priv->init_alive_start;
610 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800611 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700612 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800613 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700614 pwork = &priv->alive_start;
615 }
616
617 /* We delay the ALIVE response by 5ms to
618 * give the HW RF Kill time to activate... */
619 if (palive->is_valid == UCODE_VALID_OK)
620 queue_delayed_work(priv->workqueue, pwork,
621 msecs_to_jiffies(5));
622 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800623 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700624}
625
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700626static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700627{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700628 struct iwl_priv *priv =
629 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700630 struct sk_buff *beacon;
631
Johannes Berg76d04812010-08-23 10:46:47 +0200632 mutex_lock(&priv->mutex);
633 if (!priv->beacon_ctx) {
634 IWL_ERR(priv, "updating beacon w/o beacon context!\n");
635 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700636 }
637
Johannes Berg60744f62010-08-23 10:46:50 +0200638 if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) {
639 /*
640 * The ucode will send beacon notifications even in
641 * IBSS mode, but we don't want to process them. But
642 * we need to defer the type check to here due to
643 * requiring locking around the beacon_ctx access.
644 */
645 goto out;
646 }
647
Johannes Berg76d04812010-08-23 10:46:47 +0200648 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
649 beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif);
650 if (!beacon) {
651 IWL_ERR(priv, "update beacon failed\n");
652 goto out;
653 }
654
Zhu Yib481de92007-09-25 17:54:57 -0700655 /* new beacon skb is allocated every time; dispose previous.*/
656 if (priv->ibss_beacon)
657 dev_kfree_skb(priv->ibss_beacon);
658
659 priv->ibss_beacon = beacon;
Zhu Yib481de92007-09-25 17:54:57 -0700660
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700661 iwl_send_beacon_cmd(priv);
Johannes Berg76d04812010-08-23 10:46:47 +0200662 out:
663 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -0700664}
665
Wey-Yi Guyfbba9412010-08-23 07:57:10 -0700666static void iwl_bg_bt_runtime_config(struct work_struct *work)
667{
668 struct iwl_priv *priv =
669 container_of(work, struct iwl_priv, bt_runtime_config);
670
671 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
672 return;
673
674 /* dont send host command if rf-kill is on */
675 if (!iwl_is_ready_rf(priv))
676 return;
677 priv->cfg->ops->hcmd->send_bt_config(priv);
678}
679
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700680static void iwl_bg_bt_full_concurrency(struct work_struct *work)
681{
682 struct iwl_priv *priv =
683 container_of(work, struct iwl_priv, bt_full_concurrency);
Johannes Berg246ed352010-08-23 10:46:32 +0200684 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700685
686 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
687 return;
688
689 /* dont send host command if rf-kill is on */
690 if (!iwl_is_ready_rf(priv))
691 return;
692
693 IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
694 priv->bt_full_concurrent ?
695 "full concurrency" : "3-wire");
696
697 /*
698 * LQ & RXON updated cmds must be sent before BT Config cmd
699 * to avoid 3-wire collisions
700 */
Johannes Berg246ed352010-08-23 10:46:32 +0200701 mutex_lock(&priv->mutex);
702 for_each_context(priv, ctx) {
703 if (priv->cfg->ops->hcmd->set_rxon_chain)
704 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
705 iwlcore_commit_rxon(priv, ctx);
706 }
707 mutex_unlock(&priv->mutex);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700708
709 priv->cfg->ops->hcmd->send_bt_config(priv);
710}
711
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800712/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700713 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800714 *
715 * This callback is provided in order to send a statistics request.
716 *
717 * This timer function is continually reset to execute within
718 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
719 * was received. We need to ensure we receive the statistics in order
720 * to update the temperature used for calibrating the TXPOWER.
721 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700722static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800723{
724 struct iwl_priv *priv = (struct iwl_priv *)data;
725
726 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
727 return;
728
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700729 /* dont send host command if rf-kill is on */
730 if (!iwl_is_ready_rf(priv))
731 return;
732
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800733 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800734}
735
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800736
737static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
738 u32 start_idx, u32 num_events,
739 u32 mode)
740{
741 u32 i;
742 u32 ptr; /* SRAM byte address of log data */
743 u32 ev, time, data; /* event log data */
744 unsigned long reg_flags;
745
746 if (mode == 0)
747 ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32));
748 else
749 ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32));
750
751 /* Make sure device is powered up for SRAM reads */
752 spin_lock_irqsave(&priv->reg_lock, reg_flags);
753 if (iwl_grab_nic_access(priv)) {
754 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
755 return;
756 }
757
758 /* Set starting address; reads will auto-increment */
759 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
760 rmb();
761
762 /*
763 * "time" is actually "data" for mode 0 (no timestamp).
764 * place event id # at far right for easier visual parsing.
765 */
766 for (i = 0; i < num_events; i++) {
767 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
768 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
769 if (mode == 0) {
770 trace_iwlwifi_dev_ucode_cont_event(priv,
771 0, time, ev);
772 } else {
773 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
774 trace_iwlwifi_dev_ucode_cont_event(priv,
775 time, data, ev);
776 }
777 }
778 /* Allow device to power down */
779 iwl_release_nic_access(priv);
780 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
781}
782
Johannes Berg875295f2010-01-22 14:22:55 -0800783static void iwl_continuous_event_trace(struct iwl_priv *priv)
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800784{
785 u32 capacity; /* event log capacity in # entries */
786 u32 base; /* SRAM byte address of event log header */
787 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
788 u32 num_wraps; /* # times uCode wrapped to top of log */
789 u32 next_entry; /* index of next entry to be written by uCode */
790
791 if (priv->ucode_type == UCODE_INIT)
792 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
793 else
794 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
795 if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
796 capacity = iwl_read_targ_mem(priv, base);
797 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
798 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
799 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
800 } else
801 return;
802
803 if (num_wraps == priv->event_log.num_wraps) {
804 iwl_print_cont_event_trace(priv,
805 base, priv->event_log.next_entry,
806 next_entry - priv->event_log.next_entry,
807 mode);
808 priv->event_log.non_wraps_count++;
809 } else {
810 if ((num_wraps - priv->event_log.num_wraps) > 1)
811 priv->event_log.wraps_more_count++;
812 else
813 priv->event_log.wraps_once_count++;
814 trace_iwlwifi_dev_ucode_wrap_event(priv,
815 num_wraps - priv->event_log.num_wraps,
816 next_entry, priv->event_log.next_entry);
817 if (next_entry < priv->event_log.next_entry) {
818 iwl_print_cont_event_trace(priv, base,
819 priv->event_log.next_entry,
820 capacity - priv->event_log.next_entry,
821 mode);
822
823 iwl_print_cont_event_trace(priv, base, 0,
824 next_entry, mode);
825 } else {
826 iwl_print_cont_event_trace(priv, base,
827 next_entry, capacity - next_entry,
828 mode);
829
830 iwl_print_cont_event_trace(priv, base, 0,
831 next_entry, mode);
832 }
833 }
834 priv->event_log.num_wraps = num_wraps;
835 priv->event_log.next_entry = next_entry;
836}
837
838/**
839 * iwl_bg_ucode_trace - Timer callback to log ucode event
840 *
841 * The timer is continually set to execute every
842 * UCODE_TRACE_PERIOD milliseconds after the last timer expired
843 * this function is to perform continuous uCode event logging operation
844 * if enabled
845 */
846static void iwl_bg_ucode_trace(unsigned long data)
847{
848 struct iwl_priv *priv = (struct iwl_priv *)data;
849
850 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
851 return;
852
853 if (priv->event_log.ucode_trace) {
854 iwl_continuous_event_trace(priv);
855 /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */
856 mod_timer(&priv->ucode_trace,
857 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
858 }
859}
860
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700861static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800862 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700863{
Zhu Yi2f301222009-10-09 17:19:45 +0800864 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800865 struct iwl4965_beacon_notif *beacon =
866 (struct iwl4965_beacon_notif *)pkt->u.raw;
Johannes Berga85d7cc2010-07-31 08:34:10 -0700867#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklere7d326a2008-06-12 09:47:11 +0800868 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700869
Tomas Winklere1623442009-01-27 14:27:56 -0800870 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700871 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800872 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700873 beacon->beacon_notify_hdr.failure_frame,
874 le32_to_cpu(beacon->ibss_mgr_status),
875 le32_to_cpu(beacon->high_tsf),
876 le32_to_cpu(beacon->low_tsf), rate);
877#endif
878
Johannes Berga85d7cc2010-07-31 08:34:10 -0700879 priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
880
Johannes Berg60744f62010-08-23 10:46:50 +0200881 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -0700882 queue_work(priv->workqueue, &priv->beacon_update);
883}
884
Zhu Yib481de92007-09-25 17:54:57 -0700885/* Handle notification from uCode that card's power state is changing
886 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700887static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800888 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700889{
Zhu Yi2f301222009-10-09 17:19:45 +0800890 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700891 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
892 unsigned long status = priv->status;
893
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800894 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700895 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800896 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
897 (flags & CT_CARD_DISABLED) ?
898 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700899
900 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800901 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700902
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700903 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700904 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
905
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700906 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
907 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700908
909 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700910 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700911 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700912 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700913 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700914 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800915 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700916 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700917 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800918 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -0700919 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700920
921 if (flags & HW_CARD_DISABLED)
922 set_bit(STATUS_RF_KILL_HW, &priv->status);
923 else
924 clear_bit(STATUS_RF_KILL_HW, &priv->status);
925
926
Zhu Yib481de92007-09-25 17:54:57 -0700927 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800928 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700929
930 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200931 test_bit(STATUS_RF_KILL_HW, &priv->status)))
932 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
933 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700934 else
935 wake_up_interruptible(&priv->wait_command_queue);
936}
937
Wey-Yi Guy65550632010-06-24 13:18:35 -0700938static void iwl_bg_tx_flush(struct work_struct *work)
939{
940 struct iwl_priv *priv =
941 container_of(work, struct iwl_priv, tx_flush);
942
943 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
944 return;
945
946 /* do nothing if rf-kill is on */
947 if (!iwl_is_ready_rf(priv))
948 return;
949
950 if (priv->cfg->ops->lib->txfifo_flush) {
951 IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n");
952 iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL);
953 }
954}
955
Zhu Yib481de92007-09-25 17:54:57 -0700956/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700957 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700958 *
959 * Setup the RX handlers for each of the reply types sent from the uCode
960 * to the host.
961 *
962 * This function chains into the hardware specific files for them to setup
963 * any hardware specific handlers as well.
964 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800965static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700966{
Tomas Winkler885ba202008-05-29 16:34:55 +0800967 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700968 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
969 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800970 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
971 iwl_rx_spectrum_measure_notif;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700972 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700973 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700974 iwl_rx_pm_debug_statistics_notif;
975 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700976
Ben Cahill9fbab512007-11-29 11:09:47 +0800977 /*
978 * The same handler is used for both the REPLY to a discrete
979 * statistics request from the host as well as for the periodic
980 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700981 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800982 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800983 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800984
985 iwl_setup_rx_scan_handlers(priv);
986
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800987 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700988 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700989
Tomas Winklerc1354752008-05-29 16:35:04 +0800990 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
991 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800992 /* Rx handlers */
Wey-Yi Guy8d801082010-03-17 13:34:36 -0700993 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy;
994 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800995 /* block ack */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700996 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800997 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700998 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700999}
1000
Zhu Yib481de92007-09-25 17:54:57 -07001001/**
Tomas Winklera55360e2008-05-05 10:22:28 +08001002 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001003 *
1004 * Uses the priv->rx_handlers callback function array to invoke
1005 * the appropriate handlers, including command responses,
1006 * frame-received notifications, and other notifications.
1007 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001008void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001009{
Tomas Winklera55360e2008-05-05 10:22:28 +08001010 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001011 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001012 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001013 u32 r, i;
1014 int reclaim;
1015 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001016 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001017 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001018 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -07001019
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001020 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1021 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -08001022 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001023 i = rxq->read;
1024
1025 /* Rx interrupt, but nothing sent from uCode */
1026 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001027 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001028
Mohamed Abbas4752c932009-05-22 11:01:51 -07001029 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001030 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001031 if (total_empty < 0)
1032 total_empty += RX_QUEUE_SIZE;
1033
1034 if (total_empty > (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) {
Johannes Bergf4989d92010-05-28 04:08:30 -07001038 int len;
1039
Zhu Yib481de92007-09-25 17:54:57 -07001040 rxb = rxq->queue[i];
1041
Ben Cahill9fbab512007-11-29 11:09:47 +08001042 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001043 * then a bug has been introduced in the queue refilling
1044 * routines -- catch it here */
1045 BUG_ON(rxb == NULL);
1046
1047 rxq->queue[i] = NULL;
1048
Zhu Yi2f301222009-10-09 17:19:45 +08001049 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1050 PAGE_SIZE << priv->hw_params.rx_page_order,
1051 PCI_DMA_FROMDEVICE);
1052 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001053
Johannes Bergf4989d92010-05-28 04:08:30 -07001054 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
1055 len += sizeof(u32); /* account for status word */
1056 trace_iwlwifi_dev_rx(priv, pkt, len);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001057
Zhu Yib481de92007-09-25 17:54:57 -07001058 /* Reclaim a command buffer only if this packet is a response
1059 * to a (driver-originated) command.
1060 * If the packet (e.g. Rx frame) originated from uCode,
1061 * there is no command buffer to reclaim.
1062 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1063 * but apparently a few don't get set; catch them here. */
1064 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1065 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001066 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001067 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001068 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001069 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1070 (pkt->hdr.cmd != REPLY_TX);
1071
1072 /* Based on type of command response or notification,
1073 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001074 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001075 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001076 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001077 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001078 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001079 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001080 } else {
1081 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001082 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001083 "r %d i %d No handler needed for %s, 0x%02x\n",
1084 r, i, get_cmd_string(pkt->hdr.cmd),
1085 pkt->hdr.cmd);
1086 }
1087
Zhu Yi29b1b262009-10-23 13:42:25 -07001088 /*
1089 * XXX: After here, we should always check rxb->page
1090 * against NULL before touching it or its virtual
1091 * memory (pkt). Because some rx_handler might have
1092 * already taken or freed the pages.
1093 */
1094
Zhu Yib481de92007-09-25 17:54:57 -07001095 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001096 /* Invoke any callbacks, transfer the buffer to caller,
1097 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001098 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001099 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +08001100 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001101 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001102 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001103 }
1104
Zhu Yi73005152009-10-23 13:42:32 -07001105 /* Reuse the page if possible. For notification packets and
1106 * SKBs that fail to Rx correctly, add them back into the
1107 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001108 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001109 if (rxb->page != NULL) {
1110 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1111 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1112 PCI_DMA_FROMDEVICE);
1113 list_add_tail(&rxb->list, &rxq->rx_free);
1114 rxq->free_count++;
1115 } else
1116 list_add_tail(&rxb->list, &rxq->rx_used);
1117
Zhu Yib481de92007-09-25 17:54:57 -07001118 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001119
Zhu Yib481de92007-09-25 17:54:57 -07001120 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001121 /* If there are a lot of unused frames,
1122 * restock the Rx queue so ucode wont assert. */
1123 if (fill_rx) {
1124 count++;
1125 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001126 rxq->read = i;
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001127 iwlagn_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001128 count = 0;
1129 }
1130 }
Zhu Yib481de92007-09-25 17:54:57 -07001131 }
1132
1133 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001134 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001135 if (fill_rx)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001136 iwlagn_rx_replenish_now(priv);
Mohamed Abbas4752c932009-05-22 11:01:51 -07001137 else
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001138 iwlagn_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +08001139}
Tomas Winklera55360e2008-05-05 10:22:28 +08001140
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001141/* call this function to flush any scheduled tasklet */
1142static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1143{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001144 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001145 synchronize_irq(priv->pci_dev->irq);
1146 tasklet_kill(&priv->irq_tasklet);
1147}
1148
Mohamed Abbasef850d72009-05-22 11:01:50 -07001149static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001150{
1151 u32 inta, handled = 0;
1152 u32 inta_fh;
1153 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -07001154 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001155#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001156 u32 inta_mask;
1157#endif
1158
1159 spin_lock_irqsave(&priv->lock, flags);
1160
1161 /* Ack/clear/reset pending uCode interrupts.
1162 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1163 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001164 inta = iwl_read32(priv, CSR_INT);
1165 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001166
1167 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1168 * Any new interrupts that happen after this, either while we're
1169 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001170 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1171 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001172
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001173#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001174 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001175 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001176 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001177 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001178 inta, inta_mask, inta_fh);
1179 }
1180#endif
1181
Zhu Yi2f301222009-10-09 17:19:45 +08001182 spin_unlock_irqrestore(&priv->lock, flags);
1183
Zhu Yib481de92007-09-25 17:54:57 -07001184 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1185 * atomic, make sure that inta covers all the interrupts that
1186 * we've discovered, even if FH interrupt came in just after
1187 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001188 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001189 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001190 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001191 inta |= CSR_INT_BIT_FH_TX;
1192
1193 /* Now service all interrupt bits discovered above. */
1194 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001195 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001196
1197 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001198 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001199
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001200 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001201 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001202
1203 handled |= CSR_INT_BIT_HW_ERR;
1204
Zhu Yib481de92007-09-25 17:54:57 -07001205 return;
1206 }
1207
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001208#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001209 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001210 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001211 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");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001214 priv->isr_stats.sch++;
1215 }
Zhu Yib481de92007-09-25 17:54:57 -07001216
1217 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001218 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001219 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001220 priv->isr_stats.alive++;
1221 }
Zhu Yib481de92007-09-25 17:54:57 -07001222 }
1223#endif
1224 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001225 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001226
Ben Cahill9fbab512007-11-29 11:09:47 +08001227 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001228 if (inta & CSR_INT_BIT_RF_KILL) {
1229 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001230 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001231 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1232 hw_rf_kill = 1;
1233
Reinette Chatre4c423a22009-07-17 09:30:26 -07001234 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001235 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001236
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001237 priv->isr_stats.rfkill++;
1238
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001239 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001240 * the driver allows loading the ucode even if the radio
1241 * is killed. Hence update the killswitch state here. The
1242 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001243 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001244 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1245 if (hw_rf_kill)
1246 set_bit(STATUS_RF_KILL_HW, &priv->status);
1247 else
1248 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001249 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001250 }
Zhu Yib481de92007-09-25 17:54:57 -07001251
1252 handled |= CSR_INT_BIT_RF_KILL;
1253 }
1254
Ben Cahill9fbab512007-11-29 11:09:47 +08001255 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001256 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001257 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001258 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001259 handled |= CSR_INT_BIT_CT_KILL;
1260 }
1261
1262 /* Error detected by uCode */
1263 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001264 IWL_ERR(priv, "Microcode SW error detected. "
1265 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001266 priv->isr_stats.sw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001267 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001268 handled |= CSR_INT_BIT_SW_ERR;
1269 }
1270
Ben Cahillc2e61da2009-10-30 14:36:09 -07001271 /*
1272 * uCode wakes up after power-down sleep.
1273 * Tell device about any new tx or host commands enqueued,
1274 * and about any Rx buffers made available while asleep.
1275 */
Zhu Yib481de92007-09-25 17:54:57 -07001276 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001277 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001278 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001279 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1280 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001281 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001282 handled |= CSR_INT_BIT_WAKEUP;
1283 }
1284
1285 /* All uCode command responses, including Tx command responses,
1286 * Rx "responses" (frame-received notification), and other
1287 * notifications from uCode come through here*/
1288 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001289 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001290 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001291 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1292 }
1293
Ben Cahillc72cd192009-10-30 14:36:08 -07001294 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001295 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001296 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001297 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001298 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001299 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001300 priv->ucode_write_complete = 1;
1301 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001302 }
1303
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001304 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001305 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001306 priv->isr_stats.unhandled++;
1307 }
Zhu Yib481de92007-09-25 17:54:57 -07001308
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001309 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001310 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001311 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001312 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001313 }
1314
1315 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001316 /* only Re-enable if diabled by irq */
1317 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001318 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001319
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001320#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001321 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001322 inta = iwl_read32(priv, CSR_INT);
1323 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1324 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001325 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001326 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1327 }
1328#endif
Zhu Yib481de92007-09-25 17:54:57 -07001329}
1330
Mohamed Abbasef850d72009-05-22 11:01:50 -07001331/* tasklet for iwlagn interrupt */
1332static void iwl_irq_tasklet(struct iwl_priv *priv)
1333{
1334 u32 inta = 0;
1335 u32 handled = 0;
1336 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001337 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001338#ifdef CONFIG_IWLWIFI_DEBUG
1339 u32 inta_mask;
1340#endif
1341
1342 spin_lock_irqsave(&priv->lock, flags);
1343
1344 /* Ack/clear/reset pending uCode interrupts.
1345 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1346 */
Shanyu Zhao48a6be62010-03-16 10:22:26 -07001347 /* There is a hardware bug in the interrupt mask function that some
1348 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
1349 * they are disabled in the CSR_INT_MASK register. Furthermore the
1350 * ICT interrupt handling mechanism has another bug that might cause
1351 * these unmasked interrupts fail to be detected. We workaround the
1352 * hardware bugs here by ACKing all the possible interrupts so that
1353 * interrupt coalescing can still be achieved.
1354 */
David S. Miller4a35ecf2010-04-06 23:53:30 -07001355 iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001356
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001357 inta = priv->_agn.inta;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001358
1359#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001360 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001361 /* just for debug */
1362 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1363 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1364 inta, inta_mask);
1365 }
1366#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001367
1368 spin_unlock_irqrestore(&priv->lock, flags);
1369
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001370 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1371 priv->_agn.inta = 0;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001372
1373 /* Now service all interrupt bits discovered above. */
1374 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001375 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001376
1377 /* Tell the device to stop sending interrupts */
1378 iwl_disable_interrupts(priv);
1379
1380 priv->isr_stats.hw++;
1381 iwl_irq_handle_error(priv);
1382
1383 handled |= CSR_INT_BIT_HW_ERR;
1384
Mohamed Abbasef850d72009-05-22 11:01:50 -07001385 return;
1386 }
1387
1388#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001389 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001390 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1391 if (inta & CSR_INT_BIT_SCD) {
1392 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1393 "the frame/frames.\n");
1394 priv->isr_stats.sch++;
1395 }
1396
1397 /* Alive notification via Rx interrupt will do the real work */
1398 if (inta & CSR_INT_BIT_ALIVE) {
1399 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1400 priv->isr_stats.alive++;
1401 }
1402 }
1403#endif
1404 /* Safely ignore these bits for debug checks below */
1405 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1406
1407 /* HW RF KILL switch toggled */
1408 if (inta & CSR_INT_BIT_RF_KILL) {
1409 int hw_rf_kill = 0;
1410 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1411 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1412 hw_rf_kill = 1;
1413
Reinette Chatre4c423a22009-07-17 09:30:26 -07001414 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001415 hw_rf_kill ? "disable radio" : "enable radio");
1416
1417 priv->isr_stats.rfkill++;
1418
1419 /* driver only loads ucode once setting the interface up.
1420 * the driver allows loading the ucode even if the radio
1421 * is killed. Hence update the killswitch state here. The
1422 * rfkill handler will care about restarting if needed.
1423 */
1424 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1425 if (hw_rf_kill)
1426 set_bit(STATUS_RF_KILL_HW, &priv->status);
1427 else
1428 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001429 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001430 }
1431
1432 handled |= CSR_INT_BIT_RF_KILL;
1433 }
1434
1435 /* Chip got too hot and stopped itself */
1436 if (inta & CSR_INT_BIT_CT_KILL) {
1437 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1438 priv->isr_stats.ctkill++;
1439 handled |= CSR_INT_BIT_CT_KILL;
1440 }
1441
1442 /* Error detected by uCode */
1443 if (inta & CSR_INT_BIT_SW_ERR) {
1444 IWL_ERR(priv, "Microcode SW error detected. "
1445 " Restarting 0x%X.\n", inta);
1446 priv->isr_stats.sw++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001447 iwl_irq_handle_error(priv);
1448 handled |= CSR_INT_BIT_SW_ERR;
1449 }
1450
1451 /* uCode wakes up after power-down sleep */
1452 if (inta & CSR_INT_BIT_WAKEUP) {
1453 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1454 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001455 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1456 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001457
1458 priv->isr_stats.wakeup++;
1459
1460 handled |= CSR_INT_BIT_WAKEUP;
1461 }
1462
1463 /* All uCode command responses, including Tx command responses,
1464 * Rx "responses" (frame-received notification), and other
1465 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001466 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1467 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001468 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001469 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1470 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1471 iwl_write32(priv, CSR_FH_INT_STATUS,
1472 CSR49_FH_INT_RX_MASK);
1473 }
1474 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1475 handled |= CSR_INT_BIT_RX_PERIODIC;
1476 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1477 }
1478 /* Sending RX interrupt require many steps to be done in the
1479 * the device:
1480 * 1- write interrupt to current index in ICT table.
1481 * 2- dma RX frame.
1482 * 3- update RX shared data to indicate last write index.
1483 * 4- send interrupt.
1484 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001485 * but the shared data changes does not reflect this;
1486 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001487 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001488
1489 /* Disable periodic interrupt; we use it as just a one-shot. */
1490 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001491 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001492 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001493
1494 /*
1495 * Enable periodic interrupt in 8 msec only if we received
1496 * real RX interrupt (instead of just periodic int), to catch
1497 * any dangling Rx interrupt. If it was just the periodic
1498 * interrupt, there was no dangling Rx activity, and no need
1499 * to extend the periodic interrupt; one-shot is enough.
1500 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001501 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001502 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001503 CSR_INT_PERIODIC_ENA);
1504
Mohamed Abbasef850d72009-05-22 11:01:50 -07001505 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001506 }
1507
Ben Cahillc72cd192009-10-30 14:36:08 -07001508 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001509 if (inta & CSR_INT_BIT_FH_TX) {
1510 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001511 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001512 priv->isr_stats.tx++;
1513 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001514 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001515 priv->ucode_write_complete = 1;
1516 wake_up_interruptible(&priv->wait_command_queue);
1517 }
1518
1519 if (inta & ~handled) {
1520 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1521 priv->isr_stats.unhandled++;
1522 }
1523
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001524 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001525 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001526 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001527 }
1528
Mohamed Abbasef850d72009-05-22 11:01:50 -07001529 /* Re-enable all interrupts */
1530 /* only Re-enable if diabled by irq */
1531 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1532 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001533}
1534
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001535/* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */
1536#define ACK_CNT_RATIO (50)
1537#define BA_TIMEOUT_CNT (5)
1538#define BA_TIMEOUT_MAX (16)
1539
1540/**
1541 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
1542 *
1543 * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding
1544 * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
1545 * operation state.
1546 */
1547bool iwl_good_ack_health(struct iwl_priv *priv,
1548 struct iwl_rx_packet *pkt)
1549{
1550 bool rc = true;
1551 int actual_ack_cnt_delta, expected_ack_cnt_delta;
1552 int ba_timeout_delta;
1553
1554 actual_ack_cnt_delta =
1555 le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001556 le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001557 expected_ack_cnt_delta =
1558 le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001559 le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001560 ba_timeout_delta =
1561 le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001562 le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001563 if ((priv->_agn.agg_tids_count > 0) &&
1564 (expected_ack_cnt_delta > 0) &&
1565 (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta)
1566 < ACK_CNT_RATIO) &&
1567 (ba_timeout_delta > BA_TIMEOUT_CNT)) {
1568 IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d,"
1569 " expected_ack_cnt = %d\n",
1570 actual_ack_cnt_delta, expected_ack_cnt_delta);
1571
Johannes Bergd73e4922010-05-06 12:18:41 -07001572#ifdef CONFIG_IWLWIFI_DEBUGFS
1573 /*
1574 * This is ifdef'ed on DEBUGFS because otherwise the
1575 * statistics aren't available. If DEBUGFS is set but
1576 * DEBUG is not, these will just compile out.
1577 */
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001578 IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001579 priv->_agn.delta_statistics.tx.rx_detected_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001580 IWL_DEBUG_RADIO(priv,
1581 "ack_or_ba_timeout_collision delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001582 priv->_agn.delta_statistics.tx.
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001583 ack_or_ba_timeout_collision);
1584#endif
1585 IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n",
1586 ba_timeout_delta);
1587 if (!actual_ack_cnt_delta &&
1588 (ba_timeout_delta >= BA_TIMEOUT_MAX))
1589 rc = false;
1590 }
1591 return rc;
1592}
1593
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001594
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001595/*****************************************************************************
1596 *
1597 * sysfs attributes
1598 *
1599 *****************************************************************************/
1600
1601#ifdef CONFIG_IWLWIFI_DEBUG
1602
1603/*
1604 * The following adds a new attribute to the sysfs representation
1605 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
1606 * used for controlling the debug level.
1607 *
1608 * See the level definitions in iwl for details.
1609 *
1610 * The debug_level being managed using sysfs below is a per device debug
1611 * level that is used instead of the global debug level if it (the per
1612 * device debug level) is set.
1613 */
1614static ssize_t show_debug_level(struct device *d,
1615 struct device_attribute *attr, char *buf)
1616{
1617 struct iwl_priv *priv = dev_get_drvdata(d);
1618 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
1619}
1620static ssize_t store_debug_level(struct device *d,
1621 struct device_attribute *attr,
1622 const char *buf, size_t count)
1623{
1624 struct iwl_priv *priv = dev_get_drvdata(d);
1625 unsigned long val;
1626 int ret;
1627
1628 ret = strict_strtoul(buf, 0, &val);
1629 if (ret)
1630 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
1631 else {
1632 priv->debug_level = val;
1633 if (iwl_alloc_traffic_mem(priv))
1634 IWL_ERR(priv,
1635 "Not enough memory to generate traffic log\n");
1636 }
1637 return strnlen(buf, count);
1638}
1639
1640static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
1641 show_debug_level, store_debug_level);
1642
1643
1644#endif /* CONFIG_IWLWIFI_DEBUG */
1645
1646
1647static ssize_t show_temperature(struct device *d,
1648 struct device_attribute *attr, char *buf)
1649{
1650 struct iwl_priv *priv = dev_get_drvdata(d);
1651
1652 if (!iwl_is_alive(priv))
1653 return -EAGAIN;
1654
1655 return sprintf(buf, "%d\n", priv->temperature);
1656}
1657
1658static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
1659
1660static ssize_t show_tx_power(struct device *d,
1661 struct device_attribute *attr, char *buf)
1662{
1663 struct iwl_priv *priv = dev_get_drvdata(d);
1664
1665 if (!iwl_is_ready_rf(priv))
1666 return sprintf(buf, "off\n");
1667 else
1668 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
1669}
1670
1671static ssize_t store_tx_power(struct device *d,
1672 struct device_attribute *attr,
1673 const char *buf, size_t count)
1674{
1675 struct iwl_priv *priv = dev_get_drvdata(d);
1676 unsigned long val;
1677 int ret;
1678
1679 ret = strict_strtoul(buf, 10, &val);
1680 if (ret)
1681 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
1682 else {
1683 ret = iwl_set_tx_power(priv, val, false);
1684 if (ret)
1685 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
1686 ret);
1687 else
1688 ret = count;
1689 }
1690 return ret;
1691}
1692
1693static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
1694
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001695static struct attribute *iwl_sysfs_entries[] = {
1696 &dev_attr_temperature.attr,
1697 &dev_attr_tx_power.attr,
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001698#ifdef CONFIG_IWLWIFI_DEBUG
1699 &dev_attr_debug_level.attr,
1700#endif
1701 NULL
1702};
1703
1704static struct attribute_group iwl_attribute_group = {
1705 .name = NULL, /* put in device directory */
1706 .attrs = iwl_sysfs_entries,
1707};
1708
Zhu Yib481de92007-09-25 17:54:57 -07001709/******************************************************************************
1710 *
1711 * uCode download functions
1712 *
1713 ******************************************************************************/
1714
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001715static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001716{
Tomas Winkler98c92212008-01-14 17:46:20 -08001717 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1718 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1719 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1720 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1721 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1722 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001723}
1724
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001725static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001726{
1727 /* Remove all resets to allow NIC to operate */
1728 iwl_write32(priv, CSR_RESET, 0);
1729}
1730
Johannes Bergdd7a2502010-04-28 23:33:10 -07001731struct iwlagn_ucode_capabilities {
1732 u32 max_probe_length;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001733 u32 standard_phy_calibration_size;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001734 bool pan;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001735};
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001736
Johannes Bergb08dfd02010-01-29 11:54:56 -08001737static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001738static int iwl_mac_setup_register(struct iwl_priv *priv,
1739 struct iwlagn_ucode_capabilities *capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001740
Jay Sternberg39396082010-08-12 10:24:07 -07001741#define UCODE_EXPERIMENTAL_INDEX 100
1742#define UCODE_EXPERIMENTAL_TAG "exp"
1743
Johannes Bergb08dfd02010-01-29 11:54:56 -08001744static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
Zhu Yib481de92007-09-25 17:54:57 -07001745{
Reinette Chatrea0987a82008-12-02 12:14:06 -08001746 const char *name_pre = priv->cfg->fw_name_pre;
Jay Sternberg39396082010-08-12 10:24:07 -07001747 char tag[8];
Johannes Bergb08dfd02010-01-29 11:54:56 -08001748
Jay Sternberg39396082010-08-12 10:24:07 -07001749 if (first) {
1750#ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
1751 priv->fw_index = UCODE_EXPERIMENTAL_INDEX;
1752 strcpy(tag, UCODE_EXPERIMENTAL_TAG);
1753 } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) {
1754#endif
Johannes Bergb08dfd02010-01-29 11:54:56 -08001755 priv->fw_index = priv->cfg->ucode_api_max;
Jay Sternberg39396082010-08-12 10:24:07 -07001756 sprintf(tag, "%d", priv->fw_index);
1757 } else {
Johannes Bergb08dfd02010-01-29 11:54:56 -08001758 priv->fw_index--;
Jay Sternberg39396082010-08-12 10:24:07 -07001759 sprintf(tag, "%d", priv->fw_index);
1760 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001761
1762 if (priv->fw_index < priv->cfg->ucode_api_min) {
1763 IWL_ERR(priv, "no suitable firmware found!\n");
1764 return -ENOENT;
1765 }
1766
Jay Sternberg39396082010-08-12 10:24:07 -07001767 sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001768
Jay Sternberg39396082010-08-12 10:24:07 -07001769 IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n",
1770 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1771 ? "EXPERIMENTAL " : "",
Johannes Bergb08dfd02010-01-29 11:54:56 -08001772 priv->firmware_name);
1773
1774 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1775 &priv->pci_dev->dev, GFP_KERNEL, priv,
1776 iwl_ucode_callback);
1777}
1778
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001779struct iwlagn_firmware_pieces {
1780 const void *inst, *data, *init, *init_data, *boot;
1781 size_t inst_size, data_size, init_size, init_data_size, boot_size;
1782
1783 u32 build;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001784
1785 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
1786 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001787};
1788
1789static int iwlagn_load_legacy_firmware(struct iwl_priv *priv,
1790 const struct firmware *ucode_raw,
1791 struct iwlagn_firmware_pieces *pieces)
1792{
1793 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
1794 u32 api_ver, hdr_size;
1795 const u8 *src;
1796
1797 priv->ucode_ver = le32_to_cpu(ucode->ver);
1798 api_ver = IWL_UCODE_API(priv->ucode_ver);
1799
1800 switch (api_ver) {
1801 default:
1802 /*
1803 * 4965 doesn't revision the firmware file format
1804 * along with the API version, it always uses v1
1805 * file format.
1806 */
1807 if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) !=
1808 CSR_HW_REV_TYPE_4965) {
1809 hdr_size = 28;
1810 if (ucode_raw->size < hdr_size) {
1811 IWL_ERR(priv, "File size too small!\n");
1812 return -EINVAL;
1813 }
1814 pieces->build = le32_to_cpu(ucode->u.v2.build);
1815 pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size);
1816 pieces->data_size = le32_to_cpu(ucode->u.v2.data_size);
1817 pieces->init_size = le32_to_cpu(ucode->u.v2.init_size);
1818 pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size);
1819 pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size);
1820 src = ucode->u.v2.data;
1821 break;
1822 }
1823 /* fall through for 4965 */
1824 case 0:
1825 case 1:
1826 case 2:
1827 hdr_size = 24;
1828 if (ucode_raw->size < hdr_size) {
1829 IWL_ERR(priv, "File size too small!\n");
1830 return -EINVAL;
1831 }
1832 pieces->build = 0;
1833 pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size);
1834 pieces->data_size = le32_to_cpu(ucode->u.v1.data_size);
1835 pieces->init_size = le32_to_cpu(ucode->u.v1.init_size);
1836 pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size);
1837 pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size);
1838 src = ucode->u.v1.data;
1839 break;
1840 }
1841
1842 /* Verify size of file vs. image size info in file's header */
1843 if (ucode_raw->size != hdr_size + pieces->inst_size +
1844 pieces->data_size + pieces->init_size +
1845 pieces->init_data_size + pieces->boot_size) {
1846
1847 IWL_ERR(priv,
1848 "uCode file size %d does not match expected size\n",
1849 (int)ucode_raw->size);
1850 return -EINVAL;
1851 }
1852
1853 pieces->inst = src;
1854 src += pieces->inst_size;
1855 pieces->data = src;
1856 src += pieces->data_size;
1857 pieces->init = src;
1858 src += pieces->init_size;
1859 pieces->init_data = src;
1860 src += pieces->init_data_size;
1861 pieces->boot = src;
1862 src += pieces->boot_size;
1863
1864 return 0;
1865}
1866
Johannes Bergdd7a2502010-04-28 23:33:10 -07001867static int iwlagn_wanted_ucode_alternative = 1;
1868
1869static int iwlagn_load_firmware(struct iwl_priv *priv,
1870 const struct firmware *ucode_raw,
1871 struct iwlagn_firmware_pieces *pieces,
1872 struct iwlagn_ucode_capabilities *capa)
1873{
1874 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
1875 struct iwl_ucode_tlv *tlv;
1876 size_t len = ucode_raw->size;
1877 const u8 *data;
1878 int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp;
1879 u64 alternatives;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001880 u32 tlv_len;
1881 enum iwl_ucode_tlv_type tlv_type;
1882 const u8 *tlv_data;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001883
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001884 if (len < sizeof(*ucode)) {
1885 IWL_ERR(priv, "uCode has invalid length: %zd\n", len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001886 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001887 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001888
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001889 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
1890 IWL_ERR(priv, "invalid uCode magic: 0X%x\n",
1891 le32_to_cpu(ucode->magic));
Johannes Bergdd7a2502010-04-28 23:33:10 -07001892 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001893 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001894
1895 /*
1896 * Check which alternatives are present, and "downgrade"
1897 * when the chosen alternative is not present, warning
1898 * the user when that happens. Some files may not have
1899 * any alternatives, so don't warn in that case.
1900 */
1901 alternatives = le64_to_cpu(ucode->alternatives);
1902 tmp = wanted_alternative;
1903 if (wanted_alternative > 63)
1904 wanted_alternative = 63;
1905 while (wanted_alternative && !(alternatives & BIT(wanted_alternative)))
1906 wanted_alternative--;
1907 if (wanted_alternative && wanted_alternative != tmp)
1908 IWL_WARN(priv,
1909 "uCode alternative %d not available, choosing %d\n",
1910 tmp, wanted_alternative);
1911
1912 priv->ucode_ver = le32_to_cpu(ucode->ver);
1913 pieces->build = le32_to_cpu(ucode->build);
1914 data = ucode->data;
1915
1916 len -= sizeof(*ucode);
1917
Johannes Berg704da532010-07-14 09:34:50 -07001918 while (len >= sizeof(*tlv)) {
Johannes Bergdd7a2502010-04-28 23:33:10 -07001919 u16 tlv_alt;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001920
1921 len -= sizeof(*tlv);
1922 tlv = (void *)data;
1923
1924 tlv_len = le32_to_cpu(tlv->length);
1925 tlv_type = le16_to_cpu(tlv->type);
1926 tlv_alt = le16_to_cpu(tlv->alternative);
1927 tlv_data = tlv->data;
1928
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001929 if (len < tlv_len) {
1930 IWL_ERR(priv, "invalid TLV len: %zd/%u\n",
1931 len, tlv_len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001932 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001933 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001934 len -= ALIGN(tlv_len, 4);
1935 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
1936
1937 /*
1938 * Alternative 0 is always valid.
1939 *
1940 * Skip alternative TLVs that are not selected.
1941 */
1942 if (tlv_alt != 0 && tlv_alt != wanted_alternative)
1943 continue;
1944
1945 switch (tlv_type) {
1946 case IWL_UCODE_TLV_INST:
1947 pieces->inst = tlv_data;
1948 pieces->inst_size = tlv_len;
1949 break;
1950 case IWL_UCODE_TLV_DATA:
1951 pieces->data = tlv_data;
1952 pieces->data_size = tlv_len;
1953 break;
1954 case IWL_UCODE_TLV_INIT:
1955 pieces->init = tlv_data;
1956 pieces->init_size = tlv_len;
1957 break;
1958 case IWL_UCODE_TLV_INIT_DATA:
1959 pieces->init_data = tlv_data;
1960 pieces->init_data_size = tlv_len;
1961 break;
1962 case IWL_UCODE_TLV_BOOT:
1963 pieces->boot = tlv_data;
1964 pieces->boot_size = tlv_len;
1965 break;
1966 case IWL_UCODE_TLV_PROBE_MAX_LEN:
Johannes Berg704da532010-07-14 09:34:50 -07001967 if (tlv_len != sizeof(u32))
1968 goto invalid_tlv_len;
1969 capa->max_probe_length =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001970 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001971 break;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001972 case IWL_UCODE_TLV_PAN:
1973 if (tlv_len)
1974 goto invalid_tlv_len;
1975 capa->pan = true;
1976 break;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001977 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001978 if (tlv_len != sizeof(u32))
1979 goto invalid_tlv_len;
1980 pieces->init_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001981 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001982 break;
1983 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001984 if (tlv_len != sizeof(u32))
1985 goto invalid_tlv_len;
1986 pieces->init_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001987 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001988 break;
1989 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001990 if (tlv_len != sizeof(u32))
1991 goto invalid_tlv_len;
1992 pieces->init_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001993 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001994 break;
1995 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001996 if (tlv_len != sizeof(u32))
1997 goto invalid_tlv_len;
1998 pieces->inst_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001999 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002000 break;
2001 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002002 if (tlv_len != sizeof(u32))
2003 goto invalid_tlv_len;
2004 pieces->inst_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002005 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002006 break;
2007 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07002008 if (tlv_len != sizeof(u32))
2009 goto invalid_tlv_len;
2010 pieces->inst_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002011 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002012 break;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002013 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
2014 if (tlv_len)
Johannes Berg704da532010-07-14 09:34:50 -07002015 goto invalid_tlv_len;
2016 priv->enhance_sensitivity_table = true;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002017 break;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002018 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002019 if (tlv_len != sizeof(u32))
2020 goto invalid_tlv_len;
2021 capa->standard_phy_calibration_size =
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002022 le32_to_cpup((__le32 *)tlv_data);
2023 break;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002024 default:
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002025 IWL_WARN(priv, "unknown TLV: %d\n", tlv_type);
Johannes Bergdd7a2502010-04-28 23:33:10 -07002026 break;
2027 }
2028 }
2029
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002030 if (len) {
2031 IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len);
2032 iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg704da532010-07-14 09:34:50 -07002033 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002034 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07002035
Johannes Berg704da532010-07-14 09:34:50 -07002036 return 0;
2037
2038 invalid_tlv_len:
2039 IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
2040 iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len);
2041
2042 return -EINVAL;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002043}
2044
Johannes Bergb08dfd02010-01-29 11:54:56 -08002045/**
2046 * iwl_ucode_callback - callback when firmware was loaded
2047 *
2048 * If loaded successfully, copies the firmware into buffers
2049 * for the card to fetch (via DMA).
2050 */
2051static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
2052{
2053 struct iwl_priv *priv = context;
2054 struct iwl_ucode_header *ucode;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002055 int err;
2056 struct iwlagn_firmware_pieces pieces;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002057 const unsigned int api_max = priv->cfg->ucode_api_max;
2058 const unsigned int api_min = priv->cfg->ucode_api_min;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002059 u32 api_ver;
Johannes Berg3e4de762010-04-28 12:09:12 -07002060 char buildstr[25];
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002061 u32 build;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002062 struct iwlagn_ucode_capabilities ucode_capa = {
2063 .max_probe_length = 200,
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002064 .standard_phy_calibration_size =
2065 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE,
Johannes Bergdd7a2502010-04-28 23:33:10 -07002066 };
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002067
2068 memset(&pieces, 0, sizeof(pieces));
Zhu Yib481de92007-09-25 17:54:57 -07002069
Johannes Bergb08dfd02010-01-29 11:54:56 -08002070 if (!ucode_raw) {
Jay Sternberg39396082010-08-12 10:24:07 -07002071 if (priv->fw_index <= priv->cfg->ucode_api_max)
2072 IWL_ERR(priv,
2073 "request for firmware file '%s' failed.\n",
2074 priv->firmware_name);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002075 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002076 }
2077
Johannes Bergb08dfd02010-01-29 11:54:56 -08002078 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
2079 priv->firmware_name, ucode_raw->size);
Zhu Yib481de92007-09-25 17:54:57 -07002080
Johannes Berg22adba22010-04-28 12:09:14 -07002081 /* Make sure that we got at least the API version number */
2082 if (ucode_raw->size < 4) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002083 IWL_ERR(priv, "File size way too small!\n");
Johannes Bergb08dfd02010-01-29 11:54:56 -08002084 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002085 }
2086
2087 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002088 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002089
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002090 if (ucode->ver)
2091 err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces);
2092 else
Johannes Bergdd7a2502010-04-28 23:33:10 -07002093 err = iwlagn_load_firmware(priv, ucode_raw, &pieces,
2094 &ucode_capa);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002095
2096 if (err)
2097 goto try_again;
2098
Reinette Chatrea0987a82008-12-02 12:14:06 -08002099 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002100 build = pieces.build;
Zhu Yib481de92007-09-25 17:54:57 -07002101
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002102 /*
2103 * api_ver should match the api version forming part of the
Reinette Chatrea0987a82008-12-02 12:14:06 -08002104 * firmware filename ... but we don't check for that and only rely
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002105 * on the API version read from firmware header from here on forward
2106 */
Reinette Chatrea0987a82008-12-02 12:14:06 -08002107 if (api_ver < api_min || api_ver > api_max) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002108 IWL_ERR(priv, "Driver unable to support your firmware API. "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002109 "Driver supports v%u, firmware is v%u.\n",
2110 api_max, api_ver);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002111 goto try_again;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002112 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08002113
Reinette Chatrea0987a82008-12-02 12:14:06 -08002114 if (api_ver != api_max)
Tomas Winkler978785a2008-12-19 10:37:31 +08002115 IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
Reinette Chatrea0987a82008-12-02 12:14:06 -08002116 "got v%u. New firmware can be obtained "
2117 "from http://www.intellinuxwireless.org.\n",
2118 api_max, api_ver);
2119
Johannes Berg3e4de762010-04-28 12:09:12 -07002120 if (build)
Jay Sternberg39396082010-08-12 10:24:07 -07002121 sprintf(buildstr, " build %u%s", build,
2122 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
2123 ? " (EXP)" : "");
Johannes Berg3e4de762010-04-28 12:09:12 -07002124 else
2125 buildstr[0] = '\0';
Reinette Chatrea0987a82008-12-02 12:14:06 -08002126
Johannes Berg3e4de762010-04-28 12:09:12 -07002127 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n",
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002128 IWL_UCODE_MAJOR(priv->ucode_ver),
2129 IWL_UCODE_MINOR(priv->ucode_ver),
2130 IWL_UCODE_API(priv->ucode_ver),
Johannes Berg3e4de762010-04-28 12:09:12 -07002131 IWL_UCODE_SERIAL(priv->ucode_ver),
2132 buildstr);
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002133
Johannes Berg3e4de762010-04-28 12:09:12 -07002134 snprintf(priv->hw->wiphy->fw_version,
2135 sizeof(priv->hw->wiphy->fw_version),
2136 "%u.%u.%u.%u%s",
2137 IWL_UCODE_MAJOR(priv->ucode_ver),
2138 IWL_UCODE_MINOR(priv->ucode_ver),
2139 IWL_UCODE_API(priv->ucode_ver),
2140 IWL_UCODE_SERIAL(priv->ucode_ver),
2141 buildstr);
Zhu Yib481de92007-09-25 17:54:57 -07002142
Johannes Bergb08dfd02010-01-29 11:54:56 -08002143 /*
2144 * For any of the failures below (before allocating pci memory)
2145 * we will try to load a version with a smaller API -- maybe the
2146 * user just got a corrupted version of the latest API.
2147 */
2148
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002149 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
2150 priv->ucode_ver);
2151 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n",
2152 pieces.inst_size);
2153 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n",
2154 pieces.data_size);
2155 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n",
2156 pieces.init_size);
2157 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n",
2158 pieces.init_data_size);
2159 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n",
2160 pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002161
2162 /* Verify that uCode images will fit in card's SRAM */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002163 if (pieces.inst_size > priv->hw_params.max_inst_size) {
2164 IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n",
2165 pieces.inst_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002166 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002167 }
2168
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002169 if (pieces.data_size > priv->hw_params.max_data_size) {
2170 IWL_ERR(priv, "uCode data len %Zd too large to fit in\n",
2171 pieces.data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002172 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002173 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002174
2175 if (pieces.init_size > priv->hw_params.max_inst_size) {
2176 IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n",
2177 pieces.init_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002178 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002179 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002180
2181 if (pieces.init_data_size > priv->hw_params.max_data_size) {
2182 IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n",
2183 pieces.init_data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002184 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002185 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002186
2187 if (pieces.boot_size > priv->hw_params.max_bsm_size) {
2188 IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n",
2189 pieces.boot_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002190 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002191 }
2192
2193 /* Allocate ucode buffers for card's bus-master loading ... */
2194
2195 /* Runtime instructions and 2 copies of data:
2196 * 1) unmodified from disk
2197 * 2) backup cache for save/restore during power-downs */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002198 priv->ucode_code.len = pieces.inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002199 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002200
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002201 priv->ucode_data.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002202 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002203
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002204 priv->ucode_data_backup.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002205 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002206
Zhu, Yi1f304e42009-01-23 13:45:22 -08002207 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2208 !priv->ucode_data_backup.v_addr)
2209 goto err_pci_alloc;
2210
Zhu Yib481de92007-09-25 17:54:57 -07002211 /* Initialization instructions and data */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002212 if (pieces.init_size && pieces.init_data_size) {
2213 priv->ucode_init.len = pieces.init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002214 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07002215
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002216 priv->ucode_init_data.len = pieces.init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002217 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002218
2219 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2220 goto err_pci_alloc;
2221 }
Zhu Yib481de92007-09-25 17:54:57 -07002222
2223 /* Bootstrap (instructions only, no data) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002224 if (pieces.boot_size) {
2225 priv->ucode_boot.len = pieces.boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002226 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002227
Tomas Winkler90e759d2007-11-29 11:09:41 +08002228 if (!priv->ucode_boot.v_addr)
2229 goto err_pci_alloc;
2230 }
Zhu Yib481de92007-09-25 17:54:57 -07002231
Johannes Bergb2e640d2010-05-05 23:24:54 -07002232 /* Now that we can no longer fail, copy information */
2233
2234 /*
2235 * The (size - 16) / 12 formula is based on the information recorded
2236 * for each event, which is of mode 1 (including timestamp) for all
2237 * new microcodes that include this information.
2238 */
2239 priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr;
2240 if (pieces.init_evtlog_size)
2241 priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12;
2242 else
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002243 priv->_agn.init_evtlog_size =
2244 priv->cfg->base_params->max_event_log_size;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002245 priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr;
2246 priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr;
2247 if (pieces.inst_evtlog_size)
2248 priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12;
2249 else
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002250 priv->_agn.inst_evtlog_size =
2251 priv->cfg->base_params->max_event_log_size;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002252 priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr;
2253
Johannes Bergece9c4e2010-08-23 10:46:49 +02002254 if (ucode_capa.pan) {
2255 priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN);
Johannes Bergc10afb62010-08-23 10:46:43 +02002256 priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN;
Johannes Bergece9c4e2010-08-23 10:46:49 +02002257 } else
2258 priv->sta_key_max_num = STA_KEY_MAX_NUM;
Johannes Bergc10afb62010-08-23 10:46:43 +02002259
Zhu Yib481de92007-09-25 17:54:57 -07002260 /* Copy images into buffers for card's bus-master reads ... */
2261
2262 /* Runtime instructions (first block of data in file) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002263 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n",
2264 pieces.inst_size);
2265 memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002266
Tomas Winklere1623442009-01-27 14:27:56 -08002267 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002268 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2269
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002270 /*
2271 * Runtime data
2272 * NOTE: Copy into backup buffer will be done in iwl_up()
2273 */
2274 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n",
2275 pieces.data_size);
2276 memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size);
2277 memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002278
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002279 /* Initialization instructions */
2280 if (pieces.init_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002281 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002282 pieces.init_size);
2283 memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size);
Zhu Yib481de92007-09-25 17:54:57 -07002284 }
2285
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002286 /* Initialization data */
2287 if (pieces.init_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002288 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002289 pieces.init_data_size);
2290 memcpy(priv->ucode_init_data.v_addr, pieces.init_data,
2291 pieces.init_data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002292 }
2293
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002294 /* Bootstrap instructions */
2295 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n",
2296 pieces.boot_size);
2297 memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002298
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002299 /*
2300 * figure out the offset of chain noise reset and gain commands
2301 * base on the size of standard phy calibration commands table size
2302 */
2303 if (ucode_capa.standard_phy_calibration_size >
2304 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
2305 ucode_capa.standard_phy_calibration_size =
2306 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
2307
2308 priv->_agn.phy_calib_chain_noise_reset_cmd =
2309 ucode_capa.standard_phy_calibration_size;
2310 priv->_agn.phy_calib_chain_noise_gain_cmd =
2311 ucode_capa.standard_phy_calibration_size + 1;
2312
Johannes Bergb08dfd02010-01-29 11:54:56 -08002313 /**************************************************
2314 * This is still part of probe() in a sense...
2315 *
2316 * 9. Setup and register with mac80211 and debugfs
2317 **************************************************/
Johannes Bergdd7a2502010-04-28 23:33:10 -07002318 err = iwl_mac_setup_register(priv, &ucode_capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002319 if (err)
2320 goto out_unbind;
2321
2322 err = iwl_dbgfs_register(priv, DRV_NAME);
2323 if (err)
2324 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
2325
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07002326 err = sysfs_create_group(&priv->pci_dev->dev.kobj,
2327 &iwl_attribute_group);
2328 if (err) {
2329 IWL_ERR(priv, "failed to create sysfs device attributes\n");
2330 goto out_unbind;
2331 }
2332
Zhu Yib481de92007-09-25 17:54:57 -07002333 /* We have our copies now, allow OS release its copies */
2334 release_firmware(ucode_raw);
Reinette Chatrea15707d2010-05-10 15:08:11 -07002335 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002336 return;
2337
2338 try_again:
2339 /* try next, if any */
2340 if (iwl_request_firmware(priv, false))
2341 goto out_unbind;
2342 release_firmware(ucode_raw);
2343 return;
Zhu Yib481de92007-09-25 17:54:57 -07002344
2345 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002346 IWL_ERR(priv, "failed to allocate pci memory\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002347 iwl_dealloc_ucode_pci(priv);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002348 out_unbind:
Reinette Chatrea15707d2010-05-10 15:08:11 -07002349 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002350 device_release_driver(&priv->pci_dev->dev);
Zhu Yib481de92007-09-25 17:54:57 -07002351 release_firmware(ucode_raw);
Zhu Yib481de92007-09-25 17:54:57 -07002352}
2353
Reinette Chatreb7a79402009-09-25 14:24:23 -07002354static const char *desc_lookup_text[] = {
2355 "OK",
2356 "FAIL",
2357 "BAD_PARAM",
2358 "BAD_CHECKSUM",
2359 "NMI_INTERRUPT_WDG",
2360 "SYSASSERT",
2361 "FATAL_ERROR",
2362 "BAD_COMMAND",
2363 "HW_ERROR_TUNE_LOCK",
2364 "HW_ERROR_TEMPERATURE",
2365 "ILLEGAL_CHAN_FREQ",
2366 "VCC_NOT_STABLE",
2367 "FH_ERROR",
2368 "NMI_INTERRUPT_HOST",
2369 "NMI_INTERRUPT_ACTION_PT",
2370 "NMI_INTERRUPT_UNKNOWN",
2371 "UCODE_VERSION_MISMATCH",
2372 "HW_ERROR_ABS_LOCK",
2373 "HW_ERROR_CAL_LOCK_FAIL",
2374 "NMI_INTERRUPT_INST_ACTION_PT",
2375 "NMI_INTERRUPT_DATA_ACTION_PT",
2376 "NMI_TRM_HW_ER",
2377 "NMI_INTERRUPT_TRM",
2378 "NMI_INTERRUPT_BREAK_POINT"
2379 "DEBUG_0",
2380 "DEBUG_1",
2381 "DEBUG_2",
2382 "DEBUG_3",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002383};
2384
Jay Sternberg4b586452010-07-02 15:49:10 -07002385static struct { char *name; u8 num; } advanced_lookup[] = {
2386 { "NMI_INTERRUPT_WDG", 0x34 },
2387 { "SYSASSERT", 0x35 },
2388 { "UCODE_VERSION_MISMATCH", 0x37 },
2389 { "BAD_COMMAND", 0x38 },
2390 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
2391 { "FATAL_ERROR", 0x3D },
2392 { "NMI_TRM_HW_ERR", 0x46 },
2393 { "NMI_INTERRUPT_TRM", 0x4C },
2394 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
2395 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
2396 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
2397 { "NMI_INTERRUPT_HOST", 0x66 },
2398 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
2399 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
2400 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
2401 { "ADVANCED_SYSASSERT", 0 },
2402};
2403
2404static const char *desc_lookup(u32 num)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002405{
Jay Sternberg4b586452010-07-02 15:49:10 -07002406 int i;
2407 int max = ARRAY_SIZE(desc_lookup_text);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002408
Jay Sternberg4b586452010-07-02 15:49:10 -07002409 if (num < max)
2410 return desc_lookup_text[num];
Reinette Chatreb7a79402009-09-25 14:24:23 -07002411
Jay Sternberg4b586452010-07-02 15:49:10 -07002412 max = ARRAY_SIZE(advanced_lookup) - 1;
2413 for (i = 0; i < max; i++) {
2414 if (advanced_lookup[i].num == num)
2415 break;;
2416 }
2417 return advanced_lookup[i].name;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002418}
2419
2420#define ERROR_START_OFFSET (1 * sizeof(u32))
2421#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2422
2423void iwl_dump_nic_error_log(struct iwl_priv *priv)
2424{
2425 u32 data2, line;
2426 u32 desc, time, count, base, data1;
2427 u32 blink1, blink2, ilink1, ilink2;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002428 u32 pc, hcmd;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002429
Johannes Bergb2e640d2010-05-05 23:24:54 -07002430 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002431 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002432 if (!base)
2433 base = priv->_agn.init_errlog_ptr;
2434 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002435 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002436 if (!base)
2437 base = priv->_agn.inst_errlog_ptr;
2438 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002439
2440 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002441 IWL_ERR(priv,
2442 "Not valid error log pointer 0x%08X for %s uCode\n",
2443 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07002444 return;
2445 }
2446
2447 count = iwl_read_targ_mem(priv, base);
2448
2449 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2450 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2451 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2452 priv->status, count);
2453 }
2454
2455 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
Wey-Yi Guy6e6ebf42010-08-27 10:41:37 -07002456 priv->isr_stats.err_code = desc;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002457 pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002458 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2459 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2460 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2461 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2462 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2463 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2464 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2465 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002466 hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002467
Johannes Bergbe1a71a2009-10-02 13:44:02 -07002468 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
2469 blink1, blink2, ilink1, ilink2);
2470
Jay Sternberg87563712010-06-14 14:40:40 -07002471 IWL_ERR(priv, "Desc Time "
Reinette Chatreb7a79402009-09-25 14:24:23 -07002472 "data1 data2 line\n");
Jay Sternberg87563712010-06-14 14:40:40 -07002473 IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002474 desc_lookup(desc), desc, time, data1, data2, line);
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002475 IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n");
2476 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n",
2477 pc, blink1, blink2, ilink1, ilink2, hcmd);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002478}
2479
2480#define EVENT_START_OFFSET (4 * sizeof(u32))
2481
2482/**
2483 * iwl_print_event_log - Dump error event log to syslog
2484 *
2485 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002486static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2487 u32 num_events, u32 mode,
2488 int pos, char **buf, size_t bufsz)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002489{
2490 u32 i;
2491 u32 base; /* SRAM byte address of event log header */
2492 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2493 u32 ptr; /* SRAM byte address of log data */
2494 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08002495 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002496
2497 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002498 return pos;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002499
2500 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002501 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002502 if (!base)
2503 base = priv->_agn.init_evtlog_ptr;
2504 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002505 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002506 if (!base)
2507 base = priv->_agn.inst_evtlog_ptr;
2508 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002509
2510 if (mode == 0)
2511 event_size = 2 * sizeof(u32);
2512 else
2513 event_size = 3 * sizeof(u32);
2514
2515 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2516
Ben Cahille5854472009-11-06 14:52:58 -08002517 /* Make sure device is powered up for SRAM reads */
2518 spin_lock_irqsave(&priv->reg_lock, reg_flags);
2519 iwl_grab_nic_access(priv);
2520
2521 /* Set starting address; reads will auto-increment */
2522 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
2523 rmb();
2524
Reinette Chatreb7a79402009-09-25 14:24:23 -07002525 /* "time" is actually "data" for mode 0 (no timestamp).
2526 * place event id # at far right for easier visual parsing. */
2527 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08002528 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2529 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002530 if (mode == 0) {
2531 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002532 if (bufsz) {
2533 pos += scnprintf(*buf + pos, bufsz - pos,
2534 "EVT_LOG:0x%08x:%04u\n",
2535 time, ev);
2536 } else {
2537 trace_iwlwifi_dev_ucode_event(priv, 0,
2538 time, ev);
2539 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n",
2540 time, ev);
2541 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002542 } else {
Ben Cahille5854472009-11-06 14:52:58 -08002543 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002544 if (bufsz) {
2545 pos += scnprintf(*buf + pos, bufsz - pos,
2546 "EVT_LOGT:%010u:0x%08x:%04u\n",
2547 time, data, ev);
2548 } else {
2549 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002550 time, data, ev);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002551 trace_iwlwifi_dev_ucode_event(priv, time,
2552 data, ev);
2553 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002554 }
2555 }
Ben Cahille5854472009-11-06 14:52:58 -08002556
2557 /* Allow device to power down */
2558 iwl_release_nic_access(priv);
2559 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002560 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002561}
2562
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002563/**
2564 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
2565 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002566static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
2567 u32 num_wraps, u32 next_entry,
2568 u32 size, u32 mode,
2569 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002570{
2571 /*
2572 * display the newest DEFAULT_LOG_ENTRIES entries
2573 * i.e the entries just before the next ont that uCode would fill.
2574 */
2575 if (num_wraps) {
2576 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002577 pos = iwl_print_event_log(priv,
2578 capacity - (size - next_entry),
2579 size - next_entry, mode,
2580 pos, buf, bufsz);
2581 pos = iwl_print_event_log(priv, 0,
2582 next_entry, mode,
2583 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002584 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002585 pos = iwl_print_event_log(priv, next_entry - size,
2586 size, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002587 } else {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002588 if (next_entry < size) {
2589 pos = iwl_print_event_log(priv, 0, next_entry,
2590 mode, pos, buf, bufsz);
2591 } else {
2592 pos = iwl_print_event_log(priv, next_entry - size,
2593 size, mode, pos, buf, bufsz);
2594 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002595 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002596 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002597}
2598
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002599#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
2600
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002601int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
2602 char **buf, bool display)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002603{
2604 u32 base; /* SRAM byte address of event log header */
2605 u32 capacity; /* event log capacity in # entries */
2606 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2607 u32 num_wraps; /* # times uCode wrapped to top of log */
2608 u32 next_entry; /* index of next entry to be written by uCode */
2609 u32 size; /* # entries that we'll print */
Johannes Bergb2e640d2010-05-05 23:24:54 -07002610 u32 logsize;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002611 int pos = 0;
2612 size_t bufsz = 0;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002613
Johannes Bergb2e640d2010-05-05 23:24:54 -07002614 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002615 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002616 logsize = priv->_agn.init_evtlog_size;
2617 if (!base)
2618 base = priv->_agn.init_evtlog_ptr;
2619 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002620 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002621 logsize = priv->_agn.inst_evtlog_size;
2622 if (!base)
2623 base = priv->_agn.inst_evtlog_ptr;
2624 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002625
2626 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002627 IWL_ERR(priv,
2628 "Invalid event log pointer 0x%08X for %s uCode\n",
2629 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002630 return -EINVAL;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002631 }
2632
2633 /* event log header */
2634 capacity = iwl_read_targ_mem(priv, base);
2635 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2636 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2637 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2638
Johannes Bergb2e640d2010-05-05 23:24:54 -07002639 if (capacity > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002640 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002641 capacity, logsize);
2642 capacity = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002643 }
2644
Johannes Bergb2e640d2010-05-05 23:24:54 -07002645 if (next_entry > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002646 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002647 next_entry, logsize);
2648 next_entry = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002649 }
2650
Reinette Chatreb7a79402009-09-25 14:24:23 -07002651 size = num_wraps ? capacity : next_entry;
2652
2653 /* bail out if nothing in log */
2654 if (size == 0) {
2655 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002656 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002657 }
2658
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07002659 /* enable/disable bt channel announcement */
2660 priv->bt_ch_announce = iwlagn_bt_ch_announce;
2661
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002662#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08002663 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002664 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2665 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
2666#else
2667 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2668 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002669#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002670 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2671 size);
2672
2673#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002674 if (display) {
2675 if (full_log)
2676 bufsz = capacity * 48;
2677 else
2678 bufsz = size * 48;
2679 *buf = kmalloc(bufsz, GFP_KERNEL);
2680 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002681 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002682 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002683 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
2684 /*
2685 * if uCode has wrapped back to top of log,
2686 * start at the oldest entry,
2687 * i.e the next one that uCode would fill.
2688 */
2689 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002690 pos = iwl_print_event_log(priv, next_entry,
2691 capacity - next_entry, mode,
2692 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002693 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002694 pos = iwl_print_event_log(priv, 0,
2695 next_entry, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002696 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002697 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2698 next_entry, size, mode,
2699 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002700#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002701 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2702 next_entry, size, mode,
2703 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002704#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002705 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002706}
Reinette Chatreb7a79402009-09-25 14:24:23 -07002707
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002708static void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2709{
2710 struct iwl_ct_kill_config cmd;
2711 struct iwl_ct_kill_throttling_config adv_cmd;
2712 unsigned long flags;
2713 int ret = 0;
2714
2715 spin_lock_irqsave(&priv->lock, flags);
2716 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2717 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2718 spin_unlock_irqrestore(&priv->lock, flags);
2719 priv->thermal_throttle.ct_kill_toggle = false;
2720
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002721 if (priv->cfg->base_params->support_ct_kill_exit) {
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002722 adv_cmd.critical_temperature_enter =
2723 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2724 adv_cmd.critical_temperature_exit =
2725 cpu_to_le32(priv->hw_params.ct_kill_exit_threshold);
2726
2727 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2728 sizeof(adv_cmd), &adv_cmd);
2729 if (ret)
2730 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2731 else
2732 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2733 "succeeded, "
2734 "critical temperature enter is %d,"
2735 "exit is %d\n",
2736 priv->hw_params.ct_kill_threshold,
2737 priv->hw_params.ct_kill_exit_threshold);
2738 } else {
2739 cmd.critical_temperature_R =
2740 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2741
2742 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2743 sizeof(cmd), &cmd);
2744 if (ret)
2745 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2746 else
2747 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2748 "succeeded, "
2749 "critical temperature is %d\n",
2750 priv->hw_params.ct_kill_threshold);
2751 }
2752}
2753
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002754static int iwlagn_send_calib_cfg_rt(struct iwl_priv *priv, u32 cfg)
2755{
2756 struct iwl_calib_cfg_cmd calib_cfg_cmd;
2757 struct iwl_host_cmd cmd = {
2758 .id = CALIBRATION_CFG_CMD,
2759 .len = sizeof(struct iwl_calib_cfg_cmd),
2760 .data = &calib_cfg_cmd,
2761 };
2762
2763 memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd));
2764 calib_cfg_cmd.ucd_calib_cfg.once.is_enable = IWL_CALIB_INIT_CFG_ALL;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002765 calib_cfg_cmd.ucd_calib_cfg.once.start = cpu_to_le32(cfg);
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002766
2767 return iwl_send_cmd(priv, &cmd);
2768}
2769
2770
Zhu Yib481de92007-09-25 17:54:57 -07002771/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002772 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002773 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002774 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002775 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002776static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002777{
Tomas Winkler57aab752008-04-14 21:16:03 -07002778 int ret = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02002779 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Zhu Yib481de92007-09-25 17:54:57 -07002780
Tomas Winklere1623442009-01-27 14:27:56 -08002781 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002782
2783 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2784 /* We had an error bringing up the hardware, so take it
2785 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002786 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002787 goto restart;
2788 }
2789
2790 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2791 * This is a paranoid check, because we would not have gotten the
2792 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002793 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002794 /* Runtime instruction load was bad;
2795 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002796 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002797 goto restart;
2798 }
2799
Tomas Winkler57aab752008-04-14 21:16:03 -07002800 ret = priv->cfg->ops->lib->alive_notify(priv);
2801 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002802 IWL_WARN(priv,
2803 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002804 goto restart;
2805 }
2806
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002807 if (priv->hw_params.calib_rt_cfg)
2808 iwlagn_send_calib_cfg_rt(priv, priv->hw_params.calib_rt_cfg);
2809
2810
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002811 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002812 set_bit(STATUS_ALIVE, &priv->status);
2813
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002814 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2815 /* Enable timer to monitor the driver queues */
2816 mod_timer(&priv->monitor_recover,
2817 jiffies +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002818 msecs_to_jiffies(
2819 priv->cfg->base_params->monitor_recover_period));
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002820 }
2821
Tomas Winklerfee12472008-04-03 16:05:21 -07002822 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002823 return;
2824
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002825 if (priv->cfg->bt_params &&
2826 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyf7322f82010-08-23 15:24:49 -07002827 /* Configure Bluetooth device coexistence support */
2828 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
2829 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
2830 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
2831 priv->cfg->ops->hcmd->send_bt_config(priv);
2832 priv->bt_valid = IWLAGN_BT_VALID_ENABLE_FLAGS;
2833 if (bt_coex_active && priv->iw_mode != NL80211_IFTYPE_ADHOC)
2834 iwlagn_send_prio_tbl(priv);
2835
2836 /* FIXME: w/a to force change uCode BT state machine */
2837 iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_OPEN,
2838 BT_COEX_PRIO_TBL_EVT_INIT_CALIB2);
2839 iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_CLOSE,
2840 BT_COEX_PRIO_TBL_EVT_INIT_CALIB2);
2841 }
Johannes Berg36d68252008-05-15 12:55:26 +02002842 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002843
Johannes Berg470ab2d2010-01-21 11:23:30 -08002844 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002845
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07002846 /* Configure Tx antenna selection based on H/W config */
2847 if (priv->cfg->ops->hcmd->set_tx_ant)
2848 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
2849
Johannes Berg246ed352010-08-23 10:46:32 +02002850 if (iwl_is_associated_ctx(ctx)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002851 struct iwl_rxon_cmd *active_rxon =
Johannes Berg246ed352010-08-23 10:46:32 +02002852 (struct iwl_rxon_cmd *)&ctx->active;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002853 /* apply any changes in staging */
Johannes Berg246ed352010-08-23 10:46:32 +02002854 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002855 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2856 } else {
Johannes Bergd0fe4782010-08-23 10:46:58 +02002857 struct iwl_rxon_context *tmp;
Zhu Yib481de92007-09-25 17:54:57 -07002858 /* Initialize our rx_config data */
Johannes Bergd0fe4782010-08-23 10:46:58 +02002859 for_each_context(priv, tmp)
2860 iwl_connection_init_rx_config(priv, tmp);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002861
2862 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02002863 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002864 }
2865
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002866 if (priv->cfg->bt_params &&
2867 !priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07002868 /* Configure Bluetooth device coexistence support */
2869 priv->cfg->ops->hcmd->send_bt_config(priv);
2870 }
Zhu Yib481de92007-09-25 17:54:57 -07002871
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002872 iwl_reset_run_time_calib(priv);
2873
Zhu Yib481de92007-09-25 17:54:57 -07002874 /* Configure the adapter for unassociated operation */
Johannes Berg246ed352010-08-23 10:46:32 +02002875 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002876
2877 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002878 iwl_rf_kill_ct_config(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002879
Johannes Berge932a602009-10-02 13:44:03 -07002880 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002881
Tomas Winklere1623442009-01-27 14:27:56 -08002882 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002883 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a66926a2008-01-14 17:46:18 -08002884 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002885
Johannes Berge312c242009-08-07 15:41:51 -07002886 iwl_power_update_mode(priv, true);
Reinette Chatre7e246192010-02-18 22:58:32 -08002887 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2888
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002889
Zhu Yib481de92007-09-25 17:54:57 -07002890 return;
2891
2892 restart:
2893 queue_work(priv->workqueue, &priv->restart);
2894}
2895
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002896static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002897
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002898static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002899{
2900 unsigned long flags;
2901 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002902
Tomas Winklere1623442009-01-27 14:27:56 -08002903 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002904
Stanislaw Gruszkad745d472010-09-13 14:46:35 +02002905 iwl_scan_cancel_timeout(priv, 200);
2906
2907 exit_pending = test_and_set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002908
Stanislaw Gruszkab62177a2010-08-20 15:23:47 +02002909 /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
2910 * to prevent rearm timer */
2911 if (priv->cfg->ops->lib->recover_from_tx_stall)
2912 del_timer_sync(&priv->monitor_recover);
2913
Johannes Bergdcef7322010-08-27 08:55:52 -07002914 iwl_clear_ucode_stations(priv, NULL);
Johannes Berga194e322010-08-27 08:53:46 -07002915 iwl_dealloc_bcast_stations(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002916 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002917
Johannes Berga1174132010-08-23 07:56:59 -07002918 /* reset BT coex data */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002919 priv->bt_status = 0;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002920 if (priv->cfg->bt_params)
2921 priv->bt_traffic_load =
2922 priv->cfg->bt_params->bt_init_traffic_load;
2923 else
2924 priv->bt_traffic_load = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002925 priv->bt_sco_active = false;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002926 priv->bt_full_concurrent = false;
2927 priv->bt_ci_compliance = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002928
Zhu Yib481de92007-09-25 17:54:57 -07002929 /* Unblock any waiting calls */
2930 wake_up_interruptible_all(&priv->wait_command_queue);
2931
Zhu Yib481de92007-09-25 17:54:57 -07002932 /* Wipe out the EXIT_PENDING status bit if we are not actually
2933 * exiting the module */
2934 if (!exit_pending)
2935 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2936
2937 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002938 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002939
2940 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002941 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002942 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002943 spin_unlock_irqrestore(&priv->lock, flags);
2944 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002945
2946 if (priv->mac80211_registered)
2947 ieee80211_stop_queues(priv->hw);
2948
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002949 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002950 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002951 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002952 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2953 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002954 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2955 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002956 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2957 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002958 goto exit;
2959 }
2960
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002961 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002962 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002963 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2964 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002965 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2966 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002967 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002968 STATUS_FW_ERROR |
2969 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2970 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002971
Mohamed Abbasef850d72009-05-22 11:01:50 -07002972 /* device going down, Stop using ICT table */
2973 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002974
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07002975 iwlagn_txq_ctx_stop(priv);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07002976 iwlagn_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002977
Ben Cahill309e7312009-11-06 14:53:03 -08002978 /* Power-down device's busmaster DMA clocks */
2979 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002980 udelay(5);
2981
Ben Cahill309e7312009-11-06 14:53:03 -08002982 /* Make sure (redundant) we've released our request to stay awake */
2983 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2984
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002985 /* Stop the device, and put it in low power state */
Johannes Berg14e8e4a2010-09-22 18:02:10 +02002986 iwl_apm_stop(priv);
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002987
Zhu Yib481de92007-09-25 17:54:57 -07002988 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002989 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002990
2991 if (priv->ibss_beacon)
2992 dev_kfree_skb(priv->ibss_beacon);
2993 priv->ibss_beacon = NULL;
2994
2995 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08002996 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002997}
2998
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002999static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003000{
3001 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003002 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003003 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08003004
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003005 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003006}
3007
Mohamed Abbas086ed112009-05-22 11:01:54 -07003008#define HW_READY_TIMEOUT (50)
3009
3010static int iwl_set_hw_ready(struct iwl_priv *priv)
3011{
3012 int ret = 0;
3013
3014 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
3015 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
3016
3017 /* See if we got it */
3018 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
3019 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
3020 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
3021 HW_READY_TIMEOUT);
3022 if (ret != -ETIMEDOUT)
3023 priv->hw_ready = true;
3024 else
3025 priv->hw_ready = false;
3026
3027 IWL_DEBUG_INFO(priv, "hardware %s\n",
3028 (priv->hw_ready == 1) ? "ready" : "not ready");
3029 return ret;
3030}
3031
3032static int iwl_prepare_card_hw(struct iwl_priv *priv)
3033{
3034 int ret = 0;
3035
Frans Pop91dd6c22010-03-24 14:19:58 -07003036 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n");
Mohamed Abbas086ed112009-05-22 11:01:54 -07003037
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07003038 ret = iwl_set_hw_ready(priv);
3039 if (priv->hw_ready)
3040 return ret;
3041
3042 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07003043 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
3044 CSR_HW_IF_CONFIG_REG_PREPARE);
3045
3046 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
3047 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
3048 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
3049
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07003050 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07003051 if (ret != -ETIMEDOUT)
3052 iwl_set_hw_ready(priv);
3053
3054 return ret;
3055}
3056
Zhu Yib481de92007-09-25 17:54:57 -07003057#define MAX_HW_RESTARTS 5
3058
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003059static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003060{
Johannes Berga194e322010-08-27 08:53:46 -07003061 struct iwl_rxon_context *ctx;
Tomas Winkler57aab752008-04-14 21:16:03 -07003062 int i;
3063 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003064
3065 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003066 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003067 return -EIO;
3068 }
3069
Reinette Chatree903fbd2008-01-30 22:05:15 -08003070 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003071 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08003072 return -EIO;
3073 }
3074
Johannes Berga194e322010-08-27 08:53:46 -07003075 for_each_context(priv, ctx) {
Johannes Berga30e3112010-09-22 18:02:01 +02003076 ret = iwlagn_alloc_bcast_station(priv, ctx);
Johannes Berga194e322010-08-27 08:53:46 -07003077 if (ret) {
3078 iwl_dealloc_bcast_stations(priv);
3079 return ret;
3080 }
3081 }
Johannes Berg2c810cc2010-04-29 00:53:29 -07003082
Mohamed Abbas086ed112009-05-22 11:01:54 -07003083 iwl_prepare_card_hw(priv);
3084
3085 if (!priv->hw_ready) {
3086 IWL_WARN(priv, "Exit HW not ready\n");
3087 return -EIO;
3088 }
3089
Zhu Yie655b9f2008-01-24 02:19:38 -08003090 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08003091 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08003092 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003093 else
Zhu Yie655b9f2008-01-24 02:19:38 -08003094 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003095
Tomas Winklerc1842d62008-08-04 16:00:43 +08003096 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02003097 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
3098
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003099 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02003100 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08003101 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003102 }
3103
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003104 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07003105
Johannes Berg13bb9482010-08-23 10:46:33 +02003106 /* must be initialised before iwl_hw_nic_init */
Johannes Berg751ca302010-08-23 10:46:34 +02003107 if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS))
3108 priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM;
3109 else
3110 priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM;
Johannes Berg13bb9482010-08-23 10:46:33 +02003111
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003112 ret = iwlagn_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07003113 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003114 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07003115 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003116 }
3117
3118 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003119 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3120 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003121 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3122
3123 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003124 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003125 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003126
3127 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003128 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3129 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003130
3131 /* Copy original ucode data image from disk into backup cache.
3132 * This will be used to initialize the on-board processor's
3133 * data SRAM for a clean start when the runtime program first loads. */
3134 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a66926a2008-01-14 17:46:18 -08003135 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07003136
Zhu Yib481de92007-09-25 17:54:57 -07003137 for (i = 0; i < MAX_HW_RESTARTS; i++) {
3138
Zhu Yib481de92007-09-25 17:54:57 -07003139 /* load bootstrap state machine,
3140 * load bootstrap program into processor's memory,
3141 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07003142 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003143
Tomas Winkler57aab752008-04-14 21:16:03 -07003144 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003145 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
3146 ret);
Zhu Yib481de92007-09-25 17:54:57 -07003147 continue;
3148 }
3149
3150 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003151 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003152
Tomas Winklere1623442009-01-27 14:27:56 -08003153 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003154
3155 return 0;
3156 }
3157
3158 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003159 __iwl_down(priv);
Mohamed Abbas64e72c3e2008-06-12 09:47:03 +08003160 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003161
3162 /* tried to restart and config the device for as long as our
3163 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08003164 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07003165 return -EIO;
3166}
3167
3168
3169/*****************************************************************************
3170 *
3171 * Workqueue callbacks
3172 *
3173 *****************************************************************************/
3174
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003175static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003176{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003177 struct iwl_priv *priv =
3178 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003179
3180 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3181 return;
3182
3183 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003184 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003185 mutex_unlock(&priv->mutex);
3186}
3187
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003188static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003189{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003190 struct iwl_priv *priv =
3191 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003192
3193 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3194 return;
3195
Mohamed Abbas258c44a2009-06-03 11:44:10 -07003196 /* enable dram interrupt */
3197 iwl_reset_ict(priv);
3198
Zhu Yib481de92007-09-25 17:54:57 -07003199 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003200 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003201 mutex_unlock(&priv->mutex);
3202}
3203
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003204static void iwl_bg_run_time_calib_work(struct work_struct *work)
3205{
3206 struct iwl_priv *priv = container_of(work, struct iwl_priv,
3207 run_time_calib_work);
3208
3209 mutex_lock(&priv->mutex);
3210
3211 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3212 test_bit(STATUS_SCANNING, &priv->status)) {
3213 mutex_unlock(&priv->mutex);
3214 return;
3215 }
3216
3217 if (priv->start_calib) {
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003218 if (priv->cfg->bt_params &&
3219 priv->cfg->bt_params->bt_statistics) {
Wey-Yi Guy7980fba2010-07-14 08:08:57 -07003220 iwl_chain_noise_calibration(priv,
3221 (void *)&priv->_agn.statistics_bt);
3222 iwl_sensitivity_calibration(priv,
3223 (void *)&priv->_agn.statistics_bt);
3224 } else {
3225 iwl_chain_noise_calibration(priv,
3226 (void *)&priv->_agn.statistics);
3227 iwl_sensitivity_calibration(priv,
3228 (void *)&priv->_agn.statistics);
3229 }
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003230 }
3231
3232 mutex_unlock(&priv->mutex);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003233}
3234
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003235static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003236{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003237 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003238
3239 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3240 return;
3241
Johannes Berg19cc1082009-05-08 13:44:36 -07003242 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
Johannes Berg8bd413e2010-08-23 10:46:40 +02003243 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003244 bool bt_sco, bt_full_concurrent;
3245 u8 bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003246 u8 bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003247 u8 bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003248
Johannes Berg19cc1082009-05-08 13:44:36 -07003249 mutex_lock(&priv->mutex);
Johannes Berg8bd413e2010-08-23 10:46:40 +02003250 for_each_context(priv, ctx)
3251 ctx->vif = NULL;
Johannes Berg19cc1082009-05-08 13:44:36 -07003252 priv->is_open = 0;
Johannes Berg511b0822010-08-23 07:57:01 -07003253
3254 /*
3255 * __iwl_down() will clear the BT status variables,
3256 * which is correct, but when we restart we really
3257 * want to keep them so restore them afterwards.
3258 *
3259 * The restart process will later pick them up and
3260 * re-configure the hw when we reconfigure the BT
3261 * command.
3262 */
3263 bt_sco = priv->bt_sco_active;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003264 bt_full_concurrent = priv->bt_full_concurrent;
3265 bt_ci_compliance = priv->bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003266 bt_load = priv->bt_traffic_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003267 bt_status = priv->bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003268
Johannes Berga1174132010-08-23 07:56:59 -07003269 __iwl_down(priv);
Johannes Berg511b0822010-08-23 07:57:01 -07003270
3271 priv->bt_sco_active = bt_sco;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003272 priv->bt_full_concurrent = bt_full_concurrent;
3273 priv->bt_ci_compliance = bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003274 priv->bt_traffic_load = bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003275 priv->bt_status = bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003276
Johannes Berg19cc1082009-05-08 13:44:36 -07003277 mutex_unlock(&priv->mutex);
Johannes Berga1174132010-08-23 07:56:59 -07003278 iwl_cancel_deferred_work(priv);
Johannes Berg19cc1082009-05-08 13:44:36 -07003279 ieee80211_restart_hw(priv->hw);
3280 } else {
3281 iwl_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003282
3283 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3284 return;
3285
3286 mutex_lock(&priv->mutex);
3287 __iwl_up(priv);
3288 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003289 }
Zhu Yib481de92007-09-25 17:54:57 -07003290}
3291
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003292static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003293{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003294 struct iwl_priv *priv =
3295 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003296
3297 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3298 return;
3299
3300 mutex_lock(&priv->mutex);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07003301 iwlagn_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003302 mutex_unlock(&priv->mutex);
3303}
3304
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003305#define IWL_DELAY_NEXT_SCAN (HZ*2)
3306
Johannes Berg1dda6d22010-04-29 04:43:06 -07003307void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003308{
Johannes Berg246ed352010-08-23 10:46:32 +02003309 struct iwl_rxon_context *ctx;
Zhu Yib481de92007-09-25 17:54:57 -07003310 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07003311 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003312
Johannes Berg1dda6d22010-04-29 04:43:06 -07003313 if (!vif || !priv->is_open)
3314 return;
3315
Johannes Berg246ed352010-08-23 10:46:32 +02003316 ctx = iwl_rxon_ctx_from_vif(vif);
3317
Johannes Berg1dda6d22010-04-29 04:43:06 -07003318 if (vif->type == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003319 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003320 return;
3321 }
3322
Zhu Yib481de92007-09-25 17:54:57 -07003323 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3324 return;
3325
Tomas Winkler2a421b92008-06-12 09:47:10 +08003326 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08003327
Zhu Yib481de92007-09-25 17:54:57 -07003328 conf = ieee80211_get_hw_conf(priv->hw);
3329
Johannes Berg246ed352010-08-23 10:46:32 +02003330 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3331 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003332
Johannes Berg47313e32010-08-23 10:46:55 +02003333 ret = iwl_send_rxon_timing(priv, ctx);
Tomas Winkler857485c2008-03-21 13:53:44 -07003334 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003335 IWL_WARN(priv, "RXON timing - "
Zhu Yib481de92007-09-25 17:54:57 -07003336 "Attempting to continue.\n");
3337
Johannes Berg246ed352010-08-23 10:46:32 +02003338 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003339
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08003340 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03003341
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003342 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003343 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003344
Johannes Berg246ed352010-08-23 10:46:32 +02003345 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
Zhu Yib481de92007-09-25 17:54:57 -07003346
Tomas Winklere1623442009-01-27 14:27:56 -08003347 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003348 vif->bss_conf.aid, vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07003349
Johannes Bergc213d742010-05-06 12:21:40 -07003350 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003351 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003352 else
Johannes Berg246ed352010-08-23 10:46:32 +02003353 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003354
Johannes Berg246ed352010-08-23 10:46:32 +02003355 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003356 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003357 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003358 else
Johannes Berg246ed352010-08-23 10:46:32 +02003359 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003360 }
3361
Johannes Berg246ed352010-08-23 10:46:32 +02003362 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003363
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003364 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berg246ed352010-08-23 10:46:32 +02003365 vif->bss_conf.aid, ctx->active.bssid_addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003366
Johannes Berg1dda6d22010-04-29 04:43:06 -07003367 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003368 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07003369 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02003370 case NL80211_IFTYPE_ADHOC:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003371 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003372 break;
Zhu Yib481de92007-09-25 17:54:57 -07003373 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003374 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003375 __func__, vif->type);
Zhu Yib481de92007-09-25 17:54:57 -07003376 break;
3377 }
3378
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08003379 /* the chain noise calibration will enabled PM upon completion
3380 * If chain noise has already been run, then we need to enable
3381 * power management here */
3382 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
Johannes Berge312c242009-08-07 15:41:51 -07003383 iwl_power_update_mode(priv, false);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003384
3385 /* Enable Rx differential gain and sensitivity calibrations */
3386 iwl_chain_noise_reset(priv);
3387 priv->start_calib = 1;
3388
Reinette Chatre508e32e2008-04-14 21:16:13 -07003389}
3390
Zhu Yib481de92007-09-25 17:54:57 -07003391/*****************************************************************************
3392 *
3393 * mac80211 entry point functions
3394 *
3395 *****************************************************************************/
3396
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003397#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a66926a2008-01-14 17:46:18 -08003398
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003399/*
3400 * Not a mac80211 entry point function, but it fits in with all the
3401 * other mac80211 functions grouped here.
3402 */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003403static int iwl_mac_setup_register(struct iwl_priv *priv,
3404 struct iwlagn_ucode_capabilities *capa)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003405{
3406 int ret;
3407 struct ieee80211_hw *hw = priv->hw;
Johannes Bergd0fe4782010-08-23 10:46:58 +02003408 struct iwl_rxon_context *ctx;
3409
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003410 hw->rate_control_algorithm = "iwl-agn-rs";
3411
3412 /* Tell mac80211 our characteristics */
3413 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003414 IEEE80211_HW_AMPDU_AGGREGATION |
Johannes Berg2491fa42010-08-23 10:46:52 +02003415 IEEE80211_HW_NEED_DTIM_PERIOD |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003416 IEEE80211_HW_SPECTRUM_MGMT;
3417
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003418 if (!priv->cfg->base_params->broken_powersave)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003419 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3420 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3421
Johannes Bergba37a3d2009-12-10 14:37:27 -08003422 if (priv->cfg->sku & IWL_SKU_N)
3423 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
3424 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
3425
Reinette Chatre8d9698b2009-10-16 14:25:55 -07003426 hw->sta_data_size = sizeof(struct iwl_station_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003427 hw->vif_data_size = sizeof(struct iwl_vif_priv);
3428
Johannes Bergd0fe4782010-08-23 10:46:58 +02003429 for_each_context(priv, ctx) {
3430 hw->wiphy->interface_modes |= ctx->interface_modes;
3431 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
3432 }
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003433
Reinette Chatref6c8f152010-03-12 11:13:26 -08003434 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003435 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003436
3437 /*
3438 * For now, disable PS by default because it affects
3439 * RX performance significantly.
3440 */
Johannes Berg5be83de2009-11-19 00:56:28 +01003441 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003442
Reinette Chatre1382c712010-02-25 10:02:19 -08003443 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003444 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003445 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003446
3447 /* Default value; 4 EDCA QOS priorities */
3448 hw->queues = 4;
3449
3450 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
3451
3452 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3453 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3454 &priv->bands[IEEE80211_BAND_2GHZ];
3455 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3456 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3457 &priv->bands[IEEE80211_BAND_5GHZ];
3458
3459 ret = ieee80211_register_hw(priv->hw);
3460 if (ret) {
3461 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3462 return ret;
3463 }
3464 priv->mac80211_registered = 1;
3465
3466 return 0;
3467}
3468
3469
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003470static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003471{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003472 struct iwl_priv *priv = hw->priv;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003473 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003474
Tomas Winklere1623442009-01-27 14:27:56 -08003475 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003476
3477 /* we should be verifying the device is ready to be opened */
3478 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003479 ret = __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003480 mutex_unlock(&priv->mutex);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003481
Zhu Yie655b9f2008-01-24 02:19:38 -08003482 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003483 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08003484
Tomas Winklerc1842d62008-08-04 16:00:43 +08003485 if (iwl_is_rfkill(priv))
3486 goto out;
3487
Tomas Winklere1623442009-01-27 14:27:56 -08003488 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003489
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003490 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a66926a2008-01-14 17:46:18 -08003491 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003492 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3493 test_bit(STATUS_READY, &priv->status),
3494 UCODE_READY_TIMEOUT);
3495 if (!ret) {
3496 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003497 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003498 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003499 return -ETIMEDOUT;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003500 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003501 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003502
Johannes Berge932a602009-10-02 13:44:03 -07003503 iwl_led_start(priv);
3504
Tomas Winklerc1842d62008-08-04 16:00:43 +08003505out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003506 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003507 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003508 return 0;
3509}
3510
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003511static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003512{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003513 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003514
Tomas Winklere1623442009-01-27 14:27:56 -08003515 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08003516
Johannes Berg19cc1082009-05-08 13:44:36 -07003517 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08003518 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08003519
Zhu Yib481de92007-09-25 17:54:57 -07003520 priv->is_open = 0;
Zhu Yi5a66926a2008-01-14 17:46:18 -08003521
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003522 iwl_down(priv);
Zhu Yi5a66926a2008-01-14 17:46:18 -08003523
3524 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003525
3526 /* enable interrupts again in order to receive rfkill changes */
3527 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
3528 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003529
Tomas Winklere1623442009-01-27 14:27:56 -08003530 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003531}
3532
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003533static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003534{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003535 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003536
Tomas Winklere1623442009-01-27 14:27:56 -08003537 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003538
Tomas Winklere1623442009-01-27 14:27:56 -08003539 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003540 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003541
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003542 if (iwlagn_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003543 dev_kfree_skb_any(skb);
3544
Tomas Winklere1623442009-01-27 14:27:56 -08003545 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003546 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003547}
3548
Johannes Berg1dda6d22010-04-29 04:43:06 -07003549void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003550{
Johannes Berg246ed352010-08-23 10:46:32 +02003551 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003552 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003553
Johannes Berg76d04812010-08-23 10:46:47 +02003554 lockdep_assert_held(&priv->mutex);
3555
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003556 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003557 return;
3558
3559 /* The following should be done only at AP bring up */
Johannes Berg246ed352010-08-23 10:46:32 +02003560 if (!iwl_is_associated_ctx(ctx)) {
Zhu Yib481de92007-09-25 17:54:57 -07003561
3562 /* RXON - unassoc (to set timing command) */
Johannes Berg246ed352010-08-23 10:46:32 +02003563 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3564 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003565
3566 /* RXON Timing */
Johannes Berg47313e32010-08-23 10:46:55 +02003567 ret = iwl_send_rxon_timing(priv, ctx);
Tomas Winkler857485c2008-03-21 13:53:44 -07003568 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003569 IWL_WARN(priv, "RXON timing failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003570 "Attempting to continue.\n");
3571
Daniel C Halperinf513dff2009-11-13 11:56:34 -08003572 /* AP has all antennas */
3573 priv->chain_noise_data.active_chains =
3574 priv->hw_params.valid_rx_ant;
3575 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003576 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003577 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003578
Johannes Berg246ed352010-08-23 10:46:32 +02003579 ctx->staging.assoc_id = 0;
Johannes Berg1dda6d22010-04-29 04:43:06 -07003580
Johannes Bergc213d742010-05-06 12:21:40 -07003581 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003582 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003583 RXON_FLG_SHORT_PREAMBLE_MSK;
3584 else
Johannes Berg246ed352010-08-23 10:46:32 +02003585 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003586 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3587
Johannes Berg246ed352010-08-23 10:46:32 +02003588 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003589 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003590 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003591 RXON_FLG_SHORT_SLOT_MSK;
3592 else
Johannes Berg246ed352010-08-23 10:46:32 +02003593 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003594 ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003595 }
Johannes Berg08abc532010-08-23 10:46:53 +02003596 /* need to send beacon cmd before committing assoc RXON! */
3597 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003598 /* restore RXON assoc */
Johannes Berg246ed352010-08-23 10:46:32 +02003599 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
3600 iwlcore_commit_rxon(priv, ctx);
Zhu Yie1493de2007-09-27 11:27:32 +08003601 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003602 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003603
3604 /* FIXME - we need to add code here to detect a totally new
3605 * configuration, reset the AP, unassoc, rxon timing, assoc,
3606 * clear sta table, add BCAST sta... */
3607}
3608
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003609static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003610 struct ieee80211_vif *vif,
3611 struct ieee80211_key_conf *keyconf,
3612 struct ieee80211_sta *sta,
3613 u32 iv32, u16 *phase1key)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003614{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003615
Tomas Winkler9f586712008-11-12 13:14:05 -08003616 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003617 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3618
Tomas Winklere1623442009-01-27 14:27:56 -08003619 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003620
Johannes Berga194e322010-08-27 08:53:46 -07003621 iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003622 iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003623
Tomas Winklere1623442009-01-27 14:27:56 -08003624 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003625}
3626
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003627static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003628 struct ieee80211_vif *vif,
3629 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07003630 struct ieee80211_key_conf *key)
3631{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003632 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003633 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergc10afb62010-08-23 10:46:43 +02003634 struct iwl_rxon_context *ctx = vif_priv->ctx;
Winkler, Tomas42986792009-01-19 15:30:22 -08003635 int ret;
3636 u8 sta_id;
3637 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07003638
Tomas Winklere1623442009-01-27 14:27:56 -08003639 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003640
Tomas Winkler90e8e422009-06-19 13:52:42 -07003641 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003642 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003643 return -EOPNOTSUPP;
3644 }
Zhu Yib481de92007-09-25 17:54:57 -07003645
Johannes Berga194e322010-08-27 08:53:46 -07003646 sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta);
Johannes Berg0af8bca2010-04-30 14:08:00 -07003647 if (sta_id == IWL_INVALID_STATION)
3648 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003649
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003650 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003651 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003652
Johannes Berga90178fa2010-03-30 02:44:16 -07003653 /*
3654 * If we are getting WEP group key and we didn't receive any key mapping
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003655 * so far, we are in legacy wep mode (group key only), otherwise we are
3656 * in 1X mode.
Johannes Berga90178fa2010-03-30 02:44:16 -07003657 * In legacy wep mode, we use another host command to the uCode.
3658 */
Johannes Berg97359d12010-08-10 09:46:38 +02003659 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3660 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
Johannes Berg54c80672010-08-18 09:35:21 -07003661 !sta) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003662 if (cmd == SET_KEY)
Johannes Bergc10afb62010-08-23 10:46:43 +02003663 is_default_wep_key = !ctx->key_mapping_keys;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003664 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003665 is_default_wep_key =
3666 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003667 }
mabbas052c4b92007-10-25 17:15:43 +08003668
Zhu Yib481de92007-09-25 17:54:57 -07003669 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003670 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003671 if (is_default_wep_key)
Johannes Berg2995baf2010-08-23 10:46:42 +02003672 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003673 else
Johannes Berga194e322010-08-27 08:53:46 -07003674 ret = iwl_set_dynamic_key(priv, vif_priv->ctx,
3675 key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003676
Tomas Winklere1623442009-01-27 14:27:56 -08003677 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003678 break;
3679 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003680 if (is_default_wep_key)
Johannes Bergc10afb62010-08-23 10:46:43 +02003681 ret = iwl_remove_default_wep_key(priv, ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003682 else
Johannes Bergc10afb62010-08-23 10:46:43 +02003683 ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003684
Tomas Winklere1623442009-01-27 14:27:56 -08003685 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003686 break;
3687 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003688 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003689 }
3690
Johannes Berg72e15d72010-02-19 11:42:32 -08003691 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003692 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003693
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003694 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003695}
3696
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003697static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01003698 struct ieee80211_vif *vif,
Johannes Berg832f47e2010-04-29 04:43:07 -07003699 enum ieee80211_ampdu_mlme_action action,
3700 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003701{
3702 struct iwl_priv *priv = hw->priv;
Johannes Berg4620fef2010-06-16 03:30:27 -07003703 int ret = -EINVAL;
Tomas Winklerd783b062008-07-18 13:53:02 +08003704
Tomas Winklere1623442009-01-27 14:27:56 -08003705 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07003706 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003707
3708 if (!(priv->cfg->sku & IWL_SKU_N))
3709 return -EACCES;
3710
Johannes Berg4620fef2010-06-16 03:30:27 -07003711 mutex_lock(&priv->mutex);
3712
Tomas Winklerd783b062008-07-18 13:53:02 +08003713 switch (action) {
3714 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003715 IWL_DEBUG_HT(priv, "start Rx\n");
Johannes Berg4620fef2010-06-16 03:30:27 -07003716 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
3717 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003718 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003719 IWL_DEBUG_HT(priv, "stop Rx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003720 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003721 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003722 ret = 0;
3723 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003724 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003725 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003726 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003727 if (ret == 0) {
3728 priv->_agn.agg_tids_count++;
3729 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3730 priv->_agn.agg_tids_count);
3731 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003732 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003733 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003734 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003735 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003736 if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) {
3737 priv->_agn.agg_tids_count--;
3738 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3739 priv->_agn.agg_tids_count);
3740 }
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003741 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003742 ret = 0;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003743 if (priv->cfg->ht_params &&
3744 priv->cfg->ht_params->use_rts_for_aggregation) {
Johannes Berg94597ab2010-08-09 10:57:02 -07003745 struct iwl_station_priv *sta_priv =
3746 (void *) sta->drv_priv;
3747 /*
3748 * switch off RTS/CTS if it was previously enabled
3749 */
3750
3751 sta_priv->lq_sta.lq.general_params.flags &=
3752 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003753 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3754 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Johannes Berg94597ab2010-08-09 10:57:02 -07003755 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003756 break;
Wey-Yi Guyf0527972010-01-08 10:04:41 -08003757 case IEEE80211_AMPDU_TX_OPERATIONAL:
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003758 if (priv->cfg->ht_params &&
3759 priv->cfg->ht_params->use_rts_for_aggregation) {
Johannes Berg94597ab2010-08-09 10:57:02 -07003760 struct iwl_station_priv *sta_priv =
3761 (void *) sta->drv_priv;
3762
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003763 /*
3764 * switch to RTS/CTS if it is the prefer protection
3765 * method for HT traffic
3766 */
Johannes Berg94597ab2010-08-09 10:57:02 -07003767
3768 sta_priv->lq_sta.lq.general_params.flags |=
3769 LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003770 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3771 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003772 }
3773 ret = 0;
Tomas Winklerd783b062008-07-18 13:53:02 +08003774 break;
3775 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003776 mutex_unlock(&priv->mutex);
3777
3778 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08003779}
Tomas Winkler9f586712008-11-12 13:14:05 -08003780
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003781static void iwl_mac_sta_notify(struct ieee80211_hw *hw,
3782 struct ieee80211_vif *vif,
3783 enum sta_notify_cmd cmd,
3784 struct ieee80211_sta *sta)
3785{
3786 struct iwl_priv *priv = hw->priv;
3787 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
3788 int sta_id;
3789
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003790 switch (cmd) {
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003791 case STA_NOTIFY_SLEEP:
3792 WARN_ON(!sta_priv->client);
3793 sta_priv->asleep = true;
3794 if (atomic_read(&sta_priv->pending_frames) > 0)
3795 ieee80211_sta_block_awake(hw, sta, true);
3796 break;
3797 case STA_NOTIFY_AWAKE:
3798 WARN_ON(!sta_priv->client);
Daniel Halperin49dcc812010-01-19 10:22:19 -08003799 if (!sta_priv->asleep)
3800 break;
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003801 sta_priv->asleep = false;
Johannes Berg2a87c262010-04-30 11:30:45 -07003802 sta_id = iwl_sta_id(sta);
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003803 if (sta_id != IWL_INVALID_STATION)
3804 iwl_sta_modify_ps_wake(priv, sta_id);
3805 break;
3806 default:
3807 break;
3808 }
3809}
3810
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003811static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
3812 struct ieee80211_vif *vif,
3813 struct ieee80211_sta *sta)
3814{
3815 struct iwl_priv *priv = hw->priv;
3816 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Berga194e322010-08-27 08:53:46 -07003817 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergeafdfbd32010-04-29 04:43:04 -07003818 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003819 int ret;
3820 u8 sta_id;
3821
3822 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3823 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003824 mutex_lock(&priv->mutex);
3825 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3826 sta->addr);
3827 sta_priv->common.sta_id = IWL_INVALID_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003828
3829 atomic_set(&sta_priv->pending_frames, 0);
3830 if (vif->type == NL80211_IFTYPE_AP)
3831 sta_priv->client = true;
3832
Johannes Berga194e322010-08-27 08:53:46 -07003833 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
Johannes Berg238d7812010-08-23 10:46:45 +02003834 is_ap, sta, &sta_id);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003835 if (ret) {
3836 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3837 sta->addr, ret);
3838 /* Should we return success if return code is EEXIST ? */
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003839 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003840 return ret;
3841 }
3842
Johannes Bergfd1af152010-04-30 11:30:43 -07003843 sta_priv->common.sta_id = sta_id;
3844
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003845 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003846 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003847 sta->addr);
3848 iwl_rs_rate_init(priv, sta, sta_id);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003849 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003850
Johannes Bergfd1af152010-04-30 11:30:43 -07003851 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003852}
3853
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003854static void iwl_mac_channel_switch(struct ieee80211_hw *hw,
3855 struct ieee80211_channel_switch *ch_switch)
3856{
3857 struct iwl_priv *priv = hw->priv;
3858 const struct iwl_channel_info *ch_info;
3859 struct ieee80211_conf *conf = &hw->conf;
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003860 struct ieee80211_channel *channel = ch_switch->channel;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003861 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg246ed352010-08-23 10:46:32 +02003862 /*
3863 * MULTI-FIXME
3864 * When we add support for multiple interfaces, we need to
3865 * revisit this. The channel switch command in the device
3866 * only affects the BSS context, but what does that really
3867 * mean? And what if we get a CSA on the second interface?
3868 * This needs a lot of work.
3869 */
3870 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003871 u16 ch;
3872 unsigned long flags = 0;
3873
3874 IWL_DEBUG_MAC80211(priv, "enter\n");
3875
3876 if (iwl_is_rfkill(priv))
3877 goto out_exit;
3878
3879 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3880 test_bit(STATUS_SCANNING, &priv->status))
3881 goto out_exit;
3882
Johannes Berg246ed352010-08-23 10:46:32 +02003883 if (!iwl_is_associated_ctx(ctx))
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003884 goto out_exit;
3885
3886 /* channel switch in progress */
3887 if (priv->switch_rxon.switch_in_progress == true)
3888 goto out_exit;
3889
3890 mutex_lock(&priv->mutex);
3891 if (priv->cfg->ops->lib->set_channel_switch) {
3892
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003893 ch = channel->hw_value;
Johannes Berg246ed352010-08-23 10:46:32 +02003894 if (le16_to_cpu(ctx->active.channel) != ch) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003895 ch_info = iwl_get_channel_info(priv,
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003896 channel->band,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003897 ch);
3898 if (!is_channel_valid(ch_info)) {
3899 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
3900 goto out;
3901 }
3902 spin_lock_irqsave(&priv->lock, flags);
3903
3904 priv->current_ht_config.smps = conf->smps_mode;
3905
3906 /* Configure HT40 channels */
Johannes Berg7e6a5882010-08-23 10:46:46 +02003907 ctx->ht.enabled = conf_is_ht(conf);
3908 if (ctx->ht.enabled) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003909 if (conf_is_ht40_minus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003910 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003911 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003912 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003913 } else if (conf_is_ht40_plus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003914 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003915 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003916 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003917 } else {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003918 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003919 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003920 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003921 }
3922 } else
Johannes Berg7e6a5882010-08-23 10:46:46 +02003923 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003924
Johannes Berg246ed352010-08-23 10:46:32 +02003925 if ((le16_to_cpu(ctx->staging.channel) != ch))
3926 ctx->staging.flags = 0;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003927
Johannes Berg246ed352010-08-23 10:46:32 +02003928 iwl_set_rxon_channel(priv, channel, ctx);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003929 iwl_set_rxon_ht(priv, ht_conf);
Johannes Berg246ed352010-08-23 10:46:32 +02003930 iwl_set_flags_for_band(priv, ctx, channel->band,
Johannes Berg8bd413e2010-08-23 10:46:40 +02003931 ctx->vif);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003932 spin_unlock_irqrestore(&priv->lock, flags);
3933
3934 iwl_set_rate(priv);
3935 /*
3936 * at this point, staging_rxon has the
3937 * configuration for channel switch
3938 */
3939 if (priv->cfg->ops->lib->set_channel_switch(priv,
3940 ch_switch))
3941 priv->switch_rxon.switch_in_progress = false;
3942 }
3943 }
3944out:
3945 mutex_unlock(&priv->mutex);
3946out_exit:
3947 if (!priv->switch_rxon.switch_in_progress)
Johannes Berg8bd413e2010-08-23 10:46:40 +02003948 ieee80211_chswitch_done(ctx->vif, false);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003949 IWL_DEBUG_MAC80211(priv, "leave\n");
3950}
3951
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003952static void iwlagn_configure_filter(struct ieee80211_hw *hw,
3953 unsigned int changed_flags,
3954 unsigned int *total_flags,
3955 u64 multicast)
3956{
3957 struct iwl_priv *priv = hw->priv;
3958 __le32 filter_or = 0, filter_nand = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02003959 struct iwl_rxon_context *ctx;
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003960
3961#define CHK(test, flag) do { \
3962 if (*total_flags & (test)) \
3963 filter_or |= (flag); \
3964 else \
3965 filter_nand |= (flag); \
3966 } while (0)
3967
3968 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
3969 changed_flags, *total_flags);
3970
3971 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
3972 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK);
3973 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
3974
3975#undef CHK
3976
3977 mutex_lock(&priv->mutex);
3978
Johannes Berg246ed352010-08-23 10:46:32 +02003979 for_each_context(priv, ctx) {
3980 ctx->staging.filter_flags &= ~filter_nand;
3981 ctx->staging.filter_flags |= filter_or;
3982 iwlcore_commit_rxon(priv, ctx);
3983 }
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003984
3985 mutex_unlock(&priv->mutex);
3986
3987 /*
3988 * Receiving all multicast frames is always enabled by the
3989 * default flags setup in iwl_connection_init_rx_config()
3990 * since we currently do not support programming multicast
3991 * filters into the device.
3992 */
3993 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
3994 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
3995}
3996
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07003997static void iwl_mac_flush(struct ieee80211_hw *hw, bool drop)
3998{
3999 struct iwl_priv *priv = hw->priv;
4000
4001 mutex_lock(&priv->mutex);
4002 IWL_DEBUG_MAC80211(priv, "enter\n");
4003
4004 /* do not support "flush" */
4005 if (!priv->cfg->ops->lib->txfifo_flush)
4006 goto done;
4007
4008 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4009 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
4010 goto done;
4011 }
4012 if (iwl_is_rfkill(priv)) {
4013 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
4014 goto done;
4015 }
4016
4017 /*
4018 * mac80211 will not push any more frames for transmit
4019 * until the flush is completed
4020 */
4021 if (drop) {
4022 IWL_DEBUG_MAC80211(priv, "send flush command\n");
4023 if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) {
4024 IWL_ERR(priv, "flush request fail\n");
4025 goto done;
4026 }
4027 }
4028 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
4029 iwlagn_wait_tx_queue_empty(priv);
4030done:
4031 mutex_unlock(&priv->mutex);
4032 IWL_DEBUG_MAC80211(priv, "leave\n");
4033}
4034
Zhu Yib481de92007-09-25 17:54:57 -07004035/*****************************************************************************
4036 *
Zhu Yib481de92007-09-25 17:54:57 -07004037 * driver setup and teardown
4038 *
4039 *****************************************************************************/
4040
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004041static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004042{
Reinette Chatred21050c2009-02-13 11:51:18 -08004043 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07004044
4045 init_waitqueue_head(&priv->wait_command_queue);
4046
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004047 INIT_WORK(&priv->restart, iwl_bg_restart);
4048 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004049 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08004050 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Wey-Yi Guy65550632010-06-24 13:18:35 -07004051 INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004052 INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07004053 INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08004054 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
4055 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08004056
Tomas Winkler2a421b92008-06-12 09:47:10 +08004057 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004058
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004059 if (priv->cfg->ops->lib->setup_deferred_work)
4060 priv->cfg->ops->lib->setup_deferred_work(priv);
4061
4062 init_timer(&priv->statistics_periodic);
4063 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004064 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07004065
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004066 init_timer(&priv->ucode_trace);
4067 priv->ucode_trace.data = (unsigned long)priv;
4068 priv->ucode_trace.function = iwl_bg_ucode_trace;
4069
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08004070 if (priv->cfg->ops->lib->recover_from_tx_stall) {
4071 init_timer(&priv->monitor_recover);
4072 priv->monitor_recover.data = (unsigned long)priv;
4073 priv->monitor_recover.function =
4074 priv->cfg->ops->lib->recover_from_tx_stall;
4075 }
4076
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07004077 if (!priv->cfg->base_params->use_isr_legacy)
Mohamed Abbasef850d72009-05-22 11:01:50 -07004078 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4079 iwl_irq_tasklet, (unsigned long)priv);
4080 else
4081 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4082 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004083}
4084
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004085static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004086{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004087 if (priv->cfg->ops->lib->cancel_deferred_work)
4088 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004089
Joonwoo Park3ae6a052007-11-29 10:43:16 +09004090 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004091 cancel_delayed_work(&priv->alive_start);
Wey-Yi Guy815e6292010-06-03 10:14:01 -07004092 cancel_work_sync(&priv->run_time_calib_work);
Zhu Yib481de92007-09-25 17:54:57 -07004093 cancel_work_sync(&priv->beacon_update);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02004094
4095 iwl_cancel_scan_deferred_work(priv);
4096
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004097 cancel_work_sync(&priv->bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07004098 cancel_work_sync(&priv->bt_runtime_config);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02004099
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004100 del_timer_sync(&priv->statistics_periodic);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004101 del_timer_sync(&priv->ucode_trace);
Zhu Yib481de92007-09-25 17:54:57 -07004102}
4103
Reinette Chatre89f186a2009-10-30 14:36:11 -07004104static void iwl_init_hw_rates(struct iwl_priv *priv,
4105 struct ieee80211_rate *rates)
4106{
4107 int i;
4108
4109 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
4110 rates[i].bitrate = iwl_rates[i].ieee * 5;
4111 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4112 rates[i].hw_value_short = i;
4113 rates[i].flags = 0;
4114 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
4115 /*
4116 * If CCK != 1M then set short preamble rate flag.
4117 */
4118 rates[i].flags |=
4119 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
4120 0 : IEEE80211_RATE_SHORT_PREAMBLE;
4121 }
4122 }
4123}
4124
4125static int iwl_init_drv(struct iwl_priv *priv)
4126{
4127 int ret;
4128
4129 priv->ibss_beacon = NULL;
4130
Reinette Chatre89f186a2009-10-30 14:36:11 -07004131 spin_lock_init(&priv->sta_lock);
4132 spin_lock_init(&priv->hcmd_lock);
4133
4134 INIT_LIST_HEAD(&priv->free_frames);
4135
4136 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08004137 mutex_init(&priv->sync_cmd_mutex);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004138
Reinette Chatre89f186a2009-10-30 14:36:11 -07004139 priv->ieee_channels = NULL;
4140 priv->ieee_rates = NULL;
4141 priv->band = IEEE80211_BAND_2GHZ;
4142
4143 priv->iw_mode = NL80211_IFTYPE_STATION;
Johannes Bergba37a3d2009-12-10 14:37:27 -08004144 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08004145 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08004146 priv->_agn.agg_tids_count = 0;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004147
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08004148 /* initialize force reset */
4149 priv->force_reset[IWL_RF_RESET].reset_duration =
4150 IWL_DELAY_NEXT_FORCE_RF_RESET;
4151 priv->force_reset[IWL_FW_RESET].reset_duration =
4152 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004153
4154 /* Choose which receivers/antennas to use */
4155 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02004156 priv->cfg->ops->hcmd->set_rxon_chain(priv,
4157 &priv->contexts[IWL_RXON_CTX_BSS]);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004158
4159 iwl_init_scan_params(priv);
4160
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004161 /* init bt coex */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07004162 if (priv->cfg->bt_params &&
4163 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07004164 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
4165 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
4166 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004167 priv->bt_on_thresh = BT_ON_THRESHOLD_DEF;
4168 priv->bt_duration = BT_DURATION_LIMIT_DEF;
4169 priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF;
4170 priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF;
4171 }
4172
Reinette Chatre89f186a2009-10-30 14:36:11 -07004173 /* Set the tx_power_user_lmt to the lowest power level
4174 * this value will get overwritten by channel max power avg
4175 * from eeprom */
Wey-Yi Guyb744cb72010-03-23 11:37:59 -07004176 priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004177
4178 ret = iwl_init_channel_map(priv);
4179 if (ret) {
4180 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4181 goto err;
4182 }
4183
4184 ret = iwlcore_init_geos(priv);
4185 if (ret) {
4186 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4187 goto err_free_channel_map;
4188 }
4189 iwl_init_hw_rates(priv, priv->ieee_rates);
4190
4191 return 0;
4192
4193err_free_channel_map:
4194 iwl_free_channel_map(priv);
4195err:
4196 return ret;
4197}
4198
4199static void iwl_uninit_drv(struct iwl_priv *priv)
4200{
4201 iwl_calib_free_results(priv);
4202 iwlcore_free_geos(priv);
4203 iwl_free_channel_map(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07004204 kfree(priv->scan_cmd);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004205}
4206
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004207static struct ieee80211_ops iwl_hw_ops = {
4208 .tx = iwl_mac_tx,
4209 .start = iwl_mac_start,
4210 .stop = iwl_mac_stop,
4211 .add_interface = iwl_mac_add_interface,
4212 .remove_interface = iwl_mac_remove_interface,
4213 .config = iwl_mac_config,
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02004214 .configure_filter = iwlagn_configure_filter,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004215 .set_key = iwl_mac_set_key,
4216 .update_tkip_key = iwl_mac_update_tkip_key,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004217 .conf_tx = iwl_mac_conf_tx,
4218 .reset_tsf = iwl_mac_reset_tsf,
4219 .bss_info_changed = iwl_bss_info_changed,
4220 .ampdu_action = iwl_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08004221 .hw_scan = iwl_mac_hw_scan,
4222 .sta_notify = iwl_mac_sta_notify,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08004223 .sta_add = iwlagn_mac_sta_add,
4224 .sta_remove = iwl_mac_sta_remove,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07004225 .channel_switch = iwl_mac_channel_switch,
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07004226 .flush = iwl_mac_flush,
Johannes Berga85d7cc2010-07-31 08:34:10 -07004227 .tx_last_beacon = iwl_mac_tx_last_beacon,
Zhu Yib481de92007-09-25 17:54:57 -07004228};
4229
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004230static void iwl_hw_detect(struct iwl_priv *priv)
4231{
4232 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
4233 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
4234 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
Wey-Yi Guy49ded762010-07-31 08:34:06 -07004235 IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id);
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004236}
4237
Wey-Yi Guy07d4f1a2010-07-31 08:34:08 -07004238static int iwl_set_hw_params(struct iwl_priv *priv)
4239{
4240 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
4241 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
4242 if (priv->cfg->mod_params->amsdu_size_8K)
4243 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K);
4244 else
4245 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K);
4246
4247 priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
4248
4249 if (priv->cfg->mod_params->disable_11n)
4250 priv->cfg->sku &= ~IWL_SKU_N;
4251
4252 /* Device-specific setup */
4253 return priv->cfg->ops->lib->set_hw_params(priv);
4254}
4255
Johannes Berge72f3682010-08-23 10:46:51 +02004256static const u8 iwlagn_bss_ac_to_fifo[] = {
4257 IWL_TX_FIFO_VO,
4258 IWL_TX_FIFO_VI,
4259 IWL_TX_FIFO_BE,
4260 IWL_TX_FIFO_BK,
4261};
4262
4263static const u8 iwlagn_bss_ac_to_queue[] = {
4264 0, 1, 2, 3,
4265};
4266
4267static const u8 iwlagn_pan_ac_to_fifo[] = {
4268 IWL_TX_FIFO_VO_IPAN,
4269 IWL_TX_FIFO_VI_IPAN,
4270 IWL_TX_FIFO_BE_IPAN,
4271 IWL_TX_FIFO_BK_IPAN,
4272};
4273
4274static const u8 iwlagn_pan_ac_to_queue[] = {
4275 7, 6, 5, 4,
4276};
4277
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004278static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004279{
Johannes Berg246ed352010-08-23 10:46:32 +02004280 int err = 0, i;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004281 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004282 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08004283 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004284 unsigned long flags;
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004285 u16 pci_cmd, num_mac;
Zhu Yib481de92007-09-25 17:54:57 -07004286
Assaf Krauss316c30d2008-03-14 10:38:46 -07004287 /************************
4288 * 1. Allocating HW data
4289 ************************/
4290
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004291 /* Disabling hardware scan means that mac80211 will perform scans
4292 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07004293 if (cfg->mod_params->disable_hw_scan) {
Wey-Yi Guy72645ef2010-10-06 07:42:43 -07004294 dev_printk(KERN_DEBUG, &(pdev->dev),
4295 "sw scan support is deprecated\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004296 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004297 }
4298
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004299 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004300 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07004301 err = -ENOMEM;
4302 goto out;
4303 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004304 priv = hw->priv;
4305 /* At this point both hw and priv are allocated. */
4306
Johannes Berg246ed352010-08-23 10:46:32 +02004307 /*
4308 * The default context is always valid,
4309 * more may be discovered when firmware
4310 * is loaded.
4311 */
4312 priv->valid_contexts = BIT(IWL_RXON_CTX_BSS);
4313
4314 for (i = 0; i < NUM_IWL_RXON_CTX; i++)
4315 priv->contexts[i].ctxid = i;
4316
Johannes Berg763cc3b2010-09-03 06:32:21 -07004317 priv->contexts[IWL_RXON_CTX_BSS].always_active = true;
4318 priv->contexts[IWL_RXON_CTX_BSS].is_active = true;
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004319 priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON;
4320 priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING;
4321 priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC;
Johannes Berg8dfdb9d2010-08-23 10:46:38 +02004322 priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM;
Johannes Berg2995baf2010-08-23 10:46:42 +02004323 priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID;
Johannes Bergc10afb62010-08-23 10:46:43 +02004324 priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY;
Johannes Berge72f3682010-08-23 10:46:51 +02004325 priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo;
4326 priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue = iwlagn_bss_ac_to_queue;
Johannes Bergd0fe4782010-08-23 10:46:58 +02004327 priv->contexts[IWL_RXON_CTX_BSS].exclusive_interface_modes =
4328 BIT(NL80211_IFTYPE_ADHOC);
4329 priv->contexts[IWL_RXON_CTX_BSS].interface_modes =
4330 BIT(NL80211_IFTYPE_STATION);
4331 priv->contexts[IWL_RXON_CTX_BSS].ibss_devtype = RXON_DEV_TYPE_IBSS;
4332 priv->contexts[IWL_RXON_CTX_BSS].station_devtype = RXON_DEV_TYPE_ESS;
4333 priv->contexts[IWL_RXON_CTX_BSS].unused_devtype = RXON_DEV_TYPE_ESS;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004334
4335 priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON;
4336 priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING;
4337 priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC;
4338 priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM;
4339 priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN;
4340 priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY;
4341 priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID;
4342 priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION;
Johannes Berge72f3682010-08-23 10:46:51 +02004343 priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo;
4344 priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue;
4345 priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE;
Johannes Bergd0fe4782010-08-23 10:46:58 +02004346 priv->contexts[IWL_RXON_CTX_PAN].interface_modes =
4347 BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP);
4348 priv->contexts[IWL_RXON_CTX_PAN].ap_devtype = RXON_DEV_TYPE_CP;
4349 priv->contexts[IWL_RXON_CTX_PAN].station_devtype = RXON_DEV_TYPE_2STA;
4350 priv->contexts[IWL_RXON_CTX_PAN].unused_devtype = RXON_DEV_TYPE_P2P;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004351
4352 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004353
Zhu Yib481de92007-09-25 17:54:57 -07004354 SET_IEEE80211_DEV(hw, &pdev->dev);
4355
Tomas Winklere1623442009-01-27 14:27:56 -08004356 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08004357 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07004358 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07004359 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004360
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004361 /* is antenna coupling more than 35dB ? */
4362 priv->bt_ant_couple_ok =
4363 (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ?
4364 true : false;
4365
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004366 /* enable/disable bt channel announcement */
4367 priv->bt_ch_announce = iwlagn_bt_ch_announce;
4368
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004369 if (iwl_alloc_traffic_mem(priv))
4370 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07004371
Assaf Krauss316c30d2008-03-14 10:38:46 -07004372 /**************************
4373 * 2. Initializing PCI bus
4374 **************************/
John W. Linville1a7123c2010-08-05 14:39:31 -04004375 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4376 PCIE_LINK_STATE_CLKPM);
4377
Assaf Krauss316c30d2008-03-14 10:38:46 -07004378 if (pci_enable_device(pdev)) {
4379 err = -ENODEV;
4380 goto out_ieee80211_free_hw;
4381 }
4382
4383 pci_set_master(pdev);
4384
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004385 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07004386 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004387 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004388 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004389 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004390 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004391 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004392 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004393 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004394 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004395 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004396 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004397 }
4398
4399 err = pci_request_regions(pdev, DRV_NAME);
4400 if (err)
4401 goto out_pci_disable_device;
4402
4403 pci_set_drvdata(pdev, priv);
4404
Assaf Krauss316c30d2008-03-14 10:38:46 -07004405
4406 /***********************
4407 * 3. Read REV register
4408 ***********************/
4409 priv->hw_base = pci_iomap(pdev, 0, 0);
4410 if (!priv->hw_base) {
4411 err = -ENODEV;
4412 goto out_pci_release_regions;
4413 }
4414
Tomas Winklere1623442009-01-27 14:27:56 -08004415 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07004416 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004417 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004418
Reinette Chatre731a29b2009-12-14 14:12:11 -08004419 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004420 * we should init now
4421 */
4422 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004423 spin_lock_init(&priv->lock);
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004424
4425 /*
4426 * stop and reset the on-board processor just in case it is in a
4427 * strange state ... like being left stranded by a primary kernel
4428 * and this is now the kdump kernel trying to start up
4429 */
4430 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4431
Tomas Winklerb661c812008-04-23 17:14:54 -07004432 iwl_hw_detect(priv);
Shanyu Zhaoc11362c2010-03-05 17:05:20 -08004433 IWL_INFO(priv, "Detected %s, REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07004434 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004435
Tomas Winklere7b63582008-09-03 11:26:49 +08004436 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4437 * PCI Tx retries from interfering with C3 CPU state */
4438 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4439
Mohamed Abbas086ed112009-05-22 11:01:54 -07004440 iwl_prepare_card_hw(priv);
4441 if (!priv->hw_ready) {
4442 IWL_WARN(priv, "Failed, HW not ready\n");
4443 goto out_iounmap;
4444 }
4445
Assaf Krauss316c30d2008-03-14 10:38:46 -07004446 /*****************
4447 * 4. Read EEPROM
4448 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07004449 /* Read the EEPROM */
4450 err = iwl_eeprom_init(priv);
4451 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004452 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004453 goto out_iounmap;
4454 }
Tomas Winkler8614f362008-04-23 17:14:55 -07004455 err = iwl_eeprom_check_version(priv);
4456 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08004457 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07004458
Ron Rindjunsky02883012008-05-15 13:53:53 +08004459 /* extract MAC Address */
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004460 iwl_eeprom_get_mac(priv, priv->addresses[0].addr);
4461 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr);
4462 priv->hw->wiphy->addresses = priv->addresses;
4463 priv->hw->wiphy->n_addresses = 1;
4464 num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS);
4465 if (num_mac > 1) {
4466 memcpy(priv->addresses[1].addr, priv->addresses[0].addr,
4467 ETH_ALEN);
4468 priv->addresses[1].addr[5]++;
4469 priv->hw->wiphy->n_addresses++;
4470 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004471
4472 /************************
4473 * 5. Setup HW constants
4474 ************************/
Ron Rindjunskyda154e302008-06-30 17:23:20 +08004475 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004476 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07004477 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004478 }
4479
4480 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08004481 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07004482 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07004483
Tomas Winkler6ba87952008-05-15 13:54:17 +08004484 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004485 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004486 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004487 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004488
Assaf Krauss316c30d2008-03-14 10:38:46 -07004489 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004490 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07004491 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004492 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004493 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004494 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004495
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004496 pci_enable_msi(priv->pci_dev);
4497
Mohamed Abbasef850d72009-05-22 11:01:50 -07004498 iwl_alloc_isr_ict(priv);
4499 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4500 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004501 if (err) {
4502 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4503 goto out_disable_msi;
4504 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004505
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004506 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08004507 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004508
Johannes Berg158bea02010-01-22 14:22:53 -08004509 /*********************************************
4510 * 8. Enable interrupts and read RFKILL state
4511 *********************************************/
Tomas Winkler6ba87952008-05-15 13:54:17 +08004512
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004513 /* enable interrupts if needed: hw bug w/a */
4514 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
4515 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
4516 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
4517 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
4518 }
4519
4520 iwl_enable_interrupts(priv);
4521
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004522 /* If platform's RF_KILL switch is NOT set to KILL */
4523 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4524 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4525 else
4526 set_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004527
Johannes Berga60e77e2009-06-04 18:26:06 +02004528 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
4529 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004530
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004531 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004532 iwl_tt_initialize(priv);
Johannes Berg158bea02010-01-22 14:22:53 -08004533
Reinette Chatrea15707d2010-05-10 15:08:11 -07004534 init_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004535
Johannes Bergb08dfd02010-01-29 11:54:56 -08004536 err = iwl_request_firmware(priv, true);
Johannes Berg158bea02010-01-22 14:22:53 -08004537 if (err)
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004538 goto out_destroy_workqueue;
Johannes Berg158bea02010-01-22 14:22:53 -08004539
Zhu Yib481de92007-09-25 17:54:57 -07004540 return 0;
4541
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004542 out_destroy_workqueue:
Reinette Chatrec8f16132009-02-27 16:21:22 -08004543 destroy_workqueue(priv->workqueue);
4544 priv->workqueue = NULL;
Helmut Schaa795cc0a2009-02-12 18:51:03 +01004545 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07004546 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004547 out_disable_msi:
4548 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004549 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004550 out_free_eeprom:
4551 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004552 out_iounmap:
4553 pci_iounmap(pdev, priv->hw_base);
4554 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07004555 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004556 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004557 out_pci_disable_device:
4558 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004559 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004560 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004561 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004562 out:
4563 return err;
4564}
4565
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004566static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004567{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004568 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004569 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004570
4571 if (!priv)
4572 return;
4573
Reinette Chatrea15707d2010-05-10 15:08:11 -07004574 wait_for_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004575
Tomas Winklere1623442009-01-27 14:27:56 -08004576 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004577
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004578 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004579 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004580
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004581 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4582 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08004583 * we need to set STATUS_EXIT_PENDING bit.
4584 */
4585 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004586 if (priv->mac80211_registered) {
4587 ieee80211_unregister_hw(priv->hw);
4588 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004589 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004590 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004591 }
4592
Ben Cahillc166b252009-10-23 13:42:35 -07004593 /*
4594 * Make sure device is reset to low power before unloading driver.
4595 * This may be redundant with iwl_down(), but there are paths to
4596 * run iwl_down() without calling apm_ops.stop(), and there are
4597 * paths to avoid running iwl_down() at all before leaving driver.
4598 * This (inexpensive) call *makes sure* device is reset.
4599 */
Johannes Berg14e8e4a2010-09-22 18:02:10 +02004600 iwl_apm_stop(priv);
Ben Cahillc166b252009-10-23 13:42:35 -07004601
Wey-Yi Guy39b73fb12009-07-24 11:13:02 -07004602 iwl_tt_exit(priv);
4603
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004604 /* make sure we flush any pending irq or
4605 * tasklet for the driver
4606 */
4607 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004608 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004609 spin_unlock_irqrestore(&priv->lock, flags);
4610
4611 iwl_synchronize_irq(priv);
4612
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004613 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004614
4615 if (priv->rxq.bd)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07004616 iwlagn_rx_queue_free(priv, &priv->rxq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07004617 iwlagn_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004618
Tomas Winkler073d3f52008-04-21 15:41:52 -07004619 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004620
Zhu Yib481de92007-09-25 17:54:57 -07004621
Mohamed Abbas948c1712007-10-25 17:15:45 +08004622 /*netif_stop_queue(dev); */
4623 flush_workqueue(priv->workqueue);
4624
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004625 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004626 * priv->workqueue... so we can't take down the workqueue
4627 * until now... */
4628 destroy_workqueue(priv->workqueue);
4629 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004630 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004631
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004632 free_irq(priv->pci_dev->irq, priv);
4633 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07004634 pci_iounmap(pdev, priv->hw_base);
4635 pci_release_regions(pdev);
4636 pci_disable_device(pdev);
4637 pci_set_drvdata(pdev, NULL);
4638
Tomas Winkler6ba87952008-05-15 13:54:17 +08004639 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004640
Mohamed Abbasef850d72009-05-22 11:01:50 -07004641 iwl_free_isr_ict(priv);
4642
Zhu Yib481de92007-09-25 17:54:57 -07004643 if (priv->ibss_beacon)
4644 dev_kfree_skb(priv->ibss_beacon);
4645
4646 ieee80211_free_hw(priv->hw);
4647}
4648
Zhu Yib481de92007-09-25 17:54:57 -07004649
4650/*****************************************************************************
4651 *
4652 * driver and module entry point
4653 *
4654 *****************************************************************************/
4655
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004656/* Hardware specific file defines the PCI IDs table for that hardware module */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00004657static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004658#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004659 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4660 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004661#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004662#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08004663/* 5100 Series WiFi */
4664 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
4665 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
4666 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
4667 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
4668 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
4669 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
4670 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
4671 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
4672 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
4673 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
4674 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
4675 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
4676 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
4677 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
4678 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
4679 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
4680 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
4681 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
4682 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
4683 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
4684 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
4685 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
4686 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
4687 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
4688
4689/* 5300 Series WiFi */
4690 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
4691 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
4692 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
4693 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
4694 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
4695 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
4696 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
4697 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
4698 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
4699 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
4700 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
4701 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
4702
4703/* 5350 Series WiFi/WiMax */
4704 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
4705 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
4706 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
4707
4708/* 5150 Series Wifi/WiMax */
4709 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
4710 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
4711 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
4712 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
4713 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
4714 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
4715
4716 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
4717 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
4718 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
4719 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004720
4721/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004722 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
4723 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
4724 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
4725 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
4726 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
4727 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
4728 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
4729 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
4730 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
4731 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
Shanyu Zhao4b3e8062010-04-07 18:06:36 -07004732
Shanyu Zhao95b13012010-04-21 11:46:33 -07004733/* 6x00 Series Gen2a */
4734 {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)},
4735 {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)},
4736 {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004737 {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)},
4738 {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)},
4739 {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)},
4740 {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004741 {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)},
4742 {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)},
4743 {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)},
4744 {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)},
4745 {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)},
4746 {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)},
4747 {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004748
4749/* 6x00 Series Gen2b */
4750 {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)},
4751 {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)},
4752 {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)},
4753 {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)},
4754 {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)},
4755 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4756 {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)},
4757 {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)},
4758 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4759 {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)},
4760 {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004761 {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)},
4762 {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)},
4763 {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)},
4764 {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)},
4765 {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)},
4766 {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)},
4767 {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)},
4768 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4769 {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)},
4770 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4771 {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)},
4772 {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)},
4773 {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)},
4774 {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)},
4775 {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)},
4776 {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)},
4777 {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004778
4779/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004780 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
4781 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
4782 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
4783 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004784 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
4785 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
4786
Shanyu Zhao03264332010-06-29 17:27:27 -07004787/* 6x50 WiFi/WiMax Series Gen2 */
4788 {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)},
4789 {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)},
4790 {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)},
4791 {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)},
4792 {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)},
4793 {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)},
4794
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08004795/* 1000 Series WiFi */
Wey-Yi Guy4bd0914f2009-09-17 10:43:52 -07004796 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
4797 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
4798 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
4799 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
4800 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
4801 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
4802 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
4803 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
4804 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
4805 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
4806 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
4807 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Jay Sternberg1de19ec2010-09-14 15:21:20 -07004808
Wey-Yi Guy58a39092010-10-06 08:14:21 -07004809/* 100 Series WiFi */
Jay Sternberg1de19ec2010-09-14 15:21:20 -07004810 {IWL_PCI_DEVICE(0x08AE, 0x1005, iwl100_bgn_cfg)},
4811 {IWL_PCI_DEVICE(0x08AF, 0x1015, iwl100_bgn_cfg)},
4812 {IWL_PCI_DEVICE(0x08AE, 0x1025, iwl100_bgn_cfg)},
4813 {IWL_PCI_DEVICE(0x08AE, 0x1007, iwl100_bg_cfg)},
4814 {IWL_PCI_DEVICE(0x08AE, 0x1017, iwl100_bg_cfg)},
Wey-Yi Guy58a39092010-10-06 08:14:21 -07004815
4816/* 130 Series WiFi */
4817 {IWL_PCI_DEVICE(0x0896, 0x5005, iwl130_bgn_cfg)},
4818 {IWL_PCI_DEVICE(0x0896, 0x5007, iwl130_bg_cfg)},
4819 {IWL_PCI_DEVICE(0x0897, 0x5015, iwl130_bgn_cfg)},
4820 {IWL_PCI_DEVICE(0x0897, 0x5017, iwl130_bg_cfg)},
4821 {IWL_PCI_DEVICE(0x0896, 0x5025, iwl130_bgn_cfg)},
4822 {IWL_PCI_DEVICE(0x0896, 0x5027, iwl130_bg_cfg)},
4823
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004824#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08004825
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004826 {0}
4827};
4828MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4829
4830static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004831 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004832 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004833 .probe = iwl_pci_probe,
4834 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004835#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004836 .suspend = iwl_pci_suspend,
4837 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004838#endif
4839};
4840
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004841static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004842{
4843
4844 int ret;
Joe Perchesc96c31e2010-07-26 14:39:58 -07004845 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4846 pr_info(DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004847
Tomas Winklere227cea2008-07-18 13:53:05 +08004848 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004849 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004850 pr_err("Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004851 return ret;
4852 }
4853
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004854 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004855 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004856 pr_err("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004857 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004858 }
Zhu Yib481de92007-09-25 17:54:57 -07004859
4860 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004861
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004862error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004863 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004864 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004865}
4866
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004867static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004868{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004869 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004870 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004871}
4872
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004873module_exit(iwl_exit);
4874module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004875
4876#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004877module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004878MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004879module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004880MODULE_PARM_DESC(debug, "debug output mask");
4881#endif
4882
Wey-Yi Guy2b068612010-03-22 09:17:39 -07004883module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO);
4884MODULE_PARM_DESC(swcrypto50,
4885 "using crypto in software (default 0 [hardware]) (deprecated)");
4886module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO);
4887MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
4888module_param_named(queues_num50,
4889 iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4890MODULE_PARM_DESC(queues_num50,
4891 "number of hw queues in 50xx series (deprecated)");
4892module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4893MODULE_PARM_DESC(queues_num, "number of hw queues.");
4894module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4895MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)");
4896module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4897MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
4898module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K,
4899 int, S_IRUGO);
4900MODULE_PARM_DESC(amsdu_size_8K50,
4901 "enable 8K amsdu size in 50XX series (deprecated)");
4902module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K,
4903 int, S_IRUGO);
4904MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4905module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4906MODULE_PARM_DESC(fw_restart50,
4907 "restart firmware in case of error (deprecated)");
4908module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4909MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");
4910module_param_named(
4911 disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO);
Wey-Yi Guy72645ef2010-10-06 07:42:43 -07004912MODULE_PARM_DESC(disable_hw_scan,
4913 "disable hardware scanning (default 0) (deprecated)");
Johannes Bergdd7a2502010-04-28 23:33:10 -07004914
4915module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int,
4916 S_IRUGO);
4917MODULE_PARM_DESC(ucode_alternative,
4918 "specify ucode alternative to use from ucode file");
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004919
4920module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO);
4921MODULE_PARM_DESC(antenna_coupling,
4922 "specify antenna coupling in dB (defualt: 0 dB)");
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004923
4924module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO);
4925MODULE_PARM_DESC(bt_ch_announce,
4926 "Enable BT channel announcement mode (default: enable)");