blob: 7079efbe34eb1000e9589dbc1d38c61a859bc472 [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,
Johannes Berg77834542010-10-04 05:50:36 -0700317 struct ieee80211_hdr *hdr,
318 int left)
Zhu Yib481de92007-09-25 17:54:57 -0700319{
Johannes Berg77834542010-10-04 05:50:36 -0700320 lockdep_assert_held(&priv->mutex);
321
Johannes Berg12e934d2010-10-04 05:50:06 -0700322 if (!priv->beacon_skb)
Zhu Yib481de92007-09-25 17:54:57 -0700323 return 0;
324
Johannes Berg12e934d2010-10-04 05:50:06 -0700325 if (priv->beacon_skb->len > left)
Zhu Yib481de92007-09-25 17:54:57 -0700326 return 0;
327
Johannes Berg12e934d2010-10-04 05:50:06 -0700328 memcpy(hdr, priv->beacon_skb->data, priv->beacon_skb->len);
Zhu Yib481de92007-09-25 17:54:57 -0700329
Johannes Berg12e934d2010-10-04 05:50:06 -0700330 return priv->beacon_skb->len;
Zhu Yib481de92007-09-25 17:54:57 -0700331}
332
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800333/* Parse the beacon frame to find the TIM element and set tim_idx & tim_size */
334static void iwl_set_beacon_tim(struct iwl_priv *priv,
Johannes Berg77834542010-10-04 05:50:36 -0700335 struct iwl_tx_beacon_cmd *tx_beacon_cmd,
336 u8 *beacon, u32 frame_size)
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800337{
338 u16 tim_idx;
339 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)beacon;
340
341 /*
342 * The index is relative to frame start but we start looking at the
343 * variable-length part of the beacon.
344 */
345 tim_idx = mgmt->u.beacon.variable - beacon;
346
347 /* Parse variable-length elements of beacon to find WLAN_EID_TIM */
348 while ((tim_idx < (frame_size - 2)) &&
349 (beacon[tim_idx] != WLAN_EID_TIM))
350 tim_idx += beacon[tim_idx+1] + 2;
351
352 /* If TIM field was found, set variables */
353 if ((tim_idx < (frame_size - 1)) && (beacon[tim_idx] == WLAN_EID_TIM)) {
354 tx_beacon_cmd->tim_idx = cpu_to_le16(tim_idx);
355 tx_beacon_cmd->tim_size = beacon[tim_idx+1];
356 } else
357 IWL_WARN(priv, "Unable to find TIM Element in beacon\n");
358}
359
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700360static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800361 struct iwl_frame *frame)
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800362{
363 struct iwl_tx_beacon_cmd *tx_beacon_cmd;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800364 u32 frame_size;
365 u32 rate_flags;
366 u32 rate;
367 /*
368 * We have to set up the TX command, the TX Beacon command, and the
369 * beacon contents.
370 */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800371
Johannes Berg76d04812010-08-23 10:46:47 +0200372 lockdep_assert_held(&priv->mutex);
373
374 if (!priv->beacon_ctx) {
375 IWL_ERR(priv, "trying to build beacon w/o beacon context!\n");
Julia Lawall950094c2010-09-05 21:00:26 +0200376 return 0;
Johannes Berg76d04812010-08-23 10:46:47 +0200377 }
378
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800379 /* Initialize memory */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800380 tx_beacon_cmd = &frame->u.beacon;
381 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
382
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800383 /* Set up TX beacon contents */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800384 frame_size = iwl_fill_beacon_frame(priv, tx_beacon_cmd->frame,
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800385 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800386 if (WARN_ON_ONCE(frame_size > MAX_MPDU_SIZE))
387 return 0;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800388
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800389 /* Set up TX command fields */
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800390 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
Johannes Berg76d04812010-08-23 10:46:47 +0200391 tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id;
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800392 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800393 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800394 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
395
396 /* Set up TX beacon command fields */
397 iwl_set_beacon_tim(priv, tx_beacon_cmd, (u8 *)tx_beacon_cmd->frame,
Johannes Berg77834542010-10-04 05:50:36 -0700398 frame_size);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800399
400 /* Set up packet rate and flags */
Johannes Berg76d04812010-08-23 10:46:47 +0200401 rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx);
Johannes Berg0e1654f2010-05-18 02:48:36 -0700402 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
403 priv->hw_params.valid_tx_ant);
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800404 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
405 if ((rate >= IWL_FIRST_CCK_RATE) && (rate <= IWL_LAST_CCK_RATE))
406 rate_flags |= RATE_MCS_CCK_MSK;
407 tx_beacon_cmd->tx.rate_n_flags = iwl_hw_set_rate_n_flags(rate,
408 rate_flags);
Tomas Winkler4bf64ef2008-07-18 13:53:03 +0800409
410 return sizeof(*tx_beacon_cmd) + frame_size;
411}
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700412static int iwl_send_beacon_cmd(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700413{
Tomas Winklerfcab4232008-05-15 13:54:01 +0800414 struct iwl_frame *frame;
Zhu Yib481de92007-09-25 17:54:57 -0700415 unsigned int frame_size;
416 int rc;
Zhu Yib481de92007-09-25 17:54:57 -0700417
Tomas Winklerfcab4232008-05-15 13:54:01 +0800418 frame = iwl_get_free_frame(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700419 if (!frame) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800420 IWL_ERR(priv, "Could not obtain free frame buffer for beacon "
Zhu Yib481de92007-09-25 17:54:57 -0700421 "command.\n");
422 return -ENOMEM;
423 }
424
Daniel C Halperin47ff65c2009-11-13 11:56:33 -0800425 frame_size = iwl_hw_get_beacon_cmd(priv, frame);
426 if (!frame_size) {
427 IWL_ERR(priv, "Error configuring the beacon command\n");
428 iwl_free_frame(priv, frame);
429 return -EINVAL;
430 }
Zhu Yib481de92007-09-25 17:54:57 -0700431
Tomas Winkler857485c2008-03-21 13:53:44 -0700432 rc = iwl_send_cmd_pdu(priv, REPLY_TX_BEACON, frame_size,
Zhu Yib481de92007-09-25 17:54:57 -0700433 &frame->u.cmd[0]);
434
Tomas Winklerfcab4232008-05-15 13:54:01 +0800435 iwl_free_frame(priv, frame);
Zhu Yib481de92007-09-25 17:54:57 -0700436
437 return rc;
438}
439
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800440static inline dma_addr_t iwl_tfd_tb_get_addr(struct iwl_tfd *tfd, u8 idx)
441{
442 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
443
444 dma_addr_t addr = get_unaligned_le32(&tb->lo);
445 if (sizeof(dma_addr_t) > sizeof(u32))
446 addr |=
447 ((dma_addr_t)(le16_to_cpu(tb->hi_n_len) & 0xF) << 16) << 16;
448
449 return addr;
450}
451
452static inline u16 iwl_tfd_tb_get_len(struct iwl_tfd *tfd, u8 idx)
453{
454 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
455
456 return le16_to_cpu(tb->hi_n_len) >> 4;
457}
458
459static inline void iwl_tfd_set_tb(struct iwl_tfd *tfd, u8 idx,
460 dma_addr_t addr, u16 len)
461{
462 struct iwl_tfd_tb *tb = &tfd->tbs[idx];
463 u16 hi_n_len = len << 4;
464
465 put_unaligned_le32(addr, &tb->lo);
466 if (sizeof(dma_addr_t) > sizeof(u32))
467 hi_n_len |= ((addr >> 16) >> 16) & 0xF;
468
469 tb->hi_n_len = cpu_to_le16(hi_n_len);
470
471 tfd->num_tbs = idx + 1;
472}
473
474static inline u8 iwl_tfd_get_num_tbs(struct iwl_tfd *tfd)
475{
476 return tfd->num_tbs & 0x1f;
477}
478
479/**
480 * iwl_hw_txq_free_tfd - Free all chunks referenced by TFD [txq->q.read_ptr]
481 * @priv - driver private data
482 * @txq - tx queue
483 *
484 * Does NOT advance any TFD circular buffer read/write indexes
485 * Does NOT free the TFD itself (which is within circular buffer)
486 */
487void iwl_hw_txq_free_tfd(struct iwl_priv *priv, struct iwl_tx_queue *txq)
488{
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800489 struct iwl_tfd *tfd_tmp = (struct iwl_tfd *)txq->tfds;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800490 struct iwl_tfd *tfd;
491 struct pci_dev *dev = priv->pci_dev;
492 int index = txq->q.read_ptr;
493 int i;
494 int num_tbs;
495
496 tfd = &tfd_tmp[index];
497
498 /* Sanity check on number of chunks */
499 num_tbs = iwl_tfd_get_num_tbs(tfd);
500
501 if (num_tbs >= IWL_NUM_OF_TBS) {
502 IWL_ERR(priv, "Too many chunks: %i\n", num_tbs);
503 /* @todo issue fatal error, it is quite serious situation */
504 return;
505 }
506
507 /* Unmap tx_cmd */
508 if (num_tbs)
509 pci_unmap_single(dev,
FUJITA Tomonori2e724442010-06-03 14:19:20 +0900510 dma_unmap_addr(&txq->meta[index], mapping),
511 dma_unmap_len(&txq->meta[index], len),
Fenghua Yu96891ce2009-02-18 15:54:33 -0800512 PCI_DMA_BIDIRECTIONAL);
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800513
514 /* Unmap chunks, if any. */
Johannes Bergff0d91c2010-05-17 02:37:34 -0700515 for (i = 1; i < num_tbs; i++)
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800516 pci_unmap_single(dev, iwl_tfd_tb_get_addr(tfd, i),
517 iwl_tfd_tb_get_len(tfd, i), PCI_DMA_TODEVICE);
518
Johannes Bergff0d91c2010-05-17 02:37:34 -0700519 /* free SKB */
520 if (txq->txb) {
521 struct sk_buff *skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700522
Johannes Bergff0d91c2010-05-17 02:37:34 -0700523 skb = txq->txb[txq->q.read_ptr].skb;
Johannes Berg6f802402010-05-17 02:37:32 -0700524
Johannes Bergff0d91c2010-05-17 02:37:34 -0700525 /* can be called from irqs-disabled context */
526 if (skb) {
527 dev_kfree_skb_any(skb);
528 txq->txb[txq->q.read_ptr].skb = NULL;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800529 }
530 }
531}
532
533int iwl_hw_txq_attach_buf_to_tfd(struct iwl_priv *priv,
534 struct iwl_tx_queue *txq,
535 dma_addr_t addr, u16 len,
536 u8 reset, u8 pad)
537{
538 struct iwl_queue *q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800539 struct iwl_tfd *tfd, *tfd_tmp;
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800540 u32 num_tbs;
541
542 q = &txq->q;
Samuel Ortiz59606ff2009-01-23 13:45:13 -0800543 tfd_tmp = (struct iwl_tfd *)txq->tfds;
544 tfd = &tfd_tmp[q->write_ptr];
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -0800545
546 if (reset)
547 memset(tfd, 0, sizeof(*tfd));
548
549 num_tbs = iwl_tfd_get_num_tbs(tfd);
550
551 /* Each TFD can point to a maximum 20 Tx buffers */
552 if (num_tbs >= IWL_NUM_OF_TBS) {
553 IWL_ERR(priv, "Error can not send more than %d chunks\n",
554 IWL_NUM_OF_TBS);
555 return -EINVAL;
556 }
557
558 BUG_ON(addr & ~DMA_BIT_MASK(36));
559 if (unlikely(addr & ~IWL_TX_DMA_MASK))
560 IWL_ERR(priv, "Unaligned address = %llx\n",
561 (unsigned long long)addr);
562
563 iwl_tfd_set_tb(tfd, num_tbs, addr, len);
564
565 return 0;
566}
567
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800568/*
569 * Tell nic where to find circular buffer of Tx Frame Descriptors for
570 * given Tx queue, and enable the DMA channel used for that queue.
571 *
572 * 4965 supports up to 16 Tx queues in DRAM, mapped to up to 8 Tx DMA
573 * channels supported in hardware.
574 */
575int iwl_hw_tx_queue_init(struct iwl_priv *priv,
576 struct iwl_tx_queue *txq)
577{
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800578 int txq_id = txq->q.id;
579
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800580 /* Circular buffer (TFD queue in DRAM) physical base address */
581 iwl_write_direct32(priv, FH_MEM_CBBC_QUEUE(txq_id),
582 txq->q.dma_addr >> 8);
583
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800584 return 0;
585}
586
Zhu Yib481de92007-09-25 17:54:57 -0700587/******************************************************************************
588 *
589 * Generic RX handler implementations
590 *
591 ******************************************************************************/
Tomas Winkler885ba202008-05-29 16:34:55 +0800592static void iwl_rx_reply_alive(struct iwl_priv *priv,
593 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700594{
Zhu Yi2f301222009-10-09 17:19:45 +0800595 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler885ba202008-05-29 16:34:55 +0800596 struct iwl_alive_resp *palive;
Zhu Yib481de92007-09-25 17:54:57 -0700597 struct delayed_work *pwork;
598
599 palive = &pkt->u.alive_frame;
600
Tomas Winklere1623442009-01-27 14:27:56 -0800601 IWL_DEBUG_INFO(priv, "Alive ucode status 0x%08X revision "
Zhu Yib481de92007-09-25 17:54:57 -0700602 "0x%01X 0x%01X\n",
603 palive->is_valid, palive->ver_type,
604 palive->ver_subtype);
605
606 if (palive->ver_subtype == INITIALIZE_SUBTYPE) {
Tomas Winklere1623442009-01-27 14:27:56 -0800607 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700608 memcpy(&priv->card_alive_init,
609 &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800610 sizeof(struct iwl_init_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700611 pwork = &priv->init_alive_start;
612 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800613 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700614 memcpy(&priv->card_alive, &pkt->u.alive_frame,
Tomas Winkler885ba202008-05-29 16:34:55 +0800615 sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -0700616 pwork = &priv->alive_start;
617 }
618
619 /* We delay the ALIVE response by 5ms to
620 * give the HW RF Kill time to activate... */
621 if (palive->is_valid == UCODE_VALID_OK)
622 queue_delayed_work(priv->workqueue, pwork,
623 msecs_to_jiffies(5));
624 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800625 IWL_WARN(priv, "uCode did not respond OK.\n");
Zhu Yib481de92007-09-25 17:54:57 -0700626}
627
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700628static void iwl_bg_beacon_update(struct work_struct *work)
Zhu Yib481de92007-09-25 17:54:57 -0700629{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700630 struct iwl_priv *priv =
631 container_of(work, struct iwl_priv, beacon_update);
Zhu Yib481de92007-09-25 17:54:57 -0700632 struct sk_buff *beacon;
633
Johannes Berg76d04812010-08-23 10:46:47 +0200634 mutex_lock(&priv->mutex);
635 if (!priv->beacon_ctx) {
636 IWL_ERR(priv, "updating beacon w/o beacon context!\n");
637 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700638 }
639
Johannes Berg60744f62010-08-23 10:46:50 +0200640 if (priv->beacon_ctx->vif->type != NL80211_IFTYPE_AP) {
641 /*
642 * The ucode will send beacon notifications even in
643 * IBSS mode, but we don't want to process them. But
644 * we need to defer the type check to here due to
645 * requiring locking around the beacon_ctx access.
646 */
647 goto out;
648 }
649
Johannes Berg76d04812010-08-23 10:46:47 +0200650 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
651 beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif);
652 if (!beacon) {
Johannes Berg77834542010-10-04 05:50:36 -0700653 IWL_ERR(priv, "update beacon failed -- keeping old\n");
Johannes Berg76d04812010-08-23 10:46:47 +0200654 goto out;
655 }
656
Zhu Yib481de92007-09-25 17:54:57 -0700657 /* new beacon skb is allocated every time; dispose previous.*/
Johannes Berg77834542010-10-04 05:50:36 -0700658 dev_kfree_skb(priv->beacon_skb);
Zhu Yib481de92007-09-25 17:54:57 -0700659
Johannes Berg12e934d2010-10-04 05:50:06 -0700660 priv->beacon_skb = beacon;
Zhu Yib481de92007-09-25 17:54:57 -0700661
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700662 iwl_send_beacon_cmd(priv);
Johannes Berg76d04812010-08-23 10:46:47 +0200663 out:
664 mutex_unlock(&priv->mutex);
Zhu Yib481de92007-09-25 17:54:57 -0700665}
666
Wey-Yi Guyfbba9412010-08-23 07:57:10 -0700667static void iwl_bg_bt_runtime_config(struct work_struct *work)
668{
669 struct iwl_priv *priv =
670 container_of(work, struct iwl_priv, bt_runtime_config);
671
672 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
673 return;
674
675 /* dont send host command if rf-kill is on */
676 if (!iwl_is_ready_rf(priv))
677 return;
678 priv->cfg->ops->hcmd->send_bt_config(priv);
679}
680
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700681static void iwl_bg_bt_full_concurrency(struct work_struct *work)
682{
683 struct iwl_priv *priv =
684 container_of(work, struct iwl_priv, bt_full_concurrency);
Johannes Berg246ed352010-08-23 10:46:32 +0200685 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700686
687 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
688 return;
689
690 /* dont send host command if rf-kill is on */
691 if (!iwl_is_ready_rf(priv))
692 return;
693
694 IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
695 priv->bt_full_concurrent ?
696 "full concurrency" : "3-wire");
697
698 /*
699 * LQ & RXON updated cmds must be sent before BT Config cmd
700 * to avoid 3-wire collisions
701 */
Johannes Berg246ed352010-08-23 10:46:32 +0200702 mutex_lock(&priv->mutex);
703 for_each_context(priv, ctx) {
704 if (priv->cfg->ops->hcmd->set_rxon_chain)
705 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
706 iwlcore_commit_rxon(priv, ctx);
707 }
708 mutex_unlock(&priv->mutex);
Wey-Yi Guybee008b2010-08-23 07:57:04 -0700709
710 priv->cfg->ops->hcmd->send_bt_config(priv);
711}
712
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800713/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700714 * iwl_bg_statistics_periodic - Timer callback to queue statistics
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800715 *
716 * This callback is provided in order to send a statistics request.
717 *
718 * This timer function is continually reset to execute within
719 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
720 * was received. We need to ensure we receive the statistics in order
721 * to update the temperature used for calibrating the TXPOWER.
722 */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700723static void iwl_bg_statistics_periodic(unsigned long data)
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800724{
725 struct iwl_priv *priv = (struct iwl_priv *)data;
726
727 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
728 return;
729
Mohamed Abbas61780ee2008-10-29 14:05:49 -0700730 /* dont send host command if rf-kill is on */
731 if (!iwl_is_ready_rf(priv))
732 return;
733
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800734 iwl_send_statistics_request(priv, CMD_ASYNC, false);
Emmanuel Grumbach4e393172008-06-12 09:46:53 +0800735}
736
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800737
738static void iwl_print_cont_event_trace(struct iwl_priv *priv, u32 base,
739 u32 start_idx, u32 num_events,
740 u32 mode)
741{
742 u32 i;
743 u32 ptr; /* SRAM byte address of log data */
744 u32 ev, time, data; /* event log data */
745 unsigned long reg_flags;
746
747 if (mode == 0)
748 ptr = base + (4 * sizeof(u32)) + (start_idx * 2 * sizeof(u32));
749 else
750 ptr = base + (4 * sizeof(u32)) + (start_idx * 3 * sizeof(u32));
751
752 /* Make sure device is powered up for SRAM reads */
753 spin_lock_irqsave(&priv->reg_lock, reg_flags);
754 if (iwl_grab_nic_access(priv)) {
755 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
756 return;
757 }
758
759 /* Set starting address; reads will auto-increment */
760 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
761 rmb();
762
763 /*
764 * "time" is actually "data" for mode 0 (no timestamp).
765 * place event id # at far right for easier visual parsing.
766 */
767 for (i = 0; i < num_events; i++) {
768 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
769 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
770 if (mode == 0) {
771 trace_iwlwifi_dev_ucode_cont_event(priv,
772 0, time, ev);
773 } else {
774 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
775 trace_iwlwifi_dev_ucode_cont_event(priv,
776 time, data, ev);
777 }
778 }
779 /* Allow device to power down */
780 iwl_release_nic_access(priv);
781 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
782}
783
Johannes Berg875295f2010-01-22 14:22:55 -0800784static void iwl_continuous_event_trace(struct iwl_priv *priv)
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800785{
786 u32 capacity; /* event log capacity in # entries */
787 u32 base; /* SRAM byte address of event log header */
788 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
789 u32 num_wraps; /* # times uCode wrapped to top of log */
790 u32 next_entry; /* index of next entry to be written by uCode */
791
792 if (priv->ucode_type == UCODE_INIT)
793 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
794 else
795 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
796 if (priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
797 capacity = iwl_read_targ_mem(priv, base);
798 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
799 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
800 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
801 } else
802 return;
803
804 if (num_wraps == priv->event_log.num_wraps) {
805 iwl_print_cont_event_trace(priv,
806 base, priv->event_log.next_entry,
807 next_entry - priv->event_log.next_entry,
808 mode);
809 priv->event_log.non_wraps_count++;
810 } else {
811 if ((num_wraps - priv->event_log.num_wraps) > 1)
812 priv->event_log.wraps_more_count++;
813 else
814 priv->event_log.wraps_once_count++;
815 trace_iwlwifi_dev_ucode_wrap_event(priv,
816 num_wraps - priv->event_log.num_wraps,
817 next_entry, priv->event_log.next_entry);
818 if (next_entry < priv->event_log.next_entry) {
819 iwl_print_cont_event_trace(priv, base,
820 priv->event_log.next_entry,
821 capacity - priv->event_log.next_entry,
822 mode);
823
824 iwl_print_cont_event_trace(priv, base, 0,
825 next_entry, mode);
826 } else {
827 iwl_print_cont_event_trace(priv, base,
828 next_entry, capacity - next_entry,
829 mode);
830
831 iwl_print_cont_event_trace(priv, base, 0,
832 next_entry, mode);
833 }
834 }
835 priv->event_log.num_wraps = num_wraps;
836 priv->event_log.next_entry = next_entry;
837}
838
839/**
840 * iwl_bg_ucode_trace - Timer callback to log ucode event
841 *
842 * The timer is continually set to execute every
843 * UCODE_TRACE_PERIOD milliseconds after the last timer expired
844 * this function is to perform continuous uCode event logging operation
845 * if enabled
846 */
847static void iwl_bg_ucode_trace(unsigned long data)
848{
849 struct iwl_priv *priv = (struct iwl_priv *)data;
850
851 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
852 return;
853
854 if (priv->event_log.ucode_trace) {
855 iwl_continuous_event_trace(priv);
856 /* Reschedule the timer to occur in UCODE_TRACE_PERIOD */
857 mod_timer(&priv->ucode_trace,
858 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
859 }
860}
861
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700862static void iwl_rx_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800863 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700864{
Zhu Yi2f301222009-10-09 17:19:45 +0800865 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Tomas Winkler2aa6ab82008-12-11 10:33:40 -0800866 struct iwl4965_beacon_notif *beacon =
867 (struct iwl4965_beacon_notif *)pkt->u.raw;
Johannes Berga85d7cc2010-07-31 08:34:10 -0700868#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklere7d326a2008-06-12 09:47:11 +0800869 u8 rate = iwl_hw_get_rate(beacon->beacon_notify_hdr.rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700870
Tomas Winklere1623442009-01-27 14:27:56 -0800871 IWL_DEBUG_RX(priv, "beacon status %x retries %d iss %d "
Zhu Yib481de92007-09-25 17:54:57 -0700872 "tsf %d %d rate %d\n",
Tomas Winkler25a65722008-06-12 09:47:07 +0800873 le32_to_cpu(beacon->beacon_notify_hdr.u.status) & TX_STATUS_MSK,
Zhu Yib481de92007-09-25 17:54:57 -0700874 beacon->beacon_notify_hdr.failure_frame,
875 le32_to_cpu(beacon->ibss_mgr_status),
876 le32_to_cpu(beacon->high_tsf),
877 le32_to_cpu(beacon->low_tsf), rate);
878#endif
879
Johannes Berga85d7cc2010-07-31 08:34:10 -0700880 priv->ibss_manager = le32_to_cpu(beacon->ibss_mgr_status);
881
Johannes Berg60744f62010-08-23 10:46:50 +0200882 if (!test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -0700883 queue_work(priv->workqueue, &priv->beacon_update);
884}
885
Zhu Yib481de92007-09-25 17:54:57 -0700886/* Handle notification from uCode that card's power state is changing
887 * due to software, hardware, or critical temperature RFKILL */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700888static void iwl_rx_card_state_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +0800889 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -0700890{
Zhu Yi2f301222009-10-09 17:19:45 +0800891 struct iwl_rx_packet *pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -0700892 u32 flags = le32_to_cpu(pkt->u.card_state_notif.flags);
893 unsigned long status = priv->status;
894
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800895 IWL_DEBUG_RF_KILL(priv, "Card state received: HW:%s SW:%s CT:%s\n",
Zhu Yib481de92007-09-25 17:54:57 -0700896 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800897 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
898 (flags & CT_CARD_DISABLED) ?
899 "Reached" : "Not reached");
Zhu Yib481de92007-09-25 17:54:57 -0700900
901 if (flags & (SW_CARD_DISABLED | HW_CARD_DISABLED |
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800902 CT_CARD_DISABLED)) {
Zhu Yib481de92007-09-25 17:54:57 -0700903
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700904 iwl_write32(priv, CSR_UCODE_DRV_GP1_SET,
Zhu Yib481de92007-09-25 17:54:57 -0700905 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
906
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700907 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
908 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700909
910 if (!(flags & RXON_CARD_DISABLED)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700911 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700912 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
Mohamed Abbasa8b50a02009-05-22 11:01:47 -0700913 iwl_write_direct32(priv, HBUS_TARG_MBX_C,
Zhu Yib481de92007-09-25 17:54:57 -0700914 HBUS_TARG_MBX_C_REG_BIT_CMD_BLOCKED);
Zhu Yib481de92007-09-25 17:54:57 -0700915 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800916 if (flags & CT_CARD_DISABLED)
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -0700917 iwl_tt_enter_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700918 }
Wey-Yi Guy3a41bbd2009-12-10 14:37:24 -0800919 if (!(flags & CT_CARD_DISABLED))
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -0700920 iwl_tt_exit_ct_kill(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700921
922 if (flags & HW_CARD_DISABLED)
923 set_bit(STATUS_RF_KILL_HW, &priv->status);
924 else
925 clear_bit(STATUS_RF_KILL_HW, &priv->status);
926
927
Zhu Yib481de92007-09-25 17:54:57 -0700928 if (!(flags & RXON_CARD_DISABLED))
Tomas Winkler2a421b92008-06-12 09:47:10 +0800929 iwl_scan_cancel(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700930
931 if ((test_bit(STATUS_RF_KILL_HW, &status) !=
Johannes Berga60e77e2009-06-04 18:26:06 +0200932 test_bit(STATUS_RF_KILL_HW, &priv->status)))
933 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
934 test_bit(STATUS_RF_KILL_HW, &priv->status));
Zhu Yib481de92007-09-25 17:54:57 -0700935 else
936 wake_up_interruptible(&priv->wait_command_queue);
937}
938
Wey-Yi Guy65550632010-06-24 13:18:35 -0700939static void iwl_bg_tx_flush(struct work_struct *work)
940{
941 struct iwl_priv *priv =
942 container_of(work, struct iwl_priv, tx_flush);
943
944 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
945 return;
946
947 /* do nothing if rf-kill is on */
948 if (!iwl_is_ready_rf(priv))
949 return;
950
951 if (priv->cfg->ops->lib->txfifo_flush) {
952 IWL_DEBUG_INFO(priv, "device request: flush all tx frames\n");
953 iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL);
954 }
955}
956
Zhu Yib481de92007-09-25 17:54:57 -0700957/**
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700958 * iwl_setup_rx_handlers - Initialize Rx handler callbacks
Zhu Yib481de92007-09-25 17:54:57 -0700959 *
960 * Setup the RX handlers for each of the reply types sent from the uCode
961 * to the host.
962 *
963 * This function chains into the hardware specific files for them to setup
964 * any hardware specific handlers as well.
965 */
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800966static void iwl_setup_rx_handlers(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700967{
Tomas Winkler885ba202008-05-29 16:34:55 +0800968 priv->rx_handlers[REPLY_ALIVE] = iwl_rx_reply_alive;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700969 priv->rx_handlers[REPLY_ERROR] = iwl_rx_reply_error;
970 priv->rx_handlers[CHANNEL_SWITCH_NOTIFICATION] = iwl_rx_csa;
Reinette Chatre81963d62010-01-22 14:22:57 -0800971 priv->rx_handlers[SPECTRUM_MEASURE_NOTIFICATION] =
972 iwl_rx_spectrum_measure_notif;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700973 priv->rx_handlers[PM_SLEEP_NOTIFICATION] = iwl_rx_pm_sleep_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700974 priv->rx_handlers[PM_DEBUG_STATISTIC_NOTIFIC] =
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700975 iwl_rx_pm_debug_statistics_notif;
976 priv->rx_handlers[BEACON_NOTIFICATION] = iwl_rx_beacon_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700977
Ben Cahill9fbab512007-11-29 11:09:47 +0800978 /*
979 * The same handler is used for both the REPLY to a discrete
980 * statistics request from the host as well as for the periodic
981 * statistics notifications (after received beacons) from the uCode.
Zhu Yib481de92007-09-25 17:54:57 -0700982 */
Wey-Yi Guyef8d5522009-11-13 11:56:28 -0800983 priv->rx_handlers[REPLY_STATISTICS_CMD] = iwl_reply_statistics;
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +0800984 priv->rx_handlers[STATISTICS_NOTIFICATION] = iwl_rx_statistics;
Tomas Winkler2a421b92008-06-12 09:47:10 +0800985
986 iwl_setup_rx_scan_handlers(priv);
987
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800988 /* status change handler */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -0700989 priv->rx_handlers[CARD_STATE_NOTIFICATION] = iwl_rx_card_state_notif;
Zhu Yib481de92007-09-25 17:54:57 -0700990
Tomas Winklerc1354752008-05-29 16:35:04 +0800991 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
992 iwl_rx_missed_beacon_notif;
Ron Rindjunsky37a44212008-05-29 16:35:18 +0800993 /* Rx handlers */
Wey-Yi Guy8d801082010-03-17 13:34:36 -0700994 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwlagn_rx_reply_rx_phy;
995 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwlagn_rx_reply_rx;
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +0800996 /* block ack */
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -0700997 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwlagn_rx_reply_compressed_ba;
Ben Cahill9fbab512007-11-29 11:09:47 +0800998 /* Set up hardware specific Rx handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -0700999 priv->cfg->ops->lib->rx_handler_setup(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001000}
1001
Zhu Yib481de92007-09-25 17:54:57 -07001002/**
Tomas Winklera55360e2008-05-05 10:22:28 +08001003 * iwl_rx_handle - Main entry function for receiving responses from uCode
Zhu Yib481de92007-09-25 17:54:57 -07001004 *
1005 * Uses the priv->rx_handlers callback function array to invoke
1006 * the appropriate handlers, including command responses,
1007 * frame-received notifications, and other notifications.
1008 */
Tomas Winklera55360e2008-05-05 10:22:28 +08001009void iwl_rx_handle(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001010{
Tomas Winklera55360e2008-05-05 10:22:28 +08001011 struct iwl_rx_mem_buffer *rxb;
Tomas Winklerdb11d632008-05-05 10:22:33 +08001012 struct iwl_rx_packet *pkt;
Tomas Winklera55360e2008-05-05 10:22:28 +08001013 struct iwl_rx_queue *rxq = &priv->rxq;
Zhu Yib481de92007-09-25 17:54:57 -07001014 u32 r, i;
1015 int reclaim;
1016 unsigned long flags;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001017 u8 fill_rx = 0;
Mohamed Abbasd68ab682008-02-07 13:16:33 -08001018 u32 count = 8;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001019 int total_empty;
Zhu Yib481de92007-09-25 17:54:57 -07001020
Cahill, Ben M6440adb2007-11-29 11:09:55 +08001021 /* uCode's read index (stored in shared DRAM) indicates the last Rx
1022 * buffer that the driver may process (last buffer filled by ucode). */
Winkler, Tomas8d864222008-11-07 09:58:39 -08001023 r = le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF;
Zhu Yib481de92007-09-25 17:54:57 -07001024 i = rxq->read;
1025
1026 /* Rx interrupt, but nothing sent from uCode */
1027 if (i == r)
Tomas Winklere1623442009-01-27 14:27:56 -08001028 IWL_DEBUG_RX(priv, "r = %d, i = %d\n", r, i);
Zhu Yib481de92007-09-25 17:54:57 -07001029
Mohamed Abbas4752c932009-05-22 11:01:51 -07001030 /* calculate total frames need to be restock after handling RX */
Zhu Yi73005152009-10-23 13:42:32 -07001031 total_empty = r - rxq->write_actual;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001032 if (total_empty < 0)
1033 total_empty += RX_QUEUE_SIZE;
1034
1035 if (total_empty > (RX_QUEUE_SIZE / 2))
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001036 fill_rx = 1;
1037
Zhu Yib481de92007-09-25 17:54:57 -07001038 while (i != r) {
Johannes Bergf4989d92010-05-28 04:08:30 -07001039 int len;
1040
Zhu Yib481de92007-09-25 17:54:57 -07001041 rxb = rxq->queue[i];
1042
Ben Cahill9fbab512007-11-29 11:09:47 +08001043 /* If an RXB doesn't have a Rx queue slot associated with it,
Zhu Yib481de92007-09-25 17:54:57 -07001044 * then a bug has been introduced in the queue refilling
1045 * routines -- catch it here */
1046 BUG_ON(rxb == NULL);
1047
1048 rxq->queue[i] = NULL;
1049
Zhu Yi2f301222009-10-09 17:19:45 +08001050 pci_unmap_page(priv->pci_dev, rxb->page_dma,
1051 PAGE_SIZE << priv->hw_params.rx_page_order,
1052 PCI_DMA_FROMDEVICE);
1053 pkt = rxb_addr(rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001054
Johannes Bergf4989d92010-05-28 04:08:30 -07001055 len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
1056 len += sizeof(u32); /* account for status word */
1057 trace_iwlwifi_dev_rx(priv, pkt, len);
Johannes Bergbe1a71a2009-10-02 13:44:02 -07001058
Zhu Yib481de92007-09-25 17:54:57 -07001059 /* Reclaim a command buffer only if this packet is a response
1060 * to a (driver-originated) command.
1061 * If the packet (e.g. Rx frame) originated from uCode,
1062 * there is no command buffer to reclaim.
1063 * Ucode should set SEQ_RX_FRAME bit if ucode-originated,
1064 * but apparently a few don't get set; catch them here. */
1065 reclaim = !(pkt->hdr.sequence & SEQ_RX_FRAME) &&
1066 (pkt->hdr.cmd != REPLY_RX_PHY_CMD) &&
Tomas Winkler857485c2008-03-21 13:53:44 -07001067 (pkt->hdr.cmd != REPLY_RX) &&
Daniel Halperin7dddaf12008-10-23 23:48:58 -07001068 (pkt->hdr.cmd != REPLY_RX_MPDU_CMD) &&
Zhu Yicfe01702007-09-27 11:27:31 +08001069 (pkt->hdr.cmd != REPLY_COMPRESSED_BA) &&
Zhu Yib481de92007-09-25 17:54:57 -07001070 (pkt->hdr.cmd != STATISTICS_NOTIFICATION) &&
1071 (pkt->hdr.cmd != REPLY_TX);
1072
1073 /* Based on type of command response or notification,
1074 * handle those that need handling via function in
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001075 * rx_handlers table. See iwl_setup_rx_handlers() */
Zhu Yib481de92007-09-25 17:54:57 -07001076 if (priv->rx_handlers[pkt->hdr.cmd]) {
Tomas Winklere1623442009-01-27 14:27:56 -08001077 IWL_DEBUG_RX(priv, "r = %d, i = %d, %s, 0x%02x\n", r,
Ester Kummerf3d67992008-05-06 11:05:12 +08001078 i, get_cmd_string(pkt->hdr.cmd), pkt->hdr.cmd);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001079 priv->isr_stats.rx_handlers[pkt->hdr.cmd]++;
Zhu Yi29b1b262009-10-23 13:42:25 -07001080 priv->rx_handlers[pkt->hdr.cmd] (priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001081 } else {
1082 /* No handling needed */
Tomas Winklere1623442009-01-27 14:27:56 -08001083 IWL_DEBUG_RX(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001084 "r %d i %d No handler needed for %s, 0x%02x\n",
1085 r, i, get_cmd_string(pkt->hdr.cmd),
1086 pkt->hdr.cmd);
1087 }
1088
Zhu Yi29b1b262009-10-23 13:42:25 -07001089 /*
1090 * XXX: After here, we should always check rxb->page
1091 * against NULL before touching it or its virtual
1092 * memory (pkt). Because some rx_handler might have
1093 * already taken or freed the pages.
1094 */
1095
Zhu Yib481de92007-09-25 17:54:57 -07001096 if (reclaim) {
Zhu Yi2f301222009-10-09 17:19:45 +08001097 /* Invoke any callbacks, transfer the buffer to caller,
1098 * and fire off the (possibly) blocking iwl_send_cmd()
Zhu Yib481de92007-09-25 17:54:57 -07001099 * as we reclaim the driver command queue */
Zhu Yi29b1b262009-10-23 13:42:25 -07001100 if (rxb->page)
Tomas Winkler17b88922008-05-29 16:35:12 +08001101 iwl_tx_cmd_complete(priv, rxb);
Zhu Yib481de92007-09-25 17:54:57 -07001102 else
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001103 IWL_WARN(priv, "Claim null rxb?\n");
Zhu Yib481de92007-09-25 17:54:57 -07001104 }
1105
Zhu Yi73005152009-10-23 13:42:32 -07001106 /* Reuse the page if possible. For notification packets and
1107 * SKBs that fail to Rx correctly, add them back into the
1108 * rx_free list for reuse later. */
Zhu Yib481de92007-09-25 17:54:57 -07001109 spin_lock_irqsave(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001110 if (rxb->page != NULL) {
1111 rxb->page_dma = pci_map_page(priv->pci_dev, rxb->page,
1112 0, PAGE_SIZE << priv->hw_params.rx_page_order,
1113 PCI_DMA_FROMDEVICE);
1114 list_add_tail(&rxb->list, &rxq->rx_free);
1115 rxq->free_count++;
1116 } else
1117 list_add_tail(&rxb->list, &rxq->rx_used);
1118
Zhu Yib481de92007-09-25 17:54:57 -07001119 spin_unlock_irqrestore(&rxq->lock, flags);
Zhu Yi73005152009-10-23 13:42:32 -07001120
Zhu Yib481de92007-09-25 17:54:57 -07001121 i = (i + 1) & RX_QUEUE_MASK;
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001122 /* If there are a lot of unused frames,
1123 * restock the Rx queue so ucode wont assert. */
1124 if (fill_rx) {
1125 count++;
1126 if (count >= 8) {
Zhu Yi73005152009-10-23 13:42:32 -07001127 rxq->read = i;
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001128 iwlagn_rx_replenish_now(priv);
Mohamed Abbas5c0eef92007-11-29 11:10:14 +08001129 count = 0;
1130 }
1131 }
Zhu Yib481de92007-09-25 17:54:57 -07001132 }
1133
1134 /* Backtrack one entry */
Zhu Yi73005152009-10-23 13:42:32 -07001135 rxq->read = i;
Mohamed Abbas4752c932009-05-22 11:01:51 -07001136 if (fill_rx)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001137 iwlagn_rx_replenish_now(priv);
Mohamed Abbas4752c932009-05-22 11:01:51 -07001138 else
Wey-Yi Guy54b81552010-03-17 13:34:35 -07001139 iwlagn_rx_queue_restock(priv);
Tomas Winklera55360e2008-05-05 10:22:28 +08001140}
Tomas Winklera55360e2008-05-05 10:22:28 +08001141
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001142/* call this function to flush any scheduled tasklet */
1143static inline void iwl_synchronize_irq(struct iwl_priv *priv)
1144{
Tomas Winklera96a27f2008-10-23 23:48:56 -07001145 /* wait to make sure we flush pending tasklet*/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001146 synchronize_irq(priv->pci_dev->irq);
1147 tasklet_kill(&priv->irq_tasklet);
1148}
1149
Mohamed Abbasef850d72009-05-22 11:01:50 -07001150static void iwl_irq_tasklet_legacy(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001151{
1152 u32 inta, handled = 0;
1153 u32 inta_fh;
1154 unsigned long flags;
Ben Cahillc2e61da2009-10-30 14:36:09 -07001155 u32 i;
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001156#ifdef CONFIG_IWLWIFI_DEBUG
Zhu Yib481de92007-09-25 17:54:57 -07001157 u32 inta_mask;
1158#endif
1159
1160 spin_lock_irqsave(&priv->lock, flags);
1161
1162 /* Ack/clear/reset pending uCode interrupts.
1163 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1164 * and will clear only when CSR_FH_INT_STATUS gets cleared. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001165 inta = iwl_read32(priv, CSR_INT);
1166 iwl_write32(priv, CSR_INT, inta);
Zhu Yib481de92007-09-25 17:54:57 -07001167
1168 /* Ack/clear/reset pending flow-handler (DMA) interrupts.
1169 * Any new interrupts that happen after this, either while we're
1170 * in this tasklet, or later, will show up in next ISR/tasklet. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001171 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
1172 iwl_write32(priv, CSR_FH_INT_STATUS, inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001173
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001174#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001175 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Ben Cahill9fbab512007-11-29 11:09:47 +08001176 /* just for debug */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001177 inta_mask = iwl_read32(priv, CSR_INT_MASK);
Tomas Winklere1623442009-01-27 14:27:56 -08001178 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x, fh 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001179 inta, inta_mask, inta_fh);
1180 }
1181#endif
1182
Zhu Yi2f301222009-10-09 17:19:45 +08001183 spin_unlock_irqrestore(&priv->lock, flags);
1184
Zhu Yib481de92007-09-25 17:54:57 -07001185 /* Since CSR_INT and CSR_FH_INT_STATUS reads and clears are not
1186 * atomic, make sure that inta covers all the interrupts that
1187 * we've discovered, even if FH interrupt came in just after
1188 * reading CSR_INT. */
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001189 if (inta_fh & CSR49_FH_INT_RX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001190 inta |= CSR_INT_BIT_FH_RX;
Tomas Winkler6f83eaa2008-03-04 18:09:28 -08001191 if (inta_fh & CSR49_FH_INT_TX_MASK)
Zhu Yib481de92007-09-25 17:54:57 -07001192 inta |= CSR_INT_BIT_FH_TX;
1193
1194 /* Now service all interrupt bits discovered above. */
1195 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001196 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Zhu Yib481de92007-09-25 17:54:57 -07001197
1198 /* Tell the device to stop sending interrupts */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001199 iwl_disable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001200
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001201 priv->isr_stats.hw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001202 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001203
1204 handled |= CSR_INT_BIT_HW_ERR;
1205
Zhu Yib481de92007-09-25 17:54:57 -07001206 return;
1207 }
1208
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001209#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001210 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Zhu Yib481de92007-09-25 17:54:57 -07001211 /* NIC fires this, but we don't use it, redundant with WAKEUP */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001212 if (inta & CSR_INT_BIT_SCD) {
Tomas Winklere1623442009-01-27 14:27:56 -08001213 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
Joonwoo Park25c03d82008-01-23 10:15:20 -08001214 "the frame/frames.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001215 priv->isr_stats.sch++;
1216 }
Zhu Yib481de92007-09-25 17:54:57 -07001217
1218 /* Alive notification via Rx interrupt will do the real work */
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001219 if (inta & CSR_INT_BIT_ALIVE) {
Tomas Winklere1623442009-01-27 14:27:56 -08001220 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001221 priv->isr_stats.alive++;
1222 }
Zhu Yib481de92007-09-25 17:54:57 -07001223 }
1224#endif
1225 /* Safely ignore these bits for debug checks below */
Joonwoo Park25c03d82008-01-23 10:15:20 -08001226 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
Zhu Yib481de92007-09-25 17:54:57 -07001227
Ben Cahill9fbab512007-11-29 11:09:47 +08001228 /* HW RF KILL switch toggled */
Zhu Yib481de92007-09-25 17:54:57 -07001229 if (inta & CSR_INT_BIT_RF_KILL) {
1230 int hw_rf_kill = 0;
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001231 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
Zhu Yib481de92007-09-25 17:54:57 -07001232 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1233 hw_rf_kill = 1;
1234
Reinette Chatre4c423a22009-07-17 09:30:26 -07001235 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001236 hw_rf_kill ? "disable radio" : "enable radio");
Zhu Yib481de92007-09-25 17:54:57 -07001237
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001238 priv->isr_stats.rfkill++;
1239
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001240 /* driver only loads ucode once setting the interface up.
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001241 * the driver allows loading the ucode even if the radio
1242 * is killed. Hence update the killswitch state here. The
1243 * rfkill handler will care about restarting if needed.
Emmanuel Grumbacha9efa652008-06-30 17:23:25 +08001244 */
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01001245 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1246 if (hw_rf_kill)
1247 set_bit(STATUS_RF_KILL_HW, &priv->status);
1248 else
1249 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001250 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasedb34222008-12-11 10:33:37 -08001251 }
Zhu Yib481de92007-09-25 17:54:57 -07001252
1253 handled |= CSR_INT_BIT_RF_KILL;
1254 }
1255
Ben Cahill9fbab512007-11-29 11:09:47 +08001256 /* Chip got too hot and stopped itself */
Zhu Yib481de92007-09-25 17:54:57 -07001257 if (inta & CSR_INT_BIT_CT_KILL) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001258 IWL_ERR(priv, "Microcode CT kill error detected.\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001259 priv->isr_stats.ctkill++;
Zhu Yib481de92007-09-25 17:54:57 -07001260 handled |= CSR_INT_BIT_CT_KILL;
1261 }
1262
1263 /* Error detected by uCode */
1264 if (inta & CSR_INT_BIT_SW_ERR) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001265 IWL_ERR(priv, "Microcode SW error detected. "
1266 " Restarting 0x%X.\n", inta);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001267 priv->isr_stats.sw++;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001268 iwl_irq_handle_error(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001269 handled |= CSR_INT_BIT_SW_ERR;
1270 }
1271
Ben Cahillc2e61da2009-10-30 14:36:09 -07001272 /*
1273 * uCode wakes up after power-down sleep.
1274 * Tell device about any new tx or host commands enqueued,
1275 * and about any Rx buffers made available while asleep.
1276 */
Zhu Yib481de92007-09-25 17:54:57 -07001277 if (inta & CSR_INT_BIT_WAKEUP) {
Tomas Winklere1623442009-01-27 14:27:56 -08001278 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
Tomas Winklera55360e2008-05-05 10:22:28 +08001279 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahillc2e61da2009-10-30 14:36:09 -07001280 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1281 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001282 priv->isr_stats.wakeup++;
Zhu Yib481de92007-09-25 17:54:57 -07001283 handled |= CSR_INT_BIT_WAKEUP;
1284 }
1285
1286 /* All uCode command responses, including Tx command responses,
1287 * Rx "responses" (frame-received notification), and other
1288 * notifications from uCode come through here*/
1289 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
Tomas Winklera55360e2008-05-05 10:22:28 +08001290 iwl_rx_handle(priv);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001291 priv->isr_stats.rx++;
Zhu Yib481de92007-09-25 17:54:57 -07001292 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1293 }
1294
Ben Cahillc72cd192009-10-30 14:36:08 -07001295 /* This "Tx" DMA channel is used only for loading uCode */
Zhu Yib481de92007-09-25 17:54:57 -07001296 if (inta & CSR_INT_BIT_FH_TX) {
Ben Cahillc72cd192009-10-30 14:36:08 -07001297 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001298 priv->isr_stats.tx++;
Zhu Yib481de92007-09-25 17:54:57 -07001299 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001300 /* Wake up uCode load routine, now that load is complete */
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001301 priv->ucode_write_complete = 1;
1302 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07001303 }
1304
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001305 if (inta & ~handled) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001306 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001307 priv->isr_stats.unhandled++;
1308 }
Zhu Yib481de92007-09-25 17:54:57 -07001309
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001310 if (inta & ~(priv->inta_mask)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001311 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001312 inta & ~priv->inta_mask);
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001313 IWL_WARN(priv, " with FH_INT = 0x%08x\n", inta_fh);
Zhu Yib481de92007-09-25 17:54:57 -07001314 }
1315
1316 /* Re-enable all interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07001317 /* only Re-enable if diabled by irq */
1318 if (test_bit(STATUS_INT_ENABLED, &priv->status))
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001319 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001320
Tomas Winkler0a6857e2008-03-12 16:58:49 -07001321#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001322 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001323 inta = iwl_read32(priv, CSR_INT);
1324 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1325 inta_fh = iwl_read32(priv, CSR_FH_INT_STATUS);
Tomas Winklere1623442009-01-27 14:27:56 -08001326 IWL_DEBUG_ISR(priv, "End inta 0x%08x, enabled 0x%08x, fh 0x%08x, "
Zhu Yib481de92007-09-25 17:54:57 -07001327 "flags 0x%08lx\n", inta, inta_mask, inta_fh, flags);
1328 }
1329#endif
Zhu Yib481de92007-09-25 17:54:57 -07001330}
1331
Mohamed Abbasef850d72009-05-22 11:01:50 -07001332/* tasklet for iwlagn interrupt */
1333static void iwl_irq_tasklet(struct iwl_priv *priv)
1334{
1335 u32 inta = 0;
1336 u32 handled = 0;
1337 unsigned long flags;
Ben Cahill87569902009-11-06 14:53:01 -08001338 u32 i;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001339#ifdef CONFIG_IWLWIFI_DEBUG
1340 u32 inta_mask;
1341#endif
1342
1343 spin_lock_irqsave(&priv->lock, flags);
1344
1345 /* Ack/clear/reset pending uCode interrupts.
1346 * Note: Some bits in CSR_INT are "OR" of bits in CSR_FH_INT_STATUS,
1347 */
Shanyu Zhao48a6be62010-03-16 10:22:26 -07001348 /* There is a hardware bug in the interrupt mask function that some
1349 * interrupts (i.e. CSR_INT_BIT_SCD) can still be generated even if
1350 * they are disabled in the CSR_INT_MASK register. Furthermore the
1351 * ICT interrupt handling mechanism has another bug that might cause
1352 * these unmasked interrupts fail to be detected. We workaround the
1353 * hardware bugs here by ACKing all the possible interrupts so that
1354 * interrupt coalescing can still be achieved.
1355 */
David S. Miller4a35ecf2010-04-06 23:53:30 -07001356 iwl_write32(priv, CSR_INT, priv->_agn.inta | ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001357
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001358 inta = priv->_agn.inta;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001359
1360#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001361 if (iwl_get_debug_level(priv) & IWL_DL_ISR) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001362 /* just for debug */
1363 inta_mask = iwl_read32(priv, CSR_INT_MASK);
1364 IWL_DEBUG_ISR(priv, "inta 0x%08x, enabled 0x%08x\n ",
1365 inta, inta_mask);
1366 }
1367#endif
Zhu Yi2f301222009-10-09 17:19:45 +08001368
1369 spin_unlock_irqrestore(&priv->lock, flags);
1370
Johannes Berga4c8b2a2010-01-21 06:25:54 -08001371 /* saved interrupt in inta variable now we can reset priv->_agn.inta */
1372 priv->_agn.inta = 0;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001373
1374 /* Now service all interrupt bits discovered above. */
1375 if (inta & CSR_INT_BIT_HW_ERR) {
Reinette Chatre58dba722009-07-17 09:30:25 -07001376 IWL_ERR(priv, "Hardware error detected. Restarting.\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001377
1378 /* Tell the device to stop sending interrupts */
1379 iwl_disable_interrupts(priv);
1380
1381 priv->isr_stats.hw++;
1382 iwl_irq_handle_error(priv);
1383
1384 handled |= CSR_INT_BIT_HW_ERR;
1385
Mohamed Abbasef850d72009-05-22 11:01:50 -07001386 return;
1387 }
1388
1389#ifdef CONFIG_IWLWIFI_DEBUG
Reinette Chatre3d816c72009-08-07 15:41:37 -07001390 if (iwl_get_debug_level(priv) & (IWL_DL_ISR)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001391 /* NIC fires this, but we don't use it, redundant with WAKEUP */
1392 if (inta & CSR_INT_BIT_SCD) {
1393 IWL_DEBUG_ISR(priv, "Scheduler finished to transmit "
1394 "the frame/frames.\n");
1395 priv->isr_stats.sch++;
1396 }
1397
1398 /* Alive notification via Rx interrupt will do the real work */
1399 if (inta & CSR_INT_BIT_ALIVE) {
1400 IWL_DEBUG_ISR(priv, "Alive interrupt\n");
1401 priv->isr_stats.alive++;
1402 }
1403 }
1404#endif
1405 /* Safely ignore these bits for debug checks below */
1406 inta &= ~(CSR_INT_BIT_SCD | CSR_INT_BIT_ALIVE);
1407
1408 /* HW RF KILL switch toggled */
1409 if (inta & CSR_INT_BIT_RF_KILL) {
1410 int hw_rf_kill = 0;
1411 if (!(iwl_read32(priv, CSR_GP_CNTRL) &
1412 CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW))
1413 hw_rf_kill = 1;
1414
Reinette Chatre4c423a22009-07-17 09:30:26 -07001415 IWL_WARN(priv, "RF_KILL bit toggled to %s.\n",
Mohamed Abbasef850d72009-05-22 11:01:50 -07001416 hw_rf_kill ? "disable radio" : "enable radio");
1417
1418 priv->isr_stats.rfkill++;
1419
1420 /* driver only loads ucode once setting the interface up.
1421 * the driver allows loading the ucode even if the radio
1422 * is killed. Hence update the killswitch state here. The
1423 * rfkill handler will care about restarting if needed.
1424 */
1425 if (!test_bit(STATUS_ALIVE, &priv->status)) {
1426 if (hw_rf_kill)
1427 set_bit(STATUS_RF_KILL_HW, &priv->status);
1428 else
1429 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Johannes Berga60e77e2009-06-04 18:26:06 +02001430 wiphy_rfkill_set_hw_state(priv->hw->wiphy, hw_rf_kill);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001431 }
1432
1433 handled |= CSR_INT_BIT_RF_KILL;
1434 }
1435
1436 /* Chip got too hot and stopped itself */
1437 if (inta & CSR_INT_BIT_CT_KILL) {
1438 IWL_ERR(priv, "Microcode CT kill error detected.\n");
1439 priv->isr_stats.ctkill++;
1440 handled |= CSR_INT_BIT_CT_KILL;
1441 }
1442
1443 /* Error detected by uCode */
1444 if (inta & CSR_INT_BIT_SW_ERR) {
1445 IWL_ERR(priv, "Microcode SW error detected. "
1446 " Restarting 0x%X.\n", inta);
1447 priv->isr_stats.sw++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001448 iwl_irq_handle_error(priv);
1449 handled |= CSR_INT_BIT_SW_ERR;
1450 }
1451
1452 /* uCode wakes up after power-down sleep */
1453 if (inta & CSR_INT_BIT_WAKEUP) {
1454 IWL_DEBUG_ISR(priv, "Wakeup interrupt\n");
1455 iwl_rx_queue_update_write_ptr(priv, &priv->rxq);
Ben Cahill87569902009-11-06 14:53:01 -08001456 for (i = 0; i < priv->hw_params.max_txq_num; i++)
1457 iwl_txq_update_write_ptr(priv, &priv->txq[i]);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001458
1459 priv->isr_stats.wakeup++;
1460
1461 handled |= CSR_INT_BIT_WAKEUP;
1462 }
1463
1464 /* All uCode command responses, including Tx command responses,
1465 * Rx "responses" (frame-received notification), and other
1466 * notifications from uCode come through here*/
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001467 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX |
1468 CSR_INT_BIT_RX_PERIODIC)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001469 IWL_DEBUG_ISR(priv, "Rx interrupt\n");
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001470 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX)) {
1471 handled |= (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX);
1472 iwl_write32(priv, CSR_FH_INT_STATUS,
1473 CSR49_FH_INT_RX_MASK);
1474 }
1475 if (inta & CSR_INT_BIT_RX_PERIODIC) {
1476 handled |= CSR_INT_BIT_RX_PERIODIC;
1477 iwl_write32(priv, CSR_INT, CSR_INT_BIT_RX_PERIODIC);
1478 }
1479 /* Sending RX interrupt require many steps to be done in the
1480 * the device:
1481 * 1- write interrupt to current index in ICT table.
1482 * 2- dma RX frame.
1483 * 3- update RX shared data to indicate last write index.
1484 * 4- send interrupt.
1485 * This could lead to RX race, driver could receive RX interrupt
Ben Cahill74ba67e2009-11-20 12:04:53 -08001486 * but the shared data changes does not reflect this;
1487 * periodic interrupt will detect any dangling Rx activity.
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001488 */
Ben Cahill74ba67e2009-11-20 12:04:53 -08001489
1490 /* Disable periodic interrupt; we use it as just a one-shot. */
1491 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001492 CSR_INT_PERIODIC_DIS);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001493 iwl_rx_handle(priv);
Ben Cahill74ba67e2009-11-20 12:04:53 -08001494
1495 /*
1496 * Enable periodic interrupt in 8 msec only if we received
1497 * real RX interrupt (instead of just periodic int), to catch
1498 * any dangling Rx interrupt. If it was just the periodic
1499 * interrupt, there was no dangling Rx activity, and no need
1500 * to extend the periodic interrupt; one-shot is enough.
1501 */
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001502 if (inta & (CSR_INT_BIT_FH_RX | CSR_INT_BIT_SW_RX))
Ben Cahill74ba67e2009-11-20 12:04:53 -08001503 iwl_write8(priv, CSR_INT_PERIODIC_REG,
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001504 CSR_INT_PERIODIC_ENA);
1505
Mohamed Abbasef850d72009-05-22 11:01:50 -07001506 priv->isr_stats.rx++;
Mohamed Abbasef850d72009-05-22 11:01:50 -07001507 }
1508
Ben Cahillc72cd192009-10-30 14:36:08 -07001509 /* This "Tx" DMA channel is used only for loading uCode */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001510 if (inta & CSR_INT_BIT_FH_TX) {
1511 iwl_write32(priv, CSR_FH_INT_STATUS, CSR49_FH_INT_TX_MASK);
Ben Cahillc72cd192009-10-30 14:36:08 -07001512 IWL_DEBUG_ISR(priv, "uCode load interrupt\n");
Mohamed Abbasef850d72009-05-22 11:01:50 -07001513 priv->isr_stats.tx++;
1514 handled |= CSR_INT_BIT_FH_TX;
Ben Cahillc72cd192009-10-30 14:36:08 -07001515 /* Wake up uCode load routine, now that load is complete */
Mohamed Abbasef850d72009-05-22 11:01:50 -07001516 priv->ucode_write_complete = 1;
1517 wake_up_interruptible(&priv->wait_command_queue);
1518 }
1519
1520 if (inta & ~handled) {
1521 IWL_ERR(priv, "Unhandled INTA bits 0x%08x\n", inta & ~handled);
1522 priv->isr_stats.unhandled++;
1523 }
1524
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001525 if (inta & ~(priv->inta_mask)) {
Mohamed Abbasef850d72009-05-22 11:01:50 -07001526 IWL_WARN(priv, "Disabled INTA bits 0x%08x were pending\n",
Mohamed Abbas40cefda2009-05-22 11:01:52 -07001527 inta & ~priv->inta_mask);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001528 }
1529
Mohamed Abbasef850d72009-05-22 11:01:50 -07001530 /* Re-enable all interrupts */
1531 /* only Re-enable if diabled by irq */
1532 if (test_bit(STATUS_INT_ENABLED, &priv->status))
1533 iwl_enable_interrupts(priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07001534}
1535
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001536/* the threshold ratio of actual_ack_cnt to expected_ack_cnt in percent */
1537#define ACK_CNT_RATIO (50)
1538#define BA_TIMEOUT_CNT (5)
1539#define BA_TIMEOUT_MAX (16)
1540
1541/**
1542 * iwl_good_ack_health - checks for ACK count ratios, BA timeout retries.
1543 *
1544 * When the ACK count ratio is 0 and aggregated BA timeout retries exceeding
1545 * the BA_TIMEOUT_MAX, reload firmware and bring system back to normal
1546 * operation state.
1547 */
1548bool iwl_good_ack_health(struct iwl_priv *priv,
1549 struct iwl_rx_packet *pkt)
1550{
1551 bool rc = true;
1552 int actual_ack_cnt_delta, expected_ack_cnt_delta;
1553 int ba_timeout_delta;
1554
1555 actual_ack_cnt_delta =
1556 le32_to_cpu(pkt->u.stats.tx.actual_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001557 le32_to_cpu(priv->_agn.statistics.tx.actual_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001558 expected_ack_cnt_delta =
1559 le32_to_cpu(pkt->u.stats.tx.expected_ack_cnt) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001560 le32_to_cpu(priv->_agn.statistics.tx.expected_ack_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001561 ba_timeout_delta =
1562 le32_to_cpu(pkt->u.stats.tx.agg.ba_timeout) -
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001563 le32_to_cpu(priv->_agn.statistics.tx.agg.ba_timeout);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001564 if ((priv->_agn.agg_tids_count > 0) &&
1565 (expected_ack_cnt_delta > 0) &&
1566 (((actual_ack_cnt_delta * 100) / expected_ack_cnt_delta)
1567 < ACK_CNT_RATIO) &&
1568 (ba_timeout_delta > BA_TIMEOUT_CNT)) {
1569 IWL_DEBUG_RADIO(priv, "actual_ack_cnt delta = %d,"
1570 " expected_ack_cnt = %d\n",
1571 actual_ack_cnt_delta, expected_ack_cnt_delta);
1572
Johannes Bergd73e4922010-05-06 12:18:41 -07001573#ifdef CONFIG_IWLWIFI_DEBUGFS
1574 /*
1575 * This is ifdef'ed on DEBUGFS because otherwise the
1576 * statistics aren't available. If DEBUGFS is set but
1577 * DEBUG is not, these will just compile out.
1578 */
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001579 IWL_DEBUG_RADIO(priv, "rx_detected_cnt delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001580 priv->_agn.delta_statistics.tx.rx_detected_cnt);
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001581 IWL_DEBUG_RADIO(priv,
1582 "ack_or_ba_timeout_collision delta = %d\n",
Wey-Yi Guyf3aebee2010-06-14 17:09:54 -07001583 priv->_agn.delta_statistics.tx.
Wey-Yi Guy872c8dd2010-03-16 10:46:31 -07001584 ack_or_ba_timeout_collision);
1585#endif
1586 IWL_DEBUG_RADIO(priv, "agg ba_timeout delta = %d\n",
1587 ba_timeout_delta);
1588 if (!actual_ack_cnt_delta &&
1589 (ba_timeout_delta >= BA_TIMEOUT_MAX))
1590 rc = false;
1591 }
1592 return rc;
1593}
1594
Wey-Yi Guya83b9142009-04-08 11:39:32 -07001595
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001596/*****************************************************************************
1597 *
1598 * sysfs attributes
1599 *
1600 *****************************************************************************/
1601
1602#ifdef CONFIG_IWLWIFI_DEBUG
1603
1604/*
1605 * The following adds a new attribute to the sysfs representation
1606 * of this device driver (i.e. a new file in /sys/class/net/wlan0/device/)
1607 * used for controlling the debug level.
1608 *
1609 * See the level definitions in iwl for details.
1610 *
1611 * The debug_level being managed using sysfs below is a per device debug
1612 * level that is used instead of the global debug level if it (the per
1613 * device debug level) is set.
1614 */
1615static ssize_t show_debug_level(struct device *d,
1616 struct device_attribute *attr, char *buf)
1617{
1618 struct iwl_priv *priv = dev_get_drvdata(d);
1619 return sprintf(buf, "0x%08X\n", iwl_get_debug_level(priv));
1620}
1621static ssize_t store_debug_level(struct device *d,
1622 struct device_attribute *attr,
1623 const char *buf, size_t count)
1624{
1625 struct iwl_priv *priv = dev_get_drvdata(d);
1626 unsigned long val;
1627 int ret;
1628
1629 ret = strict_strtoul(buf, 0, &val);
1630 if (ret)
1631 IWL_ERR(priv, "%s is not in hex or decimal form.\n", buf);
1632 else {
1633 priv->debug_level = val;
1634 if (iwl_alloc_traffic_mem(priv))
1635 IWL_ERR(priv,
1636 "Not enough memory to generate traffic log\n");
1637 }
1638 return strnlen(buf, count);
1639}
1640
1641static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
1642 show_debug_level, store_debug_level);
1643
1644
1645#endif /* CONFIG_IWLWIFI_DEBUG */
1646
1647
1648static ssize_t show_temperature(struct device *d,
1649 struct device_attribute *attr, char *buf)
1650{
1651 struct iwl_priv *priv = dev_get_drvdata(d);
1652
1653 if (!iwl_is_alive(priv))
1654 return -EAGAIN;
1655
1656 return sprintf(buf, "%d\n", priv->temperature);
1657}
1658
1659static DEVICE_ATTR(temperature, S_IRUGO, show_temperature, NULL);
1660
1661static ssize_t show_tx_power(struct device *d,
1662 struct device_attribute *attr, char *buf)
1663{
1664 struct iwl_priv *priv = dev_get_drvdata(d);
1665
1666 if (!iwl_is_ready_rf(priv))
1667 return sprintf(buf, "off\n");
1668 else
1669 return sprintf(buf, "%d\n", priv->tx_power_user_lmt);
1670}
1671
1672static ssize_t store_tx_power(struct device *d,
1673 struct device_attribute *attr,
1674 const char *buf, size_t count)
1675{
1676 struct iwl_priv *priv = dev_get_drvdata(d);
1677 unsigned long val;
1678 int ret;
1679
1680 ret = strict_strtoul(buf, 10, &val);
1681 if (ret)
1682 IWL_INFO(priv, "%s is not in decimal form.\n", buf);
1683 else {
1684 ret = iwl_set_tx_power(priv, val, false);
1685 if (ret)
1686 IWL_ERR(priv, "failed setting tx power (0x%d).\n",
1687 ret);
1688 else
1689 ret = count;
1690 }
1691 return ret;
1692}
1693
1694static DEVICE_ATTR(tx_power, S_IWUSR | S_IRUGO, show_tx_power, store_tx_power);
1695
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001696static struct attribute *iwl_sysfs_entries[] = {
1697 &dev_attr_temperature.attr,
1698 &dev_attr_tx_power.attr,
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07001699#ifdef CONFIG_IWLWIFI_DEBUG
1700 &dev_attr_debug_level.attr,
1701#endif
1702 NULL
1703};
1704
1705static struct attribute_group iwl_attribute_group = {
1706 .name = NULL, /* put in device directory */
1707 .attrs = iwl_sysfs_entries,
1708};
1709
Zhu Yib481de92007-09-25 17:54:57 -07001710/******************************************************************************
1711 *
1712 * uCode download functions
1713 *
1714 ******************************************************************************/
1715
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001716static void iwl_dealloc_ucode_pci(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001717{
Tomas Winkler98c92212008-01-14 17:46:20 -08001718 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_code);
1719 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data);
1720 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
1721 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init);
1722 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_init_data);
1723 iwl_free_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07001724}
1725
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001726static void iwl_nic_start(struct iwl_priv *priv)
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001727{
1728 /* Remove all resets to allow NIC to operate */
1729 iwl_write32(priv, CSR_RESET, 0);
1730}
1731
Johannes Bergdd7a2502010-04-28 23:33:10 -07001732struct iwlagn_ucode_capabilities {
1733 u32 max_probe_length;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07001734 u32 standard_phy_calibration_size;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001735 bool pan;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001736};
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +08001737
Johannes Bergb08dfd02010-01-29 11:54:56 -08001738static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001739static int iwl_mac_setup_register(struct iwl_priv *priv,
1740 struct iwlagn_ucode_capabilities *capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08001741
Jay Sternberg39396082010-08-12 10:24:07 -07001742#define UCODE_EXPERIMENTAL_INDEX 100
1743#define UCODE_EXPERIMENTAL_TAG "exp"
1744
Johannes Bergb08dfd02010-01-29 11:54:56 -08001745static int __must_check iwl_request_firmware(struct iwl_priv *priv, bool first)
Zhu Yib481de92007-09-25 17:54:57 -07001746{
Reinette Chatrea0987a82008-12-02 12:14:06 -08001747 const char *name_pre = priv->cfg->fw_name_pre;
Jay Sternberg39396082010-08-12 10:24:07 -07001748 char tag[8];
Johannes Bergb08dfd02010-01-29 11:54:56 -08001749
Jay Sternberg39396082010-08-12 10:24:07 -07001750 if (first) {
1751#ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
1752 priv->fw_index = UCODE_EXPERIMENTAL_INDEX;
1753 strcpy(tag, UCODE_EXPERIMENTAL_TAG);
1754 } else if (priv->fw_index == UCODE_EXPERIMENTAL_INDEX) {
1755#endif
Johannes Bergb08dfd02010-01-29 11:54:56 -08001756 priv->fw_index = priv->cfg->ucode_api_max;
Jay Sternberg39396082010-08-12 10:24:07 -07001757 sprintf(tag, "%d", priv->fw_index);
1758 } else {
Johannes Bergb08dfd02010-01-29 11:54:56 -08001759 priv->fw_index--;
Jay Sternberg39396082010-08-12 10:24:07 -07001760 sprintf(tag, "%d", priv->fw_index);
1761 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08001762
1763 if (priv->fw_index < priv->cfg->ucode_api_min) {
1764 IWL_ERR(priv, "no suitable firmware found!\n");
1765 return -ENOENT;
1766 }
1767
Jay Sternberg39396082010-08-12 10:24:07 -07001768 sprintf(priv->firmware_name, "%s%s%s", name_pre, tag, ".ucode");
Johannes Bergb08dfd02010-01-29 11:54:56 -08001769
Jay Sternberg39396082010-08-12 10:24:07 -07001770 IWL_DEBUG_INFO(priv, "attempting to load firmware %s'%s'\n",
1771 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
1772 ? "EXPERIMENTAL " : "",
Johannes Bergb08dfd02010-01-29 11:54:56 -08001773 priv->firmware_name);
1774
1775 return request_firmware_nowait(THIS_MODULE, 1, priv->firmware_name,
1776 &priv->pci_dev->dev, GFP_KERNEL, priv,
1777 iwl_ucode_callback);
1778}
1779
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001780struct iwlagn_firmware_pieces {
1781 const void *inst, *data, *init, *init_data, *boot;
1782 size_t inst_size, data_size, init_size, init_data_size, boot_size;
1783
1784 u32 build;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001785
1786 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
1787 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07001788};
1789
1790static int iwlagn_load_legacy_firmware(struct iwl_priv *priv,
1791 const struct firmware *ucode_raw,
1792 struct iwlagn_firmware_pieces *pieces)
1793{
1794 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
1795 u32 api_ver, hdr_size;
1796 const u8 *src;
1797
1798 priv->ucode_ver = le32_to_cpu(ucode->ver);
1799 api_ver = IWL_UCODE_API(priv->ucode_ver);
1800
1801 switch (api_ver) {
1802 default:
1803 /*
1804 * 4965 doesn't revision the firmware file format
1805 * along with the API version, it always uses v1
1806 * file format.
1807 */
1808 if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) !=
1809 CSR_HW_REV_TYPE_4965) {
1810 hdr_size = 28;
1811 if (ucode_raw->size < hdr_size) {
1812 IWL_ERR(priv, "File size too small!\n");
1813 return -EINVAL;
1814 }
1815 pieces->build = le32_to_cpu(ucode->u.v2.build);
1816 pieces->inst_size = le32_to_cpu(ucode->u.v2.inst_size);
1817 pieces->data_size = le32_to_cpu(ucode->u.v2.data_size);
1818 pieces->init_size = le32_to_cpu(ucode->u.v2.init_size);
1819 pieces->init_data_size = le32_to_cpu(ucode->u.v2.init_data_size);
1820 pieces->boot_size = le32_to_cpu(ucode->u.v2.boot_size);
1821 src = ucode->u.v2.data;
1822 break;
1823 }
1824 /* fall through for 4965 */
1825 case 0:
1826 case 1:
1827 case 2:
1828 hdr_size = 24;
1829 if (ucode_raw->size < hdr_size) {
1830 IWL_ERR(priv, "File size too small!\n");
1831 return -EINVAL;
1832 }
1833 pieces->build = 0;
1834 pieces->inst_size = le32_to_cpu(ucode->u.v1.inst_size);
1835 pieces->data_size = le32_to_cpu(ucode->u.v1.data_size);
1836 pieces->init_size = le32_to_cpu(ucode->u.v1.init_size);
1837 pieces->init_data_size = le32_to_cpu(ucode->u.v1.init_data_size);
1838 pieces->boot_size = le32_to_cpu(ucode->u.v1.boot_size);
1839 src = ucode->u.v1.data;
1840 break;
1841 }
1842
1843 /* Verify size of file vs. image size info in file's header */
1844 if (ucode_raw->size != hdr_size + pieces->inst_size +
1845 pieces->data_size + pieces->init_size +
1846 pieces->init_data_size + pieces->boot_size) {
1847
1848 IWL_ERR(priv,
1849 "uCode file size %d does not match expected size\n",
1850 (int)ucode_raw->size);
1851 return -EINVAL;
1852 }
1853
1854 pieces->inst = src;
1855 src += pieces->inst_size;
1856 pieces->data = src;
1857 src += pieces->data_size;
1858 pieces->init = src;
1859 src += pieces->init_size;
1860 pieces->init_data = src;
1861 src += pieces->init_data_size;
1862 pieces->boot = src;
1863 src += pieces->boot_size;
1864
1865 return 0;
1866}
1867
Johannes Bergdd7a2502010-04-28 23:33:10 -07001868static int iwlagn_wanted_ucode_alternative = 1;
1869
1870static int iwlagn_load_firmware(struct iwl_priv *priv,
1871 const struct firmware *ucode_raw,
1872 struct iwlagn_firmware_pieces *pieces,
1873 struct iwlagn_ucode_capabilities *capa)
1874{
1875 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
1876 struct iwl_ucode_tlv *tlv;
1877 size_t len = ucode_raw->size;
1878 const u8 *data;
1879 int wanted_alternative = iwlagn_wanted_ucode_alternative, tmp;
1880 u64 alternatives;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001881 u32 tlv_len;
1882 enum iwl_ucode_tlv_type tlv_type;
1883 const u8 *tlv_data;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001884
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001885 if (len < sizeof(*ucode)) {
1886 IWL_ERR(priv, "uCode has invalid length: %zd\n", len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001887 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001888 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001889
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001890 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
1891 IWL_ERR(priv, "invalid uCode magic: 0X%x\n",
1892 le32_to_cpu(ucode->magic));
Johannes Bergdd7a2502010-04-28 23:33:10 -07001893 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001894 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001895
1896 /*
1897 * Check which alternatives are present, and "downgrade"
1898 * when the chosen alternative is not present, warning
1899 * the user when that happens. Some files may not have
1900 * any alternatives, so don't warn in that case.
1901 */
1902 alternatives = le64_to_cpu(ucode->alternatives);
1903 tmp = wanted_alternative;
1904 if (wanted_alternative > 63)
1905 wanted_alternative = 63;
1906 while (wanted_alternative && !(alternatives & BIT(wanted_alternative)))
1907 wanted_alternative--;
1908 if (wanted_alternative && wanted_alternative != tmp)
1909 IWL_WARN(priv,
1910 "uCode alternative %d not available, choosing %d\n",
1911 tmp, wanted_alternative);
1912
1913 priv->ucode_ver = le32_to_cpu(ucode->ver);
1914 pieces->build = le32_to_cpu(ucode->build);
1915 data = ucode->data;
1916
1917 len -= sizeof(*ucode);
1918
Johannes Berg704da532010-07-14 09:34:50 -07001919 while (len >= sizeof(*tlv)) {
Johannes Bergdd7a2502010-04-28 23:33:10 -07001920 u16 tlv_alt;
Johannes Bergdd7a2502010-04-28 23:33:10 -07001921
1922 len -= sizeof(*tlv);
1923 tlv = (void *)data;
1924
1925 tlv_len = le32_to_cpu(tlv->length);
1926 tlv_type = le16_to_cpu(tlv->type);
1927 tlv_alt = le16_to_cpu(tlv->alternative);
1928 tlv_data = tlv->data;
1929
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001930 if (len < tlv_len) {
1931 IWL_ERR(priv, "invalid TLV len: %zd/%u\n",
1932 len, tlv_len);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001933 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001934 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07001935 len -= ALIGN(tlv_len, 4);
1936 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
1937
1938 /*
1939 * Alternative 0 is always valid.
1940 *
1941 * Skip alternative TLVs that are not selected.
1942 */
1943 if (tlv_alt != 0 && tlv_alt != wanted_alternative)
1944 continue;
1945
1946 switch (tlv_type) {
1947 case IWL_UCODE_TLV_INST:
1948 pieces->inst = tlv_data;
1949 pieces->inst_size = tlv_len;
1950 break;
1951 case IWL_UCODE_TLV_DATA:
1952 pieces->data = tlv_data;
1953 pieces->data_size = tlv_len;
1954 break;
1955 case IWL_UCODE_TLV_INIT:
1956 pieces->init = tlv_data;
1957 pieces->init_size = tlv_len;
1958 break;
1959 case IWL_UCODE_TLV_INIT_DATA:
1960 pieces->init_data = tlv_data;
1961 pieces->init_data_size = tlv_len;
1962 break;
1963 case IWL_UCODE_TLV_BOOT:
1964 pieces->boot = tlv_data;
1965 pieces->boot_size = tlv_len;
1966 break;
1967 case IWL_UCODE_TLV_PROBE_MAX_LEN:
Johannes Berg704da532010-07-14 09:34:50 -07001968 if (tlv_len != sizeof(u32))
1969 goto invalid_tlv_len;
1970 capa->max_probe_length =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001971 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergdd7a2502010-04-28 23:33:10 -07001972 break;
Johannes Bergece9c4e2010-08-23 10:46:49 +02001973 case IWL_UCODE_TLV_PAN:
1974 if (tlv_len)
1975 goto invalid_tlv_len;
1976 capa->pan = true;
1977 break;
Johannes Bergb2e640d2010-05-05 23:24:54 -07001978 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001979 if (tlv_len != sizeof(u32))
1980 goto invalid_tlv_len;
1981 pieces->init_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001982 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001983 break;
1984 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07001985 if (tlv_len != sizeof(u32))
1986 goto invalid_tlv_len;
1987 pieces->init_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001988 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001989 break;
1990 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001991 if (tlv_len != sizeof(u32))
1992 goto invalid_tlv_len;
1993 pieces->init_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07001994 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07001995 break;
1996 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07001997 if (tlv_len != sizeof(u32))
1998 goto invalid_tlv_len;
1999 pieces->inst_evtlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002000 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002001 break;
2002 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002003 if (tlv_len != sizeof(u32))
2004 goto invalid_tlv_len;
2005 pieces->inst_evtlog_size =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002006 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002007 break;
2008 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
Johannes Berg704da532010-07-14 09:34:50 -07002009 if (tlv_len != sizeof(u32))
2010 goto invalid_tlv_len;
2011 pieces->inst_errlog_ptr =
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002012 le32_to_cpup((__le32 *)tlv_data);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002013 break;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002014 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
2015 if (tlv_len)
Johannes Berg704da532010-07-14 09:34:50 -07002016 goto invalid_tlv_len;
2017 priv->enhance_sensitivity_table = true;
Wey-Yi Guyc8312fa2010-06-28 13:05:17 -07002018 break;
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002019 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
Johannes Berg704da532010-07-14 09:34:50 -07002020 if (tlv_len != sizeof(u32))
2021 goto invalid_tlv_len;
2022 capa->standard_phy_calibration_size =
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002023 le32_to_cpup((__le32 *)tlv_data);
2024 break;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002025 default:
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002026 IWL_WARN(priv, "unknown TLV: %d\n", tlv_type);
Johannes Bergdd7a2502010-04-28 23:33:10 -07002027 break;
2028 }
2029 }
2030
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002031 if (len) {
2032 IWL_ERR(priv, "invalid TLV after parsing: %zd\n", len);
2033 iwl_print_hex_dump(priv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg704da532010-07-14 09:34:50 -07002034 return -EINVAL;
Wey-Yi Guyad8d8332010-06-22 14:31:45 -07002035 }
Johannes Bergdd7a2502010-04-28 23:33:10 -07002036
Johannes Berg704da532010-07-14 09:34:50 -07002037 return 0;
2038
2039 invalid_tlv_len:
2040 IWL_ERR(priv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
2041 iwl_print_hex_dump(priv, IWL_DL_FW, tlv_data, tlv_len);
2042
2043 return -EINVAL;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002044}
2045
Johannes Bergb08dfd02010-01-29 11:54:56 -08002046/**
2047 * iwl_ucode_callback - callback when firmware was loaded
2048 *
2049 * If loaded successfully, copies the firmware into buffers
2050 * for the card to fetch (via DMA).
2051 */
2052static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
2053{
2054 struct iwl_priv *priv = context;
2055 struct iwl_ucode_header *ucode;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002056 int err;
2057 struct iwlagn_firmware_pieces pieces;
Reinette Chatrea0987a82008-12-02 12:14:06 -08002058 const unsigned int api_max = priv->cfg->ucode_api_max;
2059 const unsigned int api_min = priv->cfg->ucode_api_min;
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002060 u32 api_ver;
Johannes Berg3e4de762010-04-28 12:09:12 -07002061 char buildstr[25];
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002062 u32 build;
Johannes Bergdd7a2502010-04-28 23:33:10 -07002063 struct iwlagn_ucode_capabilities ucode_capa = {
2064 .max_probe_length = 200,
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002065 .standard_phy_calibration_size =
Shanyu Zhao642454c2010-09-21 12:06:18 -07002066 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE,
Johannes Bergdd7a2502010-04-28 23:33:10 -07002067 };
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002068
2069 memset(&pieces, 0, sizeof(pieces));
Zhu Yib481de92007-09-25 17:54:57 -07002070
Johannes Bergb08dfd02010-01-29 11:54:56 -08002071 if (!ucode_raw) {
Jay Sternberg39396082010-08-12 10:24:07 -07002072 if (priv->fw_index <= priv->cfg->ucode_api_max)
2073 IWL_ERR(priv,
2074 "request for firmware file '%s' failed.\n",
2075 priv->firmware_name);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002076 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002077 }
2078
Johannes Bergb08dfd02010-01-29 11:54:56 -08002079 IWL_DEBUG_INFO(priv, "Loaded firmware file '%s' (%zd bytes).\n",
2080 priv->firmware_name, ucode_raw->size);
Zhu Yib481de92007-09-25 17:54:57 -07002081
Johannes Berg22adba22010-04-28 12:09:14 -07002082 /* Make sure that we got at least the API version number */
2083 if (ucode_raw->size < 4) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08002084 IWL_ERR(priv, "File size way too small!\n");
Johannes Bergb08dfd02010-01-29 11:54:56 -08002085 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002086 }
2087
2088 /* Data from ucode file: header followed by uCode images */
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002089 ucode = (struct iwl_ucode_header *)ucode_raw->data;
Zhu Yib481de92007-09-25 17:54:57 -07002090
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002091 if (ucode->ver)
2092 err = iwlagn_load_legacy_firmware(priv, ucode_raw, &pieces);
2093 else
Johannes Bergdd7a2502010-04-28 23:33:10 -07002094 err = iwlagn_load_firmware(priv, ucode_raw, &pieces,
2095 &ucode_capa);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002096
2097 if (err)
2098 goto try_again;
2099
Reinette Chatrea0987a82008-12-02 12:14:06 -08002100 api_ver = IWL_UCODE_API(priv->ucode_ver);
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002101 build = pieces.build;
Zhu Yib481de92007-09-25 17:54:57 -07002102
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002103 /*
2104 * api_ver should match the api version forming part of the
Reinette Chatrea0987a82008-12-02 12:14:06 -08002105 * firmware filename ... but we don't check for that and only rely
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002106 * on the API version read from firmware header from here on forward
2107 */
Wey-Yi Guy65cccfb2010-09-21 16:15:58 -07002108 /* no api version check required for experimental uCode */
2109 if (priv->fw_index != UCODE_EXPERIMENTAL_INDEX) {
2110 if (api_ver < api_min || api_ver > api_max) {
2111 IWL_ERR(priv,
2112 "Driver unable to support your firmware API. "
2113 "Driver supports v%u, firmware is v%u.\n",
2114 api_max, api_ver);
2115 goto try_again;
2116 }
Johannes Bergb08dfd02010-01-29 11:54:56 -08002117
Wey-Yi Guy65cccfb2010-09-21 16:15:58 -07002118 if (api_ver != api_max)
2119 IWL_ERR(priv,
2120 "Firmware has old API version. Expected v%u, "
2121 "got v%u. New firmware can be obtained "
2122 "from http://www.intellinuxwireless.org.\n",
2123 api_max, api_ver);
2124 }
Reinette Chatrea0987a82008-12-02 12:14:06 -08002125
Johannes Berg3e4de762010-04-28 12:09:12 -07002126 if (build)
Jay Sternberg39396082010-08-12 10:24:07 -07002127 sprintf(buildstr, " build %u%s", build,
2128 (priv->fw_index == UCODE_EXPERIMENTAL_INDEX)
2129 ? " (EXP)" : "");
Johannes Berg3e4de762010-04-28 12:09:12 -07002130 else
2131 buildstr[0] = '\0';
Reinette Chatrea0987a82008-12-02 12:14:06 -08002132
Johannes Berg3e4de762010-04-28 12:09:12 -07002133 IWL_INFO(priv, "loaded firmware version %u.%u.%u.%u%s\n",
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002134 IWL_UCODE_MAJOR(priv->ucode_ver),
2135 IWL_UCODE_MINOR(priv->ucode_ver),
2136 IWL_UCODE_API(priv->ucode_ver),
Johannes Berg3e4de762010-04-28 12:09:12 -07002137 IWL_UCODE_SERIAL(priv->ucode_ver),
2138 buildstr);
Reinette Chatre5ebeb5a2009-10-30 14:36:04 -07002139
Johannes Berg3e4de762010-04-28 12:09:12 -07002140 snprintf(priv->hw->wiphy->fw_version,
2141 sizeof(priv->hw->wiphy->fw_version),
2142 "%u.%u.%u.%u%s",
2143 IWL_UCODE_MAJOR(priv->ucode_ver),
2144 IWL_UCODE_MINOR(priv->ucode_ver),
2145 IWL_UCODE_API(priv->ucode_ver),
2146 IWL_UCODE_SERIAL(priv->ucode_ver),
2147 buildstr);
Zhu Yib481de92007-09-25 17:54:57 -07002148
Johannes Bergb08dfd02010-01-29 11:54:56 -08002149 /*
2150 * For any of the failures below (before allocating pci memory)
2151 * we will try to load a version with a smaller API -- maybe the
2152 * user just got a corrupted version of the latest API.
2153 */
2154
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002155 IWL_DEBUG_INFO(priv, "f/w package hdr ucode version raw = 0x%x\n",
2156 priv->ucode_ver);
2157 IWL_DEBUG_INFO(priv, "f/w package hdr runtime inst size = %Zd\n",
2158 pieces.inst_size);
2159 IWL_DEBUG_INFO(priv, "f/w package hdr runtime data size = %Zd\n",
2160 pieces.data_size);
2161 IWL_DEBUG_INFO(priv, "f/w package hdr init inst size = %Zd\n",
2162 pieces.init_size);
2163 IWL_DEBUG_INFO(priv, "f/w package hdr init data size = %Zd\n",
2164 pieces.init_data_size);
2165 IWL_DEBUG_INFO(priv, "f/w package hdr boot inst size = %Zd\n",
2166 pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002167
2168 /* Verify that uCode images will fit in card's SRAM */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002169 if (pieces.inst_size > priv->hw_params.max_inst_size) {
2170 IWL_ERR(priv, "uCode instr len %Zd too large to fit in\n",
2171 pieces.inst_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002172 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002173 }
2174
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002175 if (pieces.data_size > priv->hw_params.max_data_size) {
2176 IWL_ERR(priv, "uCode data len %Zd too large to fit in\n",
2177 pieces.data_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_size > priv->hw_params.max_inst_size) {
2182 IWL_ERR(priv, "uCode init instr len %Zd too large to fit in\n",
2183 pieces.init_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.init_data_size > priv->hw_params.max_data_size) {
2188 IWL_ERR(priv, "uCode init data len %Zd too large to fit in\n",
2189 pieces.init_data_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002190 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002191 }
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002192
2193 if (pieces.boot_size > priv->hw_params.max_bsm_size) {
2194 IWL_ERR(priv, "uCode boot instr len %Zd too large to fit in\n",
2195 pieces.boot_size);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002196 goto try_again;
Zhu Yib481de92007-09-25 17:54:57 -07002197 }
2198
2199 /* Allocate ucode buffers for card's bus-master loading ... */
2200
2201 /* Runtime instructions and 2 copies of data:
2202 * 1) unmodified from disk
2203 * 2) backup cache for save/restore during power-downs */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002204 priv->ucode_code.len = pieces.inst_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002205 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_code);
Zhu Yib481de92007-09-25 17:54:57 -07002206
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002207 priv->ucode_data.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002208 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data);
Zhu Yib481de92007-09-25 17:54:57 -07002209
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002210 priv->ucode_data_backup.len = pieces.data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002211 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_data_backup);
Zhu Yib481de92007-09-25 17:54:57 -07002212
Zhu, Yi1f304e42009-01-23 13:45:22 -08002213 if (!priv->ucode_code.v_addr || !priv->ucode_data.v_addr ||
2214 !priv->ucode_data_backup.v_addr)
2215 goto err_pci_alloc;
2216
Zhu Yib481de92007-09-25 17:54:57 -07002217 /* Initialization instructions and data */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002218 if (pieces.init_size && pieces.init_data_size) {
2219 priv->ucode_init.len = pieces.init_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002220 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init);
Zhu Yib481de92007-09-25 17:54:57 -07002221
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002222 priv->ucode_init_data.len = pieces.init_data_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002223 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_init_data);
Tomas Winkler90e759d2007-11-29 11:09:41 +08002224
2225 if (!priv->ucode_init.v_addr || !priv->ucode_init_data.v_addr)
2226 goto err_pci_alloc;
2227 }
Zhu Yib481de92007-09-25 17:54:57 -07002228
2229 /* Bootstrap (instructions only, no data) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002230 if (pieces.boot_size) {
2231 priv->ucode_boot.len = pieces.boot_size;
Tomas Winkler98c92212008-01-14 17:46:20 -08002232 iwl_alloc_fw_desc(priv->pci_dev, &priv->ucode_boot);
Zhu Yib481de92007-09-25 17:54:57 -07002233
Tomas Winkler90e759d2007-11-29 11:09:41 +08002234 if (!priv->ucode_boot.v_addr)
2235 goto err_pci_alloc;
2236 }
Zhu Yib481de92007-09-25 17:54:57 -07002237
Johannes Bergb2e640d2010-05-05 23:24:54 -07002238 /* Now that we can no longer fail, copy information */
2239
2240 /*
2241 * The (size - 16) / 12 formula is based on the information recorded
2242 * for each event, which is of mode 1 (including timestamp) for all
2243 * new microcodes that include this information.
2244 */
2245 priv->_agn.init_evtlog_ptr = pieces.init_evtlog_ptr;
2246 if (pieces.init_evtlog_size)
2247 priv->_agn.init_evtlog_size = (pieces.init_evtlog_size - 16)/12;
2248 else
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002249 priv->_agn.init_evtlog_size =
2250 priv->cfg->base_params->max_event_log_size;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002251 priv->_agn.init_errlog_ptr = pieces.init_errlog_ptr;
2252 priv->_agn.inst_evtlog_ptr = pieces.inst_evtlog_ptr;
2253 if (pieces.inst_evtlog_size)
2254 priv->_agn.inst_evtlog_size = (pieces.inst_evtlog_size - 16)/12;
2255 else
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002256 priv->_agn.inst_evtlog_size =
2257 priv->cfg->base_params->max_event_log_size;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002258 priv->_agn.inst_errlog_ptr = pieces.inst_errlog_ptr;
2259
Johannes Bergece9c4e2010-08-23 10:46:49 +02002260 if (ucode_capa.pan) {
2261 priv->valid_contexts |= BIT(IWL_RXON_CTX_PAN);
Johannes Bergc10afb62010-08-23 10:46:43 +02002262 priv->sta_key_max_num = STA_KEY_MAX_NUM_PAN;
Johannes Bergece9c4e2010-08-23 10:46:49 +02002263 } else
2264 priv->sta_key_max_num = STA_KEY_MAX_NUM;
Johannes Bergc10afb62010-08-23 10:46:43 +02002265
Zhu Yib481de92007-09-25 17:54:57 -07002266 /* Copy images into buffers for card's bus-master reads ... */
2267
2268 /* Runtime instructions (first block of data in file) */
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002269 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode instr len %Zd\n",
2270 pieces.inst_size);
2271 memcpy(priv->ucode_code.v_addr, pieces.inst, pieces.inst_size);
Jay Sternbergcc0f5552009-07-17 09:30:16 -07002272
Tomas Winklere1623442009-01-27 14:27:56 -08002273 IWL_DEBUG_INFO(priv, "uCode instr buf vaddr = 0x%p, paddr = 0x%08x\n",
Zhu Yib481de92007-09-25 17:54:57 -07002274 priv->ucode_code.v_addr, (u32)priv->ucode_code.p_addr);
2275
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002276 /*
2277 * Runtime data
2278 * NOTE: Copy into backup buffer will be done in iwl_up()
2279 */
2280 IWL_DEBUG_INFO(priv, "Copying (but not loading) uCode data len %Zd\n",
2281 pieces.data_size);
2282 memcpy(priv->ucode_data.v_addr, pieces.data, pieces.data_size);
2283 memcpy(priv->ucode_data_backup.v_addr, pieces.data, pieces.data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002284
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002285 /* Initialization instructions */
2286 if (pieces.init_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002287 IWL_DEBUG_INFO(priv, "Copying (but not loading) init instr len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002288 pieces.init_size);
2289 memcpy(priv->ucode_init.v_addr, pieces.init, pieces.init_size);
Zhu Yib481de92007-09-25 17:54:57 -07002290 }
2291
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002292 /* Initialization data */
2293 if (pieces.init_data_size) {
Tomas Winklere1623442009-01-27 14:27:56 -08002294 IWL_DEBUG_INFO(priv, "Copying (but not loading) init data len %Zd\n",
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002295 pieces.init_data_size);
2296 memcpy(priv->ucode_init_data.v_addr, pieces.init_data,
2297 pieces.init_data_size);
Zhu Yib481de92007-09-25 17:54:57 -07002298 }
2299
Johannes Berg0e9a44d2010-04-28 12:09:16 -07002300 /* Bootstrap instructions */
2301 IWL_DEBUG_INFO(priv, "Copying (but not loading) boot instr len %Zd\n",
2302 pieces.boot_size);
2303 memcpy(priv->ucode_boot.v_addr, pieces.boot, pieces.boot_size);
Zhu Yib481de92007-09-25 17:54:57 -07002304
Wey-Yi Guy6a822d02010-07-13 17:13:15 -07002305 /*
2306 * figure out the offset of chain noise reset and gain commands
2307 * base on the size of standard phy calibration commands table size
2308 */
2309 if (ucode_capa.standard_phy_calibration_size >
2310 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
2311 ucode_capa.standard_phy_calibration_size =
2312 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
2313
2314 priv->_agn.phy_calib_chain_noise_reset_cmd =
2315 ucode_capa.standard_phy_calibration_size;
2316 priv->_agn.phy_calib_chain_noise_gain_cmd =
2317 ucode_capa.standard_phy_calibration_size + 1;
2318
Johannes Bergb08dfd02010-01-29 11:54:56 -08002319 /**************************************************
2320 * This is still part of probe() in a sense...
2321 *
2322 * 9. Setup and register with mac80211 and debugfs
2323 **************************************************/
Johannes Bergdd7a2502010-04-28 23:33:10 -07002324 err = iwl_mac_setup_register(priv, &ucode_capa);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002325 if (err)
2326 goto out_unbind;
2327
2328 err = iwl_dbgfs_register(priv, DRV_NAME);
2329 if (err)
2330 IWL_ERR(priv, "failed to create debugfs files. Ignoring error: %d\n", err);
2331
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07002332 err = sysfs_create_group(&priv->pci_dev->dev.kobj,
2333 &iwl_attribute_group);
2334 if (err) {
2335 IWL_ERR(priv, "failed to create sysfs device attributes\n");
2336 goto out_unbind;
2337 }
2338
Zhu Yib481de92007-09-25 17:54:57 -07002339 /* We have our copies now, allow OS release its copies */
2340 release_firmware(ucode_raw);
Reinette Chatrea15707d2010-05-10 15:08:11 -07002341 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002342 return;
2343
2344 try_again:
2345 /* try next, if any */
2346 if (iwl_request_firmware(priv, false))
2347 goto out_unbind;
2348 release_firmware(ucode_raw);
2349 return;
Zhu Yib481de92007-09-25 17:54:57 -07002350
2351 err_pci_alloc:
Winkler, Tomas15b16872008-12-19 10:37:33 +08002352 IWL_ERR(priv, "failed to allocate pci memory\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002353 iwl_dealloc_ucode_pci(priv);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002354 out_unbind:
Reinette Chatrea15707d2010-05-10 15:08:11 -07002355 complete(&priv->_agn.firmware_loading_complete);
Johannes Bergb08dfd02010-01-29 11:54:56 -08002356 device_release_driver(&priv->pci_dev->dev);
Zhu Yib481de92007-09-25 17:54:57 -07002357 release_firmware(ucode_raw);
Zhu Yib481de92007-09-25 17:54:57 -07002358}
2359
Reinette Chatreb7a79402009-09-25 14:24:23 -07002360static const char *desc_lookup_text[] = {
2361 "OK",
2362 "FAIL",
2363 "BAD_PARAM",
2364 "BAD_CHECKSUM",
2365 "NMI_INTERRUPT_WDG",
2366 "SYSASSERT",
2367 "FATAL_ERROR",
2368 "BAD_COMMAND",
2369 "HW_ERROR_TUNE_LOCK",
2370 "HW_ERROR_TEMPERATURE",
2371 "ILLEGAL_CHAN_FREQ",
2372 "VCC_NOT_STABLE",
2373 "FH_ERROR",
2374 "NMI_INTERRUPT_HOST",
2375 "NMI_INTERRUPT_ACTION_PT",
2376 "NMI_INTERRUPT_UNKNOWN",
2377 "UCODE_VERSION_MISMATCH",
2378 "HW_ERROR_ABS_LOCK",
2379 "HW_ERROR_CAL_LOCK_FAIL",
2380 "NMI_INTERRUPT_INST_ACTION_PT",
2381 "NMI_INTERRUPT_DATA_ACTION_PT",
2382 "NMI_TRM_HW_ER",
2383 "NMI_INTERRUPT_TRM",
2384 "NMI_INTERRUPT_BREAK_POINT"
2385 "DEBUG_0",
2386 "DEBUG_1",
2387 "DEBUG_2",
2388 "DEBUG_3",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002389};
2390
Jay Sternberg4b586452010-07-02 15:49:10 -07002391static struct { char *name; u8 num; } advanced_lookup[] = {
2392 { "NMI_INTERRUPT_WDG", 0x34 },
2393 { "SYSASSERT", 0x35 },
2394 { "UCODE_VERSION_MISMATCH", 0x37 },
2395 { "BAD_COMMAND", 0x38 },
2396 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
2397 { "FATAL_ERROR", 0x3D },
2398 { "NMI_TRM_HW_ERR", 0x46 },
2399 { "NMI_INTERRUPT_TRM", 0x4C },
2400 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
2401 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
2402 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
2403 { "NMI_INTERRUPT_HOST", 0x66 },
2404 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
2405 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
2406 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
2407 { "ADVANCED_SYSASSERT", 0 },
2408};
2409
2410static const char *desc_lookup(u32 num)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002411{
Jay Sternberg4b586452010-07-02 15:49:10 -07002412 int i;
2413 int max = ARRAY_SIZE(desc_lookup_text);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002414
Jay Sternberg4b586452010-07-02 15:49:10 -07002415 if (num < max)
2416 return desc_lookup_text[num];
Reinette Chatreb7a79402009-09-25 14:24:23 -07002417
Jay Sternberg4b586452010-07-02 15:49:10 -07002418 max = ARRAY_SIZE(advanced_lookup) - 1;
2419 for (i = 0; i < max; i++) {
2420 if (advanced_lookup[i].num == num)
2421 break;;
2422 }
2423 return advanced_lookup[i].name;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002424}
2425
2426#define ERROR_START_OFFSET (1 * sizeof(u32))
2427#define ERROR_ELEM_SIZE (7 * sizeof(u32))
2428
2429void iwl_dump_nic_error_log(struct iwl_priv *priv)
2430{
2431 u32 data2, line;
2432 u32 desc, time, count, base, data1;
2433 u32 blink1, blink2, ilink1, ilink2;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002434 u32 pc, hcmd;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002435
Johannes Bergb2e640d2010-05-05 23:24:54 -07002436 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002437 base = le32_to_cpu(priv->card_alive_init.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002438 if (!base)
2439 base = priv->_agn.init_errlog_ptr;
2440 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002441 base = le32_to_cpu(priv->card_alive.error_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002442 if (!base)
2443 base = priv->_agn.inst_errlog_ptr;
2444 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002445
2446 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002447 IWL_ERR(priv,
2448 "Not valid error log pointer 0x%08X for %s uCode\n",
2449 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Reinette Chatreb7a79402009-09-25 14:24:23 -07002450 return;
2451 }
2452
2453 count = iwl_read_targ_mem(priv, base);
2454
2455 if (ERROR_START_OFFSET <= count * ERROR_ELEM_SIZE) {
2456 IWL_ERR(priv, "Start IWL Error Log Dump:\n");
2457 IWL_ERR(priv, "Status: 0x%08lX, count: %d\n",
2458 priv->status, count);
2459 }
2460
2461 desc = iwl_read_targ_mem(priv, base + 1 * sizeof(u32));
Wey-Yi Guy6e6ebf42010-08-27 10:41:37 -07002462 priv->isr_stats.err_code = desc;
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002463 pc = iwl_read_targ_mem(priv, base + 2 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002464 blink1 = iwl_read_targ_mem(priv, base + 3 * sizeof(u32));
2465 blink2 = iwl_read_targ_mem(priv, base + 4 * sizeof(u32));
2466 ilink1 = iwl_read_targ_mem(priv, base + 5 * sizeof(u32));
2467 ilink2 = iwl_read_targ_mem(priv, base + 6 * sizeof(u32));
2468 data1 = iwl_read_targ_mem(priv, base + 7 * sizeof(u32));
2469 data2 = iwl_read_targ_mem(priv, base + 8 * sizeof(u32));
2470 line = iwl_read_targ_mem(priv, base + 9 * sizeof(u32));
2471 time = iwl_read_targ_mem(priv, base + 11 * sizeof(u32));
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002472 hcmd = iwl_read_targ_mem(priv, base + 22 * sizeof(u32));
Reinette Chatreb7a79402009-09-25 14:24:23 -07002473
Johannes Bergbe1a71a2009-10-02 13:44:02 -07002474 trace_iwlwifi_dev_ucode_error(priv, desc, time, data1, data2, line,
2475 blink1, blink2, ilink1, ilink2);
2476
Jay Sternberg87563712010-06-14 14:40:40 -07002477 IWL_ERR(priv, "Desc Time "
Reinette Chatreb7a79402009-09-25 14:24:23 -07002478 "data1 data2 line\n");
Jay Sternberg87563712010-06-14 14:40:40 -07002479 IWL_ERR(priv, "%-28s (0x%04X) %010u 0x%08X 0x%08X %u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002480 desc_lookup(desc), desc, time, data1, data2, line);
Wey-Yi Guy461ef382010-03-30 17:57:53 -07002481 IWL_ERR(priv, "pc blink1 blink2 ilink1 ilink2 hcmd\n");
2482 IWL_ERR(priv, "0x%05X 0x%05X 0x%05X 0x%05X 0x%05X 0x%05X\n",
2483 pc, blink1, blink2, ilink1, ilink2, hcmd);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002484}
2485
2486#define EVENT_START_OFFSET (4 * sizeof(u32))
2487
2488/**
2489 * iwl_print_event_log - Dump error event log to syslog
2490 *
2491 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002492static int iwl_print_event_log(struct iwl_priv *priv, u32 start_idx,
2493 u32 num_events, u32 mode,
2494 int pos, char **buf, size_t bufsz)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002495{
2496 u32 i;
2497 u32 base; /* SRAM byte address of event log header */
2498 u32 event_size; /* 2 u32s, or 3 u32s if timestamp recorded */
2499 u32 ptr; /* SRAM byte address of log data */
2500 u32 ev, time, data; /* event log data */
Ben Cahille5854472009-11-06 14:52:58 -08002501 unsigned long reg_flags;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002502
2503 if (num_events == 0)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002504 return pos;
Johannes Bergb2e640d2010-05-05 23:24:54 -07002505
2506 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002507 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002508 if (!base)
2509 base = priv->_agn.init_evtlog_ptr;
2510 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002511 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002512 if (!base)
2513 base = priv->_agn.inst_evtlog_ptr;
2514 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002515
2516 if (mode == 0)
2517 event_size = 2 * sizeof(u32);
2518 else
2519 event_size = 3 * sizeof(u32);
2520
2521 ptr = base + EVENT_START_OFFSET + (start_idx * event_size);
2522
Ben Cahille5854472009-11-06 14:52:58 -08002523 /* Make sure device is powered up for SRAM reads */
2524 spin_lock_irqsave(&priv->reg_lock, reg_flags);
2525 iwl_grab_nic_access(priv);
2526
2527 /* Set starting address; reads will auto-increment */
2528 _iwl_write_direct32(priv, HBUS_TARG_MEM_RADDR, ptr);
2529 rmb();
2530
Reinette Chatreb7a79402009-09-25 14:24:23 -07002531 /* "time" is actually "data" for mode 0 (no timestamp).
2532 * place event id # at far right for easier visual parsing. */
2533 for (i = 0; i < num_events; i++) {
Ben Cahille5854472009-11-06 14:52:58 -08002534 ev = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
2535 time = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Reinette Chatreb7a79402009-09-25 14:24:23 -07002536 if (mode == 0) {
2537 /* data, ev */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002538 if (bufsz) {
2539 pos += scnprintf(*buf + pos, bufsz - pos,
2540 "EVT_LOG:0x%08x:%04u\n",
2541 time, ev);
2542 } else {
2543 trace_iwlwifi_dev_ucode_event(priv, 0,
2544 time, ev);
2545 IWL_ERR(priv, "EVT_LOG:0x%08x:%04u\n",
2546 time, ev);
2547 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002548 } else {
Ben Cahille5854472009-11-06 14:52:58 -08002549 data = _iwl_read_direct32(priv, HBUS_TARG_MEM_RDAT);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002550 if (bufsz) {
2551 pos += scnprintf(*buf + pos, bufsz - pos,
2552 "EVT_LOGT:%010u:0x%08x:%04u\n",
2553 time, data, ev);
2554 } else {
2555 IWL_ERR(priv, "EVT_LOGT:%010u:0x%08x:%04u\n",
Reinette Chatreb7a79402009-09-25 14:24:23 -07002556 time, data, ev);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002557 trace_iwlwifi_dev_ucode_event(priv, time,
2558 data, ev);
2559 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002560 }
2561 }
Ben Cahille5854472009-11-06 14:52:58 -08002562
2563 /* Allow device to power down */
2564 iwl_release_nic_access(priv);
2565 spin_unlock_irqrestore(&priv->reg_lock, reg_flags);
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002566 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002567}
2568
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002569/**
2570 * iwl_print_last_event_logs - Dump the newest # of event log to syslog
2571 */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002572static int iwl_print_last_event_logs(struct iwl_priv *priv, u32 capacity,
2573 u32 num_wraps, u32 next_entry,
2574 u32 size, u32 mode,
2575 int pos, char **buf, size_t bufsz)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002576{
2577 /*
2578 * display the newest DEFAULT_LOG_ENTRIES entries
2579 * i.e the entries just before the next ont that uCode would fill.
2580 */
2581 if (num_wraps) {
2582 if (next_entry < size) {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002583 pos = iwl_print_event_log(priv,
2584 capacity - (size - next_entry),
2585 size - next_entry, mode,
2586 pos, buf, bufsz);
2587 pos = iwl_print_event_log(priv, 0,
2588 next_entry, mode,
2589 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002590 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002591 pos = iwl_print_event_log(priv, next_entry - size,
2592 size, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002593 } else {
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002594 if (next_entry < size) {
2595 pos = iwl_print_event_log(priv, 0, next_entry,
2596 mode, pos, buf, bufsz);
2597 } else {
2598 pos = iwl_print_event_log(priv, next_entry - size,
2599 size, mode, pos, buf, bufsz);
2600 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002601 }
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002602 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002603}
2604
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002605#define DEFAULT_DUMP_EVENT_LOG_ENTRIES (20)
2606
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002607int iwl_dump_nic_event_log(struct iwl_priv *priv, bool full_log,
2608 char **buf, bool display)
Reinette Chatreb7a79402009-09-25 14:24:23 -07002609{
2610 u32 base; /* SRAM byte address of event log header */
2611 u32 capacity; /* event log capacity in # entries */
2612 u32 mode; /* 0 - no timestamp, 1 - timestamp recorded */
2613 u32 num_wraps; /* # times uCode wrapped to top of log */
2614 u32 next_entry; /* index of next entry to be written by uCode */
2615 u32 size; /* # entries that we'll print */
Johannes Bergb2e640d2010-05-05 23:24:54 -07002616 u32 logsize;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002617 int pos = 0;
2618 size_t bufsz = 0;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002619
Johannes Bergb2e640d2010-05-05 23:24:54 -07002620 if (priv->ucode_type == UCODE_INIT) {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002621 base = le32_to_cpu(priv->card_alive_init.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002622 logsize = priv->_agn.init_evtlog_size;
2623 if (!base)
2624 base = priv->_agn.init_evtlog_ptr;
2625 } else {
Reinette Chatreb7a79402009-09-25 14:24:23 -07002626 base = le32_to_cpu(priv->card_alive.log_event_table_ptr);
Johannes Bergb2e640d2010-05-05 23:24:54 -07002627 logsize = priv->_agn.inst_evtlog_size;
2628 if (!base)
2629 base = priv->_agn.inst_evtlog_ptr;
2630 }
Reinette Chatreb7a79402009-09-25 14:24:23 -07002631
2632 if (!priv->cfg->ops->lib->is_valid_rtc_data_addr(base)) {
Wey-Yi Guy212fb572009-12-02 12:53:00 -08002633 IWL_ERR(priv,
2634 "Invalid event log pointer 0x%08X for %s uCode\n",
2635 base, (priv->ucode_type == UCODE_INIT) ? "Init" : "RT");
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002636 return -EINVAL;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002637 }
2638
2639 /* event log header */
2640 capacity = iwl_read_targ_mem(priv, base);
2641 mode = iwl_read_targ_mem(priv, base + (1 * sizeof(u32)));
2642 num_wraps = iwl_read_targ_mem(priv, base + (2 * sizeof(u32)));
2643 next_entry = iwl_read_targ_mem(priv, base + (3 * sizeof(u32)));
2644
Johannes Bergb2e640d2010-05-05 23:24:54 -07002645 if (capacity > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002646 IWL_ERR(priv, "Log capacity %d is bogus, limit to %d entries\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002647 capacity, logsize);
2648 capacity = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002649 }
2650
Johannes Bergb2e640d2010-05-05 23:24:54 -07002651 if (next_entry > logsize) {
Ben Cahill84c40692009-11-06 14:52:57 -08002652 IWL_ERR(priv, "Log write index %d is bogus, limit to %d\n",
Johannes Bergb2e640d2010-05-05 23:24:54 -07002653 next_entry, logsize);
2654 next_entry = logsize;
Ben Cahill84c40692009-11-06 14:52:57 -08002655 }
2656
Reinette Chatreb7a79402009-09-25 14:24:23 -07002657 size = num_wraps ? capacity : next_entry;
2658
2659 /* bail out if nothing in log */
2660 if (size == 0) {
2661 IWL_ERR(priv, "Start IWL Event Log Dump: nothing in log\n");
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002662 return pos;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002663 }
2664
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07002665 /* enable/disable bt channel announcement */
2666 priv->bt_ch_announce = iwlagn_bt_ch_announce;
2667
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002668#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy521d9bc2009-12-10 14:37:23 -08002669 if (!(iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) && !full_log)
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002670 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2671 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
2672#else
2673 size = (size > DEFAULT_DUMP_EVENT_LOG_ENTRIES)
2674 ? DEFAULT_DUMP_EVENT_LOG_ENTRIES : size;
Reinette Chatreb7a79402009-09-25 14:24:23 -07002675#endif
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002676 IWL_ERR(priv, "Start IWL Event Log Dump: display last %u entries\n",
2677 size);
2678
2679#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002680 if (display) {
2681 if (full_log)
2682 bufsz = capacity * 48;
2683 else
2684 bufsz = size * 48;
2685 *buf = kmalloc(bufsz, GFP_KERNEL);
2686 if (!*buf)
Wey-Yi Guy937c3972010-01-15 13:43:36 -08002687 return -ENOMEM;
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002688 }
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002689 if ((iwl_get_debug_level(priv) & IWL_DL_FW_ERRORS) || full_log) {
2690 /*
2691 * if uCode has wrapped back to top of log,
2692 * start at the oldest entry,
2693 * i.e the next one that uCode would fill.
2694 */
2695 if (num_wraps)
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002696 pos = iwl_print_event_log(priv, next_entry,
2697 capacity - next_entry, mode,
2698 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002699 /* (then/else) start at top of log */
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002700 pos = iwl_print_event_log(priv, 0,
2701 next_entry, mode, pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002702 } else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002703 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2704 next_entry, size, mode,
2705 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002706#else
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002707 pos = iwl_print_last_event_logs(priv, capacity, num_wraps,
2708 next_entry, size, mode,
2709 pos, buf, bufsz);
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002710#endif
Wey-Yi Guyb03d7d02009-12-14 14:12:20 -08002711 return pos;
Wey-Yi Guyc341ddb2009-11-20 12:05:07 -08002712}
Reinette Chatreb7a79402009-09-25 14:24:23 -07002713
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002714static void iwl_rf_kill_ct_config(struct iwl_priv *priv)
2715{
2716 struct iwl_ct_kill_config cmd;
2717 struct iwl_ct_kill_throttling_config adv_cmd;
2718 unsigned long flags;
2719 int ret = 0;
2720
2721 spin_lock_irqsave(&priv->lock, flags);
2722 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
2723 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
2724 spin_unlock_irqrestore(&priv->lock, flags);
2725 priv->thermal_throttle.ct_kill_toggle = false;
2726
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002727 if (priv->cfg->base_params->support_ct_kill_exit) {
Wey-Yi Guy0975cc82010-07-31 08:34:07 -07002728 adv_cmd.critical_temperature_enter =
2729 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2730 adv_cmd.critical_temperature_exit =
2731 cpu_to_le32(priv->hw_params.ct_kill_exit_threshold);
2732
2733 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2734 sizeof(adv_cmd), &adv_cmd);
2735 if (ret)
2736 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2737 else
2738 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2739 "succeeded, "
2740 "critical temperature enter is %d,"
2741 "exit is %d\n",
2742 priv->hw_params.ct_kill_threshold,
2743 priv->hw_params.ct_kill_exit_threshold);
2744 } else {
2745 cmd.critical_temperature_R =
2746 cpu_to_le32(priv->hw_params.ct_kill_threshold);
2747
2748 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
2749 sizeof(cmd), &cmd);
2750 if (ret)
2751 IWL_ERR(priv, "REPLY_CT_KILL_CONFIG_CMD failed\n");
2752 else
2753 IWL_DEBUG_INFO(priv, "REPLY_CT_KILL_CONFIG_CMD "
2754 "succeeded, "
2755 "critical temperature is %d\n",
2756 priv->hw_params.ct_kill_threshold);
2757 }
2758}
2759
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002760static int iwlagn_send_calib_cfg_rt(struct iwl_priv *priv, u32 cfg)
2761{
2762 struct iwl_calib_cfg_cmd calib_cfg_cmd;
2763 struct iwl_host_cmd cmd = {
2764 .id = CALIBRATION_CFG_CMD,
2765 .len = sizeof(struct iwl_calib_cfg_cmd),
2766 .data = &calib_cfg_cmd,
2767 };
2768
2769 memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd));
2770 calib_cfg_cmd.ucd_calib_cfg.once.is_enable = IWL_CALIB_INIT_CFG_ALL;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002771 calib_cfg_cmd.ucd_calib_cfg.once.start = cpu_to_le32(cfg);
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002772
2773 return iwl_send_cmd(priv, &cmd);
2774}
2775
2776
Zhu Yib481de92007-09-25 17:54:57 -07002777/**
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002778 * iwl_alive_start - called after REPLY_ALIVE notification received
Zhu Yib481de92007-09-25 17:54:57 -07002779 * from protocol/runtime uCode (initialization uCode's
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002780 * Alive gets handled by iwl_init_alive_start()).
Zhu Yib481de92007-09-25 17:54:57 -07002781 */
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002782static void iwl_alive_start(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002783{
Tomas Winkler57aab752008-04-14 21:16:03 -07002784 int ret = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02002785 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Zhu Yib481de92007-09-25 17:54:57 -07002786
Tomas Winklere1623442009-01-27 14:27:56 -08002787 IWL_DEBUG_INFO(priv, "Runtime Alive received.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002788
2789 if (priv->card_alive.is_valid != UCODE_VALID_OK) {
2790 /* We had an error bringing up the hardware, so take it
2791 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002792 IWL_DEBUG_INFO(priv, "Alive failed.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002793 goto restart;
2794 }
2795
2796 /* Initialize uCode has loaded Runtime uCode ... verify inst image.
2797 * This is a paranoid check, because we would not have gotten the
2798 * "runtime" alive if code weren't properly loaded. */
Emmanuel Grumbachb0692f22008-04-24 11:55:18 -07002799 if (iwl_verify_ucode(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002800 /* Runtime instruction load was bad;
2801 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -08002802 IWL_DEBUG_INFO(priv, "Bad runtime uCode load.\n");
Zhu Yib481de92007-09-25 17:54:57 -07002803 goto restart;
2804 }
2805
Tomas Winkler57aab752008-04-14 21:16:03 -07002806 ret = priv->cfg->ops->lib->alive_notify(priv);
2807 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08002808 IWL_WARN(priv,
2809 "Could not complete ALIVE transition [ntf]: %d\n", ret);
Zhu Yib481de92007-09-25 17:54:57 -07002810 goto restart;
2811 }
2812
Shanyu Zhao6d6a1af2010-09-14 18:13:31 -07002813
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002814 /* After the ALIVE response, we can send host commands to the uCode */
Zhu Yib481de92007-09-25 17:54:57 -07002815 set_bit(STATUS_ALIVE, &priv->status);
2816
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002817 if (priv->cfg->ops->lib->recover_from_tx_stall) {
2818 /* Enable timer to monitor the driver queues */
2819 mod_timer(&priv->monitor_recover,
2820 jiffies +
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002821 msecs_to_jiffies(
2822 priv->cfg->base_params->monitor_recover_period));
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08002823 }
2824
Tomas Winklerfee12472008-04-03 16:05:21 -07002825 if (iwl_is_rfkill(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002826 return;
2827
Wey-Yi Guybc795df2010-10-11 14:24:05 -07002828 /* download priority table before any calibration request */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002829 if (priv->cfg->bt_params &&
2830 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyf7322f82010-08-23 15:24:49 -07002831 /* Configure Bluetooth device coexistence support */
2832 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
2833 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
2834 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
2835 priv->cfg->ops->hcmd->send_bt_config(priv);
2836 priv->bt_valid = IWLAGN_BT_VALID_ENABLE_FLAGS;
Wey-Yi Guya5901cb2010-09-23 09:56:51 -07002837 iwlagn_send_prio_tbl(priv);
Wey-Yi Guyf7322f82010-08-23 15:24:49 -07002838
2839 /* FIXME: w/a to force change uCode BT state machine */
2840 iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_OPEN,
2841 BT_COEX_PRIO_TBL_EVT_INIT_CALIB2);
2842 iwlagn_send_bt_env(priv, IWL_BT_COEX_ENV_CLOSE,
2843 BT_COEX_PRIO_TBL_EVT_INIT_CALIB2);
2844 }
Wey-Yi Guybc795df2010-10-11 14:24:05 -07002845 if (priv->hw_params.calib_rt_cfg)
2846 iwlagn_send_calib_cfg_rt(priv, priv->hw_params.calib_rt_cfg);
2847
Johannes Berg36d68252008-05-15 12:55:26 +02002848 ieee80211_wake_queues(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07002849
Johannes Berg470ab2d2010-01-21 11:23:30 -08002850 priv->active_rate = IWL_RATES_MASK;
Zhu Yib481de92007-09-25 17:54:57 -07002851
Wey-Yi Guy2f748de2009-09-17 10:43:51 -07002852 /* Configure Tx antenna selection based on H/W config */
2853 if (priv->cfg->ops->hcmd->set_tx_ant)
2854 priv->cfg->ops->hcmd->set_tx_ant(priv, priv->cfg->valid_tx_ant);
2855
Johannes Berg246ed352010-08-23 10:46:32 +02002856 if (iwl_is_associated_ctx(ctx)) {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08002857 struct iwl_rxon_cmd *active_rxon =
Johannes Berg246ed352010-08-23 10:46:32 +02002858 (struct iwl_rxon_cmd *)&ctx->active;
Mohamed Abbas019fb972009-03-17 21:59:18 -07002859 /* apply any changes in staging */
Johannes Berg246ed352010-08-23 10:46:32 +02002860 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002861 active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
2862 } else {
Johannes Bergd0fe4782010-08-23 10:46:58 +02002863 struct iwl_rxon_context *tmp;
Zhu Yib481de92007-09-25 17:54:57 -07002864 /* Initialize our rx_config data */
Johannes Bergd0fe4782010-08-23 10:46:58 +02002865 for_each_context(priv, tmp)
2866 iwl_connection_init_rx_config(priv, tmp);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07002867
2868 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02002869 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002870 }
2871
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002872 if (priv->cfg->bt_params &&
2873 !priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyaeb4a2e2010-08-23 07:57:05 -07002874 /* Configure Bluetooth device coexistence support */
2875 priv->cfg->ops->hcmd->send_bt_config(priv);
2876 }
Zhu Yib481de92007-09-25 17:54:57 -07002877
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08002878 iwl_reset_run_time_calib(priv);
2879
Zhu Yib481de92007-09-25 17:54:57 -07002880 /* Configure the adapter for unassociated operation */
Johannes Berg246ed352010-08-23 10:46:32 +02002881 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07002882
2883 /* At this point, the NIC is initialized and operational */
Emmanuel Grumbach47f4a582008-06-12 09:47:13 +08002884 iwl_rf_kill_ct_config(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08002885
Johannes Berge932a602009-10-02 13:44:03 -07002886 iwl_leds_init(priv);
Reinette Chatrefe00b5a2008-04-03 16:05:23 -07002887
Tomas Winklere1623442009-01-27 14:27:56 -08002888 IWL_DEBUG_INFO(priv, "ALIVE processing complete.\n");
Rick Farringtona9f46782008-03-18 14:57:49 -07002889 set_bit(STATUS_READY, &priv->status);
Zhu Yi5a669262008-01-14 17:46:18 -08002890 wake_up_interruptible(&priv->wait_command_queue);
Zhu Yib481de92007-09-25 17:54:57 -07002891
Johannes Berge312c242009-08-07 15:41:51 -07002892 iwl_power_update_mode(priv, true);
Reinette Chatre7e246192010-02-18 22:58:32 -08002893 IWL_DEBUG_INFO(priv, "Updated power mode\n");
2894
Assaf Kraussc46fbef2008-06-12 09:47:05 +08002895
Zhu Yib481de92007-09-25 17:54:57 -07002896 return;
2897
2898 restart:
2899 queue_work(priv->workqueue, &priv->restart);
2900}
2901
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08002902static void iwl_cancel_deferred_work(struct iwl_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -07002903
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002904static void __iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002905{
2906 unsigned long flags;
2907 int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002908
Tomas Winklere1623442009-01-27 14:27:56 -08002909 IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");
Zhu Yib481de92007-09-25 17:54:57 -07002910
Stanislaw Gruszkad745d472010-09-13 14:46:35 +02002911 iwl_scan_cancel_timeout(priv, 200);
2912
2913 exit_pending = test_and_set_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07002914
Stanislaw Gruszkab62177a2010-08-20 15:23:47 +02002915 /* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
2916 * to prevent rearm timer */
2917 if (priv->cfg->ops->lib->recover_from_tx_stall)
2918 del_timer_sync(&priv->monitor_recover);
2919
Johannes Bergdcef7322010-08-27 08:55:52 -07002920 iwl_clear_ucode_stations(priv, NULL);
Johannes Berga194e322010-08-27 08:53:46 -07002921 iwl_dealloc_bcast_stations(priv);
Johannes Bergdb125c72010-05-07 01:49:15 -07002922 iwl_clear_driver_stations(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002923
Johannes Berga1174132010-08-23 07:56:59 -07002924 /* reset BT coex data */
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07002925 priv->bt_status = 0;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002926 if (priv->cfg->bt_params)
2927 priv->bt_traffic_load =
2928 priv->cfg->bt_params->bt_init_traffic_load;
2929 else
2930 priv->bt_traffic_load = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002931 priv->bt_sco_active = false;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07002932 priv->bt_full_concurrent = false;
2933 priv->bt_ci_compliance = 0;
Johannes Berga1174132010-08-23 07:56:59 -07002934
Zhu Yib481de92007-09-25 17:54:57 -07002935 /* Unblock any waiting calls */
2936 wake_up_interruptible_all(&priv->wait_command_queue);
2937
Zhu Yib481de92007-09-25 17:54:57 -07002938 /* Wipe out the EXIT_PENDING status bit if we are not actually
2939 * exiting the module */
2940 if (!exit_pending)
2941 clear_bit(STATUS_EXIT_PENDING, &priv->status);
2942
2943 /* stop and reset the on-board processor */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07002944 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
Zhu Yib481de92007-09-25 17:54:57 -07002945
2946 /* tell the device to stop sending interrupts */
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002947 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002948 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07002949 spin_unlock_irqrestore(&priv->lock, flags);
2950 iwl_synchronize_irq(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002951
2952 if (priv->mac80211_registered)
2953 ieee80211_stop_queues(priv->hw);
2954
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07002955 /* If we have not previously called iwl_init() then
Johannes Berga60e77e2009-06-04 18:26:06 +02002956 * clear all bits but the RF Kill bit and return */
Tomas Winklerfee12472008-04-03 16:05:21 -07002957 if (!iwl_is_init(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -07002958 priv->status = test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2959 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002960 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2961 STATUS_GEO_CONFIGURED |
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002962 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2963 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002964 goto exit;
2965 }
2966
Wey-Yi Guy6da3a132009-03-26 10:14:08 -07002967 /* ...otherwise clear out all the status bits but the RF Kill
Johannes Berga60e77e2009-06-04 18:26:06 +02002968 * bit and continue taking the NIC down. */
Zhu Yib481de92007-09-25 17:54:57 -07002969 priv->status &= test_bit(STATUS_RF_KILL_HW, &priv->status) <<
2970 STATUS_RF_KILL_HW |
Reinette Chatre97888642008-02-06 11:20:38 -08002971 test_bit(STATUS_GEO_CONFIGURED, &priv->status) <<
2972 STATUS_GEO_CONFIGURED |
Zhu Yib481de92007-09-25 17:54:57 -07002973 test_bit(STATUS_FW_ERROR, &priv->status) <<
Mohamed Abbas052ec3f2008-06-30 17:23:15 +08002974 STATUS_FW_ERROR |
2975 test_bit(STATUS_EXIT_PENDING, &priv->status) <<
2976 STATUS_EXIT_PENDING;
Zhu Yib481de92007-09-25 17:54:57 -07002977
Mohamed Abbasef850d72009-05-22 11:01:50 -07002978 /* device going down, Stop using ICT table */
2979 iwl_disable_ict(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002980
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07002981 iwlagn_txq_ctx_stop(priv);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07002982 iwlagn_rxq_stop(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002983
Ben Cahill309e7312009-11-06 14:53:03 -08002984 /* Power-down device's busmaster DMA clocks */
2985 iwl_write_prph(priv, APMG_CLK_DIS_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -07002986 udelay(5);
2987
Ben Cahill309e7312009-11-06 14:53:03 -08002988 /* Make sure (redundant) we've released our request to stay awake */
2989 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
2990
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002991 /* Stop the device, and put it in low power state */
Johannes Berg14e8e4a2010-09-22 18:02:10 +02002992 iwl_apm_stop(priv);
Ben Cahill4d2ccdb2009-10-09 13:20:20 -07002993
Zhu Yib481de92007-09-25 17:54:57 -07002994 exit:
Tomas Winkler885ba202008-05-29 16:34:55 +08002995 memset(&priv->card_alive, 0, sizeof(struct iwl_alive_resp));
Zhu Yib481de92007-09-25 17:54:57 -07002996
Johannes Berg77834542010-10-04 05:50:36 -07002997 dev_kfree_skb(priv->beacon_skb);
Johannes Berg12e934d2010-10-04 05:50:06 -07002998 priv->beacon_skb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002999
3000 /* clear out any free frames */
Tomas Winklerfcab4232008-05-15 13:54:01 +08003001 iwl_clear_free_frames(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003002}
3003
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003004static void iwl_down(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003005{
3006 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003007 __iwl_down(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003008 mutex_unlock(&priv->mutex);
Zhu Yib24d22b2007-12-19 13:59:52 +08003009
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08003010 iwl_cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003011}
3012
Mohamed Abbas086ed112009-05-22 11:01:54 -07003013#define HW_READY_TIMEOUT (50)
3014
3015static int iwl_set_hw_ready(struct iwl_priv *priv)
3016{
3017 int ret = 0;
3018
3019 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
3020 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY);
3021
3022 /* See if we got it */
3023 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
3024 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
3025 CSR_HW_IF_CONFIG_REG_BIT_NIC_READY,
3026 HW_READY_TIMEOUT);
3027 if (ret != -ETIMEDOUT)
3028 priv->hw_ready = true;
3029 else
3030 priv->hw_ready = false;
3031
3032 IWL_DEBUG_INFO(priv, "hardware %s\n",
3033 (priv->hw_ready == 1) ? "ready" : "not ready");
3034 return ret;
3035}
3036
3037static int iwl_prepare_card_hw(struct iwl_priv *priv)
3038{
3039 int ret = 0;
3040
Frans Pop91dd6c22010-03-24 14:19:58 -07003041 IWL_DEBUG_INFO(priv, "iwl_prepare_card_hw enter\n");
Mohamed Abbas086ed112009-05-22 11:01:54 -07003042
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07003043 ret = iwl_set_hw_ready(priv);
3044 if (priv->hw_ready)
3045 return ret;
3046
3047 /* If HW is not ready, prepare the conditions to check again */
Mohamed Abbas086ed112009-05-22 11:01:54 -07003048 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
3049 CSR_HW_IF_CONFIG_REG_PREPARE);
3050
3051 ret = iwl_poll_bit(priv, CSR_HW_IF_CONFIG_REG,
3052 ~CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE,
3053 CSR_HW_IF_CONFIG_REG_BIT_NIC_PREPARE_DONE, 150000);
3054
Mohamed Abbas3354a0f2009-06-19 13:52:41 -07003055 /* HW should be ready by now, check again. */
Mohamed Abbas086ed112009-05-22 11:01:54 -07003056 if (ret != -ETIMEDOUT)
3057 iwl_set_hw_ready(priv);
3058
3059 return ret;
3060}
3061
Zhu Yib481de92007-09-25 17:54:57 -07003062#define MAX_HW_RESTARTS 5
3063
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003064static int __iwl_up(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003065{
Johannes Berga194e322010-08-27 08:53:46 -07003066 struct iwl_rxon_context *ctx;
Tomas Winkler57aab752008-04-14 21:16:03 -07003067 int i;
3068 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003069
3070 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08003071 IWL_WARN(priv, "Exit pending; will not bring the NIC up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003072 return -EIO;
3073 }
3074
Reinette Chatree903fbd2008-01-30 22:05:15 -08003075 if (!priv->ucode_data_backup.v_addr || !priv->ucode_data.v_addr) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003076 IWL_ERR(priv, "ucode not available for device bringup\n");
Reinette Chatree903fbd2008-01-30 22:05:15 -08003077 return -EIO;
3078 }
3079
Johannes Berga194e322010-08-27 08:53:46 -07003080 for_each_context(priv, ctx) {
Johannes Berga30e3112010-09-22 18:02:01 +02003081 ret = iwlagn_alloc_bcast_station(priv, ctx);
Johannes Berga194e322010-08-27 08:53:46 -07003082 if (ret) {
3083 iwl_dealloc_bcast_stations(priv);
3084 return ret;
3085 }
3086 }
Johannes Berg2c810cc2010-04-29 00:53:29 -07003087
Mohamed Abbas086ed112009-05-22 11:01:54 -07003088 iwl_prepare_card_hw(priv);
3089
3090 if (!priv->hw_ready) {
3091 IWL_WARN(priv, "Exit HW not ready\n");
3092 return -EIO;
3093 }
3094
Zhu Yie655b9f2008-01-24 02:19:38 -08003095 /* If platform's RF_KILL switch is NOT set to KILL */
Tomas Winklerc1842d62008-08-04 16:00:43 +08003096 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
Zhu Yie655b9f2008-01-24 02:19:38 -08003097 clear_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003098 else
Zhu Yie655b9f2008-01-24 02:19:38 -08003099 set_bit(STATUS_RF_KILL_HW, &priv->status);
Emmanuel Grumbach3bff19c2008-06-30 17:23:19 +08003100
Tomas Winklerc1842d62008-08-04 16:00:43 +08003101 if (iwl_is_rfkill(priv)) {
Johannes Berga60e77e2009-06-04 18:26:06 +02003102 wiphy_rfkill_set_hw_state(priv->hw->wiphy, true);
3103
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003104 iwl_enable_interrupts(priv);
Johannes Berga60e77e2009-06-04 18:26:06 +02003105 IWL_WARN(priv, "Radio disabled by HW RF Kill switch\n");
Tomas Winklerc1842d62008-08-04 16:00:43 +08003106 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07003107 }
3108
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003109 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Zhu Yib481de92007-09-25 17:54:57 -07003110
Johannes Berg13bb9482010-08-23 10:46:33 +02003111 /* must be initialised before iwl_hw_nic_init */
Johannes Berg751ca302010-08-23 10:46:34 +02003112 if (priv->valid_contexts != BIT(IWL_RXON_CTX_BSS))
3113 priv->cmd_queue = IWL_IPAN_CMD_QUEUE_NUM;
3114 else
3115 priv->cmd_queue = IWL_DEFAULT_CMD_QUEUE_NUM;
Johannes Berg13bb9482010-08-23 10:46:33 +02003116
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003117 ret = iwlagn_hw_nic_init(priv);
Tomas Winkler57aab752008-04-14 21:16:03 -07003118 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003119 IWL_ERR(priv, "Unable to init nic\n");
Tomas Winkler57aab752008-04-14 21:16:03 -07003120 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003121 }
3122
3123 /* make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003124 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3125 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -07003126 CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED);
3127
3128 /* clear (again), then enable host interrupts */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003129 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003130 iwl_enable_interrupts(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003131
3132 /* really make sure rfkill handshake bits are cleared */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003133 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
3134 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR, CSR_UCODE_SW_BIT_RFKILL);
Zhu Yib481de92007-09-25 17:54:57 -07003135
3136 /* Copy original ucode data image from disk into backup cache.
3137 * This will be used to initialize the on-board processor's
3138 * data SRAM for a clean start when the runtime program first loads. */
3139 memcpy(priv->ucode_data_backup.v_addr, priv->ucode_data.v_addr,
Zhu Yi5a669262008-01-14 17:46:18 -08003140 priv->ucode_data.len);
Zhu Yib481de92007-09-25 17:54:57 -07003141
Zhu Yib481de92007-09-25 17:54:57 -07003142 for (i = 0; i < MAX_HW_RESTARTS; i++) {
3143
Zhu Yib481de92007-09-25 17:54:57 -07003144 /* load bootstrap state machine,
3145 * load bootstrap program into processor's memory,
3146 * prepare to load the "initialize" uCode */
Tomas Winkler57aab752008-04-14 21:16:03 -07003147 ret = priv->cfg->ops->lib->load_ucode(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003148
Tomas Winkler57aab752008-04-14 21:16:03 -07003149 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003150 IWL_ERR(priv, "Unable to set up bootstrap uCode: %d\n",
3151 ret);
Zhu Yib481de92007-09-25 17:54:57 -07003152 continue;
3153 }
3154
3155 /* start card; "initialize" will load runtime ucode */
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003156 iwl_nic_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003157
Tomas Winklere1623442009-01-27 14:27:56 -08003158 IWL_DEBUG_INFO(priv, DRV_NAME " is coming up\n");
Zhu Yib481de92007-09-25 17:54:57 -07003159
3160 return 0;
3161 }
3162
3163 set_bit(STATUS_EXIT_PENDING, &priv->status);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003164 __iwl_down(priv);
Mohamed Abbas64e72c32008-06-12 09:47:03 +08003165 clear_bit(STATUS_EXIT_PENDING, &priv->status);
Zhu Yib481de92007-09-25 17:54:57 -07003166
3167 /* tried to restart and config the device for as long as our
3168 * patience could withstand */
Winkler, Tomas15b16872008-12-19 10:37:33 +08003169 IWL_ERR(priv, "Unable to initialize device after %d attempts.\n", i);
Zhu Yib481de92007-09-25 17:54:57 -07003170 return -EIO;
3171}
3172
3173
3174/*****************************************************************************
3175 *
3176 * Workqueue callbacks
3177 *
3178 *****************************************************************************/
3179
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003180static void iwl_bg_init_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003181{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003182 struct iwl_priv *priv =
3183 container_of(data, struct iwl_priv, init_alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003184
3185 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3186 return;
3187
3188 mutex_lock(&priv->mutex);
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003189 priv->cfg->ops->lib->init_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003190 mutex_unlock(&priv->mutex);
3191}
3192
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003193static void iwl_bg_alive_start(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003194{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003195 struct iwl_priv *priv =
3196 container_of(data, struct iwl_priv, alive_start.work);
Zhu Yib481de92007-09-25 17:54:57 -07003197
3198 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3199 return;
3200
Mohamed Abbas258c44a2009-06-03 11:44:10 -07003201 /* enable dram interrupt */
3202 iwl_reset_ict(priv);
3203
Zhu Yib481de92007-09-25 17:54:57 -07003204 mutex_lock(&priv->mutex);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08003205 iwl_alive_start(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003206 mutex_unlock(&priv->mutex);
3207}
3208
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003209static void iwl_bg_run_time_calib_work(struct work_struct *work)
3210{
3211 struct iwl_priv *priv = container_of(work, struct iwl_priv,
3212 run_time_calib_work);
3213
3214 mutex_lock(&priv->mutex);
3215
3216 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3217 test_bit(STATUS_SCANNING, &priv->status)) {
3218 mutex_unlock(&priv->mutex);
3219 return;
3220 }
3221
3222 if (priv->start_calib) {
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003223 if (priv->cfg->bt_params &&
3224 priv->cfg->bt_params->bt_statistics) {
Wey-Yi Guy7980fba2010-07-14 08:08:57 -07003225 iwl_chain_noise_calibration(priv,
3226 (void *)&priv->_agn.statistics_bt);
3227 iwl_sensitivity_calibration(priv,
3228 (void *)&priv->_agn.statistics_bt);
3229 } else {
3230 iwl_chain_noise_calibration(priv,
3231 (void *)&priv->_agn.statistics);
3232 iwl_sensitivity_calibration(priv,
3233 (void *)&priv->_agn.statistics);
3234 }
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003235 }
3236
3237 mutex_unlock(&priv->mutex);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08003238}
3239
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003240static void iwl_bg_restart(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003241{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003242 struct iwl_priv *priv = container_of(data, struct iwl_priv, restart);
Zhu Yib481de92007-09-25 17:54:57 -07003243
3244 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3245 return;
3246
Johannes Berg19cc1082009-05-08 13:44:36 -07003247 if (test_and_clear_bit(STATUS_FW_ERROR, &priv->status)) {
Johannes Berg8bd413e2010-08-23 10:46:40 +02003248 struct iwl_rxon_context *ctx;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003249 bool bt_sco, bt_full_concurrent;
3250 u8 bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003251 u8 bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003252 u8 bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003253
Johannes Berg19cc1082009-05-08 13:44:36 -07003254 mutex_lock(&priv->mutex);
Johannes Berg8bd413e2010-08-23 10:46:40 +02003255 for_each_context(priv, ctx)
3256 ctx->vif = NULL;
Johannes Berg19cc1082009-05-08 13:44:36 -07003257 priv->is_open = 0;
Johannes Berg511b0822010-08-23 07:57:01 -07003258
3259 /*
3260 * __iwl_down() will clear the BT status variables,
3261 * which is correct, but when we restart we really
3262 * want to keep them so restore them afterwards.
3263 *
3264 * The restart process will later pick them up and
3265 * re-configure the hw when we reconfigure the BT
3266 * command.
3267 */
3268 bt_sco = priv->bt_sco_active;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003269 bt_full_concurrent = priv->bt_full_concurrent;
3270 bt_ci_compliance = priv->bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003271 bt_load = priv->bt_traffic_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003272 bt_status = priv->bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003273
Johannes Berga1174132010-08-23 07:56:59 -07003274 __iwl_down(priv);
Johannes Berg511b0822010-08-23 07:57:01 -07003275
3276 priv->bt_sco_active = bt_sco;
Wey-Yi Guybee008b2010-08-23 07:57:04 -07003277 priv->bt_full_concurrent = bt_full_concurrent;
3278 priv->bt_ci_compliance = bt_ci_compliance;
Johannes Berg511b0822010-08-23 07:57:01 -07003279 priv->bt_traffic_load = bt_load;
Wey-Yi Guyda5dbb92010-08-23 07:57:13 -07003280 priv->bt_status = bt_status;
Johannes Berg511b0822010-08-23 07:57:01 -07003281
Johannes Berg19cc1082009-05-08 13:44:36 -07003282 mutex_unlock(&priv->mutex);
Johannes Berga1174132010-08-23 07:56:59 -07003283 iwl_cancel_deferred_work(priv);
Johannes Berg19cc1082009-05-08 13:44:36 -07003284 ieee80211_restart_hw(priv->hw);
3285 } else {
3286 iwl_down(priv);
Johannes Berg80676512010-01-21 06:07:17 -08003287
3288 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3289 return;
3290
3291 mutex_lock(&priv->mutex);
3292 __iwl_up(priv);
3293 mutex_unlock(&priv->mutex);
Johannes Berg19cc1082009-05-08 13:44:36 -07003294 }
Zhu Yib481de92007-09-25 17:54:57 -07003295}
3296
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003297static void iwl_bg_rx_replenish(struct work_struct *data)
Zhu Yib481de92007-09-25 17:54:57 -07003298{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003299 struct iwl_priv *priv =
3300 container_of(data, struct iwl_priv, rx_replenish);
Zhu Yib481de92007-09-25 17:54:57 -07003301
3302 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3303 return;
3304
3305 mutex_lock(&priv->mutex);
Wey-Yi Guy54b81552010-03-17 13:34:35 -07003306 iwlagn_rx_replenish(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003307 mutex_unlock(&priv->mutex);
3308}
3309
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08003310#define IWL_DELAY_NEXT_SCAN (HZ*2)
3311
Johannes Berg1dda6d22010-04-29 04:43:06 -07003312void iwl_post_associate(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003313{
Johannes Berg246ed352010-08-23 10:46:32 +02003314 struct iwl_rxon_context *ctx;
Zhu Yib481de92007-09-25 17:54:57 -07003315 struct ieee80211_conf *conf = NULL;
Tomas Winkler857485c2008-03-21 13:53:44 -07003316 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003317
Johannes Berg1dda6d22010-04-29 04:43:06 -07003318 if (!vif || !priv->is_open)
3319 return;
3320
Johannes Berg246ed352010-08-23 10:46:32 +02003321 ctx = iwl_rxon_ctx_from_vif(vif);
3322
Johannes Berg1dda6d22010-04-29 04:43:06 -07003323 if (vif->type == NL80211_IFTYPE_AP) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003324 IWL_ERR(priv, "%s Should not be called in AP mode\n", __func__);
Zhu Yib481de92007-09-25 17:54:57 -07003325 return;
3326 }
3327
Zhu Yib481de92007-09-25 17:54:57 -07003328 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3329 return;
3330
Tomas Winkler2a421b92008-06-12 09:47:10 +08003331 iwl_scan_cancel_timeout(priv, 200);
mabbas052c4b92007-10-25 17:15:43 +08003332
Zhu Yib481de92007-09-25 17:54:57 -07003333 conf = ieee80211_get_hw_conf(priv->hw);
3334
Johannes Berg246ed352010-08-23 10:46:32 +02003335 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3336 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003337
Johannes Berg47313e32010-08-23 10:46:55 +02003338 ret = iwl_send_rxon_timing(priv, ctx);
Tomas Winkler857485c2008-03-21 13:53:44 -07003339 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003340 IWL_WARN(priv, "RXON timing - "
Zhu Yib481de92007-09-25 17:54:57 -07003341 "Attempting to continue.\n");
3342
Johannes Berg246ed352010-08-23 10:46:32 +02003343 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003344
Emmanuel Grumbach42eb7c62008-09-17 10:10:05 +08003345 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03003346
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003347 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003348 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003349
Johannes Berg246ed352010-08-23 10:46:32 +02003350 ctx->staging.assoc_id = cpu_to_le16(vif->bss_conf.aid);
Zhu Yib481de92007-09-25 17:54:57 -07003351
Tomas Winklere1623442009-01-27 14:27:56 -08003352 IWL_DEBUG_ASSOC(priv, "assoc id %d beacon interval %d\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003353 vif->bss_conf.aid, vif->bss_conf.beacon_int);
Zhu Yib481de92007-09-25 17:54:57 -07003354
Johannes Bergc213d742010-05-06 12:21:40 -07003355 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003356 ctx->staging.flags |= RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003357 else
Johannes Berg246ed352010-08-23 10:46:32 +02003358 ctx->staging.flags &= ~RXON_FLG_SHORT_PREAMBLE_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003359
Johannes Berg246ed352010-08-23 10:46:32 +02003360 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003361 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003362 ctx->staging.flags |= RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003363 else
Johannes Berg246ed352010-08-23 10:46:32 +02003364 ctx->staging.flags &= ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003365 }
3366
Johannes Berg246ed352010-08-23 10:46:32 +02003367 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003368
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003369 IWL_DEBUG_ASSOC(priv, "Associated as %d to: %pM\n",
Johannes Berg246ed352010-08-23 10:46:32 +02003370 vif->bss_conf.aid, ctx->active.bssid_addr);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003371
Johannes Berg1dda6d22010-04-29 04:43:06 -07003372 switch (vif->type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003373 case NL80211_IFTYPE_STATION:
Zhu Yib481de92007-09-25 17:54:57 -07003374 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02003375 case NL80211_IFTYPE_ADHOC:
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003376 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003377 break;
Zhu Yib481de92007-09-25 17:54:57 -07003378 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +08003379 IWL_ERR(priv, "%s Should not be called in %d mode\n",
Johannes Berg1dda6d22010-04-29 04:43:06 -07003380 __func__, vif->type);
Zhu Yib481de92007-09-25 17:54:57 -07003381 break;
3382 }
3383
Grumbach, Emmanuel04816442008-09-03 11:26:53 +08003384 /* the chain noise calibration will enabled PM upon completion
3385 * If chain noise has already been run, then we need to enable
3386 * power management here */
3387 if (priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE)
Johannes Berge312c242009-08-07 15:41:51 -07003388 iwl_power_update_mode(priv, false);
Emmanuel Grumbachc90a74ba2008-09-03 11:26:50 +08003389
3390 /* Enable Rx differential gain and sensitivity calibrations */
3391 iwl_chain_noise_reset(priv);
3392 priv->start_calib = 1;
3393
Reinette Chatre508e32e2008-04-14 21:16:13 -07003394}
3395
Zhu Yib481de92007-09-25 17:54:57 -07003396/*****************************************************************************
3397 *
3398 * mac80211 entry point functions
3399 *
3400 *****************************************************************************/
3401
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003402#define UCODE_READY_TIMEOUT (4 * HZ)
Zhu Yi5a669262008-01-14 17:46:18 -08003403
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003404/*
3405 * Not a mac80211 entry point function, but it fits in with all the
3406 * other mac80211 functions grouped here.
3407 */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003408static int iwl_mac_setup_register(struct iwl_priv *priv,
3409 struct iwlagn_ucode_capabilities *capa)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003410{
3411 int ret;
3412 struct ieee80211_hw *hw = priv->hw;
Johannes Bergd0fe4782010-08-23 10:46:58 +02003413 struct iwl_rxon_context *ctx;
3414
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003415 hw->rate_control_algorithm = "iwl-agn-rs";
3416
3417 /* Tell mac80211 our characteristics */
3418 hw->flags = IEEE80211_HW_SIGNAL_DBM |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003419 IEEE80211_HW_AMPDU_AGGREGATION |
Johannes Berg2491fa42010-08-23 10:46:52 +02003420 IEEE80211_HW_NEED_DTIM_PERIOD |
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003421 IEEE80211_HW_SPECTRUM_MGMT;
3422
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003423 if (!priv->cfg->base_params->broken_powersave)
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003424 hw->flags |= IEEE80211_HW_SUPPORTS_PS |
3425 IEEE80211_HW_SUPPORTS_DYNAMIC_PS;
3426
Johannes Bergba37a3d2009-12-10 14:37:27 -08003427 if (priv->cfg->sku & IWL_SKU_N)
3428 hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
3429 IEEE80211_HW_SUPPORTS_STATIC_SMPS;
3430
Reinette Chatre8d9698b2009-10-16 14:25:55 -07003431 hw->sta_data_size = sizeof(struct iwl_station_priv);
Johannes Bergfd1af152010-04-30 11:30:43 -07003432 hw->vif_data_size = sizeof(struct iwl_vif_priv);
3433
Johannes Bergd0fe4782010-08-23 10:46:58 +02003434 for_each_context(priv, ctx) {
3435 hw->wiphy->interface_modes |= ctx->interface_modes;
3436 hw->wiphy->interface_modes |= ctx->exclusive_interface_modes;
3437 }
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003438
Reinette Chatref6c8f152010-03-12 11:13:26 -08003439 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY |
Johannes Berg5be83de2009-11-19 00:56:28 +01003440 WIPHY_FLAG_DISABLE_BEACON_HINTS;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003441
3442 /*
3443 * For now, disable PS by default because it affects
3444 * RX performance significantly.
3445 */
Johannes Berg5be83de2009-11-19 00:56:28 +01003446 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003447
Reinette Chatre1382c712010-02-25 10:02:19 -08003448 hw->wiphy->max_scan_ssids = PROBE_OPTION_MAX;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003449 /* we create the 802.11 header and a zero-length SSID element */
Johannes Bergdd7a2502010-04-28 23:33:10 -07003450 hw->wiphy->max_scan_ie_len = capa->max_probe_length - 24 - 2;
Reinette Chatref0b6e2e2009-10-16 14:25:53 -07003451
3452 /* Default value; 4 EDCA QOS priorities */
3453 hw->queues = 4;
3454
3455 hw->max_listen_interval = IWL_CONN_MAX_LISTEN_INTERVAL;
3456
3457 if (priv->bands[IEEE80211_BAND_2GHZ].n_channels)
3458 priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
3459 &priv->bands[IEEE80211_BAND_2GHZ];
3460 if (priv->bands[IEEE80211_BAND_5GHZ].n_channels)
3461 priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
3462 &priv->bands[IEEE80211_BAND_5GHZ];
3463
3464 ret = ieee80211_register_hw(priv->hw);
3465 if (ret) {
3466 IWL_ERR(priv, "Failed to register hw (error %d)\n", ret);
3467 return ret;
3468 }
3469 priv->mac80211_registered = 1;
3470
3471 return 0;
3472}
3473
3474
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003475static int iwl_mac_start(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003476{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003477 struct iwl_priv *priv = hw->priv;
Zhu Yi5a669262008-01-14 17:46:18 -08003478 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07003479
Tomas Winklere1623442009-01-27 14:27:56 -08003480 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003481
3482 /* we should be verifying the device is ready to be opened */
3483 mutex_lock(&priv->mutex);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003484 ret = __iwl_up(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003485 mutex_unlock(&priv->mutex);
Zhu Yi5a669262008-01-14 17:46:18 -08003486
Zhu Yie655b9f2008-01-24 02:19:38 -08003487 if (ret)
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003488 return ret;
Zhu Yie655b9f2008-01-24 02:19:38 -08003489
Tomas Winklerc1842d62008-08-04 16:00:43 +08003490 if (iwl_is_rfkill(priv))
3491 goto out;
3492
Tomas Winklere1623442009-01-27 14:27:56 -08003493 IWL_DEBUG_INFO(priv, "Start UP work done.\n");
Zhu Yie655b9f2008-01-24 02:19:38 -08003494
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003495 /* Wait for START_ALIVE from Run Time ucode. Otherwise callbacks from
Zhu Yi5a669262008-01-14 17:46:18 -08003496 * mac80211 will not be run successfully. */
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003497 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
3498 test_bit(STATUS_READY, &priv->status),
3499 UCODE_READY_TIMEOUT);
3500 if (!ret) {
3501 if (!test_bit(STATUS_READY, &priv->status)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08003502 IWL_ERR(priv, "START_ALIVE timeout after %dms.\n",
Emmanuel Grumbach154b25c2008-06-30 17:23:24 +08003503 jiffies_to_msecs(UCODE_READY_TIMEOUT));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003504 return -ETIMEDOUT;
Zhu Yi5a669262008-01-14 17:46:18 -08003505 }
Ron Rindjunskyfe9b6b72008-05-29 16:35:06 +08003506 }
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003507
Johannes Berge932a602009-10-02 13:44:03 -07003508 iwl_led_start(priv);
3509
Tomas Winklerc1842d62008-08-04 16:00:43 +08003510out:
Tomas Winkler0a078ff2008-06-30 17:23:26 +08003511 priv->is_open = 1;
Tomas Winklere1623442009-01-27 14:27:56 -08003512 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003513 return 0;
3514}
3515
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003516static void iwl_mac_stop(struct ieee80211_hw *hw)
Zhu Yib481de92007-09-25 17:54:57 -07003517{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003518 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003519
Tomas Winklere1623442009-01-27 14:27:56 -08003520 IWL_DEBUG_MAC80211(priv, "enter\n");
Mohamed Abbas948c1712007-10-25 17:15:45 +08003521
Johannes Berg19cc1082009-05-08 13:44:36 -07003522 if (!priv->is_open)
Zhu Yie655b9f2008-01-24 02:19:38 -08003523 return;
Zhu Yie655b9f2008-01-24 02:19:38 -08003524
Zhu Yib481de92007-09-25 17:54:57 -07003525 priv->is_open = 0;
Zhu Yi5a669262008-01-14 17:46:18 -08003526
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003527 iwl_down(priv);
Zhu Yi5a669262008-01-14 17:46:18 -08003528
3529 flush_workqueue(priv->workqueue);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01003530
3531 /* enable interrupts again in order to receive rfkill changes */
3532 iwl_write32(priv, CSR_INT, 0xFFFFFFFF);
3533 iwl_enable_interrupts(priv);
Mohamed Abbas948c1712007-10-25 17:15:45 +08003534
Tomas Winklere1623442009-01-27 14:27:56 -08003535 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003536}
3537
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003538static int iwl_mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -07003539{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003540 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003541
Tomas Winklere1623442009-01-27 14:27:56 -08003542 IWL_DEBUG_MACDUMP(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003543
Tomas Winklere1623442009-01-27 14:27:56 -08003544 IWL_DEBUG_TX(priv, "dev->xmit(%d bytes) at rate 0x%02x\n", skb->len,
Johannes Berge039fa42008-05-15 12:55:29 +02003545 ieee80211_get_tx_rate(hw, IEEE80211_SKB_CB(skb))->bitrate);
Zhu Yib481de92007-09-25 17:54:57 -07003546
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07003547 if (iwlagn_tx_skb(priv, skb))
Zhu Yib481de92007-09-25 17:54:57 -07003548 dev_kfree_skb_any(skb);
3549
Tomas Winklere1623442009-01-27 14:27:56 -08003550 IWL_DEBUG_MACDUMP(priv, "leave\n");
Reinette Chatre637f8832009-01-19 15:30:32 -08003551 return NETDEV_TX_OK;
Zhu Yib481de92007-09-25 17:54:57 -07003552}
3553
Johannes Berg1dda6d22010-04-29 04:43:06 -07003554void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
Zhu Yib481de92007-09-25 17:54:57 -07003555{
Johannes Berg246ed352010-08-23 10:46:32 +02003556 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
Tomas Winkler857485c2008-03-21 13:53:44 -07003557 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003558
Johannes Berg76d04812010-08-23 10:46:47 +02003559 lockdep_assert_held(&priv->mutex);
3560
Maarten Lankhorstd986bcd2008-01-23 10:15:16 -08003561 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Zhu Yib481de92007-09-25 17:54:57 -07003562 return;
3563
3564 /* The following should be done only at AP bring up */
Johannes Berg246ed352010-08-23 10:46:32 +02003565 if (!iwl_is_associated_ctx(ctx)) {
Zhu Yib481de92007-09-25 17:54:57 -07003566
3567 /* RXON - unassoc (to set timing command) */
Johannes Berg246ed352010-08-23 10:46:32 +02003568 ctx->staging.filter_flags &= ~RXON_FILTER_ASSOC_MSK;
3569 iwlcore_commit_rxon(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003570
3571 /* RXON Timing */
Johannes Berg47313e32010-08-23 10:46:55 +02003572 ret = iwl_send_rxon_timing(priv, ctx);
Tomas Winkler857485c2008-03-21 13:53:44 -07003573 if (ret)
Johannes Berg8f2d3d22010-08-23 10:46:37 +02003574 IWL_WARN(priv, "RXON timing failed - "
Zhu Yib481de92007-09-25 17:54:57 -07003575 "Attempting to continue.\n");
3576
Daniel C Halperinf513dff2009-11-13 11:56:34 -08003577 /* AP has all antennas */
3578 priv->chain_noise_data.active_chains =
3579 priv->hw_params.valid_rx_ant;
3580 iwl_set_rxon_ht(priv, &priv->current_ht_config);
Abhijeet Kolekar45823532009-04-08 11:26:44 -07003581 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02003582 priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
Zhu Yib481de92007-09-25 17:54:57 -07003583
Johannes Berg246ed352010-08-23 10:46:32 +02003584 ctx->staging.assoc_id = 0;
Johannes Berg1dda6d22010-04-29 04:43:06 -07003585
Johannes Bergc213d742010-05-06 12:21:40 -07003586 if (vif->bss_conf.use_short_preamble)
Johannes Berg246ed352010-08-23 10:46:32 +02003587 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003588 RXON_FLG_SHORT_PREAMBLE_MSK;
3589 else
Johannes Berg246ed352010-08-23 10:46:32 +02003590 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003591 ~RXON_FLG_SHORT_PREAMBLE_MSK;
3592
Johannes Berg246ed352010-08-23 10:46:32 +02003593 if (ctx->staging.flags & RXON_FLG_BAND_24G_MSK) {
Johannes Bergc213d742010-05-06 12:21:40 -07003594 if (vif->bss_conf.use_short_slot)
Johannes Berg246ed352010-08-23 10:46:32 +02003595 ctx->staging.flags |=
Zhu Yib481de92007-09-25 17:54:57 -07003596 RXON_FLG_SHORT_SLOT_MSK;
3597 else
Johannes Berg246ed352010-08-23 10:46:32 +02003598 ctx->staging.flags &=
Zhu Yib481de92007-09-25 17:54:57 -07003599 ~RXON_FLG_SHORT_SLOT_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003600 }
Johannes Berg08abc532010-08-23 10:46:53 +02003601 /* need to send beacon cmd before committing assoc RXON! */
3602 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003603 /* restore RXON assoc */
Johannes Berg246ed352010-08-23 10:46:32 +02003604 ctx->staging.filter_flags |= RXON_FILTER_ASSOC_MSK;
3605 iwlcore_commit_rxon(priv, ctx);
Zhu Yie1493de2007-09-27 11:27:32 +08003606 }
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003607 iwl_send_beacon_cmd(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003608
3609 /* FIXME - we need to add code here to detect a totally new
3610 * configuration, reset the AP, unassoc, rxon timing, assoc,
3611 * clear sta table, add BCAST sta... */
3612}
3613
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003614static void iwl_mac_update_tkip_key(struct ieee80211_hw *hw,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003615 struct ieee80211_vif *vif,
3616 struct ieee80211_key_conf *keyconf,
3617 struct ieee80211_sta *sta,
3618 u32 iv32, u16 *phase1key)
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003619{
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003620
Tomas Winkler9f586712008-11-12 13:14:05 -08003621 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003622 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
3623
Tomas Winklere1623442009-01-27 14:27:56 -08003624 IWL_DEBUG_MAC80211(priv, "enter\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003625
Johannes Berga194e322010-08-27 08:53:46 -07003626 iwl_update_tkip_key(priv, vif_priv->ctx, keyconf, sta,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +01003627 iv32, phase1key);
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003628
Tomas Winklere1623442009-01-27 14:27:56 -08003629 IWL_DEBUG_MAC80211(priv, "leave\n");
Emmanuel Grumbachab885f82008-03-20 15:06:43 +02003630}
3631
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003632static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
Johannes Bergdc822b52008-12-29 12:55:09 +01003633 struct ieee80211_vif *vif,
3634 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07003635 struct ieee80211_key_conf *key)
3636{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003637 struct iwl_priv *priv = hw->priv;
Johannes Berga194e322010-08-27 08:53:46 -07003638 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergc10afb62010-08-23 10:46:43 +02003639 struct iwl_rxon_context *ctx = vif_priv->ctx;
Winkler, Tomas42986792009-01-19 15:30:22 -08003640 int ret;
3641 u8 sta_id;
3642 bool is_default_wep_key = false;
Zhu Yib481de92007-09-25 17:54:57 -07003643
Tomas Winklere1623442009-01-27 14:27:56 -08003644 IWL_DEBUG_MAC80211(priv, "enter\n");
Zhu Yib481de92007-09-25 17:54:57 -07003645
Tomas Winkler90e8e422009-06-19 13:52:42 -07003646 if (priv->cfg->mod_params->sw_crypto) {
Tomas Winklere1623442009-01-27 14:27:56 -08003647 IWL_DEBUG_MAC80211(priv, "leave - hwcrypto disabled\n");
Zhu Yib481de92007-09-25 17:54:57 -07003648 return -EOPNOTSUPP;
3649 }
Zhu Yib481de92007-09-25 17:54:57 -07003650
Johannes Berga194e322010-08-27 08:53:46 -07003651 sta_id = iwl_sta_id_or_broadcast(priv, vif_priv->ctx, sta);
Johannes Berg0af8bca2010-04-30 14:08:00 -07003652 if (sta_id == IWL_INVALID_STATION)
3653 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003654
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003655 mutex_lock(&priv->mutex);
Tomas Winkler2a421b92008-06-12 09:47:10 +08003656 iwl_scan_cancel_timeout(priv, 100);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003657
Johannes Berga90178fa2010-03-30 02:44:16 -07003658 /*
3659 * If we are getting WEP group key and we didn't receive any key mapping
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003660 * so far, we are in legacy wep mode (group key only), otherwise we are
3661 * in 1X mode.
Johannes Berga90178fa2010-03-30 02:44:16 -07003662 * In legacy wep mode, we use another host command to the uCode.
3663 */
Johannes Berg97359d12010-08-10 09:46:38 +02003664 if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
3665 key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
Johannes Berg54c80672010-08-18 09:35:21 -07003666 !sta) {
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003667 if (cmd == SET_KEY)
Johannes Bergc10afb62010-08-23 10:46:43 +02003668 is_default_wep_key = !ctx->key_mapping_keys;
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003669 else
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08003670 is_default_wep_key =
3671 (key->hw_key_idx == HW_KEY_DEFAULT);
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003672 }
mabbas052c4b92007-10-25 17:15:43 +08003673
Zhu Yib481de92007-09-25 17:54:57 -07003674 switch (cmd) {
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003675 case SET_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003676 if (is_default_wep_key)
Johannes Berg2995baf2010-08-23 10:46:42 +02003677 ret = iwl_set_default_wep_key(priv, vif_priv->ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003678 else
Johannes Berga194e322010-08-27 08:53:46 -07003679 ret = iwl_set_dynamic_key(priv, vif_priv->ctx,
3680 key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003681
Tomas Winklere1623442009-01-27 14:27:56 -08003682 IWL_DEBUG_MAC80211(priv, "enable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003683 break;
3684 case DISABLE_KEY:
Emmanuel Grumbach6974e362008-04-14 21:16:06 -07003685 if (is_default_wep_key)
Johannes Bergc10afb62010-08-23 10:46:43 +02003686 ret = iwl_remove_default_wep_key(priv, ctx, key);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003687 else
Johannes Bergc10afb62010-08-23 10:46:43 +02003688 ret = iwl_remove_dynamic_key(priv, ctx, key, sta_id);
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003689
Tomas Winklere1623442009-01-27 14:27:56 -08003690 IWL_DEBUG_MAC80211(priv, "disable hwcrypto key\n");
Zhu Yib481de92007-09-25 17:54:57 -07003691 break;
3692 default:
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003693 ret = -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -07003694 }
3695
Johannes Berg72e15d72010-02-19 11:42:32 -08003696 mutex_unlock(&priv->mutex);
Tomas Winklere1623442009-01-27 14:27:56 -08003697 IWL_DEBUG_MAC80211(priv, "leave\n");
Zhu Yib481de92007-09-25 17:54:57 -07003698
Emmanuel Grumbachdeb09c42008-03-19 16:41:41 -07003699 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003700}
3701
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07003702static int iwl_mac_ampdu_action(struct ieee80211_hw *hw,
Johannes Bergc951ad32009-11-16 12:00:38 +01003703 struct ieee80211_vif *vif,
Johannes Berg832f47e2010-04-29 04:43:07 -07003704 enum ieee80211_ampdu_mlme_action action,
3705 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Tomas Winklerd783b062008-07-18 13:53:02 +08003706{
3707 struct iwl_priv *priv = hw->priv;
Johannes Berg4620fef2010-06-16 03:30:27 -07003708 int ret = -EINVAL;
Tomas Winklerd783b062008-07-18 13:53:02 +08003709
Tomas Winklere1623442009-01-27 14:27:56 -08003710 IWL_DEBUG_HT(priv, "A-MPDU action on addr %pM tid %d\n",
Johannes Berge1749612008-10-27 15:59:26 -07003711 sta->addr, tid);
Tomas Winklerd783b062008-07-18 13:53:02 +08003712
3713 if (!(priv->cfg->sku & IWL_SKU_N))
3714 return -EACCES;
3715
Johannes Berg4620fef2010-06-16 03:30:27 -07003716 mutex_lock(&priv->mutex);
3717
Tomas Winklerd783b062008-07-18 13:53:02 +08003718 switch (action) {
3719 case IEEE80211_AMPDU_RX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003720 IWL_DEBUG_HT(priv, "start Rx\n");
Johannes Berg4620fef2010-06-16 03:30:27 -07003721 ret = iwl_sta_rx_agg_start(priv, sta, tid, *ssn);
3722 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003723 case IEEE80211_AMPDU_RX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003724 IWL_DEBUG_HT(priv, "stop Rx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003725 ret = iwl_sta_rx_agg_stop(priv, sta, tid);
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003726 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003727 ret = 0;
3728 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003729 case IEEE80211_AMPDU_TX_START:
Tomas Winklere1623442009-01-27 14:27:56 -08003730 IWL_DEBUG_HT(priv, "start Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003731 ret = iwlagn_tx_agg_start(priv, vif, sta, tid, ssn);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003732 if (ret == 0) {
3733 priv->_agn.agg_tids_count++;
3734 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3735 priv->_agn.agg_tids_count);
3736 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003737 break;
Tomas Winklerd783b062008-07-18 13:53:02 +08003738 case IEEE80211_AMPDU_TX_STOP:
Tomas Winklere1623442009-01-27 14:27:56 -08003739 IWL_DEBUG_HT(priv, "stop Tx\n");
Johannes Berg619753f2010-04-30 11:30:46 -07003740 ret = iwlagn_tx_agg_stop(priv, vif, sta, tid);
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08003741 if ((ret == 0) && (priv->_agn.agg_tids_count > 0)) {
3742 priv->_agn.agg_tids_count--;
3743 IWL_DEBUG_HT(priv, "priv->_agn.agg_tids_count = %u\n",
3744 priv->_agn.agg_tids_count);
3745 }
Wey-Yi Guy5c2207c2009-03-17 21:51:43 -07003746 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
Johannes Berg4620fef2010-06-16 03:30:27 -07003747 ret = 0;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003748 if (priv->cfg->ht_params &&
3749 priv->cfg->ht_params->use_rts_for_aggregation) {
Johannes Berg94597ab2010-08-09 10:57:02 -07003750 struct iwl_station_priv *sta_priv =
3751 (void *) sta->drv_priv;
3752 /*
3753 * switch off RTS/CTS if it was previously enabled
3754 */
3755
3756 sta_priv->lq_sta.lq.general_params.flags &=
3757 ~LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003758 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3759 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Johannes Berg94597ab2010-08-09 10:57:02 -07003760 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003761 break;
Wey-Yi Guyf0527972010-01-08 10:04:41 -08003762 case IEEE80211_AMPDU_TX_OPERATIONAL:
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07003763 if (priv->cfg->ht_params &&
3764 priv->cfg->ht_params->use_rts_for_aggregation) {
Johannes Berg94597ab2010-08-09 10:57:02 -07003765 struct iwl_station_priv *sta_priv =
3766 (void *) sta->drv_priv;
3767
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003768 /*
3769 * switch to RTS/CTS if it is the prefer protection
3770 * method for HT traffic
3771 */
Johannes Berg94597ab2010-08-09 10:57:02 -07003772
3773 sta_priv->lq_sta.lq.general_params.flags |=
3774 LINK_QUAL_FLAGS_SET_STA_TLC_RTS_MSK;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003775 iwl_send_lq_cmd(priv, iwl_rxon_ctx_from_vif(vif),
3776 &sta_priv->lq_sta.lq, CMD_ASYNC, false);
Wey-Yi Guycfecc6b2010-06-18 11:33:15 -07003777 }
3778 ret = 0;
Tomas Winklerd783b062008-07-18 13:53:02 +08003779 break;
3780 }
Johannes Berg4620fef2010-06-16 03:30:27 -07003781 mutex_unlock(&priv->mutex);
3782
3783 return ret;
Tomas Winklerd783b062008-07-18 13:53:02 +08003784}
Tomas Winkler9f586712008-11-12 13:14:05 -08003785
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003786static void iwl_mac_sta_notify(struct ieee80211_hw *hw,
3787 struct ieee80211_vif *vif,
3788 enum sta_notify_cmd cmd,
3789 struct ieee80211_sta *sta)
3790{
3791 struct iwl_priv *priv = hw->priv;
3792 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
3793 int sta_id;
3794
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003795 switch (cmd) {
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003796 case STA_NOTIFY_SLEEP:
3797 WARN_ON(!sta_priv->client);
3798 sta_priv->asleep = true;
3799 if (atomic_read(&sta_priv->pending_frames) > 0)
3800 ieee80211_sta_block_awake(hw, sta, true);
3801 break;
3802 case STA_NOTIFY_AWAKE:
3803 WARN_ON(!sta_priv->client);
Daniel Halperin49dcc812010-01-19 10:22:19 -08003804 if (!sta_priv->asleep)
3805 break;
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003806 sta_priv->asleep = false;
Johannes Berg2a87c262010-04-30 11:30:45 -07003807 sta_id = iwl_sta_id(sta);
Johannes Berg6ab10ff2009-11-13 11:56:37 -08003808 if (sta_id != IWL_INVALID_STATION)
3809 iwl_sta_modify_ps_wake(priv, sta_id);
3810 break;
3811 default:
3812 break;
3813 }
3814}
3815
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003816static int iwlagn_mac_sta_add(struct ieee80211_hw *hw,
3817 struct ieee80211_vif *vif,
3818 struct ieee80211_sta *sta)
3819{
3820 struct iwl_priv *priv = hw->priv;
3821 struct iwl_station_priv *sta_priv = (void *)sta->drv_priv;
Johannes Berga194e322010-08-27 08:53:46 -07003822 struct iwl_vif_priv *vif_priv = (void *)vif->drv_priv;
Johannes Bergeafdfbd32010-04-29 04:43:04 -07003823 bool is_ap = vif->type == NL80211_IFTYPE_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003824 int ret;
3825 u8 sta_id;
3826
3827 IWL_DEBUG_INFO(priv, "received request to add station %pM\n",
3828 sta->addr);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003829 mutex_lock(&priv->mutex);
3830 IWL_DEBUG_INFO(priv, "proceeding to add station %pM\n",
3831 sta->addr);
3832 sta_priv->common.sta_id = IWL_INVALID_STATION;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003833
3834 atomic_set(&sta_priv->pending_frames, 0);
3835 if (vif->type == NL80211_IFTYPE_AP)
3836 sta_priv->client = true;
3837
Johannes Berga194e322010-08-27 08:53:46 -07003838 ret = iwl_add_station_common(priv, vif_priv->ctx, sta->addr,
Johannes Berg238d7812010-08-23 10:46:45 +02003839 is_ap, sta, &sta_id);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003840 if (ret) {
3841 IWL_ERR(priv, "Unable to add station %pM (%d)\n",
3842 sta->addr, ret);
3843 /* Should we return success if return code is EEXIST ? */
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003844 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003845 return ret;
3846 }
3847
Johannes Bergfd1af152010-04-30 11:30:43 -07003848 sta_priv->common.sta_id = sta_id;
3849
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003850 /* Initialize rate scaling */
Frans Pop91dd6c22010-03-24 14:19:58 -07003851 IWL_DEBUG_INFO(priv, "Initializing rate scaling for station %pM\n",
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003852 sta->addr);
3853 iwl_rs_rate_init(priv, sta, sta_id);
Reinette Chatreda5ae1c2010-05-28 09:28:39 -07003854 mutex_unlock(&priv->mutex);
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003855
Johannes Bergfd1af152010-04-30 11:30:43 -07003856 return 0;
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08003857}
3858
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003859static void iwl_mac_channel_switch(struct ieee80211_hw *hw,
3860 struct ieee80211_channel_switch *ch_switch)
3861{
3862 struct iwl_priv *priv = hw->priv;
3863 const struct iwl_channel_info *ch_info;
3864 struct ieee80211_conf *conf = &hw->conf;
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003865 struct ieee80211_channel *channel = ch_switch->channel;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003866 struct iwl_ht_config *ht_conf = &priv->current_ht_config;
Johannes Berg246ed352010-08-23 10:46:32 +02003867 /*
3868 * MULTI-FIXME
3869 * When we add support for multiple interfaces, we need to
3870 * revisit this. The channel switch command in the device
3871 * only affects the BSS context, but what does that really
3872 * mean? And what if we get a CSA on the second interface?
3873 * This needs a lot of work.
3874 */
3875 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003876 u16 ch;
3877 unsigned long flags = 0;
3878
3879 IWL_DEBUG_MAC80211(priv, "enter\n");
3880
3881 if (iwl_is_rfkill(priv))
3882 goto out_exit;
3883
3884 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
3885 test_bit(STATUS_SCANNING, &priv->status))
3886 goto out_exit;
3887
Johannes Berg246ed352010-08-23 10:46:32 +02003888 if (!iwl_is_associated_ctx(ctx))
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003889 goto out_exit;
3890
3891 /* channel switch in progress */
3892 if (priv->switch_rxon.switch_in_progress == true)
3893 goto out_exit;
3894
3895 mutex_lock(&priv->mutex);
3896 if (priv->cfg->ops->lib->set_channel_switch) {
3897
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003898 ch = channel->hw_value;
Johannes Berg246ed352010-08-23 10:46:32 +02003899 if (le16_to_cpu(ctx->active.channel) != ch) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003900 ch_info = iwl_get_channel_info(priv,
Shanyu Zhaoaa2dc6b2010-07-28 13:40:39 -07003901 channel->band,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003902 ch);
3903 if (!is_channel_valid(ch_info)) {
3904 IWL_DEBUG_MAC80211(priv, "invalid channel\n");
3905 goto out;
3906 }
3907 spin_lock_irqsave(&priv->lock, flags);
3908
3909 priv->current_ht_config.smps = conf->smps_mode;
3910
3911 /* Configure HT40 channels */
Johannes Berg7e6a5882010-08-23 10:46:46 +02003912 ctx->ht.enabled = conf_is_ht(conf);
3913 if (ctx->ht.enabled) {
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003914 if (conf_is_ht40_minus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003915 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003916 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003917 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003918 } else if (conf_is_ht40_plus(conf)) {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003919 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003920 IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003921 ctx->ht.is_40mhz = true;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003922 } else {
Johannes Berg7e6a5882010-08-23 10:46:46 +02003923 ctx->ht.extension_chan_offset =
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003924 IEEE80211_HT_PARAM_CHA_SEC_NONE;
Johannes Berg7e6a5882010-08-23 10:46:46 +02003925 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003926 }
3927 } else
Johannes Berg7e6a5882010-08-23 10:46:46 +02003928 ctx->ht.is_40mhz = false;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003929
Johannes Berg246ed352010-08-23 10:46:32 +02003930 if ((le16_to_cpu(ctx->staging.channel) != ch))
3931 ctx->staging.flags = 0;
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003932
Johannes Berg246ed352010-08-23 10:46:32 +02003933 iwl_set_rxon_channel(priv, channel, ctx);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003934 iwl_set_rxon_ht(priv, ht_conf);
Johannes Berg246ed352010-08-23 10:46:32 +02003935 iwl_set_flags_for_band(priv, ctx, channel->band,
Johannes Berg8bd413e2010-08-23 10:46:40 +02003936 ctx->vif);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003937 spin_unlock_irqrestore(&priv->lock, flags);
3938
3939 iwl_set_rate(priv);
3940 /*
3941 * at this point, staging_rxon has the
3942 * configuration for channel switch
3943 */
3944 if (priv->cfg->ops->lib->set_channel_switch(priv,
3945 ch_switch))
3946 priv->switch_rxon.switch_in_progress = false;
3947 }
3948 }
3949out:
3950 mutex_unlock(&priv->mutex);
3951out_exit:
3952 if (!priv->switch_rxon.switch_in_progress)
Johannes Berg8bd413e2010-08-23 10:46:40 +02003953 ieee80211_chswitch_done(ctx->vif, false);
Wey-Yi Guy79d07322010-05-06 08:54:11 -07003954 IWL_DEBUG_MAC80211(priv, "leave\n");
3955}
3956
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003957static void iwlagn_configure_filter(struct ieee80211_hw *hw,
3958 unsigned int changed_flags,
3959 unsigned int *total_flags,
3960 u64 multicast)
3961{
3962 struct iwl_priv *priv = hw->priv;
3963 __le32 filter_or = 0, filter_nand = 0;
Johannes Berg246ed352010-08-23 10:46:32 +02003964 struct iwl_rxon_context *ctx;
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003965
3966#define CHK(test, flag) do { \
3967 if (*total_flags & (test)) \
3968 filter_or |= (flag); \
3969 else \
3970 filter_nand |= (flag); \
3971 } while (0)
3972
3973 IWL_DEBUG_MAC80211(priv, "Enter: changed: 0x%x, total: 0x%x\n",
3974 changed_flags, *total_flags);
3975
3976 CHK(FIF_OTHER_BSS | FIF_PROMISC_IN_BSS, RXON_FILTER_PROMISC_MSK);
3977 CHK(FIF_CONTROL, RXON_FILTER_CTL2HOST_MSK);
3978 CHK(FIF_BCN_PRBRESP_PROMISC, RXON_FILTER_BCON_AWARE_MSK);
3979
3980#undef CHK
3981
3982 mutex_lock(&priv->mutex);
3983
Johannes Berg246ed352010-08-23 10:46:32 +02003984 for_each_context(priv, ctx) {
3985 ctx->staging.filter_flags &= ~filter_nand;
3986 ctx->staging.filter_flags |= filter_or;
3987 iwlcore_commit_rxon(priv, ctx);
3988 }
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02003989
3990 mutex_unlock(&priv->mutex);
3991
3992 /*
3993 * Receiving all multicast frames is always enabled by the
3994 * default flags setup in iwl_connection_init_rx_config()
3995 * since we currently do not support programming multicast
3996 * filters into the device.
3997 */
3998 *total_flags &= FIF_OTHER_BSS | FIF_ALLMULTI | FIF_PROMISC_IN_BSS |
3999 FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL;
4000}
4001
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07004002static void iwl_mac_flush(struct ieee80211_hw *hw, bool drop)
4003{
4004 struct iwl_priv *priv = hw->priv;
4005
4006 mutex_lock(&priv->mutex);
4007 IWL_DEBUG_MAC80211(priv, "enter\n");
4008
4009 /* do not support "flush" */
4010 if (!priv->cfg->ops->lib->txfifo_flush)
4011 goto done;
4012
4013 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
4014 IWL_DEBUG_TX(priv, "Aborting flush due to device shutdown\n");
4015 goto done;
4016 }
4017 if (iwl_is_rfkill(priv)) {
4018 IWL_DEBUG_TX(priv, "Aborting flush due to RF Kill\n");
4019 goto done;
4020 }
4021
4022 /*
4023 * mac80211 will not push any more frames for transmit
4024 * until the flush is completed
4025 */
4026 if (drop) {
4027 IWL_DEBUG_MAC80211(priv, "send flush command\n");
4028 if (priv->cfg->ops->lib->txfifo_flush(priv, IWL_DROP_ALL)) {
4029 IWL_ERR(priv, "flush request fail\n");
4030 goto done;
4031 }
4032 }
4033 IWL_DEBUG_MAC80211(priv, "wait transmit/flush all frames\n");
4034 iwlagn_wait_tx_queue_empty(priv);
4035done:
4036 mutex_unlock(&priv->mutex);
4037 IWL_DEBUG_MAC80211(priv, "leave\n");
4038}
4039
Zhu Yib481de92007-09-25 17:54:57 -07004040/*****************************************************************************
4041 *
Zhu Yib481de92007-09-25 17:54:57 -07004042 * driver setup and teardown
4043 *
4044 *****************************************************************************/
4045
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004046static void iwl_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004047{
Reinette Chatred21050c2009-02-13 11:51:18 -08004048 priv->workqueue = create_singlethread_workqueue(DRV_NAME);
Zhu Yib481de92007-09-25 17:54:57 -07004049
4050 init_waitqueue_head(&priv->wait_command_queue);
4051
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004052 INIT_WORK(&priv->restart, iwl_bg_restart);
4053 INIT_WORK(&priv->rx_replenish, iwl_bg_rx_replenish);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004054 INIT_WORK(&priv->beacon_update, iwl_bg_beacon_update);
Emmanuel Grumbach16e727e2008-06-12 09:46:52 +08004055 INIT_WORK(&priv->run_time_calib_work, iwl_bg_run_time_calib_work);
Wey-Yi Guy65550632010-06-24 13:18:35 -07004056 INIT_WORK(&priv->tx_flush, iwl_bg_tx_flush);
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004057 INIT_WORK(&priv->bt_full_concurrency, iwl_bg_bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07004058 INIT_WORK(&priv->bt_runtime_config, iwl_bg_bt_runtime_config);
Tomas Winkler4a4a9e82008-05-29 16:34:54 +08004059 INIT_DELAYED_WORK(&priv->init_alive_start, iwl_bg_init_alive_start);
4060 INIT_DELAYED_WORK(&priv->alive_start, iwl_bg_alive_start);
Tomas Winkler2a421b92008-06-12 09:47:10 +08004061
Tomas Winkler2a421b92008-06-12 09:47:10 +08004062 iwl_setup_scan_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004063
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004064 if (priv->cfg->ops->lib->setup_deferred_work)
4065 priv->cfg->ops->lib->setup_deferred_work(priv);
4066
4067 init_timer(&priv->statistics_periodic);
4068 priv->statistics_periodic.data = (unsigned long)priv;
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004069 priv->statistics_periodic.function = iwl_bg_statistics_periodic;
Zhu Yib481de92007-09-25 17:54:57 -07004070
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004071 init_timer(&priv->ucode_trace);
4072 priv->ucode_trace.data = (unsigned long)priv;
4073 priv->ucode_trace.function = iwl_bg_ucode_trace;
4074
Wey-Yi Guyb74e31a2010-03-01 17:23:50 -08004075 if (priv->cfg->ops->lib->recover_from_tx_stall) {
4076 init_timer(&priv->monitor_recover);
4077 priv->monitor_recover.data = (unsigned long)priv;
4078 priv->monitor_recover.function =
4079 priv->cfg->ops->lib->recover_from_tx_stall;
4080 }
4081
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07004082 if (!priv->cfg->base_params->use_isr_legacy)
Mohamed Abbasef850d72009-05-22 11:01:50 -07004083 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4084 iwl_irq_tasklet, (unsigned long)priv);
4085 else
4086 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
4087 iwl_irq_tasklet_legacy, (unsigned long)priv);
Zhu Yib481de92007-09-25 17:54:57 -07004088}
4089
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004090static void iwl_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07004091{
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004092 if (priv->cfg->ops->lib->cancel_deferred_work)
4093 priv->cfg->ops->lib->cancel_deferred_work(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004094
Joonwoo Park3ae6a052007-11-29 10:43:16 +09004095 cancel_delayed_work_sync(&priv->init_alive_start);
Zhu Yib481de92007-09-25 17:54:57 -07004096 cancel_delayed_work(&priv->alive_start);
Wey-Yi Guy815e6292010-06-03 10:14:01 -07004097 cancel_work_sync(&priv->run_time_calib_work);
Zhu Yib481de92007-09-25 17:54:57 -07004098 cancel_work_sync(&priv->beacon_update);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02004099
4100 iwl_cancel_scan_deferred_work(priv);
4101
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004102 cancel_work_sync(&priv->bt_full_concurrency);
Wey-Yi Guyfbba9412010-08-23 07:57:10 -07004103 cancel_work_sync(&priv->bt_runtime_config);
Stanislaw Gruszkae7e16b92010-09-13 14:46:41 +02004104
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004105 del_timer_sync(&priv->statistics_periodic);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08004106 del_timer_sync(&priv->ucode_trace);
Zhu Yib481de92007-09-25 17:54:57 -07004107}
4108
Reinette Chatre89f186a2009-10-30 14:36:11 -07004109static void iwl_init_hw_rates(struct iwl_priv *priv,
4110 struct ieee80211_rate *rates)
4111{
4112 int i;
4113
4114 for (i = 0; i < IWL_RATE_COUNT_LEGACY; i++) {
4115 rates[i].bitrate = iwl_rates[i].ieee * 5;
4116 rates[i].hw_value = i; /* Rate scaling will work on indexes */
4117 rates[i].hw_value_short = i;
4118 rates[i].flags = 0;
4119 if ((i >= IWL_FIRST_CCK_RATE) && (i <= IWL_LAST_CCK_RATE)) {
4120 /*
4121 * If CCK != 1M then set short preamble rate flag.
4122 */
4123 rates[i].flags |=
4124 (iwl_rates[i].plcp == IWL_RATE_1M_PLCP) ?
4125 0 : IEEE80211_RATE_SHORT_PREAMBLE;
4126 }
4127 }
4128}
4129
4130static int iwl_init_drv(struct iwl_priv *priv)
4131{
4132 int ret;
4133
Reinette Chatre89f186a2009-10-30 14:36:11 -07004134 spin_lock_init(&priv->sta_lock);
4135 spin_lock_init(&priv->hcmd_lock);
4136
4137 INIT_LIST_HEAD(&priv->free_frames);
4138
4139 mutex_init(&priv->mutex);
Reinette Chatred2dfe6d2010-02-18 22:03:04 -08004140 mutex_init(&priv->sync_cmd_mutex);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004141
Reinette Chatre89f186a2009-10-30 14:36:11 -07004142 priv->ieee_channels = NULL;
4143 priv->ieee_rates = NULL;
4144 priv->band = IEEE80211_BAND_2GHZ;
4145
4146 priv->iw_mode = NL80211_IFTYPE_STATION;
Johannes Bergba37a3d2009-12-10 14:37:27 -08004147 priv->current_ht_config.smps = IEEE80211_SMPS_STATIC;
Wey-Yi Guya13d2762010-01-22 14:22:42 -08004148 priv->missed_beacon_threshold = IWL_MISSED_BEACON_THRESHOLD_DEF;
Wey-Yi Guyd5a0ffa2010-03-04 13:38:59 -08004149 priv->_agn.agg_tids_count = 0;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004150
Wey-Yi Guy8a472da2010-02-18 22:03:06 -08004151 /* initialize force reset */
4152 priv->force_reset[IWL_RF_RESET].reset_duration =
4153 IWL_DELAY_NEXT_FORCE_RF_RESET;
4154 priv->force_reset[IWL_FW_RESET].reset_duration =
4155 IWL_DELAY_NEXT_FORCE_FW_RELOAD;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004156
4157 /* Choose which receivers/antennas to use */
4158 if (priv->cfg->ops->hcmd->set_rxon_chain)
Johannes Berg246ed352010-08-23 10:46:32 +02004159 priv->cfg->ops->hcmd->set_rxon_chain(priv,
4160 &priv->contexts[IWL_RXON_CTX_BSS]);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004161
4162 iwl_init_scan_params(priv);
4163
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004164 /* init bt coex */
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07004165 if (priv->cfg->bt_params &&
4166 priv->cfg->bt_params->advanced_bt_coexist) {
Wey-Yi Guyb6e116e2010-08-23 07:57:14 -07004167 priv->kill_ack_mask = IWLAGN_BT_KILL_ACK_MASK_DEFAULT;
4168 priv->kill_cts_mask = IWLAGN_BT_KILL_CTS_MASK_DEFAULT;
4169 priv->bt_valid = IWLAGN_BT_ALL_VALID_MSK;
Wey-Yi Guy22bf59a2010-08-23 07:57:11 -07004170 priv->bt_on_thresh = BT_ON_THRESHOLD_DEF;
4171 priv->bt_duration = BT_DURATION_LIMIT_DEF;
4172 priv->dynamic_frag_thresh = BT_FRAG_THRESHOLD_DEF;
4173 priv->dynamic_agg_thresh = BT_AGG_THRESHOLD_DEF;
4174 }
4175
Reinette Chatre89f186a2009-10-30 14:36:11 -07004176 /* Set the tx_power_user_lmt to the lowest power level
4177 * this value will get overwritten by channel max power avg
4178 * from eeprom */
Wey-Yi Guyb744cb72010-03-23 11:37:59 -07004179 priv->tx_power_user_lmt = IWLAGN_TX_POWER_TARGET_POWER_MIN;
Reinette Chatre89f186a2009-10-30 14:36:11 -07004180
4181 ret = iwl_init_channel_map(priv);
4182 if (ret) {
4183 IWL_ERR(priv, "initializing regulatory failed: %d\n", ret);
4184 goto err;
4185 }
4186
4187 ret = iwlcore_init_geos(priv);
4188 if (ret) {
4189 IWL_ERR(priv, "initializing geos failed: %d\n", ret);
4190 goto err_free_channel_map;
4191 }
4192 iwl_init_hw_rates(priv, priv->ieee_rates);
4193
4194 return 0;
4195
4196err_free_channel_map:
4197 iwl_free_channel_map(priv);
4198err:
4199 return ret;
4200}
4201
4202static void iwl_uninit_drv(struct iwl_priv *priv)
4203{
4204 iwl_calib_free_results(priv);
4205 iwlcore_free_geos(priv);
4206 iwl_free_channel_map(priv);
Johannes Berg811ecc92010-04-06 04:12:41 -07004207 kfree(priv->scan_cmd);
Reinette Chatre89f186a2009-10-30 14:36:11 -07004208}
4209
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004210static struct ieee80211_ops iwl_hw_ops = {
4211 .tx = iwl_mac_tx,
4212 .start = iwl_mac_start,
4213 .stop = iwl_mac_stop,
4214 .add_interface = iwl_mac_add_interface,
4215 .remove_interface = iwl_mac_remove_interface,
4216 .config = iwl_mac_config,
Johannes Berg8b8ab9d2010-08-17 11:24:01 +02004217 .configure_filter = iwlagn_configure_filter,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004218 .set_key = iwl_mac_set_key,
4219 .update_tkip_key = iwl_mac_update_tkip_key,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004220 .conf_tx = iwl_mac_conf_tx,
4221 .reset_tsf = iwl_mac_reset_tsf,
4222 .bss_info_changed = iwl_bss_info_changed,
4223 .ampdu_action = iwl_mac_ampdu_action,
Johannes Berg6ab10ff2009-11-13 11:56:37 -08004224 .hw_scan = iwl_mac_hw_scan,
4225 .sta_notify = iwl_mac_sta_notify,
Reinette Chatrefe6b23d2010-02-22 16:24:47 -08004226 .sta_add = iwlagn_mac_sta_add,
4227 .sta_remove = iwl_mac_sta_remove,
Wey-Yi Guy79d07322010-05-06 08:54:11 -07004228 .channel_switch = iwl_mac_channel_switch,
Wey-Yi Guy716c74b2010-06-24 13:22:36 -07004229 .flush = iwl_mac_flush,
Johannes Berga85d7cc2010-07-31 08:34:10 -07004230 .tx_last_beacon = iwl_mac_tx_last_beacon,
Zhu Yib481de92007-09-25 17:54:57 -07004231};
4232
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004233static void iwl_hw_detect(struct iwl_priv *priv)
4234{
4235 priv->hw_rev = _iwl_read32(priv, CSR_HW_REV);
4236 priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG);
4237 pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id);
Wey-Yi Guy49ded762010-07-31 08:34:06 -07004238 IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", priv->rev_id);
Wey-Yi Guy3867fe02010-07-31 08:34:05 -07004239}
4240
Wey-Yi Guy07d4f1a2010-07-31 08:34:08 -07004241static int iwl_set_hw_params(struct iwl_priv *priv)
4242{
4243 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
4244 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
4245 if (priv->cfg->mod_params->amsdu_size_8K)
4246 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_8K);
4247 else
4248 priv->hw_params.rx_page_order = get_order(IWL_RX_BUF_SIZE_4K);
4249
4250 priv->hw_params.max_beacon_itrvl = IWL_MAX_UCODE_BEACON_INTERVAL;
4251
4252 if (priv->cfg->mod_params->disable_11n)
4253 priv->cfg->sku &= ~IWL_SKU_N;
4254
4255 /* Device-specific setup */
4256 return priv->cfg->ops->lib->set_hw_params(priv);
4257}
4258
Johannes Berge72f3682010-08-23 10:46:51 +02004259static const u8 iwlagn_bss_ac_to_fifo[] = {
4260 IWL_TX_FIFO_VO,
4261 IWL_TX_FIFO_VI,
4262 IWL_TX_FIFO_BE,
4263 IWL_TX_FIFO_BK,
4264};
4265
4266static const u8 iwlagn_bss_ac_to_queue[] = {
4267 0, 1, 2, 3,
4268};
4269
4270static const u8 iwlagn_pan_ac_to_fifo[] = {
4271 IWL_TX_FIFO_VO_IPAN,
4272 IWL_TX_FIFO_VI_IPAN,
4273 IWL_TX_FIFO_BE_IPAN,
4274 IWL_TX_FIFO_BK_IPAN,
4275};
4276
4277static const u8 iwlagn_pan_ac_to_queue[] = {
4278 7, 6, 5, 4,
4279};
4280
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004281static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Zhu Yib481de92007-09-25 17:54:57 -07004282{
Johannes Berg246ed352010-08-23 10:46:32 +02004283 int err = 0, i;
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004284 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07004285 struct ieee80211_hw *hw;
Tomas Winkler82b9a122008-03-04 18:09:30 -08004286 struct iwl_cfg *cfg = (struct iwl_cfg *)(ent->driver_data);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004287 unsigned long flags;
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004288 u16 pci_cmd, num_mac;
Zhu Yib481de92007-09-25 17:54:57 -07004289
Assaf Krauss316c30d2008-03-14 10:38:46 -07004290 /************************
4291 * 1. Allocating HW data
4292 ************************/
4293
Cahill, Ben M6440adb2007-11-29 11:09:55 +08004294 /* Disabling hardware scan means that mac80211 will perform scans
4295 * "the hard way", rather than using device's scan. */
Assaf Krauss1ea87392008-03-18 14:57:50 -07004296 if (cfg->mod_params->disable_hw_scan) {
Wey-Yi Guy72645ef2010-10-06 07:42:43 -07004297 dev_printk(KERN_DEBUG, &(pdev->dev),
4298 "sw scan support is deprecated\n");
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004299 iwl_hw_ops.hw_scan = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07004300 }
4301
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004302 hw = iwl_alloc_all(cfg, &iwl_hw_ops);
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004303 if (!hw) {
Zhu Yib481de92007-09-25 17:54:57 -07004304 err = -ENOMEM;
4305 goto out;
4306 }
Assaf Krauss1d0a0822008-03-14 10:38:48 -07004307 priv = hw->priv;
4308 /* At this point both hw and priv are allocated. */
4309
Johannes Berg246ed352010-08-23 10:46:32 +02004310 /*
4311 * The default context is always valid,
4312 * more may be discovered when firmware
4313 * is loaded.
4314 */
4315 priv->valid_contexts = BIT(IWL_RXON_CTX_BSS);
4316
4317 for (i = 0; i < NUM_IWL_RXON_CTX; i++)
4318 priv->contexts[i].ctxid = i;
4319
Johannes Berg763cc3b2010-09-03 06:32:21 -07004320 priv->contexts[IWL_RXON_CTX_BSS].always_active = true;
4321 priv->contexts[IWL_RXON_CTX_BSS].is_active = true;
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004322 priv->contexts[IWL_RXON_CTX_BSS].rxon_cmd = REPLY_RXON;
4323 priv->contexts[IWL_RXON_CTX_BSS].rxon_timing_cmd = REPLY_RXON_TIMING;
4324 priv->contexts[IWL_RXON_CTX_BSS].rxon_assoc_cmd = REPLY_RXON_ASSOC;
Johannes Berg8dfdb9d2010-08-23 10:46:38 +02004325 priv->contexts[IWL_RXON_CTX_BSS].qos_cmd = REPLY_QOS_PARAM;
Johannes Berg2995baf2010-08-23 10:46:42 +02004326 priv->contexts[IWL_RXON_CTX_BSS].ap_sta_id = IWL_AP_ID;
Johannes Bergc10afb62010-08-23 10:46:43 +02004327 priv->contexts[IWL_RXON_CTX_BSS].wep_key_cmd = REPLY_WEPKEY;
Johannes Berge72f3682010-08-23 10:46:51 +02004328 priv->contexts[IWL_RXON_CTX_BSS].ac_to_fifo = iwlagn_bss_ac_to_fifo;
4329 priv->contexts[IWL_RXON_CTX_BSS].ac_to_queue = iwlagn_bss_ac_to_queue;
Johannes Bergd0fe4782010-08-23 10:46:58 +02004330 priv->contexts[IWL_RXON_CTX_BSS].exclusive_interface_modes =
4331 BIT(NL80211_IFTYPE_ADHOC);
4332 priv->contexts[IWL_RXON_CTX_BSS].interface_modes =
4333 BIT(NL80211_IFTYPE_STATION);
4334 priv->contexts[IWL_RXON_CTX_BSS].ibss_devtype = RXON_DEV_TYPE_IBSS;
4335 priv->contexts[IWL_RXON_CTX_BSS].station_devtype = RXON_DEV_TYPE_ESS;
4336 priv->contexts[IWL_RXON_CTX_BSS].unused_devtype = RXON_DEV_TYPE_ESS;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004337
4338 priv->contexts[IWL_RXON_CTX_PAN].rxon_cmd = REPLY_WIPAN_RXON;
4339 priv->contexts[IWL_RXON_CTX_PAN].rxon_timing_cmd = REPLY_WIPAN_RXON_TIMING;
4340 priv->contexts[IWL_RXON_CTX_PAN].rxon_assoc_cmd = REPLY_WIPAN_RXON_ASSOC;
4341 priv->contexts[IWL_RXON_CTX_PAN].qos_cmd = REPLY_WIPAN_QOS_PARAM;
4342 priv->contexts[IWL_RXON_CTX_PAN].ap_sta_id = IWL_AP_ID_PAN;
4343 priv->contexts[IWL_RXON_CTX_PAN].wep_key_cmd = REPLY_WIPAN_WEPKEY;
4344 priv->contexts[IWL_RXON_CTX_PAN].bcast_sta_id = IWLAGN_PAN_BCAST_ID;
4345 priv->contexts[IWL_RXON_CTX_PAN].station_flags = STA_FLG_PAN_STATION;
Johannes Berge72f3682010-08-23 10:46:51 +02004346 priv->contexts[IWL_RXON_CTX_PAN].ac_to_fifo = iwlagn_pan_ac_to_fifo;
4347 priv->contexts[IWL_RXON_CTX_PAN].ac_to_queue = iwlagn_pan_ac_to_queue;
4348 priv->contexts[IWL_RXON_CTX_PAN].mcast_queue = IWL_IPAN_MCAST_QUEUE;
Johannes Bergd0fe4782010-08-23 10:46:58 +02004349 priv->contexts[IWL_RXON_CTX_PAN].interface_modes =
4350 BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_AP);
4351 priv->contexts[IWL_RXON_CTX_PAN].ap_devtype = RXON_DEV_TYPE_CP;
4352 priv->contexts[IWL_RXON_CTX_PAN].station_devtype = RXON_DEV_TYPE_2STA;
4353 priv->contexts[IWL_RXON_CTX_PAN].unused_devtype = RXON_DEV_TYPE_P2P;
Johannes Bergece9c4e2010-08-23 10:46:49 +02004354
4355 BUILD_BUG_ON(NUM_IWL_RXON_CTX != 2);
Johannes Berg8f2d3d22010-08-23 10:46:37 +02004356
Zhu Yib481de92007-09-25 17:54:57 -07004357 SET_IEEE80211_DEV(hw, &pdev->dev);
4358
Tomas Winklere1623442009-01-27 14:27:56 -08004359 IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
Tomas Winkler82b9a122008-03-04 18:09:30 -08004360 priv->cfg = cfg;
Zhu Yib481de92007-09-25 17:54:57 -07004361 priv->pci_dev = pdev;
Mohamed Abbas40cefda2009-05-22 11:01:52 -07004362 priv->inta_mask = CSR_INI_SET_MASK;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004363
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004364 /* is antenna coupling more than 35dB ? */
4365 priv->bt_ant_couple_ok =
4366 (iwlagn_ant_coupling > IWL_BT_ANTENNA_COUPLING_THRESHOLD) ?
4367 true : false;
4368
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004369 /* enable/disable bt channel announcement */
4370 priv->bt_ch_announce = iwlagn_bt_ch_announce;
4371
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004372 if (iwl_alloc_traffic_mem(priv))
4373 IWL_ERR(priv, "Not enough memory to generate traffic log\n");
Zhu Yib481de92007-09-25 17:54:57 -07004374
Assaf Krauss316c30d2008-03-14 10:38:46 -07004375 /**************************
4376 * 2. Initializing PCI bus
4377 **************************/
John W. Linville1a7123c2010-08-05 14:39:31 -04004378 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1 |
4379 PCIE_LINK_STATE_CLKPM);
4380
Assaf Krauss316c30d2008-03-14 10:38:46 -07004381 if (pci_enable_device(pdev)) {
4382 err = -ENODEV;
4383 goto out_ieee80211_free_hw;
4384 }
4385
4386 pci_set_master(pdev);
4387
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004388 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(36));
Assaf Krauss316c30d2008-03-14 10:38:46 -07004389 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004390 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(36));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004391 if (err) {
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004392 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004393 if (!err)
Winkler, Tomas093d874c2008-09-26 15:09:34 +08004394 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004395 /* both attempts failed: */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004396 if (err) {
Tomas Winkler978785a2008-12-19 10:37:31 +08004397 IWL_WARN(priv, "No suitable DMA available.\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004398 goto out_pci_disable_device;
Ron Rindjunskycc2a8ea2008-04-21 15:41:59 -07004399 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004400 }
4401
4402 err = pci_request_regions(pdev, DRV_NAME);
4403 if (err)
4404 goto out_pci_disable_device;
4405
4406 pci_set_drvdata(pdev, priv);
4407
Assaf Krauss316c30d2008-03-14 10:38:46 -07004408
4409 /***********************
4410 * 3. Read REV register
4411 ***********************/
4412 priv->hw_base = pci_iomap(pdev, 0, 0);
4413 if (!priv->hw_base) {
4414 err = -ENODEV;
4415 goto out_pci_release_regions;
4416 }
4417
Tomas Winklere1623442009-01-27 14:27:56 -08004418 IWL_DEBUG_INFO(priv, "pci_resource_len = 0x%08llx\n",
Assaf Krauss316c30d2008-03-14 10:38:46 -07004419 (unsigned long long) pci_resource_len(pdev, 0));
Tomas Winklere1623442009-01-27 14:27:56 -08004420 IWL_DEBUG_INFO(priv, "pci_resource_base = %p\n", priv->hw_base);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004421
Reinette Chatre731a29b2009-12-14 14:12:11 -08004422 /* these spin locks will be used in apm_ops.init and EEPROM access
Mohamed Abbasa8b50a02009-05-22 11:01:47 -07004423 * we should init now
4424 */
4425 spin_lock_init(&priv->reg_lock);
Reinette Chatre731a29b2009-12-14 14:12:11 -08004426 spin_lock_init(&priv->lock);
Reinette Chatre4843b5a2010-02-03 09:38:59 -08004427
4428 /*
4429 * stop and reset the on-board processor just in case it is in a
4430 * strange state ... like being left stranded by a primary kernel
4431 * and this is now the kdump kernel trying to start up
4432 */
4433 iwl_write32(priv, CSR_RESET, CSR_RESET_REG_FLAG_NEVO_RESET);
4434
Tomas Winklerb661c812008-04-23 17:14:54 -07004435 iwl_hw_detect(priv);
Shanyu Zhaoc11362c2010-03-05 17:05:20 -08004436 IWL_INFO(priv, "Detected %s, REV=0x%X\n",
Tomas Winklerb661c812008-04-23 17:14:54 -07004437 priv->cfg->name, priv->hw_rev);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004438
Tomas Winklere7b63582008-09-03 11:26:49 +08004439 /* We disable the RETRY_TIMEOUT register (0x41) to keep
4440 * PCI Tx retries from interfering with C3 CPU state */
4441 pci_write_config_byte(pdev, PCI_CFG_RETRY_TIMEOUT, 0x00);
4442
Mohamed Abbas086ed112009-05-22 11:01:54 -07004443 iwl_prepare_card_hw(priv);
4444 if (!priv->hw_ready) {
4445 IWL_WARN(priv, "Failed, HW not ready\n");
4446 goto out_iounmap;
4447 }
4448
Assaf Krauss316c30d2008-03-14 10:38:46 -07004449 /*****************
4450 * 4. Read EEPROM
4451 *****************/
Assaf Krauss316c30d2008-03-14 10:38:46 -07004452 /* Read the EEPROM */
4453 err = iwl_eeprom_init(priv);
4454 if (err) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004455 IWL_ERR(priv, "Unable to init EEPROM\n");
Assaf Krauss316c30d2008-03-14 10:38:46 -07004456 goto out_iounmap;
4457 }
Tomas Winkler8614f362008-04-23 17:14:55 -07004458 err = iwl_eeprom_check_version(priv);
4459 if (err)
Reinette Chatrec8f16132009-02-27 16:21:22 -08004460 goto out_free_eeprom;
Tomas Winkler8614f362008-04-23 17:14:55 -07004461
Ron Rindjunsky02883012008-05-15 13:53:53 +08004462 /* extract MAC Address */
Wey-Yi Guyc6fa17e2010-07-15 05:58:30 -07004463 iwl_eeprom_get_mac(priv, priv->addresses[0].addr);
4464 IWL_DEBUG_INFO(priv, "MAC address: %pM\n", priv->addresses[0].addr);
4465 priv->hw->wiphy->addresses = priv->addresses;
4466 priv->hw->wiphy->n_addresses = 1;
4467 num_mac = iwl_eeprom_query16(priv, EEPROM_NUM_MAC_ADDRESS);
4468 if (num_mac > 1) {
4469 memcpy(priv->addresses[1].addr, priv->addresses[0].addr,
4470 ETH_ALEN);
4471 priv->addresses[1].addr[5]++;
4472 priv->hw->wiphy->n_addresses++;
4473 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004474
4475 /************************
4476 * 5. Setup HW constants
4477 ************************/
Ron Rindjunskyda154e32008-06-30 17:23:20 +08004478 if (iwl_set_hw_params(priv)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08004479 IWL_ERR(priv, "failed to set hw parameters\n");
Tomas Winkler073d3f52008-04-21 15:41:52 -07004480 goto out_free_eeprom;
Assaf Krauss316c30d2008-03-14 10:38:46 -07004481 }
4482
4483 /*******************
Tomas Winkler6ba87952008-05-15 13:54:17 +08004484 * 6. Setup priv
Assaf Krauss316c30d2008-03-14 10:38:46 -07004485 *******************/
Zhu Yib481de92007-09-25 17:54:57 -07004486
Tomas Winkler6ba87952008-05-15 13:54:17 +08004487 err = iwl_init_drv(priv);
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004488 if (err)
Ron Rindjunsky399f4902008-04-23 17:14:56 -07004489 goto out_free_eeprom;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07004490 /* At this point both hw and priv are initialized. */
Assaf Krauss316c30d2008-03-14 10:38:46 -07004491
Assaf Krauss316c30d2008-03-14 10:38:46 -07004492 /********************
Abhijeet Kolekar09f9bf72009-04-20 14:37:03 -07004493 * 7. Setup services
Assaf Krauss316c30d2008-03-14 10:38:46 -07004494 ********************/
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004495 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004496 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004497 spin_unlock_irqrestore(&priv->lock, flags);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004498
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004499 pci_enable_msi(priv->pci_dev);
4500
Mohamed Abbasef850d72009-05-22 11:01:50 -07004501 iwl_alloc_isr_ict(priv);
4502 err = request_irq(priv->pci_dev->irq, priv->cfg->ops->lib->isr,
4503 IRQF_SHARED, DRV_NAME, priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004504 if (err) {
4505 IWL_ERR(priv, "Error allocating IRQ %d\n", priv->pci_dev->irq);
4506 goto out_disable_msi;
4507 }
Assaf Krauss316c30d2008-03-14 10:38:46 -07004508
Emmanuel Grumbach4e393172008-06-12 09:46:53 +08004509 iwl_setup_deferred_work(priv);
Emmanuel Grumbach653fa4a2008-06-30 17:23:11 +08004510 iwl_setup_rx_handlers(priv);
Assaf Krauss316c30d2008-03-14 10:38:46 -07004511
Johannes Berg158bea02010-01-22 14:22:53 -08004512 /*********************************************
4513 * 8. Enable interrupts and read RFKILL state
4514 *********************************************/
Tomas Winkler6ba87952008-05-15 13:54:17 +08004515
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004516 /* enable interrupts if needed: hw bug w/a */
4517 pci_read_config_word(priv->pci_dev, PCI_COMMAND, &pci_cmd);
4518 if (pci_cmd & PCI_COMMAND_INTX_DISABLE) {
4519 pci_cmd &= ~PCI_COMMAND_INTX_DISABLE;
4520 pci_write_config_word(priv->pci_dev, PCI_COMMAND, pci_cmd);
4521 }
4522
4523 iwl_enable_interrupts(priv);
4524
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004525 /* If platform's RF_KILL switch is NOT set to KILL */
4526 if (iwl_read32(priv, CSR_GP_CNTRL) & CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW)
4527 clear_bit(STATUS_RF_KILL_HW, &priv->status);
4528 else
4529 set_bit(STATUS_RF_KILL_HW, &priv->status);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004530
Johannes Berga60e77e2009-06-04 18:26:06 +02004531 wiphy_rfkill_set_hw_state(priv->hw->wiphy,
4532 test_bit(STATUS_RF_KILL_HW, &priv->status));
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004533
Emmanuel Grumbach58d0f362008-06-12 09:47:19 +08004534 iwl_power_initialize(priv);
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -07004535 iwl_tt_initialize(priv);
Johannes Berg158bea02010-01-22 14:22:53 -08004536
Reinette Chatrea15707d2010-05-10 15:08:11 -07004537 init_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004538
Johannes Bergb08dfd02010-01-29 11:54:56 -08004539 err = iwl_request_firmware(priv, true);
Johannes Berg158bea02010-01-22 14:22:53 -08004540 if (err)
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004541 goto out_destroy_workqueue;
Johannes Berg158bea02010-01-22 14:22:53 -08004542
Zhu Yib481de92007-09-25 17:54:57 -07004543 return 0;
4544
Emmanuel Grumbach7d476182010-05-23 00:14:08 -07004545 out_destroy_workqueue:
Reinette Chatrec8f16132009-02-27 16:21:22 -08004546 destroy_workqueue(priv->workqueue);
4547 priv->workqueue = NULL;
Helmut Schaa795cc0a2009-02-12 18:51:03 +01004548 free_irq(priv->pci_dev->irq, priv);
Mohamed Abbasef850d72009-05-22 11:01:50 -07004549 iwl_free_isr_ict(priv);
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004550 out_disable_msi:
4551 pci_disable_msi(priv->pci_dev);
Tomas Winkler6ba87952008-05-15 13:54:17 +08004552 iwl_uninit_drv(priv);
Tomas Winkler073d3f52008-04-21 15:41:52 -07004553 out_free_eeprom:
4554 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004555 out_iounmap:
4556 pci_iounmap(pdev, priv->hw_base);
4557 out_pci_release_regions:
Assaf Krauss316c30d2008-03-14 10:38:46 -07004558 pci_set_drvdata(pdev, NULL);
Reinette Chatre623d5632009-03-03 11:37:04 -08004559 pci_release_regions(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004560 out_pci_disable_device:
4561 pci_disable_device(pdev);
Zhu Yib481de92007-09-25 17:54:57 -07004562 out_ieee80211_free_hw:
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004563 iwl_free_traffic_mem(priv);
Wey-Yi Guyd7c76f42009-10-09 13:20:17 -07004564 ieee80211_free_hw(priv->hw);
Zhu Yib481de92007-09-25 17:54:57 -07004565 out:
4566 return err;
4567}
4568
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004569static void __devexit iwl_pci_remove(struct pci_dev *pdev)
Zhu Yib481de92007-09-25 17:54:57 -07004570{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07004571 struct iwl_priv *priv = pci_get_drvdata(pdev);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004572 unsigned long flags;
Zhu Yib481de92007-09-25 17:54:57 -07004573
4574 if (!priv)
4575 return;
4576
Reinette Chatrea15707d2010-05-10 15:08:11 -07004577 wait_for_completion(&priv->_agn.firmware_loading_complete);
Johannes Berg562db532010-04-29 07:41:53 -07004578
Tomas Winklere1623442009-01-27 14:27:56 -08004579 IWL_DEBUG_INFO(priv, "*** UNLOAD DRIVER ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07004580
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004581 iwl_dbgfs_unregister(priv);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004582 sysfs_remove_group(&pdev->dev.kobj, &iwl_attribute_group);
Emmanuel Grumbach67249622008-05-29 16:35:26 +08004583
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004584 /* ieee80211_unregister_hw call wil cause iwl_mac_stop to
4585 * to be called and iwl_down since we are removing the device
Gregory Greenman0b124c32008-09-03 11:18:50 +08004586 * we need to set STATUS_EXIT_PENDING bit.
4587 */
4588 set_bit(STATUS_EXIT_PENDING, &priv->status);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004589 if (priv->mac80211_registered) {
4590 ieee80211_unregister_hw(priv->hw);
4591 priv->mac80211_registered = 0;
Gregory Greenman0b124c32008-09-03 11:18:50 +08004592 } else {
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004593 iwl_down(priv);
Ron Rindjunskyc4f55232008-03-28 16:21:10 -07004594 }
4595
Ben Cahillc166b252009-10-23 13:42:35 -07004596 /*
4597 * Make sure device is reset to low power before unloading driver.
4598 * This may be redundant with iwl_down(), but there are paths to
4599 * run iwl_down() without calling apm_ops.stop(), and there are
4600 * paths to avoid running iwl_down() at all before leaving driver.
4601 * This (inexpensive) call *makes sure* device is reset.
4602 */
Johannes Berg14e8e4a2010-09-22 18:02:10 +02004603 iwl_apm_stop(priv);
Ben Cahillc166b252009-10-23 13:42:35 -07004604
Wey-Yi Guy39b73fb2009-07-24 11:13:02 -07004605 iwl_tt_exit(priv);
4606
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004607 /* make sure we flush any pending irq or
4608 * tasklet for the driver
4609 */
4610 spin_lock_irqsave(&priv->lock, flags);
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004611 iwl_disable_interrupts(priv);
Mohamed Abbas0359fac2008-03-28 16:21:08 -07004612 spin_unlock_irqrestore(&priv->lock, flags);
4613
4614 iwl_synchronize_irq(priv);
4615
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004616 iwl_dealloc_ucode_pci(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004617
4618 if (priv->rxq.bd)
Wey-Yi Guy54b81552010-03-17 13:34:35 -07004619 iwlagn_rx_queue_free(priv, &priv->rxq);
Wey-Yi Guy74bcdb32010-03-17 13:34:34 -07004620 iwlagn_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004621
Tomas Winkler073d3f52008-04-21 15:41:52 -07004622 iwl_eeprom_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004623
Zhu Yib481de92007-09-25 17:54:57 -07004624
Mohamed Abbas948c1712007-10-25 17:15:45 +08004625 /*netif_stop_queue(dev); */
4626 flush_workqueue(priv->workqueue);
4627
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004628 /* ieee80211_unregister_hw calls iwl_mac_stop, which flushes
Zhu Yib481de92007-09-25 17:54:57 -07004629 * priv->workqueue... so we can't take down the workqueue
4630 * until now... */
4631 destroy_workqueue(priv->workqueue);
4632 priv->workqueue = NULL;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07004633 iwl_free_traffic_mem(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004634
Helmut Schaa6cd0b1c2009-01-19 13:10:07 +01004635 free_irq(priv->pci_dev->irq, priv);
4636 pci_disable_msi(priv->pci_dev);
Zhu Yib481de92007-09-25 17:54:57 -07004637 pci_iounmap(pdev, priv->hw_base);
4638 pci_release_regions(pdev);
4639 pci_disable_device(pdev);
4640 pci_set_drvdata(pdev, NULL);
4641
Tomas Winkler6ba87952008-05-15 13:54:17 +08004642 iwl_uninit_drv(priv);
Zhu Yib481de92007-09-25 17:54:57 -07004643
Mohamed Abbasef850d72009-05-22 11:01:50 -07004644 iwl_free_isr_ict(priv);
4645
Johannes Berg77834542010-10-04 05:50:36 -07004646 dev_kfree_skb(priv->beacon_skb);
Zhu Yib481de92007-09-25 17:54:57 -07004647
4648 ieee80211_free_hw(priv->hw);
4649}
4650
Zhu Yib481de92007-09-25 17:54:57 -07004651
4652/*****************************************************************************
4653 *
4654 * driver and module entry point
4655 *
4656 *****************************************************************************/
4657
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004658/* Hardware specific file defines the PCI IDs table for that hardware module */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00004659static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004660#ifdef CONFIG_IWL4965
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004661 {IWL_PCI_DEVICE(0x4229, PCI_ANY_ID, iwl4965_agn_cfg)},
4662 {IWL_PCI_DEVICE(0x4230, PCI_ANY_ID, iwl4965_agn_cfg)},
Tomas Winkler4fc22b22008-07-21 18:54:42 +03004663#endif /* CONFIG_IWL4965 */
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004664#ifdef CONFIG_IWL5000
Wey-Yi Guyac592572009-11-20 12:05:03 -08004665/* 5100 Series WiFi */
4666 {IWL_PCI_DEVICE(0x4232, 0x1201, iwl5100_agn_cfg)}, /* Mini Card */
4667 {IWL_PCI_DEVICE(0x4232, 0x1301, iwl5100_agn_cfg)}, /* Half Mini Card */
4668 {IWL_PCI_DEVICE(0x4232, 0x1204, iwl5100_agn_cfg)}, /* Mini Card */
4669 {IWL_PCI_DEVICE(0x4232, 0x1304, iwl5100_agn_cfg)}, /* Half Mini Card */
4670 {IWL_PCI_DEVICE(0x4232, 0x1205, iwl5100_bgn_cfg)}, /* Mini Card */
4671 {IWL_PCI_DEVICE(0x4232, 0x1305, iwl5100_bgn_cfg)}, /* Half Mini Card */
4672 {IWL_PCI_DEVICE(0x4232, 0x1206, iwl5100_abg_cfg)}, /* Mini Card */
4673 {IWL_PCI_DEVICE(0x4232, 0x1306, iwl5100_abg_cfg)}, /* Half Mini Card */
4674 {IWL_PCI_DEVICE(0x4232, 0x1221, iwl5100_agn_cfg)}, /* Mini Card */
4675 {IWL_PCI_DEVICE(0x4232, 0x1321, iwl5100_agn_cfg)}, /* Half Mini Card */
4676 {IWL_PCI_DEVICE(0x4232, 0x1224, iwl5100_agn_cfg)}, /* Mini Card */
4677 {IWL_PCI_DEVICE(0x4232, 0x1324, iwl5100_agn_cfg)}, /* Half Mini Card */
4678 {IWL_PCI_DEVICE(0x4232, 0x1225, iwl5100_bgn_cfg)}, /* Mini Card */
4679 {IWL_PCI_DEVICE(0x4232, 0x1325, iwl5100_bgn_cfg)}, /* Half Mini Card */
4680 {IWL_PCI_DEVICE(0x4232, 0x1226, iwl5100_abg_cfg)}, /* Mini Card */
4681 {IWL_PCI_DEVICE(0x4232, 0x1326, iwl5100_abg_cfg)}, /* Half Mini Card */
4682 {IWL_PCI_DEVICE(0x4237, 0x1211, iwl5100_agn_cfg)}, /* Mini Card */
4683 {IWL_PCI_DEVICE(0x4237, 0x1311, iwl5100_agn_cfg)}, /* Half Mini Card */
4684 {IWL_PCI_DEVICE(0x4237, 0x1214, iwl5100_agn_cfg)}, /* Mini Card */
4685 {IWL_PCI_DEVICE(0x4237, 0x1314, iwl5100_agn_cfg)}, /* Half Mini Card */
4686 {IWL_PCI_DEVICE(0x4237, 0x1215, iwl5100_bgn_cfg)}, /* Mini Card */
4687 {IWL_PCI_DEVICE(0x4237, 0x1315, iwl5100_bgn_cfg)}, /* Half Mini Card */
4688 {IWL_PCI_DEVICE(0x4237, 0x1216, iwl5100_abg_cfg)}, /* Mini Card */
4689 {IWL_PCI_DEVICE(0x4237, 0x1316, iwl5100_abg_cfg)}, /* Half Mini Card */
4690
4691/* 5300 Series WiFi */
4692 {IWL_PCI_DEVICE(0x4235, 0x1021, iwl5300_agn_cfg)}, /* Mini Card */
4693 {IWL_PCI_DEVICE(0x4235, 0x1121, iwl5300_agn_cfg)}, /* Half Mini Card */
4694 {IWL_PCI_DEVICE(0x4235, 0x1024, iwl5300_agn_cfg)}, /* Mini Card */
4695 {IWL_PCI_DEVICE(0x4235, 0x1124, iwl5300_agn_cfg)}, /* Half Mini Card */
4696 {IWL_PCI_DEVICE(0x4235, 0x1001, iwl5300_agn_cfg)}, /* Mini Card */
4697 {IWL_PCI_DEVICE(0x4235, 0x1101, iwl5300_agn_cfg)}, /* Half Mini Card */
4698 {IWL_PCI_DEVICE(0x4235, 0x1004, iwl5300_agn_cfg)}, /* Mini Card */
4699 {IWL_PCI_DEVICE(0x4235, 0x1104, iwl5300_agn_cfg)}, /* Half Mini Card */
4700 {IWL_PCI_DEVICE(0x4236, 0x1011, iwl5300_agn_cfg)}, /* Mini Card */
4701 {IWL_PCI_DEVICE(0x4236, 0x1111, iwl5300_agn_cfg)}, /* Half Mini Card */
4702 {IWL_PCI_DEVICE(0x4236, 0x1014, iwl5300_agn_cfg)}, /* Mini Card */
4703 {IWL_PCI_DEVICE(0x4236, 0x1114, iwl5300_agn_cfg)}, /* Half Mini Card */
4704
4705/* 5350 Series WiFi/WiMax */
4706 {IWL_PCI_DEVICE(0x423A, 0x1001, iwl5350_agn_cfg)}, /* Mini Card */
4707 {IWL_PCI_DEVICE(0x423A, 0x1021, iwl5350_agn_cfg)}, /* Mini Card */
4708 {IWL_PCI_DEVICE(0x423B, 0x1011, iwl5350_agn_cfg)}, /* Mini Card */
4709
4710/* 5150 Series Wifi/WiMax */
4711 {IWL_PCI_DEVICE(0x423C, 0x1201, iwl5150_agn_cfg)}, /* Mini Card */
4712 {IWL_PCI_DEVICE(0x423C, 0x1301, iwl5150_agn_cfg)}, /* Half Mini Card */
4713 {IWL_PCI_DEVICE(0x423C, 0x1206, iwl5150_abg_cfg)}, /* Mini Card */
4714 {IWL_PCI_DEVICE(0x423C, 0x1306, iwl5150_abg_cfg)}, /* Half Mini Card */
4715 {IWL_PCI_DEVICE(0x423C, 0x1221, iwl5150_agn_cfg)}, /* Mini Card */
4716 {IWL_PCI_DEVICE(0x423C, 0x1321, iwl5150_agn_cfg)}, /* Half Mini Card */
4717
4718 {IWL_PCI_DEVICE(0x423D, 0x1211, iwl5150_agn_cfg)}, /* Mini Card */
4719 {IWL_PCI_DEVICE(0x423D, 0x1311, iwl5150_agn_cfg)}, /* Half Mini Card */
4720 {IWL_PCI_DEVICE(0x423D, 0x1216, iwl5150_abg_cfg)}, /* Mini Card */
4721 {IWL_PCI_DEVICE(0x423D, 0x1316, iwl5150_abg_cfg)}, /* Half Mini Card */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004722
4723/* 6x00 Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004724 {IWL_PCI_DEVICE(0x422B, 0x1101, iwl6000_3agn_cfg)},
4725 {IWL_PCI_DEVICE(0x422B, 0x1121, iwl6000_3agn_cfg)},
4726 {IWL_PCI_DEVICE(0x422C, 0x1301, iwl6000i_2agn_cfg)},
4727 {IWL_PCI_DEVICE(0x422C, 0x1306, iwl6000i_2abg_cfg)},
4728 {IWL_PCI_DEVICE(0x422C, 0x1307, iwl6000i_2bg_cfg)},
4729 {IWL_PCI_DEVICE(0x422C, 0x1321, iwl6000i_2agn_cfg)},
4730 {IWL_PCI_DEVICE(0x422C, 0x1326, iwl6000i_2abg_cfg)},
4731 {IWL_PCI_DEVICE(0x4238, 0x1111, iwl6000_3agn_cfg)},
4732 {IWL_PCI_DEVICE(0x4239, 0x1311, iwl6000i_2agn_cfg)},
4733 {IWL_PCI_DEVICE(0x4239, 0x1316, iwl6000i_2abg_cfg)},
Shanyu Zhao4b3e8062010-04-07 18:06:36 -07004734
Shanyu Zhao95b13012010-04-21 11:46:33 -07004735/* 6x00 Series Gen2a */
4736 {IWL_PCI_DEVICE(0x0082, 0x1201, iwl6000g2a_2agn_cfg)},
4737 {IWL_PCI_DEVICE(0x0085, 0x1211, iwl6000g2a_2agn_cfg)},
4738 {IWL_PCI_DEVICE(0x0082, 0x1221, iwl6000g2a_2agn_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004739 {IWL_PCI_DEVICE(0x0082, 0x1206, iwl6000g2a_2abg_cfg)},
4740 {IWL_PCI_DEVICE(0x0085, 0x1216, iwl6000g2a_2abg_cfg)},
4741 {IWL_PCI_DEVICE(0x0082, 0x1226, iwl6000g2a_2abg_cfg)},
4742 {IWL_PCI_DEVICE(0x0082, 0x1207, iwl6000g2a_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004743 {IWL_PCI_DEVICE(0x0082, 0x1301, iwl6000g2a_2agn_cfg)},
4744 {IWL_PCI_DEVICE(0x0082, 0x1306, iwl6000g2a_2abg_cfg)},
4745 {IWL_PCI_DEVICE(0x0082, 0x1307, iwl6000g2a_2bg_cfg)},
4746 {IWL_PCI_DEVICE(0x0082, 0x1321, iwl6000g2a_2agn_cfg)},
4747 {IWL_PCI_DEVICE(0x0082, 0x1326, iwl6000g2a_2abg_cfg)},
4748 {IWL_PCI_DEVICE(0x0085, 0x1311, iwl6000g2a_2agn_cfg)},
4749 {IWL_PCI_DEVICE(0x0085, 0x1316, iwl6000g2a_2abg_cfg)},
Shanyu Zhao18089722010-05-06 10:15:21 -07004750
4751/* 6x00 Series Gen2b */
4752 {IWL_PCI_DEVICE(0x008F, 0x5105, iwl6000g2b_bgn_cfg)},
4753 {IWL_PCI_DEVICE(0x0090, 0x5115, iwl6000g2b_bgn_cfg)},
4754 {IWL_PCI_DEVICE(0x008F, 0x5125, iwl6000g2b_bgn_cfg)},
4755 {IWL_PCI_DEVICE(0x008F, 0x5107, iwl6000g2b_bg_cfg)},
4756 {IWL_PCI_DEVICE(0x008F, 0x5201, iwl6000g2b_2agn_cfg)},
4757 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4758 {IWL_PCI_DEVICE(0x008F, 0x5221, iwl6000g2b_2agn_cfg)},
4759 {IWL_PCI_DEVICE(0x008F, 0x5206, iwl6000g2b_2abg_cfg)},
4760 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4761 {IWL_PCI_DEVICE(0x008F, 0x5226, iwl6000g2b_2abg_cfg)},
4762 {IWL_PCI_DEVICE(0x008F, 0x5207, iwl6000g2b_2bg_cfg)},
Shanyu Zhao9f6e1ba2010-05-11 15:21:54 -07004763 {IWL_PCI_DEVICE(0x008A, 0x5301, iwl6000g2b_bgn_cfg)},
4764 {IWL_PCI_DEVICE(0x008A, 0x5305, iwl6000g2b_bgn_cfg)},
4765 {IWL_PCI_DEVICE(0x008A, 0x5307, iwl6000g2b_bg_cfg)},
4766 {IWL_PCI_DEVICE(0x008A, 0x5321, iwl6000g2b_bgn_cfg)},
4767 {IWL_PCI_DEVICE(0x008A, 0x5325, iwl6000g2b_bgn_cfg)},
4768 {IWL_PCI_DEVICE(0x008B, 0x5311, iwl6000g2b_bgn_cfg)},
4769 {IWL_PCI_DEVICE(0x008B, 0x5315, iwl6000g2b_bgn_cfg)},
4770 {IWL_PCI_DEVICE(0x0090, 0x5211, iwl6000g2b_2agn_cfg)},
4771 {IWL_PCI_DEVICE(0x0090, 0x5215, iwl6000g2b_2bgn_cfg)},
4772 {IWL_PCI_DEVICE(0x0090, 0x5216, iwl6000g2b_2abg_cfg)},
4773 {IWL_PCI_DEVICE(0x0091, 0x5201, iwl6000g2b_2agn_cfg)},
4774 {IWL_PCI_DEVICE(0x0091, 0x5205, iwl6000g2b_2bgn_cfg)},
4775 {IWL_PCI_DEVICE(0x0091, 0x5206, iwl6000g2b_2abg_cfg)},
4776 {IWL_PCI_DEVICE(0x0091, 0x5207, iwl6000g2b_2bg_cfg)},
4777 {IWL_PCI_DEVICE(0x0091, 0x5221, iwl6000g2b_2agn_cfg)},
4778 {IWL_PCI_DEVICE(0x0091, 0x5225, iwl6000g2b_2bgn_cfg)},
4779 {IWL_PCI_DEVICE(0x0091, 0x5226, iwl6000g2b_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004780
4781/* 6x50 WiFi/WiMax Series */
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004782 {IWL_PCI_DEVICE(0x0087, 0x1301, iwl6050_2agn_cfg)},
4783 {IWL_PCI_DEVICE(0x0087, 0x1306, iwl6050_2abg_cfg)},
4784 {IWL_PCI_DEVICE(0x0087, 0x1321, iwl6050_2agn_cfg)},
4785 {IWL_PCI_DEVICE(0x0087, 0x1326, iwl6050_2abg_cfg)},
Wey-Yi Guy5953a622009-09-17 10:43:53 -07004786 {IWL_PCI_DEVICE(0x0089, 0x1311, iwl6050_2agn_cfg)},
4787 {IWL_PCI_DEVICE(0x0089, 0x1316, iwl6050_2abg_cfg)},
4788
Shanyu Zhao03264332010-06-29 17:27:27 -07004789/* 6x50 WiFi/WiMax Series Gen2 */
4790 {IWL_PCI_DEVICE(0x0885, 0x1305, iwl6050g2_bgn_cfg)},
4791 {IWL_PCI_DEVICE(0x0885, 0x1306, iwl6050g2_bgn_cfg)},
4792 {IWL_PCI_DEVICE(0x0885, 0x1325, iwl6050g2_bgn_cfg)},
4793 {IWL_PCI_DEVICE(0x0885, 0x1326, iwl6050g2_bgn_cfg)},
4794 {IWL_PCI_DEVICE(0x0886, 0x1315, iwl6050g2_bgn_cfg)},
4795 {IWL_PCI_DEVICE(0x0886, 0x1316, iwl6050g2_bgn_cfg)},
4796
Jay Sternberg77dcb6a2009-03-06 13:52:55 -08004797/* 1000 Series WiFi */
Wey-Yi Guy4bd09142009-09-17 10:43:52 -07004798 {IWL_PCI_DEVICE(0x0083, 0x1205, iwl1000_bgn_cfg)},
4799 {IWL_PCI_DEVICE(0x0083, 0x1305, iwl1000_bgn_cfg)},
4800 {IWL_PCI_DEVICE(0x0083, 0x1225, iwl1000_bgn_cfg)},
4801 {IWL_PCI_DEVICE(0x0083, 0x1325, iwl1000_bgn_cfg)},
4802 {IWL_PCI_DEVICE(0x0084, 0x1215, iwl1000_bgn_cfg)},
4803 {IWL_PCI_DEVICE(0x0084, 0x1315, iwl1000_bgn_cfg)},
4804 {IWL_PCI_DEVICE(0x0083, 0x1206, iwl1000_bg_cfg)},
4805 {IWL_PCI_DEVICE(0x0083, 0x1306, iwl1000_bg_cfg)},
4806 {IWL_PCI_DEVICE(0x0083, 0x1226, iwl1000_bg_cfg)},
4807 {IWL_PCI_DEVICE(0x0083, 0x1326, iwl1000_bg_cfg)},
4808 {IWL_PCI_DEVICE(0x0084, 0x1216, iwl1000_bg_cfg)},
4809 {IWL_PCI_DEVICE(0x0084, 0x1316, iwl1000_bg_cfg)},
Jay Sternberg1de19ec2010-09-14 15:21:20 -07004810
Wey-Yi Guy58a39092010-10-06 08:14:21 -07004811/* 100 Series WiFi */
Jay Sternberg1de19ec2010-09-14 15:21:20 -07004812 {IWL_PCI_DEVICE(0x08AE, 0x1005, iwl100_bgn_cfg)},
4813 {IWL_PCI_DEVICE(0x08AF, 0x1015, iwl100_bgn_cfg)},
4814 {IWL_PCI_DEVICE(0x08AE, 0x1025, iwl100_bgn_cfg)},
4815 {IWL_PCI_DEVICE(0x08AE, 0x1007, iwl100_bg_cfg)},
4816 {IWL_PCI_DEVICE(0x08AE, 0x1017, iwl100_bg_cfg)},
Wey-Yi Guy58a39092010-10-06 08:14:21 -07004817
4818/* 130 Series WiFi */
4819 {IWL_PCI_DEVICE(0x0896, 0x5005, iwl130_bgn_cfg)},
4820 {IWL_PCI_DEVICE(0x0896, 0x5007, iwl130_bg_cfg)},
4821 {IWL_PCI_DEVICE(0x0897, 0x5015, iwl130_bgn_cfg)},
4822 {IWL_PCI_DEVICE(0x0897, 0x5017, iwl130_bg_cfg)},
4823 {IWL_PCI_DEVICE(0x0896, 0x5025, iwl130_bgn_cfg)},
4824 {IWL_PCI_DEVICE(0x0896, 0x5027, iwl130_bg_cfg)},
4825
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004826#endif /* CONFIG_IWL5000 */
Tomas Winkler7100e922008-12-01 16:32:18 -08004827
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004828 {0}
4829};
4830MODULE_DEVICE_TABLE(pci, iwl_hw_card_ids);
4831
4832static struct pci_driver iwl_driver = {
Zhu Yib481de92007-09-25 17:54:57 -07004833 .name = DRV_NAME,
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004834 .id_table = iwl_hw_card_ids,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004835 .probe = iwl_pci_probe,
4836 .remove = __devexit_p(iwl_pci_remove),
Zhu Yib481de92007-09-25 17:54:57 -07004837#ifdef CONFIG_PM
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004838 .suspend = iwl_pci_suspend,
4839 .resume = iwl_pci_resume,
Zhu Yib481de92007-09-25 17:54:57 -07004840#endif
4841};
4842
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004843static int __init iwl_init(void)
Zhu Yib481de92007-09-25 17:54:57 -07004844{
4845
4846 int ret;
Joe Perchesc96c31e2010-07-26 14:39:58 -07004847 pr_info(DRV_DESCRIPTION ", " DRV_VERSION "\n");
4848 pr_info(DRV_COPYRIGHT "\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004849
Tomas Winklere227cea2008-07-18 13:53:05 +08004850 ret = iwlagn_rate_control_register();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004851 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004852 pr_err("Unable to register rate control algorithm: %d\n", ret);
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004853 return ret;
4854 }
4855
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004856 ret = pci_register_driver(&iwl_driver);
Zhu Yib481de92007-09-25 17:54:57 -07004857 if (ret) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07004858 pr_err("Unable to initialize PCI module\n");
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004859 goto error_register;
Zhu Yib481de92007-09-25 17:54:57 -07004860 }
Zhu Yib481de92007-09-25 17:54:57 -07004861
4862 return ret;
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004863
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004864error_register:
Tomas Winklere227cea2008-07-18 13:53:05 +08004865 iwlagn_rate_control_unregister();
Reinette Chatre897e1cf2008-03-28 16:21:09 -07004866 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07004867}
4868
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004869static void __exit iwl_exit(void)
Zhu Yib481de92007-09-25 17:54:57 -07004870{
Ron Rindjunskyfed90172008-04-15 16:01:41 -07004871 pci_unregister_driver(&iwl_driver);
Tomas Winklere227cea2008-07-18 13:53:05 +08004872 iwlagn_rate_control_unregister();
Zhu Yib481de92007-09-25 17:54:57 -07004873}
4874
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07004875module_exit(iwl_exit);
4876module_init(iwl_init);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004877
4878#ifdef CONFIG_IWLWIFI_DEBUG
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004879module_param_named(debug50, iwl_debug_level, uint, S_IRUGO);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004880MODULE_PARM_DESC(debug50, "50XX debug output mask (deprecated)");
Wey-Yi Guy4e30cb62009-09-17 10:43:47 -07004881module_param_named(debug, iwl_debug_level, uint, S_IRUGO | S_IWUSR);
Reinette Chatrea562a9d2009-07-17 09:30:24 -07004882MODULE_PARM_DESC(debug, "debug output mask");
4883#endif
4884
Wey-Yi Guy2b068612010-03-22 09:17:39 -07004885module_param_named(swcrypto50, iwlagn_mod_params.sw_crypto, bool, S_IRUGO);
4886MODULE_PARM_DESC(swcrypto50,
4887 "using crypto in software (default 0 [hardware]) (deprecated)");
4888module_param_named(swcrypto, iwlagn_mod_params.sw_crypto, int, S_IRUGO);
4889MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
4890module_param_named(queues_num50,
4891 iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4892MODULE_PARM_DESC(queues_num50,
4893 "number of hw queues in 50xx series (deprecated)");
4894module_param_named(queues_num, iwlagn_mod_params.num_of_queues, int, S_IRUGO);
4895MODULE_PARM_DESC(queues_num, "number of hw queues.");
4896module_param_named(11n_disable50, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4897MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality (deprecated)");
4898module_param_named(11n_disable, iwlagn_mod_params.disable_11n, int, S_IRUGO);
4899MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
4900module_param_named(amsdu_size_8K50, iwlagn_mod_params.amsdu_size_8K,
4901 int, S_IRUGO);
4902MODULE_PARM_DESC(amsdu_size_8K50,
4903 "enable 8K amsdu size in 50XX series (deprecated)");
4904module_param_named(amsdu_size_8K, iwlagn_mod_params.amsdu_size_8K,
4905 int, S_IRUGO);
4906MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
4907module_param_named(fw_restart50, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4908MODULE_PARM_DESC(fw_restart50,
4909 "restart firmware in case of error (deprecated)");
4910module_param_named(fw_restart, iwlagn_mod_params.restart_fw, int, S_IRUGO);
4911MODULE_PARM_DESC(fw_restart, "restart firmware in case of error");
4912module_param_named(
4913 disable_hw_scan, iwlagn_mod_params.disable_hw_scan, int, S_IRUGO);
Wey-Yi Guy72645ef2010-10-06 07:42:43 -07004914MODULE_PARM_DESC(disable_hw_scan,
4915 "disable hardware scanning (default 0) (deprecated)");
Johannes Bergdd7a2502010-04-28 23:33:10 -07004916
4917module_param_named(ucode_alternative, iwlagn_wanted_ucode_alternative, int,
4918 S_IRUGO);
4919MODULE_PARM_DESC(ucode_alternative,
4920 "specify ucode alternative to use from ucode file");
Wey-Yi Guybee008b2010-08-23 07:57:04 -07004921
4922module_param_named(antenna_coupling, iwlagn_ant_coupling, int, S_IRUGO);
4923MODULE_PARM_DESC(antenna_coupling,
4924 "specify antenna coupling in dB (defualt: 0 dB)");
Wey-Yi Guyf37837c2010-08-23 07:57:12 -07004925
4926module_param_named(bt_ch_announce, iwlagn_bt_ch_announce, bool, S_IRUGO);
4927MODULE_PARM_DESC(bt_ch_announce,
4928 "Enable BT channel announcement mode (default: enable)");